/* ==========================================================================
   index.css — page-specific styles for zh-Hans/index.html
   Extracted from inline <style>. No fetch/XHR/WebSocket. No global chrome.
   ========================================================================== */

/* ==========================================================================
   1. Design tokens & reset
   ========================================================================== */
:root {
    --brand:           #FF7E5F;
    --brand-alt:       #FEB47B;
    --brand-gradient:  linear-gradient(135deg, #FF7E5F 0%, #FEB47B 100%);
    --accent:          #5E5CE6;
    --accent-light:    #EBEBFF;
    --success:         #00D084;
    --success-bg:      rgba(0, 208, 132, 0.10);
    --text-main:       #1A1A1B;
    --text-muted:      #6E6E73;
    --text-light:      #8E8E93;
    --bg-main:         #FBFBFD;
    --bg-card:         #FFFFFF;
    --bg-alt:          #F5F5F7;
    --bg-glass:        rgba(255, 255, 255, 0.78);
    --border-glass:    rgba(255, 255, 255, 0.45);
    --border-line:     #EDEDF0;
    --shadow-soft:     0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-card:     0 8px 32px rgba(0, 0, 0, 0.07);
    --shadow-lg:       0 24px 64px rgba(0, 0, 0, 0.11);
    --font-sans:       "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Noto Sans SC", sans-serif;
    --r-sm: 12px; --r-md: 18px; --r-lg: 28px; --r-xl: 36px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body { font-family: var(--font-sans); background: var(--bg-main); color: var(--text-main); overflow-x: hidden; line-height: 1.55; }

/* Ambient diffuse background */
.ambient-bg {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background:
        radial-gradient(circle at 4% 12%,  rgba(255,126,95,0.10) 0%, transparent 36%),
        radial-gradient(circle at 96% 82%,  rgba(94,92,230,0.08) 0%, transparent 36%),
        radial-gradient(circle at 55% 42%,  rgba(254,180,123,0.06) 0%, transparent 28%),
        var(--bg-main);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ==========================================================================
   2. Nav (styled for header.js injected <header class="nav-bar">)
   ========================================================================== */
.nav-bar {
    height: 72px; display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 1000;
    background: rgba(251,251,253,0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0 40px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.03em; color: var(--text-main); text-decoration: none; }
.logo-icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.logo-icon img { width: 32px; height: 32px; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-switch { background: #fff; border: 1px solid var(--border-line); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 6px; color: var(--text-main); white-space: nowrap; }

/* ==========================================================================
   3. Shared section utilities
   ========================================================================== */
.section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 14px; display: block;
}
.section-title {
    font-size: 44px; font-weight: 800; line-height: 1.08; letter-spacing: -0.045em; margin-bottom: 20px;
}
.section-title .accent { color: var(--accent); }
.section-title .brand  { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { font-size: 17px; color: var(--text-muted); font-weight: 400; line-height: 1.7; }

/* Shared button system */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 28px; border-radius: 100px; font-size: 15px; font-weight: 600;
    cursor: pointer; border: none; transition: all .25s var(--ease-out);
    text-decoration: none; white-space: nowrap; font-family: inherit;
}
.btn-primary { background: var(--brand-gradient); color: #fff; box-shadow: 0 8px 24px rgba(255,126,95,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,126,95,.38); }
.btn-secondary { background: #fff; color: var(--text-main); border: 1.5px solid var(--border-line); }
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand); }
.btn-ghost { background: rgba(255,255,255,.09); border: 1.5px solid rgba(255,255,255,.18); color: rgba(255,255,255,.88); }
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.32); }
.btn-white { background: #fff; color: var(--brand); font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.10); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.16); }

/* Scroll-driven fade-in */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.fade-in.visible { opacity: 1; transform: none; }

/* ==========================================================================
   4. Hero
   ========================================================================== */
.hero-section { padding: 88px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: center; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent-light); color: var(--accent);
    font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 26px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

h1.hero-title {
    font-size: 76px; font-weight: 900; line-height: .98; letter-spacing: -.055em;
    margin-bottom: 26px;
}
h1.hero-title .g { background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-desc { font-size: 17px; color: var(--text-muted); font-weight: 400; margin-bottom: 40px; line-height: 1.7; max-width: 480px; }

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 32px; }
.trust-chip { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.trust-chip .check { width: 18px; height: 18px; background: var(--success-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: var(--success); flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; height: 460px; }
.float-card {
    position: absolute; background: var(--bg-glass);
    backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    border: 1px solid var(--border-glass); border-radius: 20px;
    box-shadow: var(--shadow-card); padding: 20px;
    will-change: transform;
}

/* Card 1: Connection status */
.card-status { top: 0; right: 8%; width: 230px; }
.cs-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.cs-dot { width: 10px; height: 10px; background: var(--success); border-radius: 50%; box-shadow: 0 0 10px var(--success); flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 8px var(--success);}50%{box-shadow:0 0 18px var(--success);} }
.cs-label { font-size: 13px; font-weight: 700; }
.cs-sub { font-size: 11px; color: var(--text-light); }
.cs-speeds { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cs-speed-val { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.cs-speed-lbl { font-size: 10px; color: var(--text-light); font-weight: 500; margin-top: 2px; }

/* Card 2: Node list */
.card-nodes { top: 42%; left: -6%; width: 264px; }
.cn-title { font-size: 10px; font-weight: 700; letter-spacing: 0.09em; color: var(--text-light); text-transform: uppercase; margin-bottom: 10px; }
.cn-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.04); font-size: 12px; }
.cn-row:last-child { border-bottom: none; }
.cn-left { display: flex; align-items: center; gap: 8px; }
.cn-flag { font-size: 15px; }
.cn-name { font-weight: 600; }
.cn-ping { font-size: 11px; font-weight: 700; }
.ping-g { color: var(--success); }
.ping-o { color: #FF9F0A; }
.cn-active-dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; margin-left: 4px; display: inline-block; }

/* Card 3: Shield */
.card-shield { bottom: 4%; right: 12%; padding: 18px 22px; display: flex; align-items: center; gap: 14px; }
.shield-ico { font-size: 30px; line-height: 1; }
.shield-lbl { font-size: 13px; font-weight: 700; }
.shield-sub { font-size: 11px; color: var(--text-light); margin-top: 2px; }

/* ==========================================================================
   5. Platform bar
   ========================================================================== */
.platform-bar {
    border-top: 1px solid var(--border-line); border-bottom: 1px solid var(--border-line);
    padding: 18px 0; background: rgba(255,255,255,.62);
    backdrop-filter: blur(8px);
}
.platform-bar-inner { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pb-label { font-size: 13px; color: var(--text-light); font-weight: 500; margin-right: 6px; }
.pb-pill {
    display: flex; align-items: center; gap: 7px;
    background: #fff; border: 1px solid var(--border-line);
    padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
    color: var(--text-main); box-shadow: 0 1px 4px rgba(0,0,0,.03);
}

/* ==========================================================================
   6. Free promises
   ========================================================================== */
.promises-section { padding: 96px 0; }
.promises-head { text-align: center; margin-bottom: 60px; }
.promises-head .section-desc { max-width: 560px; margin: 0 auto; }

.promises-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.promise-card {
    background: #fff; border: 1px solid var(--border-line); border-radius: var(--r-md);
    padding: 30px 22px; text-align: center;
    transition: transform .22s var(--ease-out), box-shadow .22s;
}
.promise-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.promise-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 18px; }
.promise-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.promise-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ==========================================================================
   7. How it works
   ========================================================================== */
.steps-section { padding: 0 0 96px; }
.steps-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 80px; align-items: center; }

.steps-list { margin-top: 52px; display: flex; flex-direction: column; }
.step-item { display: flex; gap: 24px; padding-bottom: 40px; position: relative; }
.step-item:last-child { padding-bottom: 0; }
.step-item:not(:last-child)::after {
    content: ''; position: absolute; left: 19px; top: 44px; bottom: 0;
    width: 1.5px; background: linear-gradient(to bottom, var(--border-line) 0%, transparent 100%);
}
.step-num {
    width: 40px; height: 40px; border-radius: 50%; background: var(--brand-gradient);
    color: #fff; font-size: 15px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; box-shadow: 0 4px 16px rgba(255,126,95,.30);
}
.step-body { padding-top: 8px; }
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* App mockup inside dark card */
.steps-app { background: #1C1C1E; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.06); }
.app-bar { height: 44px; background: #2C2C2E; display: flex; align-items: center; padding: 0 18px; gap: 8px; }
.app-dot { width: 11px; height: 11px; border-radius: 50%; }
.app-title { color: rgba(255,255,255,.32); font-size: 12px; font-weight: 500; margin-left: 10px; }
.app-body { padding: 26px; }
.app-connected {
    display: flex; align-items: center; gap: 12px;
    background: rgba(0,208,132,.12); border: 1px solid rgba(0,208,132,.22);
    border-radius: 14px; padding: 14px 18px; margin-bottom: 22px;
}
.app-conn-dot { width: 11px; height: 11px; background: var(--success); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 12px var(--success); }
.app-conn-lbl { font-size: 13px; font-weight: 700; color: #fff; }
.app-conn-sub { font-size: 11px; color: rgba(255,255,255,.42); margin-top: 2px; }
.app-nodes-lbl { font-size: 10px; font-weight: 700; letter-spacing: .09em; color: rgba(255,255,255,.28); text-transform: uppercase; margin-bottom: 10px; }
.app-node-list { display: flex; flex-direction: column; gap: 6px; }
.app-node {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,.05); border-radius: 10px; padding: 10px 14px;
}
.app-node.sel { background: rgba(255,126,95,.14); border: 1px solid rgba(255,126,95,.24); }
.app-node-l { display: flex; align-items: center; gap: 10px; }
.app-node-flag { font-size: 14px; }
.app-node-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.84); }
.app-node-region { font-size: 10px; color: rgba(255,255,255,.32); margin-top: 1px; }
.app-node-ms { font-size: 11px; font-weight: 700; }

/* ==========================================================================
   8. Features bento
   ========================================================================== */
.features-section { padding: 0 0 96px; }
.features-head { text-align: center; margin-bottom: 60px; }
.features-head .section-desc { max-width: 560px; margin: 0 auto; }

.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bento-card {
    background: #fff; border-radius: var(--r-lg); padding: 36px;
    border: 1px solid var(--border-line);
    transition: transform .22s var(--ease-out), box-shadow .22s;
    overflow: hidden; position: relative;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.bento-card.col-2 { grid-column: span 2; }
.bento-card.dark { background: var(--text-main); border-color: transparent; }
.bento-card.tinted { background: var(--accent-light); border-color: rgba(94,92,230,.12); }

.b-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 22px; }
.b-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.bento-card.dark .b-title { color: #fff; }
.bento-card.tinted .b-title { color: var(--accent); }
.b-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.bento-card.dark .b-desc { color: rgba(255,255,255,.50); }

/* IP switch visual inside feature card */
.ip-demo { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.ip-row { display: flex; align-items: center; gap: 10px; }
.ip-chip { background: #F2F2F7; border-radius: 8px; padding: 7px 12px; font-family: monospace; font-size: 12px; font-weight: 600; color: var(--text-muted); }
.ip-chip.new { background: rgba(0,208,132,.12); color: var(--success); }
.ip-arr { color: var(--text-light); font-size: 15px; }

/* Platform badges on dark card */
.plat-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.plat-badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.84); }

/* Wi-Fi threat visual */
.wifi-list { margin-top: 24px; display: flex; flex-direction: column; gap: 8px; }
.wifi-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.wifi-badge { background: rgba(94,92,230,.12); color: var(--accent); padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.wifi-lock { font-size: 14px; margin-left: auto; }

/* ==========================================================================
   9. Download section
   ========================================================================== */
.download-section { padding: 0 0 96px; }
.download-inner {
    background: var(--brand-gradient);
    border-radius: var(--r-xl); padding: 68px 64px;
    position: relative; overflow: hidden;
}
.download-inner::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 340px; height: 340px; background: rgba(255,255,255,.07); border-radius: 50%; pointer-events: none;
}
.download-inner::after {
    content: ''; position: absolute; bottom: -90px; left: 28%;
    width: 260px; height: 260px; background: rgba(255,255,255,.04); border-radius: 50%; pointer-events: none;
}
.dl-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.dl-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 14px; }
.dl-title { font-size: 42px; font-weight: 900; color: #fff; letter-spacing: -.045em; line-height: 1.05; margin-bottom: 18px; }
.dl-desc { font-size: 16px; color: rgba(255,255,255,.78); line-height: 1.65; margin-bottom: 32px; }
.dl-plats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.dl-plat { background: rgba(255,255,255,.18); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.28); padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600; color: #fff; }
.dl-right { display: flex; justify-content: center; align-items: center; }
.dl-device-card { background: rgba(255,255,255,.14); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.22); border-radius: 24px; padding: 36px 40px; text-align: center; color: #fff; }
.dl-icon { font-size: 56px; line-height: 1; margin-bottom: 16px; }
.dl-card-lbl { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.dl-card-sub { font-size: 13px; color: rgba(255,255,255,.60); }

/* ==========================================================================
   10. Pricing preview
   ========================================================================== */
.pricing-section { padding: 0 0 96px; }
.pricing-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 40px; }
.pricing-note { font-size: 13px; color: var(--text-light); margin-top: 12px; line-height: 1.6; }

.free-plan-card {
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    background: #fff; border: 2px solid var(--brand); border-radius: var(--r-lg);
    padding: 36px 44px; margin-bottom: 18px; position: relative; overflow: hidden;
}
.free-plan-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brand-gradient); }
.fpc-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,126,95,.10); color: var(--brand); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.fpc-price { font-size: 54px; font-weight: 900; letter-spacing: -.06em; background: var(--brand-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.fpc-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.paid-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.paid-card { background: var(--bg-alt); border: 1px solid var(--border-line); border-radius: var(--r-md); padding: 24px 20px; position: relative; overflow: hidden; }
.paid-card.best { background: var(--accent-light); border-color: rgba(94,92,230,.20); }
.best-badge { display: inline-block; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: .05em; margin-bottom: 10px; }
.paid-lbl { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.paid-price { font-size: 26px; font-weight: 800; letter-spacing: -.03em; color: var(--text-main); }
.paid-period { font-size: 14px; font-weight: 400; color: var(--text-muted); }
.paid-traffic { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.pricing-footnote { text-align: center; font-size: 13px; color: var(--text-light); margin-top: 18px; }

/* ==========================================================================
   11. FAQ
   ========================================================================== */
.faq-section { padding: 0 0 96px; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.faq-sticky { position: sticky; top: 96px; }
.faq-cta-row { margin-top: 36px; }

.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item { border-radius: var(--r-sm); border: 1px solid transparent; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--border-line); background: #fff; box-shadow: var(--shadow-soft); }
.faq-q {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 20px 22px; background: none; border: none;
    font-size: 15px; font-weight: 600; color: var(--text-main);
    text-align: left; cursor: pointer; border-radius: var(--r-sm); transition: background .15s;
    font-family: inherit;
}
.faq-q:hover { background: rgba(0,0,0,.025); }
.faq-item.open .faq-q { border-radius: var(--r-sm) var(--r-sm) 0 0; }
.faq-chevron { font-size: 20px; color: var(--text-light); transition: transform .28s var(--ease-out), color .2s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--brand); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease-out); }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 16px 22px 24px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ==========================================================================
   12. Final CTA
   ========================================================================== */
.cta-section { padding: 0 0 80px; }
.cta-inner {
    background: var(--text-main); border-radius: var(--r-xl);
    padding: 88px 64px; text-align: center; position: relative; overflow: hidden;
}
.cta-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.cta-glow-1 { width: 420px; height: 420px; background: rgba(255,126,95,.14); top: -110px; left: -80px; }
.cta-glow-2 { width: 320px; height: 320px; background: rgba(94,92,230,.11); bottom: -90px; right: -50px; }
.cta-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,126,95,.14); color: var(--brand-alt);
    font-size: 11px; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px; margin-bottom: 30px;
}
.cta-title { font-size: 54px; font-weight: 900; color: #fff; letter-spacing: -.055em; line-height: 1.02; margin-bottom: 20px; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,.58); line-height: 1.7; margin-bottom: 48px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ==========================================================================
   13. Footer (injected by footer.js — styles applied via element selector)
   ========================================================================== */
footer {
    border-top: 1px solid var(--border-line); padding: 52px 40px;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text-muted); font-size: 13px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: inherit; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--brand); }

/* ==========================================================================
   14. Responsive breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
    .promises-grid { grid-template-columns: repeat(3, 1fr); }
    .bento { grid-template-columns: 1fr 1fr; }
    .bento-card.col-2 { grid-column: span 1; }
    .paid-grid { grid-template-columns: 1fr 1fr; }
    .pricing-header { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .hero-grid, .steps-grid, .dl-layout, .faq-layout { grid-template-columns: 1fr; gap: 48px; }
    h1.hero-title { font-size: 52px; }
    .section-title { font-size: 34px; }
    .hero-visual { display: none; }
    .bento { grid-template-columns: 1fr; }
    .promises-grid { grid-template-columns: 1fr 1fr; }
    .cta-title { font-size: 36px; }
    .cta-inner { padding: 52px 32px; }
    .download-inner { padding: 48px 32px; }
    .faq-sticky { position: static; }
    .free-plan-card { flex-direction: column; align-items: flex-start; padding: 32px; }
    .dl-right { display: none; }
}
@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .nav-bar { padding: 0 20px; }
    h1.hero-title { font-size: 40px; }
    .section-title { font-size: 28px; }
    .promises-grid { grid-template-columns: 1fr; }
    .paid-grid { grid-template-columns: 1fr 1fr; }
    .hero-section { padding: 56px 0 44px; }
    .hero-trust { gap: 12px; }
    footer { flex-direction: column; gap: 16px; text-align: center; padding: 36px 20px; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 640px) {
    /* nav collapses to hamburger on mobile */
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column; align-items: flex-start;
        position: absolute; top: 72px; left: 0; right: 0;
        background: rgba(251,251,253,.97); backdrop-filter: blur(16px);
        padding: 12px 24px 20px; gap: 4px;
        border-bottom: 1px solid rgba(0,0,0,.06); z-index: 999;
    }
}
