/* ═══════════════ VARIABLES & TOKENS ═══════════════ */
:root {
    --bg-matte: #0a0a0b;
    --bg-soft: #111113;
    --bg-dark: #050506;
    --white: #fafafa;
    --white-90: rgba(250,250,250,0.9);
    --white-60: rgba(250,250,250,0.61);
    --white-30: rgba(250,250,250,0.3);
    --white-10: rgba(250,250,250,0.1);
    --white-05: rgba(250,250,250,0.05);
    
    /* Subtle Neo-Red System / Live Glow */
    --accent: #ff3b30;
    --accent-hover: #ff453a;
    --accent-10: rgba(255,59,48,0.08);
    --accent-20: rgba(255,59,48,0.15);
    --accent-40: rgba(255,59,48,0.35);
    --accent-glow: rgba(255,59,48,0.22);
    
    /* Premium Tactical Pink */
    --pink: #ff2d55;
    --pink-hover: #ff375f;
    --pink-10: rgba(255,45,85,0.08);
    --pink-20: rgba(255,45,85,0.18);
    --pink-40: rgba(255,45,85,0.35);
    --pink-glow: rgba(255,45,85,0.25);
    
    --muted: #797982;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    
    --font-h: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --container: 1200px;
    --section-pc: 130px;
    --section-tab: 90px;
    --section-mob: 70px;
    
    /* Hardware Accelerated Premium Ease Profile */
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════ BASE RESETS ═══════════════ */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
    background-color: var(--bg-matte); 
}

body {
    font-family: var(--font-body); 
    background-color: var(--bg-matte); 
    color: var(--white);
    line-height: 1.62; 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    user-select: none;
}

::selection { 
    background: var(--pink); 
    color: var(--white); 
}

a { 
    color: inherit; 
    text-decoration: none; 
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

ul { 
    list-style: none; 
}

img { 
    max-width: 100%; 
    height: auto;
    display: block; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-h); 
    font-weight: 700; 
    line-height: 1.15; 
    letter-spacing: -0.035em;
    color: var(--white);
}

/* ═══════════════ LAYOUTS & UTILITY ═══════════════ */
.container { 
    max-width: var(--container); 
    margin: 0 auto; 
    padding: 0 2.5rem; 
    width: 100%;
}

.section-pad { 
    padding: var(--section-pc) 0; 
}

.label-mono {
    font-family: var(--font-mono); 
    font-size: 0.72rem; 
    font-weight: 500;
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
    color: var(--pink); 
    margin-bottom: 1.25rem;
    display: inline-flex; 
    align-items: center; 
    gap: 0.75rem;
}
.label-mono::before { 
    content: '//'; 
    opacity: 0.4; 
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.25rem); 
    font-weight: 700; 
    margin-bottom: 1.25rem;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.05rem; 
    color: var(--white-60); 
    max-width: 580px; 
    line-height: 1.65;
}

/* Center subtitles on section headers that are text-align: center */
.reveal {
    text-align: inherit;
}
.reveal .section-subtitle {
    margin: 0 auto;
}

/* ═══════════════ SPECTRAL FX LAYERS ═══════════════ */
.grid-bg {
    position: fixed; 
    inset: 0; 
    z-index: 0; 
    pointer-events: none;
    background-image: linear-gradient(var(--white-05) 1px, transparent 1px),
                      linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
    background-size: 55px 55px; 
    mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,1) 15%, rgba(0,0,0,0.1) 55%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,1) 15%, rgba(0,0,0,0.1) 55%, transparent 80%);
}

.scanlines {
    position: fixed; 
    inset: 0; 
    z-index: 9998; 
    pointer-events: none; 
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.06) 50%, rgba(0,0,0,0.06));
    background-size: 100% 4px; 
    opacity: 0.25;
}

.noise {
    position: fixed; 
    inset: 0; 
    z-index: 9997; 
    pointer-events: none; 
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

#cursor-glow {
    position: fixed; 
    width: 500px; 
    height: 500px; 
    border-radius: 50%; 
    pointer-events: none;
    background: radial-gradient(circle, rgba(255,45,85,0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%); 
    z-index: 1; 
    mix-blend-mode: screen;
    will-change: left, top;
}

@media (hover: none) {
    #cursor-glow {
        display: none !important;
    }
}

/* ═══════════════ COMPILER LOADER SCREEN ═══════════════ */
#loader {
    position: fixed; 
    inset: 0; 
    z-index: 10000; 
    background: var(--bg-matte);
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 1.5rem;
    transition: opacity 0.5s var(--ease-premium), visibility 0.5s var(--ease-premium);
}
#loader.hidden { 
    opacity: 0; 
    visibility: hidden; 
}
.loader-text { 
    font-family: var(--font-mono); 
    font-size: 0.85rem; 
    color: var(--white-90); 
    font-weight: 500;
    letter-spacing: 0.08em;
}
.loader-bar-bg { 
    width: 160px; 
    height: 2px; 
    background: var(--white-10); 
    border-radius: 2px; 
    overflow: hidden; 
}
.loader-bar-fill { 
    width: 0%; 
    height: 100%; 
    background: var(--pink); 
    transition: width 0.08s linear;
}
.loader-progress-text {
    font-family: var(--font-mono); 
    font-size: 0.7rem; 
    color: var(--white-30);
    letter-spacing: 0.05em;
}

/* ═══════════════ FLOATING BAR NAVIGATION ═══════════════ */
.navbar {
    position: fixed; 
    top: 1.5rem; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 1000;
    width: calc(100% - 3rem); 
    max-width: 1100px; 
    background: rgba(11,11,12,0.45);
    backdrop-filter: blur(24px) saturate(140%); 
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    border: 1px solid var(--border); 
    border-radius: 14px; 
    padding: 0.7rem 1.7rem;
    transition: border-color 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), background 0.35s var(--ease-premium);
}
.navbar.scrolled { 
    border-color: var(--border-hover); 
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), inset 0 1px 1px rgba(255,255,255,0.05); 
    background: rgba(11,11,12,0.88); 
}
.navbar-container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 0; 
    max-width: 100%; 
}

.nav-logo { 
    display: flex; 
    align-items: center; 
    gap: 0.75rem; 
    z-index: 1002;
}
.nav-logo img { 
    height: 30px; 
    width: 30px; 
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.45s var(--ease-premium);
}
.nav-logo:hover img {
    transform: rotate(360deg);
}
.nav-logo-text { 
    font-family: var(--font-mono); 
    font-size: 0.85rem; 
    font-weight: 700; 
    letter-spacing: 0.05em; 
}

.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 2.2rem; 
}
.nav-links a { 
    font-size: 0.85rem; 
    color: var(--white-60); 
    transition: color 0.3s var(--ease-premium); 
    font-weight: 500;
}
.nav-links a:hover { 
    color: var(--white); 
}

.nav-ig-icon {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--white-60);
    opacity: 0.7; 
    transition: all 0.3s var(--ease-premium);
}
.nav-ig-icon svg {
    width: 17px; 
    height: 17px; 
    stroke: currentColor; 
    fill: none; 
    stroke-width: 1.8;
    stroke-linecap: round; 
    stroke-linejoin: round;
    transition: transform 0.35s var(--ease-premium);
}
.nav-ig-icon:hover {
    opacity: 1; 
    color: var(--pink);
    filter: drop-shadow(0 0 10px rgba(255,45,85, 0.4));
}
.nav-ig-icon:hover svg {
    transform: scale(1.15) rotate(4deg);
}

.nav-cta {
    font-family: var(--font-mono); 
    font-size: 0.75rem; 
    font-weight: 500; 
    color: var(--white) !important;
    background: rgba(255,45,85,0.06); 
    border: 1px solid var(--pink-40);
    padding: 0.5rem 1.25rem; 
    border-radius: 8px; 
    position: relative; 
    overflow: hidden;
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.03), 0 4px 12px rgba(255,45,85,0.05);
    transition: all 0.3s var(--ease-premium);
}
.nav-cta::after {
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
    transform: translateX(-100%); 
    transition: none;
    pointer-events: none;
}
.nav-cta:hover { 
    background: var(--pink-10); 
    border-color: var(--pink); 
    box-shadow: 0 8px 25px rgba(255,45,85,0.22), inset 0 1px 1px rgba(255,255,255,0.06);
    transform: translateY(-1px);
}
.nav-cta:hover::after { 
    transform: translateX(100%); 
    transition: transform 0.65s var(--ease-premium); 
}
.nav-cta:active { 
    transform: translateY(1px); 
    box-shadow: 0 2px 8px var(--pink-glow); 
}

.mobile-toggle { 
    display: none; 
    flex-direction: column; 
    gap: 5px; 
    cursor: pointer; 
    background: none; 
    border: none; 
    padding: 6px; 
    z-index: 1002; 
}
.mobile-toggle span { 
    width: 22px; 
    height: 2px; 
    background: var(--white); 
    transition: all 0.35s var(--ease-premium); 
    display: block; 
}
.mobile-toggle.active span:nth-child(1) { 
    transform: rotate(45deg) translate(4px, 6px); 
}
.mobile-toggle.active span:nth-child(2) { 
    opacity: 0; 
    transform: scaleX(0); 
}
.mobile-toggle.active span:nth-child(3) { 
    transform: rotate(-45deg) translate(4px, -6px); 
}

/* ═══════════════ ULTRA-GLASS MOBILE SCREEN ═══════════════ */
.mobile-menu {
    position: fixed; 
    inset: 0; 
    background: rgba(5,5,6,0.96); 
    backdrop-filter: blur(34px); 
    -webkit-backdrop-filter: blur(34px);
    z-index: 999;
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 2.5rem;
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.35s var(--ease-premium), visibility 0.35s var(--ease-premium);
}
.mobile-menu.active { 
    opacity: 1; 
    visibility: visible; 
}

.mobile-menu-inner {
    width: 100%; 
    max-width: 380px; 
    display: flex; 
    flex-direction: column; 
    gap: 2.5rem;
}

.mobile-nav {
    display: flex; 
    flex-direction: column; 
    border-top: 1px solid var(--border);
}

.mobile-nav a {
    display: flex; 
    align-items: center; 
    gap: 1.25rem;
    font-family: var(--font-h); 
    font-size: 1.65rem; 
    font-weight: 600; 
    letter-spacing: -0.02em;
    color: var(--white-60); 
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s var(--ease-premium);
    transform: translateY(20px); 
    opacity: 0;
}

.mobile-menu.active .mobile-nav a {
    transform: translateY(0); 
    opacity: 1;
}
.mobile-menu.active .mobile-nav a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.active .mobile-nav a:nth-child(2) { transition-delay: 0.13s; }
.mobile-menu.active .mobile-nav a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.active .mobile-nav a:nth-child(4) { transition-delay: 0.23s; }

.mobile-nav a:hover { 
    color: var(--white); 
    padding-left: 0.75rem; 
}

.mobile-link-num {
    font-family: var(--font-mono); 
    font-size: 0.75rem; 
    font-weight: 500; 
    color: var(--pink); 
    letter-spacing: 0.05em; 
    min-width: 24px; 
}

.mobile-cta {
    transform: translateY(15px); 
    opacity: 0;
    transition: all 0.35s var(--ease-premium) 0.28s;
}
.mobile-menu.active .mobile-cta { 
    transform: translateY(0); 
    opacity: 1; 
}
.mobile-cta .nav-cta { 
    display: block; 
    text-align: center; 
    padding: 0.95rem 2rem; 
    font-size: 0.8rem;
}

/* ═══════════════ PREMIUM CONSOLE BUTTONS ═══════════════ */
.btn-primary, .btn-outline {
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-mono); 
    font-size: 0.8rem; 
    font-weight: 500;
    padding: 0.95rem 1.85rem; 
    border-radius: 11px; 
    cursor: pointer; 
    position: relative; 
    overflow: hidden;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease-premium);
}

.btn-primary {
    color: var(--white); 
    background: rgba(255,45,85,0.06);
    border: 1px solid var(--pink-40);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.04), 0 4px 16px rgba(255,45,85,0.05);
}
.btn-primary::after {
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
    transform: translateX(-100%); 
    transition: none;
    pointer-events: none;
}
.btn-primary:hover { 
    background: var(--pink-10); 
    border-color: var(--pink);
    box-shadow: 0 10px 24px rgba(255,45,85,0.22), inset 0 1px 1px rgba(255,255,255,0.06);
    transform: translateY(-2px);
}
.btn-primary:hover::after { 
    transform: translateX(100%); 
    transition: transform 0.7s var(--ease-premium); 
}
.btn-primary:active { 
    transform: translateY(0); 
    box-shadow: 0 4px 10px rgba(255,45,85,0.1); 
}

.btn-outline {
    color: var(--white); 
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.01), 0 4px 16px rgba(0,0,0,0.15);
}
.btn-outline::after {
    content: ''; 
    position: absolute; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
    transform: translateX(-100%); 
    transition: none;
    pointer-events: none;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.04); 
    border-color: rgba(255,255,255,0.2);
    color: var(--white); 
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-outline:hover::after { 
    transform: translateX(100%); 
    transition: transform 0.7s var(--ease-premium); 
}
.btn-outline:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ═══════════════ CODESCAPE HERO ═══════════════ */
.hero { 
    padding: 190px 0 110px; 
    position: relative; 
    z-index: 2; 
    overflow: hidden; 
}
.hero-container { 
    display: grid; 
    grid-template-columns: 1.25fr 0.75fr; 
    gap: 5rem; 
    align-items: center; 
}

.hero-content { 
    position: relative; 
    z-index: 2; 
}
.hero-tag { 
    margin-bottom: 1.75rem; 
}
.hero-tag span { 
    font-family: var(--font-mono); 
    font-size: 0.75rem; 
    color: var(--accent); 
    background: var(--accent-10); 
    border: 1px solid var(--accent-20); 
    padding: 0.4rem 1.15rem; 
    border-radius: 5px; 
    font-weight: 500;
    display: inline-block; 
    letter-spacing: 0.04em;
}

.hero h1 { 
    font-size: clamp(2.45rem, 6vw, 4.35rem); 
    line-height: 1.05; 
    margin-bottom: 2rem; 
    letter-spacing: -0.045em; 
}
.hero h1 .highlight { 
    color: var(--accent); 
    text-shadow: 0 0 40px rgba(255,59,48,0.15);
}

.hero p { 
    font-size: 1.1rem; 
    color: var(--white-60); 
    max-width: 500px; 
    margin-bottom: 2.8rem; 
    line-height: 1.65; 
}

.hero-actions {
    display: flex; 
    gap: 1.25rem; 
    flex-wrap: wrap;
}

.hero-indicators { 
    display: flex; 
    gap: 2.5rem; 
    margin-top: 3.5rem; 
    border-top: 1px solid var(--border); 
    padding-top: 1.75rem; 
}
.indicator { 
    display: flex; 
    flex-direction: column; 
    gap: 0.35rem; 
}
.indicator span:first-child { 
    font-family: var(--font-mono); 
    font-size: 0.65rem; 
    color: var(--muted); 
    letter-spacing: 0.12em; 
    text-transform: uppercase;
}
.indicator span:last-child { 
    font-family: var(--font-mono); 
    font-size: 0.85rem; 
    font-weight: 600; 
}
.indicator .live { 
    color: var(--accent); 
    display: flex;
    align-items: center;
}
.indicator .live::before { 
    content: ''; 
    display: inline-block; 
    width: 6px; 
    height: 6px; 
    background: var(--accent); 
    border-radius: 50%; 
    margin-right: 7px; 
    animation: pulse 1.8s infinite; 
}

@keyframes pulse { 
    0%, 100% { opacity: 1; transform: scale(1); } 
    50% { opacity: 0.35; transform: scale(1.1); } 
}

/* Hero Visual - Cyber Console Stage */
.hero-visual { 
    position: relative; 
    height: 440px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 100%;
    z-index: 10;
}
.matrix-grid {
    position: absolute; 
    inset: 0; 
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 35px 35px; 
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    animation: gridMove 25s linear infinite;
    pointer-events: none;
}
@keyframes gridMove { 
    0% { transform: translate(0, 0); } 
    100% { transform: translate(35px, 35px); } 
}

/* Precise Floating Core Terminals */
.float-card {
    position: absolute; 
    background: rgba(17,17,19,0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border); 
    border-radius: 12px; 
    padding: 1.35rem 1.65rem;
    font-family: var(--font-mono); 
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
    transition: border-color 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
    z-index: 12;
}
.float-card:hover {
    border-color: var(--pink-20);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 15px rgba(255,45,85,0.12);
}

.flex-card-status { 
    top: 15%; 
    left: 4%; 
    animation: floatOne 6s ease-in-out infinite; 
}
.flex-card-load { 
    bottom: 12%; 
    right: 4%; 
    animation: floatTwo 7s ease-in-out infinite; 
}

.flex-card-seo { 
    top: 50%; 
    left: 50%; 
    width: 200px;
    margin-top: -65px; 
    margin-left: -100px; 
    animation: floatCenter 6.5s ease-in-out infinite;
    border-color: var(--pink-20);
    background: rgba(17,17,19,0.92);
}

@keyframes floatOne { 
    0%, 100% { transform: translateY(0) rotate(-1deg); } 
    50% { transform: translateY(-12px) rotate(1deg); } 
}
@keyframes floatTwo { 
    0%, 100% { transform: translateY(0) rotate(1deg); } 
    50% { transform: translateY(-16px) rotate(-1deg); } 
}
@keyframes floatCenter { 
    0%, 100% { transform: translateY(0) scale(1); } 
    50% { transform: translateY(-14px) scale(1.02); } 
}

.fc-label { 
    font-size: 0.65rem; 
    color: var(--muted); 
    margin-bottom: 0.5rem; 
    letter-spacing: 0.12em; 
}
.fc-value { 
    font-size: 1.1rem; 
    font-weight: 700; 
    color: var(--white); 
}
.fc-value.red { 
    color: var(--accent); 
}
.fc-value.text-pink {
    color: var(--pink);
}
.fc-bar { 
    margin-top: 0.75rem; 
    height: 3px; 
    background: rgba(255,255,255,0.06); 
    border-radius: 2px; 
    overflow: hidden; 
}
.fc-bar-fill { 
    height: 100%; 
    background: var(--accent); 
    border-radius: 2px; 
}
.fc-bar-fill.bg-pink {
    background: var(--pink);
}

/* ═══════════════ STATUS STRIP BAR ═══════════════ */
.status-strip { 
    border-top: 1px solid var(--border); 
    border-bottom: 1px solid var(--border); 
    background: var(--bg-dark); 
    padding: 3.25rem 0; 
    z-index: 2; 
    position: relative; 
}
.status-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.5rem; 
}
.status-item { 
    background: transparent; 
    padding: 1rem 0; 
    display: flex; 
    align-items: center; 
    gap: 1.25rem; 
    transition: transform 0.3s var(--ease-premium); 
}
.status-item:hover { 
    transform: translateY(-2px);
}
.status-icon { 
    width: 44px; 
    height: 44px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 1px solid var(--accent-20); 
    border-radius: 8px; 
    background: var(--bg-matte);
    flex-shrink: 0;
    transition: border-color 0.35s var(--ease-premium);
}
.status-item:hover .status-icon {
    border-color: var(--accent);
}
.status-icon svg { 
    width: 18px; 
    height: 18px; 
    stroke: var(--accent); 
    fill: none; 
    stroke-width: 2; 
    stroke-linecap: round; 
    stroke-linejoin: round; 
}
.status-item h4 { 
    font-family: var(--font-h); 
    font-size: 0.95rem; 
    font-weight: 600; 
    margin-bottom: 3px; 
    color: var(--white);
    letter-spacing: -0.01em;
}
.status-item p { 
    font-size: 0.78rem; 
    color: var(--muted); 
}

/* ═══════════════ WHY CHOOSE US ═══════════════ */
.why-section { 
    background: var(--bg-matte); 
    z-index: 2; 
    position: relative; 
}
.why-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.why-header .section-subtitle {
    margin: 0 auto;
}
.why-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.5rem; 
}
.why-card {
    background: var(--bg-soft); 
    border: 1px solid var(--border); 
    border-radius: 14px; 
    padding: 2.25rem 2rem;
    transition: all 0.35s var(--ease-premium);
}
.why-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--accent-20); 
    box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 25px rgba(255,59,48, 0.04); 
}
.why-icon { 
    width: 44px; 
    height: 44px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: var(--accent-10); 
    border-radius: 9px; 
    border: 1px solid rgba(255,59,48, 0.1);
    margin-bottom: 1.5rem; 
}
.why-icon svg { 
    width: 20px; 
    height: 20px; 
    stroke: var(--accent); 
    fill: none; 
    stroke-width: 2; 
    stroke-linecap: round; 
    stroke-linejoin: round; 
}
.why-card h3 { 
    font-size: 1.1rem; 
    margin-bottom: 0.6rem; 
    color: var(--white);
    letter-spacing: -0.02em;
}
.why-card p { 
    font-size: 0.82rem; 
    color: var(--white-60); 
    line-height: 1.6; 
}

/* ═══════════════ SYSTEM SERVICES ═══════════════ */
.services-section { 
    background: var(--bg-dark); 
    z-index: 2; 
    position: relative; 
}
.services-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.services-header .section-subtitle {
    margin: 0 auto;
}
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem; 
}
.service-card {
    background: var(--bg-matte); 
    border: 1px solid var(--border); 
    border-radius: 14px; 
    padding: 2.5rem 2rem;
    transition: all 0.35s var(--ease-premium); 
    position: relative; 
    overflow: hidden;
}
.service-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 3px; 
    height: 0%; 
    background: var(--pink); 
    transition: height 0.4s var(--ease-premium); 
}
.service-card:hover { 
    border-color: rgba(255,45,85,0.15); 
    transform: translateY(-4px); 
    box-shadow: 0 16px 35px rgba(0,0,0,0.4); 
}
.service-card:hover::before { 
    height: 100%; 
}
.service-label { 
    font-family: var(--font-mono); 
    font-size: 0.72rem; 
    color: var(--pink); 
    margin-bottom: 1.25rem; 
    letter-spacing: 0.12em; 
}
.service-card h3 { 
    font-size: 1.1rem; 
    margin-bottom: 0.5rem; 
    color: var(--white);
    letter-spacing: -0.02em;
}
.service-card p { 
    font-size: 0.82rem; 
    color: var(--white-60); 
    line-height: 1.6; 
}

/* ═══════════════ PRICING & PROTOCOLS ═══════════════ */
.plans-section { 
    background: var(--bg-matte); 
    z-index: 2; 
    position: relative; 
}
.plans-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.plans-header .section-subtitle {
    margin: 0 auto;
}
.plans-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
    max-width: 920px; 
    margin: 0 auto; 
}
.plan-terminal {
    background: var(--bg-soft); 
    border: 1px solid var(--border); 
    border-radius: 18px; 
    padding: 3rem 2.5rem;
    transition: all 0.35s var(--ease-premium); 
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.plan-terminal:hover { 
    border-color: var(--pink-40); 
    box-shadow: 0 20px 45px rgba(0,0,0,0.45), 0 0 25px rgba(255,45,85,0.06); 
}
.plan-terminal.featured { 
    border-color: var(--pink-20); 
    background: linear-gradient(180deg, rgba(22,22,25,0.6) 0%, var(--bg-soft) 100%);
}
.plan-terminal.featured::after { 
    content: 'RECOMMENDED'; 
    position: absolute; 
    top: 1.5rem; 
    right: 1.5rem; 
    font-family: var(--font-mono); 
    font-size: 0.65rem; 
    color: var(--pink); 
    background: rgba(255,45,85,0.08); 
    border: 1px solid rgba(255,45,85,0.18);
    padding: 0.25rem 0.65rem; 
    border-radius: 5px; 
    letter-spacing: 0.08em; 
}

.plan-header { 
    font-family: var(--font-mono); 
    font-size: 1.15rem; 
    font-weight: 700; 
    margin-bottom: 0.75rem; 
    display: flex; 
    align-items: center; 
    gap: 0.65rem; 
    color: var(--white);
    letter-spacing: 0.02em;
}
.plan-header::before { 
    content: '■'; 
    color: var(--pink); 
    font-size: 0.75rem; 
}
.plan-desc { 
    font-size: 0.82rem; 
    color: var(--white-60); 
    margin-bottom: 2.25rem; 
    line-height: 1.6; 
    border-bottom: 1px solid var(--border); 
    padding-bottom: 1.5rem; 
}

.plan-specs { 
    margin-bottom: 2.5rem; 
}
.plan-specs li {
    display: flex; 
    align-items: center; 
    gap: 0.85rem; 
    font-family: var(--font-mono); 
    font-size: 0.78rem;
    color: var(--white-90); 
    padding: 0.65rem 0; 
    border-bottom: 1px solid var(--white-05);
}
.plan-specs li:last-child { 
    border-bottom: none; 
}
.plan-specs li svg.check-icon { 
    width: 14px; 
    height: 14px; 
    stroke: var(--pink); 
    fill: none; 
    stroke-width: 2.8; 
    stroke-linecap: round; 
    stroke-linejoin: round; 
    flex-shrink: 0; 
}

/* ═══════════════ TIMELINE PROCESS ═══════════════ */
.process-section { 
    background: var(--bg-dark); 
    z-index: 2; 
    position: relative; 
}
.process-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.process-header .section-subtitle {
    margin: 0 auto;
}
.timeline { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 0; 
    position: relative; 
    max-width: 1100px; 
    margin: 0 auto; 
}
.timeline::before { 
    content: ''; 
    position: absolute; 
    top: 28px; 
    left: 0; 
    right: 0; 
    height: 1px; 
    background: var(--border); 
    z-index: 1;
}
.timeline-step { 
    text-align: center; 
    padding: 0 1.25rem; 
    position: relative; 
}
.step-dot { 
    width: 54px; 
    height: 54px; 
    background: var(--bg-dark); 
    border: 1.5px solid var(--border); 
    border-radius: 50%; 
    margin: 0 auto 1.5rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    position: relative; 
    z-index: 2; 
    transition: all 0.35s var(--ease-premium); 
}
.timeline-step:hover .step-dot { 
    border-color: var(--accent); 
    box-shadow: 0 0 20px var(--accent-glow); 
    transform: scale(1.08); 
}
.step-dot svg { 
    width: 18px; 
    height: 18px; 
    stroke: var(--accent); 
    fill: none; 
    stroke-width: 1.8; 
    stroke-linecap: round; 
    stroke-linejoin: round; 
}
.step-num { 
    font-family: var(--font-mono); 
    font-size: 0.65rem; 
    color: var(--accent); 
    margin-bottom: 0.55rem; 
    letter-spacing: 0.1em; 
}
.timeline-step h4 { 
    font-size: 1rem; 
    margin-bottom: 0.45rem; 
    color: var(--white);
}
.timeline-step p { 
    font-size: 0.78rem; 
    color: var(--muted); 
    line-height: 1.55; 
}

/* ═══════════════ FAQ LIST ACCORDIONS ═══════════════ */
.faq-section { 
    background: var(--bg-matte); 
    z-index: 2; 
    position: relative; 
}
.faq-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.faq-header .section-subtitle {
    margin: 0 auto;
}
.faq-list { 
    max-width: 760px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem; 
}
.faq-item { 
    background: var(--bg-soft); 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    overflow: hidden; 
    transition: border-color var(--ease-premium) 0.3s, box-shadow var(--ease-premium) 0.3s; 
}
.faq-item.active { 
    border-color: var(--border-hover); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.faq-q { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 1.35rem 1.65rem; 
    cursor: pointer; 
    transition: color 0.3s var(--ease-premium); 
}
.faq-q:hover { 
    color: var(--pink); 
}
.faq-q h3 { 
    font-family: var(--font-h); 
    font-size: 0.95rem; 
    font-weight: 500; 
    flex: 1; 
    padding-right: 1rem; 
    color: var(--white);
    letter-spacing: -0.01em;
}
.faq-icon { 
    font-family: var(--font-mono); 
    font-size: 1.15rem; 
    color: var(--muted); 
    transition: transform 0.35s var(--ease-premium), color 0.35s var(--ease-premium); 
}
.faq-item.active .faq-icon { 
    color: var(--pink); 
    transform: rotate(45deg); 
}
.faq-a { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.35s var(--ease-premium); 
}
.faq-a p { 
    padding: 0 1.65rem 1.35rem; 
    font-size: 0.82rem; 
    color: var(--white-60); 
    line-height: 1.65; 
}

/* ═══════════════ SOCIAL INSTAGRAM CONNECT ═══════════════ */
.ig-section { 
    background: var(--bg-dark); 
    z-index: 2; 
    position: relative; 
    text-align: center; 
}
.ig-preview { 
    display: inline-flex; 
    background: var(--bg-matte); 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    overflow: hidden; 
    margin-bottom: 2rem; 
    text-align: left; 
    max-width: 360px; 
    width: 100%;
    align-items: center;
}
.ig-preview-img { 
    width: 85px; 
    height: 85px; 
    background: linear-gradient(135deg, rgba(255,45,85,0.12) 0%, rgba(255,45,85,0.02) 100%); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    border-right: 1px solid var(--border);
}
.ig-preview-img svg { 
    width: 26px; 
    height: 26px; 
    fill: var(--pink); 
    opacity: 0.7; 
}
.ig-preview-info { 
    padding: 1.15rem; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    min-width: 0;
    flex: 1;
}
.ig-preview-info .ig-handle { 
    font-family: var(--font-mono); 
    font-size: clamp(0.72rem, 3.4vw, 0.8rem); 
    font-weight: 600; 
    margin-bottom: 0.25rem; 
    color: var(--white);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ig-preview-info .ig-desc { 
    font-size: 0.7rem; 
    color: var(--muted); 
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ═══════════════ FINAL CONTACT PORT ═══════════════ */
.contact-section { 
    background: var(--bg-matte); 
    z-index: 2; 
    position: relative; 
}
.contact-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.contact-header .section-subtitle {
    margin: 0 auto;
}
.contact-box {
    max-width: 720px; 
    margin: 0 auto; 
    text-align: center; 
    padding: 4rem 3.5rem;
    background: var(--bg-soft); 
    border: 1px solid var(--border); 
    border-radius: 20px;
    position: relative; 
    overflow: hidden; 
    transition: all 0.35s var(--ease-premium);
}
.contact-box:hover { 
    border-color: rgba(255,45,85,0.18); 
    box-shadow: 0 16px 45px rgba(0,0,0,0.4), 0 0 35px rgba(255,45,85,0.04); 
}
.contact-box::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 1.5px; 
    background: linear-gradient(90deg, transparent 15%, var(--pink) 50%, transparent 85%); 
}

/* ═══════════════ SOLID FOOTER ═══════════════ */
.footer { 
    background: var(--bg-dark); 
    border-top: 1px solid var(--border); 
    padding: 4rem 0 2.5rem; 
    z-index: 2; 
    position: relative; 
}
.footer-top { 
    display: grid; 
    grid-template-columns: 2.2fr 1fr 1fr; 
    gap: 4rem; 
    margin-bottom: 3rem; 
}
.footer-brand p { 
    font-size: 0.82rem; 
    color: var(--muted); 
    line-height: 1.65; 
    margin-top: 1rem; 
    max-width: 310px; 
}
.footer-logo { 
    display: flex; 
    align-items: center; 
    gap: 0.65rem; 
}
.footer-logo img { 
    height: 26px; 
    width: 26px; 
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-logo span { 
    font-family: var(--font-mono); 
    font-size: 0.8rem; 
    font-weight: 700; 
}
.footer-col h4 { 
    font-family: var(--font-mono); 
    font-size: 0.7rem; 
    font-weight: 700; 
    letter-spacing: 0.12em; 
    text-transform: uppercase; 
    color: var(--white); 
    margin-bottom: 1.35rem; 
}
.footer-col a { 
    display: block; 
    font-size: 0.82rem; 
    color: var(--muted); 
    padding: 0.4rem 0; 
    transition: color 0.3s var(--ease-premium); 
}
.footer-col a:hover { 
    color: var(--white); 
}
.footer-bottom { 
    border-top: 1px solid var(--border); 
    padding-top: 1.75rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.footer-bottom p { 
    font-family: var(--font-mono); 
    font-size: 0.72rem; 
    color: var(--muted); 
}
.footer-link-text { 
    font-family: var(--font-mono); 
    font-size: 0.72rem; 
    color: var(--muted); 
    transition: color 0.3s var(--ease-premium); 
}
.footer-link-text:hover { 
    color: var(--pink); 
}

/* ═══════════════ INTERSECTION REVEALS ═══════════════ */
.reveal { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.8s var(--ease-premium), transform 0.8s var(--ease-premium); 
}
.reveal.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* ═══════════════ BACK TO TOP BUTTON ═══════════════ */
.btt { 
    position: fixed; 
    bottom: 2rem; 
    right: 2rem; 
    width: 44px; 
    height: 44px; 
    background: rgba(17,17,19,0.8); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border); 
    border-radius: 9px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    z-index: 100; 
    opacity: 0; 
    transform: translateY(15px); 
    transition: all 0.3s var(--ease-premium); 
    color: var(--white);
}
.btt.visible { 
    opacity: 1; 
    transform: translateY(0); 
}
.btt:hover { 
    border-color: rgba(255,45,85,0.4); 
    box-shadow: 0 0 20px rgba(255,45,85,0.15); 
    color: var(--pink);
    transform: translateY(-2px);
}

/* ═══════════════ COMPLETE RESPONSIVE BREAKPOINTS ═══════════════ */

/* 1. Desktop Width Cap (1400px) */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

/* 2. Tablet Responsive Mode (1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 2rem;
    }
    
    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 3.5rem;
    }
    .hero p { 
        margin-left: auto; 
        margin-right: auto; 
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-indicators { 
        justify-content: center; 
    }
    
    /* 
      Centering and Scaling the Interactive Console on Tablets instead of completely hiding it.
      This preserves visual premium branding while completely preventing viewport bleeding.
    */
    .hero-visual { 
        display: flex; 
        max-width: 500px;
        height: 340px;
        margin: 0 auto;
        transform: scale(0.9);
        transform-origin: center;
    }
    .flex-card-status {
        top: 10%;
        left: 2%;
    }
    .flex-card-load {
        bottom: 8%;
        right: 2%;
    }
    
    .why-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.25rem;
    }
    .services-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.25rem;
    }
    .plans-grid { 
        grid-template-columns: 1fr; 
        max-width: 480px; 
        margin: 0 auto; 
    }
    
    .footer-top { 
        grid-template-columns: 1.5fr 1fr; 
        gap: 2.5rem;
    }
    .section-pad { 
        padding: var(--section-tab) 0; 
    }
    .hero { 
        padding-top: 170px; 
    }
}

/* 3. Small Tablet Mode (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 1.5rem;
    }
    
    .navbar {
        top: 1rem;
        width: calc(100% - 2rem);
        padding: 0.65rem 1.25rem;
    }
    .nav-links { 
        display: none; 
    }
    .mobile-toggle { 
        display: flex; 
    }
    
    /* Hide visualizer on mobile screens to preserve page performance & structural speed */
    .hero-visual { 
        display: none; 
    }
    
    .status-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.25rem;
    }
    .status-item {
        padding: 1.25rem;
        background: var(--bg-soft);
        border: 1px solid var(--border);
        border-radius: 12px;
    }
    
    .why-grid { 
        grid-template-columns: 1fr; 
        gap: 1.25rem;
    }
    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 1.25rem;
    }
    
    /* Rebuild Horizontal Protocol Timeline to Linear-Vertical Step Modules */
    .timeline { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
        text-align: left; 
    }
    .timeline::before { 
        display: none; 
    }
    .timeline-step { 
        display: grid; 
        grid-template-columns: auto 1fr; 
        gap: 1.25rem; 
        text-align: left; 
        padding: 0; 
    }
    .step-dot { 
        margin: 0; 
        width: 46px; 
        height: 46px; 
    }
    
    .footer-top { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .footer-bottom { 
        flex-direction: column; 
        gap: 1rem; 
        text-align: center; 
    }
    .contact-box { 
        padding: 3rem 1.5rem; 
    }
    .section-pad { 
        padding: var(--section-mob) 0; 
    }
    .hero { 
        padding-top: 140px; 
    }
    
    .btn-primary, .btn-outline { 
        backdrop-filter: none; 
        -webkit-backdrop-filter: none; 
    }
}

/* 4. Large Mobile Mode (480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .status-grid { 
        grid-template-columns: 1fr; 
        gap: 1rem;
    }
    
    .hero h1 { 
        font-size: 2.15rem; 
    }
    .hero-indicators { 
        flex-direction: column; 
        gap: 1.25rem; 
        align-items: center; 
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .btn-primary, .btn-outline { 
        width: 100%; 
        justify-content: center; 
        padding: 0.9rem 1.5rem; 
        font-size: 0.8rem; 
    }
    
    .hero { 
        padding-top: 125px; 
    }
    .contact-box {
        padding: 2.5rem 1.25rem;
    }
    
    .ig-preview-img {
        width: 72px;
        height: 72px;
    }
    .ig-preview-info {
        padding: 0.95rem;
    }
}

/* 5. Compact Mobile Mode (320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 1rem;
    }
    .nav-logo-text {
        font-size: 0.72rem;
    }
    .hero h1 {
        font-size: 1.85rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
    .why-card, .service-card {
        padding: 1.5rem 1.25rem;
    }
    .plan-terminal {
        padding: 2.5rem 1.5rem;
    }
}

/* ═══════════════ ACCESSIBILITY REDUCED MOTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { 
        animation-duration: 0.01ms !important; 
        animation-iteration-count: 1 !important; 
        transition-duration: 0.01ms !important; 
    }
    html { 
        scroll-behavior: auto; 
    }
    .reveal { 
        opacity: 1; 
        transform: none; 
    }
    .mobile-nav a { 
        opacity: 1; 
        transform: none; 
    }
    .mobile-cta { 
        opacity: 1; 
        transform: none; 
    }
    #loader { 
        display: none; 
    }
    .matrix-grid {
        animation: none !important;
    }
    .float-card {
        animation: none !important;
    }
}
