/* CSS Variables - Dreamcore Violet × Stardust Pink Theme */
:root {
    --color-bg-light: #fdf4ff;
    --color-white: #ffffff;
    --color-text-dark: #0e0020;
    --color-text-muted: #7c6590;

    /* The signature gradient — 5-stop nebula sweep */
    --gradient-hero: linear-gradient(115deg, #5b21b6 0%, #7c3aed 30%, #a855f7 58%, #d946ef 80%, #f5d0fe 100%);
    --gradient-purple: linear-gradient(135deg, #6d28d9 0%, #a855f7 50%, #d946ef 100%);

    --color-primary: #d946ef;
    --color-accent: #9333ea;
    --color-green: #00b67a; /* Trustpilot green */

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-pill: 50px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-heavy: 0 20px 50px rgba(0, 0, 0, 0.3);

    --font-main: 'Poppins', system-ui, -apple-system, sans-serif;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
/* overflow-x: clip on html avoids creating a new scroll container (fixes scroll-to-bottom in Safari) */
html { overflow-x: clip; }
body { overflow-x: clip; font-family: var(--font-main); background-color: var(--color-white); color: var(--color-text-dark); line-height: 1.6; max-width: 100vw; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* === Header === */
#site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}
header {
    background-color: var(--color-white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text-dark);
    letter-spacing: -0.5px;
}
.logo svg { width: 32px; height: 32px; }

.nav-links { display: flex; gap: 32px; font-weight: 500; font-size: 15px; }
.nav-links a { color: var(--color-text-muted); position: relative; transition: color 0.2s; }
.nav-links a:hover { color: var(--color-text-dark); }
.nav-links a.active { color: var(--color-primary); font-weight: 600; }
.nav-links a.active::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
    background-color: var(--color-primary); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 20px; }
.action-icon { color: var(--color-text-muted); display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; cursor: pointer; }
.action-icon .kbd { font-size: 10px; background: #eee; padding: 2px 6px; border-radius: 4px; margin-left: 4px; }

/* Language selector dropdown */
.lang-selector { position: relative; user-select: none; }
.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 140px;
    overflow: hidden;
    z-index: 999;
}
.lang-selector.lang-open .lang-dropdown { display: block; }
.lang-option {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.lang-option:hover { background: rgba(0,0,0,0.04); color: var(--color-text-dark); }
.lang-option.lang-active { color: var(--color-primary); font-weight: 600; }

/* Mobile nav lang bar — hidden on desktop, shown in mobile menu */
.nav-lang-bar { display: none; }

.btn-download {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 2px solid var(--color-text-dark);
    padding: 8px 24px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}
.btn-download:hover { background-color: var(--color-text-dark); color: var(--color-white); }

/* Mobile hamburger button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}

/* Hamburger → close animation */
header.nav-open .mobile-menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.nav-open .mobile-menu-btn span:nth-child(2) { opacity: 0; transform: scaleX(0); }
header.nav-open .mobile-menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
@keyframes menuSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* === Hero Section === */
.hero {
    position: relative;
    color: var(--color-white);
    padding: 100px 0 120px;
    overflow: hidden;
    min-height: 660px;
}

/* Left panel: (inverted trapezoid — wider at top) */
.hero-bg-left {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    clip-path: polygon(0 0, 58% 0, 46% 100%, 0 100%);
    z-index: 0;
}
/* Decorative glow orbs inside left panel */
.hero-bg-left::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -60px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(217,70,239,0.10) 45%, transparent 70%);
    pointer-events: none;
}
.hero-bg-left::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, transparent 65%);
    pointer-events: none;
}

/* Right panel: (regular trapezoid — wider at bottom) */
.hero-bg-right {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, #0d0020 0%, rgba(13,0,32,0.55) 18%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0) 100%),
        url('../../../assets/images/hero-bg.jpg') right center / cover no-repeat;
    clip-path: polygon(58% 0, 100% 0, 100% 100%, 46% 100%);
    z-index: 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 600px; }

/* Badge above title */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.30);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}
.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80, 0 0 12px rgba(74,222,128,0.5);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px #4ade80, 0 0 12px rgba(74,222,128,0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 3px #4ade80; }
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

/* Gradient highlight on key words in title */
.hero-title-highlight {
    background: linear-gradient(90deg, #f9a8d4 0%, #e879f9 40%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p { font-size: 16px; opacity: 0.85; line-height: 1.8; margin-bottom: 36px; }

/* CTA button row */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #5b21b6;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.22), 0 0 0 0 rgba(255,255,255,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.28), 0 0 0 4px rgba(255,255,255,0.15);
}

.btn-hero-ghost {
    color: rgba(255,255,255,0.88);
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.btn-hero-ghost:hover { color: #fff; border-color: #fff; }

/* Platform row — replaces old pills */
.hero-platforms {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-platforms-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.5;
    white-space: nowrap;
}
.hero-platform-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hpi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.75;
    transition: opacity 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
}
.hpi:hover { opacity: 1; transform: translateY(-2px); }
.hpi svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    flex-shrink: 0;
}
.hpi em {
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

/* === Hero Visual — Globe Image === */
.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; }

.hero-img-wrap {
    width: 100%;
    max-width: 580px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 0 80px rgba(217,70,239,0.28),
        0 0 40px rgba(129,140,248,0.18),
        0 40px 80px rgba(0,0,0,0.55),
        0 0 0 1px rgba(167,139,250,0.18);
}

/* Subtle purple tint overlay on top of the image */
.hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(217,70,239,0.12) 0%,
        transparent 45%,
        rgba(129,140,248,0.1) 100%
    );
    pointer-events: none;
    border-radius: inherit;
}

.hero-globe-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
}

.hv-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.hv-glow-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(240,171,252,0.75) 0%, rgba(217,70,239,0.45) 55%, transparent 100%); top: -80px; right: -50px; }
.hv-glow-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(124,58,237,0.7) 0%, rgba(59,13,140,0.4) 55%, transparent 100%); bottom: -50px; left: -20px; }

.hv-card-main {
    background: rgba(255,255,255,0.09);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 24px;
    padding: 28px;
    width: 390px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
    position: relative;
    z-index: 1;
    color: white;
}

.hv-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.hv-dots { display: flex; gap: 6px; }
.hv-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.hv-dots i:nth-child(1) { background: #ff5f56; }
.hv-dots i:nth-child(2) { background: #ffbd2e; }
.hv-dots i:nth-child(3) { background: #27c93f; }
.hv-card-title { font-size: 14px; font-weight: 700; opacity: 0.85; }
.hv-connected { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; background: rgba(74,222,128,0.15); border: 1px solid rgba(74,222,128,0.3); padding: 4px 10px; border-radius: 20px; color: #4ade80; }
.hv-dot-green { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; display: inline-block; flex-shrink: 0; box-shadow: 0 0 6px #4ade80; }
.hv-dot-yellow { width: 7px; height: 7px; background: #fbbf24; border-radius: 50%; display: inline-block; flex-shrink: 0; }

.hv-active-node {
    background: linear-gradient(135deg, rgba(240,171,252,0.18) 0%, rgba(217,70,239,0.28) 50%, rgba(147,51,234,0.22) 100%);
    border: 1px solid rgba(240,171,252,0.3);
    border-radius: 16px; padding: 16px;
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 4px 20px rgba(217,70,239,0.2);
}
.hv-node-icon { width: 46px; height: 46px; background: linear-gradient(135deg, #d946ef, #9333ea); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0; box-shadow: 0 4px 16px rgba(217,70,239,0.6), 0 0 0 1px rgba(240,171,252,0.2); }
.hv-node-info { flex: 1; }
.hv-node-info strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.hv-node-info span { font-size: 11px; opacity: 0.65; }
.hv-latency { font-size: 24px; font-weight: 800; color: #4ade80; line-height: 1; text-shadow: 0 0 12px rgba(74,222,128,0.5); }
.hv-latency small { font-size: 11px; font-weight: 600; opacity: 0.8; }

.hv-speed-row { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.06); border-radius: 14px; padding: 16px; margin-bottom: 18px; }
.hv-speed-item { flex: 1; display: flex; align-items: center; gap: 10px; }
.hv-arrow { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; flex-shrink: 0; }
.hv-arrow.up { background: rgba(248,113,113,0.2); color: #f87171; }
.hv-arrow.down { background: rgba(74,222,128,0.2); color: #4ade80; }
.hv-speed-item strong { display: block; font-size: 18px; font-weight: 800; line-height: 1.2; }
.hv-speed-item small { font-size: 11px; font-weight: 500; opacity: 0.7; }
.hv-speed-item span { font-size: 11px; opacity: 0.55; display: block; margin-top: 2px; }
.hv-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

.hv-section-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; opacity: 0.45; text-transform: uppercase; margin-bottom: 10px; }
.hv-node-list { display: flex; flex-direction: column; gap: 7px; }
.hv-node-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; background: rgba(255,255,255,0.04); font-size: 13px; border: 1px solid transparent; }
.hv-node-item.active { background: linear-gradient(90deg, rgba(217,70,239,0.18), rgba(147,51,234,0.12)); border-color: rgba(240,171,252,0.3); }
.hv-ni-name { flex: 1; font-weight: 600; font-size: 13px; }
.hv-ni-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.hv-ni-bar i { display: block; height: 100%; background: rgba(255,255,255,0.25); border-radius: 2px; }
.hv-node-item.active .hv-ni-bar i { background: linear-gradient(90deg, #d946ef, #f0abfc); }
.hv-ni-ms { font-size: 12px; font-weight: 700; opacity: 0.55; min-width: 44px; text-align: right; }
.hv-ni-ms.good { color: #4ade80; opacity: 1; }

/* Floating badges */
.hv-badge {
    position: absolute; z-index: 2;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px; padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    color: white; box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.hv-badge strong { display: block; font-size: 15px; font-weight: 800; line-height: 1.2; }
.hv-badge small { font-size: 11px; opacity: 0.65; font-weight: 500; display: block; }
.hv-badge-stars { top: -18px; left: -24px; }
.hv-badge-shield { bottom: 70px; left: -44px; color: #f0abfc; }
.hv-badge-ping { bottom: -18px; right: -16px; }

.hv-ping-rings { position: relative; width: 28px; height: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hv-ping-rings span { position: absolute; width: 100%; height: 100%; border: 2px solid #4ade80; border-radius: 50%; animation: hvPing 1.8s ease-out infinite; }
.hv-ping-rings span:nth-child(2) { animation-delay: 0.9s; }
@keyframes hvPing { 0% { transform: scale(0.3); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

/* === Feature Highlights Strip === */
.feat-strip {
    background: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0;
}
.feat-strip-grid {
    display: flex;
    align-items: stretch;
    padding: 0;
}
.fs-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    transition: background 0.2s;
}
.fs-item:hover { background: #fdf4ff; }
.fs-divider {
    width: 1px;
    background: rgba(0,0,0,0.07);
    align-self: stretch;
    margin: 18px 0;
}
.fs-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fs-icon-wrap svg { width: 22px; height: 22px; }
.fs-icon-purple { background: #f3e8ff; color: #7c3aed; }
.fs-icon-green  { background: #dcfce7; color: #15803d; }
.fs-icon-pink   { background: #fce7f3; color: #be185d; }
.fs-icon-yellow { background: #fef9c3; color: #b45309; }
.fs-body { display: flex; flex-direction: column; gap: 3px; }
.fs-body strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.3;
}
.fs-body span {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
    line-height: 1.4;
}
@media (max-width: 900px) {
    .feat-strip-grid { flex-wrap: wrap; }
    .fs-item { flex: 1 1 45%; padding: 20px 24px; }
    .fs-divider { display: none; }
    .fs-item:not(:last-child) { border-bottom: 1px solid rgba(0,0,0,0.06); }
}
@media (max-width: 580px) {
    .fs-item { flex: 1 1 100%; }
}

/* === Use Cases Section === */
.use-cases { padding: 100px 0; background: var(--color-white); }
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fae8ff; color: var(--color-primary);
    padding: 6px 16px; border-radius: var(--border-radius-pill);
    font-size: 12px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 24px;
}
.use-cases h2 { font-size: 44px; font-weight: 800; max-width: 700px; margin-bottom: 24px; line-height: 1.2; letter-spacing: -0.5px; }
.use-cases p { font-size: 16px; color: var(--color-text-muted); max-width: 600px; margin-bottom: 60px; line-height: 1.6; }

.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.uc-card {
    background: var(--color-bg-light);
    border-radius: 24px;
    height: 380px;
    position: relative;
    overflow: hidden;
    display: flex; align-items: flex-end;
    padding: 40px;
}
/* Card 1: streaming — deep dark purple with radial spotlight */
.uc-card-1 {
    grid-row: span 2;
    height: 100%;
    background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(109,40,217,0.55) 0%, transparent 70%),
                linear-gradient(160deg, #09001e 0%, #170038 55%, #2d0c6e 100%);
    color: white;
    justify-content: center;
    align-items: center;
}
/* Card 2: dev/remote — indigo-violet diagonal gradient */
.uc-card-2 {
    background: radial-gradient(ellipse 100% 80% at 0% 100%, rgba(217,70,239,0.25) 0%, transparent 60%),
                linear-gradient(145deg, #1e1b4b 0%, #3730a3 40%, #6d28d9 100%);
    color: white;
}
/* Card 3: gaming — vivid violet-to-fuchsia gradient */
.uc-card-3 {
    background: radial-gradient(ellipse 90% 70% at 100% 0%, rgba(240,171,252,0.2) 0%, transparent 55%),
                linear-gradient(145deg, #3b0764 0%, #7c3aed 50%, #c026d3 100%);
    color: white;
}

.uc-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 8px; z-index: 1;}
.uc-card p { font-size: 14px; color: rgba(255,255,255,0.9); margin-bottom: 0; z-index: 1; max-width: 90%; line-height: 1.7;}
.uc-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 16px;
    border-radius: var(--border-radius-pill);
    font-size: 12px;
    font-weight: 600;
}

.fake-netflix { font-size: 64px; font-weight: 900; color: #e50914; letter-spacing: 2px; }

/* === Downloads Section === */
.downloads { padding: 100px 0; background: var(--color-bg-light); text-align: center; }
.downloads h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.downloads p { color: var(--color-text-muted); margin-bottom: 60px; }

.dl-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.dl-pill {
    background: var(--color-white);
    display: flex; align-items: center; justify-content: space-between;
    width: 240px; padding: 16px 24px;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    font-weight: 600; font-size: 18px;
    transition: all 0.3s;
    cursor: pointer;
}
.dl-pill:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.dl-left { display: flex; align-items: center; gap: 12px; }
.dl-left svg { width: 24px; height: 24px; fill: var(--color-text-dark); }
.dl-arrow { width: 32px; height: 32px; background: var(--color-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white;}
.dl-arrow svg { width: 14px; height: 14px; fill: white; }

.core-banner {
    background: var(--gradient-purple);
    border-radius: var(--border-radius-md);
    padding: 40px 60px;
    display: flex; align-items: center; justify-content: space-between;
    text-align: left;
    color: white;
    margin: 0 auto;
    max-width: 1000px;
}
.core-banner h3 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.core-banner p { font-size: 15px; color: #ffd6fa; margin: 0; }
.btn-dark-pill {
    background: rgba(0,0,0,0.4); color: white; padding: 16px 32px; border-radius: var(--border-radius-pill);
    font-weight: 600; font-size: 15px; transition: background 0.2s;
}
.btn-dark-pill:hover { background: rgba(0,0,0,0.6); }

/* === Stats === */
.stats { padding: 60px 0; display: flex; justify-content: center; gap: 100px; border-bottom: 1px solid #eee; background: var(--color-white);}
.stat-item { display: flex; align-items: center; gap: 20px; text-align: left;}
.s-val { font-size: 48px; font-weight: 800; letter-spacing: -2px; display: flex; align-items: center; gap: 8px;}
.s-val svg { width: 32px; height: 32px; fill: var(--color-green); }
.s-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.4; max-width: 120px; font-weight: 500;}

/* === Reviews === */
.reviews { padding: 100px 0; background: var(--color-bg-light); }
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.review-card { background: var(--color-white); padding: 32px; border-radius: 20px; box-shadow: var(--shadow-soft); }
.stars { color: var(--color-green); margin-bottom: 16px; font-size: 18px; }
.review-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.review-card p { font-size: 14px; color: var(--color-text-muted); margin-bottom: 24px; min-height: 80px;}
.r-author { font-weight: 700; font-size: 14px; }
.r-verify { font-size: 12px; color: var(--color-green); display: flex; align-items: center; gap: 4px; margin-top: 4px; font-weight: 500;}

/* === How to Use === */
.how-to { background: var(--gradient-hero); color: white; padding: 120px 0; border-radius: 40px 40px 0 0; }
.ht-inner { display: flex; align-items: center; gap: 60px; }
.ht-text { flex: 1; }
.ht-text h2 { font-size: 48px; font-weight: 800; margin-bottom: 16px; letter-spacing: -1px;}
.ht-text > p { font-size: 18px; opacity: 0.9; margin-bottom: 48px; }

.step { display: flex; gap: 24px; margin-bottom: 40px; }
.step-link {
    display: flex;
    gap: 24px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 16px;
    margin: 0 -16px 16px;
    border-radius: 12px;
    transition: background 0.2s, transform 0.2s;
}
.step-link:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); }
.step-link:hover .step-arrow { opacity: 1; transform: translateX(2px); }
.step-body { flex: 1; }
.step-arrow { flex-shrink: 0; opacity: 0.35; transition: opacity 0.2s, transform 0.2s; }
.step-num { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0;}
.step h4, .step-link h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step p, .step-link p { font-size: 15px; opacity: 0.8; line-height: 1.6; }

.ht-visual { flex: 1; display: flex; justify-content: flex-end; }
.ht-image-ph { width: 100%; max-width: 500px; height: 350px; background: rgba(255,255,255,0.1); border: 12px solid rgba(255,255,255,0.2); border-radius: 24px; box-shadow: var(--shadow-heavy); backdrop-filter: blur(10px); }

/* === Footer === */
footer { background: var(--color-white); padding: 60px 0 40px; border-top: 1px solid #eee; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.f-brand p { color: var(--color-text-muted); font-size: 14px; margin-top: 16px; max-width: 300px;}
.f-col h5 { font-size: 16px; font-weight: 700; margin-bottom: 24px; }
.f-col ul li { margin-bottom: 12px; }
.f-col ul a { color: var(--color-text-muted); font-size: 14px; font-weight: 500; transition: color 0.2s;}
.f-col ul a:hover { color: var(--color-primary); }
.footer-bottom { text-align: center; color: var(--color-text-muted); font-size: 14px; border-top: 1px solid #eee; padding-top: 32px; display: flex; justify-content: space-between;}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner, .ht-inner { flex-direction: column; text-align: center; }
    .hero-content, .ht-text { max-width: 100%; }
    .platform-pills { justify-content: center; }
    .hero-bg-left { clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%); }
    .hero-bg-right { clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%); }
    .ht-visual { margin-top: 40px; width: 100%; justify-content: center; }
    .step { text-align: left; }
    .stats { flex-wrap: wrap; gap: 40px; }

    /* Bento grid: single-column on tablet — each card full width */
    .fb-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
    }
    .fb-cell {
        width: 100% !important;
        max-width: none !important;
        box-sizing: border-box !important;
        grid-column: unset !important;
        grid-row: unset !important;
        flex: 0 0 auto !important;
        align-self: stretch !important;
    }
    .fb-tun {
        grid-column: unset !important;
        min-height: auto !important;
    }

    /* Protocol + CTA font adjustments */
    .proto-split { flex-direction: column; gap: 48px; }
    .proto-code-panel { flex: none; max-width: 100%; }
    .fb-tun h3 { font-size: 26px; }
    .fb-rules h3 { font-size: 22px; }
    .speed-big { font-size: 56px; }
    .fcta-wrap h2 { font-size: 40px; }
    .ht-image-ph { max-width: 100%; height: 240px; }
}
@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    .header-actions { display: none; }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 12px 0 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        border-top: 1px solid rgba(0,0,0,0.06);
    }
    .nav-links a {
        padding: 14px 24px;
        font-size: 16px;
    }
    .nav-links a.active::after { display: none; }

    header.nav-open .nav-links {
        display: flex;
        animation: menuSlideDown 0.2s ease forwards;
    }

    /* Mobile nav language bar — flat pill list */
    .nav-lang-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 24px 16px;
        border-top: 1px solid rgba(0,0,0,0.06);
        margin-top: 4px;
    }
    .nav-lang-item {
        display: inline-flex;
        align-items: center;
        padding: 5px 14px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
        color: var(--color-text-muted);
        border: 1px solid rgba(0,0,0,0.10);
        cursor: pointer;
        transition: border-color 0.15s, color 0.15s, background 0.15s;
        white-space: nowrap;
    }
    .nav-lang-item:hover { border-color: var(--color-primary); color: var(--color-primary); }
    .nav-lang-item.nav-lang-item-active {
        color: var(--color-primary);
        border-color: var(--color-primary);
        background: rgba(124,58,237,0.06);
        font-weight: 600;
    }

    .hero { padding: 80px 0 100px; }
    .hero-bg-left { clip-path: polygon(0 0, 100% 0, 100% 45%, 0 100%); }
    .hero-bg-right { clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%); }
    .hero-content h1 { font-size: 28px; letter-spacing: -0.5px; }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .btn-hero-primary {
        font-size: 15px;
        padding: 14px 0;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    .btn-hero-ghost { font-size: 14px; }
    .hero-badge { font-size: 12px; }
    .cards-grid, .review-grid, .footer-grid { grid-template-columns: 1fr; }
    .uc-card-1 { grid-row: auto; height: auto; min-height: 340px; padding-top: 70px; }
    .uc-card-1 .fake-netflix { font-size: 42px; }
    .uc-card-2, .uc-card-3 { height: auto; min-height: 220px; }
    .core-banner { flex-direction: column; text-align: center; gap: 24px; padding: 30px 20px;}

    .footer-bottom { flex-direction: column; gap: 16px; }
    .proto-split { flex-direction: column; gap: 40px; }
    .proto-code-panel { max-width: 100%; }
    .pcp-body { font-size: 12px; }
    /* Bento grid: stacked single column on mobile */
    .fb-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    .fb-cell {
        width: 100% !important;
        max-width: none !important;
        box-sizing: border-box !important;
        padding: 28px 24px !important;
        grid-column: unset !important;
        grid-row: unset !important;
        flex: 0 0 auto !important;
        align-self: stretch !important;
    }
    .fb-tun {
        grid-column: unset !important;
        min-height: auto !important;
    }

    /* tun-viz: pull out of absolute flow on mobile */
    .tun-viz {
        position: relative;
        right: auto;
        bottom: auto;
        width: 80px;
        height: 80px;
        margin: 20px auto 0;
    }
    .fb-tun h3 { font-size: 22px; }
    .fb-rules h3 { font-size: 20px; }
    .fb-chips { padding-top: 16px; }
    .speed-big { font-size: 56px; }
    .faq-head h2 { font-size: 28px; }
    .fcta-wrap { padding: 60px 24px; }
    .fcta-wrap h2 { font-size: 32px; }
    .fcta-actions { flex-direction: column; align-items: center; gap: 16px; }
    .fcta-gh { width: 100%; justify-content: center; }
    .fq-num { display: none; }
}

/* =========================================
 PROTOCOL SUPPORT SECTION
 ========================================= */
.proto-support {
    background: #0a0014;
    padding: 0 0 100px;
    overflow: hidden;
}

/* Scrolling ticker strip */
.proto-ticker-wrap {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
    overflow: hidden;
    margin-bottom: 80px;
}
.proto-ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 32s linear infinite;
}
.proto-ticker-track span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(240,171,252,0.7);
    padding: 0 16px;
    letter-spacing: 0.3px;
}
.proto-ticker-track .pt-dot {
    color: rgba(217,70,239,0.4);
    padding: 0 4px;
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Two-column layout */
.proto-split {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

/* Left: terminal code block */
.proto-code-panel {
    flex: 0 0 480px;
    background: #100022;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(217,70,239,0.1);
}
.pcp-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pcp-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.pcp-red    { background: #ff5f57; }
.pcp-yellow { background: #febc2e; }
.pcp-green  { background: #28c840; }
.pcp-filename {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    margin-left: 8px;
    font-family: 'SF Mono', 'Fira Code', monospace;
}
.pcp-body {
    padding: 28px 28px 32px;
    margin: 0;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 13.5px;
    line-height: 1.85;
    color: #c9b3de;
    white-space: pre;
    overflow-x: auto;
}
/* YAML syntax colors */
.y-key    { color: #f0abfc; }
.y-colon  { color: rgba(255,255,255,0.3); }
.y-dash   { color: rgba(217,70,239,0.6); }
.y-str    { color: #86efac; }
.y-val    { color: #7dd3fc; }
.y-num    { color: #fbbf24; }
.y-bool   { color: #f87171; }
.y-comment { color: rgba(255,255,255,0.28); font-style: italic; }

/* Right: protocol info */
.proto-info {
    flex: 1;
    padding-top: 16px;
}
.proto-info h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 20px;
}
.proto-info > p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 40px;
}
.proto-info .section-badge {
    background: rgba(217,70,239,0.15);
    color: #f0abfc;
    border: 1px solid rgba(217,70,239,0.25);
}
.proto-feature-list { display: flex; flex-direction: column; gap: 20px; }
.pfl-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.pfl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}
.pfl-pink   { background: #f0abfc; box-shadow: 0 0 8px rgba(240,171,252,0.5); }
.pfl-blue   { background: #7dd3fc; box-shadow: 0 0 8px rgba(125,211,252,0.5); }
.pfl-green  { background: #86efac; box-shadow: 0 0 8px rgba(134,239,172,0.5); }
.pfl-yellow { background: #fbbf24; box-shadow: 0 0 8px rgba(251,191,36,0.5); }
.pfl-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.pfl-item em {
    font-style: normal;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

/* =========================================
 FEATURES BENTO GRID SECTION
 ========================================= */
.feat-bento {
    padding: 100px 0;
    background: #fdf4ff;
}
.fb-intro {
    margin-bottom: 60px;
    max-width: 640px;
}
.fb-intro h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.15;
}
.fb-intro p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Asymmetric 3-col bento grid */
.fb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.fb-cell {
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}
.fb-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* TUN: wide dark cell (spans cols 1-2) */
.fb-tun {
    grid-column: 1 / 3;
    background: #0a0014;
    color: #fff;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}
.fb-tun .fb-tag {
    background: rgba(217,70,239,0.2);
    color: #f0abfc;
    border: 1px solid rgba(217,70,239,0.3);
    align-self: flex-start;
}
.fb-tun h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}
.fb-tun > p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    max-width: 380px;
}
/* Animated pulse rings visual */
.tun-viz {
    position: absolute;
    right: 40px;
    bottom: 40px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tun-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(217,70,239,0.5);
    animation: tunRingOut 3s ease-out infinite;
}
.tun-pulse-2 { animation-delay: 1.5s; }
@keyframes tunRingOut {
    0%   { transform: scale(0.2); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}
.tun-core-lbl {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #f0abfc;
    text-shadow: 0 0 20px rgba(217,70,239,0.6);
}
.fb-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 24px;
}
.fb-chips span {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Speed: narrow right cell (col 3, row 1) */
.fb-speed {
    grid-column: 3;
    grid-row: 1;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.fb-speed .fb-tag {
    background: #fae8ff;
    color: var(--color-primary);
}
.speed-big {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}
.speed-big small {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}
.fb-speed > p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}
/* Mini bar chart */
.speed-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 60px;
    margin-top: auto;
    width: 100%;
}
.sc-bar {
    flex: 1;
    height: var(--bh);
    background: rgba(147,51,234,0.18);
    border-radius: 4px 4px 0 0;
    transition: background 0.2s;
}
.sc-active { background: #9333ea !important; }

/* DNS: narrow left cell (col 1, row 2) */
.fb-dns {
    grid-column: 1;
    grid-row: 2;
    background: linear-gradient(145deg, #1a0030, #2d0054);
    color: #fff;
}
.fb-dns .fb-tag {
    background: rgba(134,239,172,0.15);
    color: #86efac;
    border: 1px solid rgba(134,239,172,0.2);
}
.dns-chain {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.dc-node {
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}
.dc-bad { background: rgba(248,113,113,0.2); border: 1px solid rgba(248,113,113,0.3); color: #f87171; }
.dc-mid { background: rgba(217,70,239,0.25); border: 1px solid rgba(217,70,239,0.4); color: #f0abfc; }
.dc-ok  { background: rgba(134,239,172,0.2); border: 1px solid rgba(134,239,172,0.3); color: #86efac; }
.dc-arrow { font-size: 14px; color: rgba(255,255,255,0.3); }
.fb-dns > p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* Rule Engine: wide light cell (cols 2-3, row 2) */
.fb-rules {
    grid-column: 2 / 4;
    grid-row: 2;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
}
.fb-rules .fb-tag {
    background: #faf5ff;
    color: var(--color-accent);
    border: 1px solid #e9d5ff;
}
.fb-rules h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.fb-rules > p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-top: 16px;
    max-width: 480px;
}
/* Rule rows preview */
.rule-rows { display: flex; flex-direction: column; gap: 8px; }
.rr {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #faf5ff;
    font-family: 'SF Mono', 'Fira Code', monospace;
}
.rr-hl { background: #f5f0ff; border: 1px solid #e9d5ff; }
.rr-t {
    font-size: 11px;
    font-weight: 700;
    color: #9333ea;
    min-width: 140px;
}
.rr-v {
    font-size: 12px;
    color: var(--color-text-muted);
    flex: 1;
}
.rr-a {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
}
.rr-proxy { background: #fae8ff; color: #a21caf; }
.rr-direct { background: #dcfce7; color: #15803d; }

/* =========================================
 FAQ SECTION
 ========================================= */
.faq-sec {
    padding: 100px 0;
    background: var(--color-white);
}
.faq-head {
    max-width: 600px;
    margin-bottom: 60px;
}
.faq-head h2 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.15;
}
.faq-head p {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.65;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
}
.faq-q:hover .fq-text { color: var(--color-primary); }
.fq-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.5;
    min-width: 28px;
    font-family: 'SF Mono', monospace;
}
.fq-text {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: color 0.2s;
    line-height: 1.4;
}
.fq-chevron {
    fill: var(--color-text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .fq-chevron { transform: rotate(180deg); }
.faq-q[aria-expanded="true"] .fq-text { color: var(--color-primary); }
.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0 0 48px;
}
.faq-a.open {
    max-height: 400px;
    padding: 0 0 24px 48px;
}
.faq-a p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
}
.faq-a p strong { color: var(--color-text-dark); }
.faq-a p code {
    background: #fae8ff;
    color: #9333ea;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 13px;
    padding: 2px 6px;
    border-radius: 4px;
}

/* =========================================
 FINAL CTA SECTION
 ========================================= */
.final-cta {
    padding: 80px 0;
    background: var(--color-bg-light);
}
.fcta-wrap {
    position: relative;
    background: #08001a;
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
/* Decorative glows */
.fcta-glow-1, .fcta-glow-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.fcta-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217,70,239,0.3) 0%, transparent 70%);
    top: -150px;
    left: -80px;
}
.fcta-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
    bottom: -120px;
    right: -60px;
}
.fcta-eyebrow {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 600;
    color: rgba(240,171,252,0.7);
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}
.fcta-wrap h2 {
    position: relative;
    z-index: 1;
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.fcta-wrap h2 span {
    background: linear-gradient(90deg, #f0abfc 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.fcta-sub {
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
}
.fcta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
/* Override btn-hero-primary for dark bg */
.fcta-actions .btn-hero-primary {
    background: #fff;
    color: #5b21b6;
}
.fcta-gh {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.25s;
}
.fcta-gh:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.fcta-gh svg { fill: currentColor; }

/* =========================================
 MOBILE (≤480px) — small phones
 ========================================= */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Hero */
    .hero { padding: 64px 0 80px; }
    .hero-content h1 { font-size: 24px; }
    .platform-pills { gap: 8px; }
    .platform-pill { font-size: 12px; padding: 6px 12px; }

    /* Bento cards inner fixes */
    .fb-cell { padding: 22px 18px; }
    .fb-tun h3 { font-size: 20px; }
    .fb-rules h3 { font-size: 18px; }
    .speed-big { font-size: 44px; letter-spacing: -2px; }

    /* Rule rows — shrink min-width so type column fits on tiny screens */
    .rr { gap: 6px; padding: 8px 10px; }
    .rr-t { min-width: 100px; font-size: 10px; }
    .rr-v { font-size: 11px; }

    /* DNS chain — stack vertically on very small screens */
    .dns-chain { gap: 6px; }
    .dc-node { padding: 6px 10px; font-size: 11px; }

    /* TUN viz — keep centred and proportional */
    .tun-viz { width: 64px; height: 64px; }
    .tun-core-lbl { font-size: 16px; }

    /* FAQ */
    .fq-text { font-size: 15px; }
    .faq-head h2 { font-size: 24px; }

    /* CTA */
    .fcta-wrap h2 { font-size: 26px; }
    .btn-hero-primary { font-size: 14px; }
    .fcta-actions .btn-hero-primary { width: 100%; justify-content: center; }
}

/* FAQ answer indent fix — must come after .faq-a.open base rule */
@media (max-width: 768px) {
    .faq-a,
    .faq-a.open { padding-left: 0; }
}
