@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=JetBrains+Mono:wght@400;600&family=DM+Sans:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-base:     #060609;
    --bg-surface:  #0D0D15;
    --bg-elevated: #12121E;
    --bg-card:     rgba(255, 255, 255, 0.028);

    --amber:       #F59E0B;
    --amber-light: #FCD34D;
    --amber-dim:   rgba(245, 158, 11, 0.12);
    --cyan:        #06B6D4;
    --cyan-dim:    rgba(6, 182, 212, 0.12);

    --text-primary:   #F0EEE8;
    --text-secondary: #9896A6;
    --text-muted:     #55536A;

    --border:       rgba(255, 255, 255, 0.07);
    --border-amber: rgba(245, 158, 11, 0.35);

    --radius:    12px;
    --radius-lg: 20px;

    --font-display: 'Syne', sans-serif;
    --font-mono:    'JetBrains Mono', monospace;
    --font-body:    'DM Sans', sans-serif;
}

[data-theme="light"] {
    --bg-base:     #F7F4EE;
    --bg-surface:  #FFFFFF;
    --bg-elevated: #EDE9E0;
    --bg-card:     rgba(0, 0, 0, 0.025);
    --text-primary:   #1A1714;
    --text-secondary: #5A5248;
    --text-muted:     #9C9080;
    --border:       rgba(0, 0, 0, 0.09);
    --border-amber: rgba(245, 158, 11, 0.45);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

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

/* ── Typography ── */
h1 {
    font-family: Verdana, Geneva, sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 3.1rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }

a { color: var(--amber); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--amber-light); }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 9px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.22s ease;
    border: none;
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #0D0804;
    box-shadow: 0 4px 22px rgba(245,158,11,0.38), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,158,11,0.5);
    color: #0D0804;
}

.btn-large { padding: 16px 46px; font-size: 1.05rem; border-radius: 10px; }

.gradient-text {
    background: linear-gradient(135deg, var(--amber) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Top Banner ── */
.top-banner {
    background: linear-gradient(90deg, rgba(245,158,11,0.12) 0%, rgba(6,182,212,0.08) 100%);
    border-bottom: 1px solid rgba(245,158,11,0.18);
    padding: 9px 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.top-banner a { color: var(--amber); font-weight: 600; }
[data-theme="light"] .top-banner { background: linear-gradient(90deg, rgba(245,158,11,0.08) 0%, rgba(6,182,212,0.05) 100%); }

/* ── Navigation ── */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(6, 6, 9, 0.88);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transition: box-shadow 0.3s ease;
}

[data-theme="light"] .navbar { background: rgba(247, 244, 238, 0.92); }

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 13px;
    padding-bottom: 13px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.logo { width: 36px; height: 36px; flex-shrink: 0; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-cta {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #0D0804;
    padding: 8px 22px;
    border-radius: 7px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 14px rgba(245,158,11,0.28);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 22px rgba(245,158,11,0.45);
    color: #0D0804;
}

.theme-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 7px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.theme-toggle:hover { border-color: var(--border-amber); color: var(--amber); }

.theme-toggle svg {
    width: 17px;
    height: 17px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ── Hero ── */
.hero {
    position: relative;
    padding: 7rem 0 6rem;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-glow-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.05) 0%, transparent 70%);
    top: 15%;
    right: 5%;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.22);
    color: var(--amber);
    padding: 5px 14px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero h1 { color: var(--text-primary); }

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin: 2rem 0 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border-right: 1px solid var(--border);
    text-align: left;
}

.stat:last-child { border-right: none; }

.stat-number {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.hero-cta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.cta-subtext { font-size: 0.82rem; color: var(--text-muted); margin: 0; font-family: var(--font-mono); }

/* ── Radar Visual ── */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.radar-container {
    position: relative;
    width: 380px;
    height: 380px;
}

.radar-svg { width: 100%; height: 100%; }

/* Radar rings */
.rr { fill: none; stroke-width: 1; }
.rr-1 { stroke: rgba(245,158,11,0.14); }
.rr-2 { stroke: rgba(245,158,11,0.10); }
.rr-3 { stroke: rgba(6,182,212,0.10); }
.rr-4 { stroke: rgba(245,158,11,0.07); }

/* Crosshairs */
.rc { stroke: rgba(245,158,11,0.07); stroke-width: 0.75; }

/* Sweep */
.radar-sweep {
    transform-origin: 190px 190px;
    animation: r-sweep 5s linear infinite;
}

@keyframes r-sweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Ping circles */
.rp {
    fill: none;
    stroke-width: 1;
    transform-box: fill-box;
    transform-origin: center;
    animation: r-ping 5s ease-out infinite;
    opacity: 0;
}
.rp-a { stroke: var(--amber); animation-delay: 0.4s; }
.rp-b { stroke: var(--cyan); animation-delay: 2.1s; }
.rp-c { stroke: var(--amber); animation-delay: 3.7s; }

@keyframes r-ping {
    0%   { opacity: 0; transform: scale(0.8); }
    15%  { opacity: 0.9; }
    70%  { opacity: 0.2; }
    100% { opacity: 0; transform: scale(3.5); }
}

/* Blinking discovery dots */
.rd {
    animation: r-dot 4s ease-in-out infinite;
}
.rd-1 { animation-delay: 0s; fill: var(--amber); }
.rd-2 { animation-delay: 1.4s; fill: var(--cyan); }
.rd-3 { animation-delay: 2.8s; fill: var(--amber); }
.rd-4 { animation-delay: 0.7s; fill: var(--cyan); }
.rd-5 { animation-delay: 3.5s; fill: var(--amber); }

@keyframes r-dot {
    0%, 100% { opacity: 0.2; }
    50%       { opacity: 1; }
}

.r-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    fill: rgba(245,158,11,0.45);
    letter-spacing: 0.06em;
}

/* ── Section common ── */
section { padding: 5.5rem 0; }

.section-tag {
    display: block;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.section-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
}

/* ── How It Works ── */
.how-it-works { background: var(--bg-surface); }

[data-theme="light"] .how-it-works { background: #FFFFFF; }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 34px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--amber), var(--cyan));
    opacity: 0.15;
    z-index: 0;
}

.step {
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    text-align: center;
}

.step:hover {
    border-color: rgba(245,158,11,0.28);
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.35), 0 0 0 1px rgba(245,158,11,0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(245,158,11,0.28);
    background: rgba(245,158,11,0.08);
    color: var(--amber);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1rem;
    margin: 0 auto 1.25rem;
}

.step h3 { font-size: 0.95rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; line-height: 1.65; }

/* ── Examples ── */
.examples { background: var(--bg-base); }
[data-theme="light"] .examples { background: var(--bg-elevated); }

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.example-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.example-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.example-card:hover {
    border-color: rgba(245,158,11,0.22);
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.4), 0 0 30px rgba(245,158,11,0.06);
}

.example-card:hover::after { transform: scaleX(1); }

.example-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(6,182,212,0.1);
    border: 1px solid rgba(6,182,212,0.2);
    color: var(--cyan);
    padding: 3px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.example-card h3 { font-size: 0.95rem; line-height: 1.45; margin-bottom: 1rem; }

.example-card p { font-size: 0.84rem; color: var(--text-secondary); margin-bottom: 0.55rem; line-height: 1.6; }

.example-card strong { color: var(--amber); }

.example-stat {
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-style: normal;
}

/* ── Features ── */
.features { background: var(--bg-surface); }
[data-theme="light"] .features { background: #FFFFFF; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover { border-color: rgba(245,158,11,0.2); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }
.feature:hover::after { opacity: 1; }

.feature-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.feature h3 { font-size: 0.95rem; margin-bottom: 0.6rem; }
.feature p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; line-height: 1.7; }

/* ── Social Proof ── */
.social-proof { background: var(--bg-base); position: relative; overflow: hidden; }
[data-theme="light"] .social-proof { background: var(--bg-elevated); }

.social-proof::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.testimonial {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 0.75rem; right: 1.25rem;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(245,158,11,0.1);
    line-height: 1;
    pointer-events: none;
}

.testimonial:hover { border-color: rgba(245,158,11,0.18); box-shadow: 0 8px 28px rgba(0,0,0,0.22); }

.testimonial p {
    font-size: 0.92rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.testimonial-author {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--amber);
    letter-spacing: 0.04em;
}

/* ── Pricing ── */
.pricing { background: var(--bg-surface); }
[data-theme="light"] .pricing { background: #FFFFFF; }

.pricing-card {
    max-width: 480px;
    margin: 3rem auto 0;
    background: var(--bg-card);
    border: 1px solid rgba(245,158,11,0.22);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 70px rgba(245,158,11,0.06), 0 30px 70px rgba(0,0,0,0.35);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--cyan), var(--amber));
    background-size: 200% 100%;
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.pricing-header { margin-bottom: 2rem; }

.pricing-header h3 {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.price {
    font-family: var(--font-mono);
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-description { font-size: 0.85rem; color: var(--text-muted); margin: 0; font-family: var(--font-mono); }

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    border-top: 1px solid var(--border);
}

.pricing-features li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.pricing-features li span.check { color: var(--amber); font-family: var(--font-mono); flex-shrink: 0; margin-top: 1px; }

.pricing-guarantee { margin-top: 1.5rem; font-size: 0.78rem; color: var(--text-muted); font-family: var(--font-mono); margin-bottom: 0; }

/* ── FAQ ── */
.faq { background: var(--bg-base); }
[data-theme="light"] .faq { background: var(--bg-elevated); }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-card);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover { border-color: rgba(245,158,11,0.2); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

.faq-item h3 { font-size: 0.92rem; margin-bottom: 0.7rem; color: var(--amber); }

.faq-item p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; line-height: 1.7; }

/* ── Footer CTA ── */
.footer-cta {
    padding: 5.5rem 0;
    background: var(--bg-surface);
    text-align: center;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .footer-cta { background: #FFFFFF; }

.footer-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(245,158,11,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta h2 { color: var(--text-primary); margin-bottom: 1rem; }

.footer-cta p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Footer ── */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 1.5rem;
}

[data-theme="light"] .footer { background: #0D0D15; }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.footer-section p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.75rem; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 0.6rem; }
.footer-section a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s ease; }
.footer-section a:hover { color: var(--amber); }
.footer-highlight { color: var(--amber) !important; font-weight: 600; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--amber); }

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--bg-elevated);
    border: 1px solid rgba(245, 158, 11, 0.28);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 580px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(245,158,11,0.08);
    transform: translateY(18px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.34, 1.3, 0.64, 1);
}

[data-theme="light"] .modal-box { background: #FFFFFF; }

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 1.4rem;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover { border-color: var(--amber); color: var(--amber); background: rgba(245,158,11,0.08); }

/* Modal body typography */
.modal-body h3 {
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
    padding-right: 2.2rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.modal-body p { font-size: 0.93rem; line-height: 1.8; color: var(--text-secondary); }
.modal-body p + p { margin-top: -0.2rem; }

.modal-body .example-badge,
.modal-body .m-tag {
    display: inline-block;
    margin-bottom: 1.1rem;
}

.modal-body .step-number {
    width: 52px; height: 52px;
    font-size: 1.1rem;
    margin: 0 0 1.2rem 0;
    display: inline-flex;
}

/* Modal utility components */
.m-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(6,182,212,0.1);
    border: 1px solid rgba(6,182,212,0.2);
    color: var(--cyan);
    padding: 3px 10px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.m-tag.amber {
    background: rgba(245,158,11,0.1);
    border-color: rgba(245,158,11,0.22);
    color: var(--amber);
}

.m-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 1.4rem 0;
}

.m-list {
    list-style: none;
    margin: 0.5rem 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.m-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.65;
}

.m-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.m-list li strong { color: var(--text-primary); }

.m-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin: 1.2rem 0;
}

.m-stat {
    background: var(--bg-card);
    padding: 1rem;
    text-align: center;
}

.m-stat-num {
    font-family: var(--font-mono);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 4px;
}

.m-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.m-score {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
}

.m-score-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.m-score-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--amber), var(--cyan));
}

.m-score-label {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--amber);
    white-space: nowrap;
}

.m-score-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    width: 130px;
    flex-shrink: 0;
}

.m-callout {
    background: rgba(245,158,11,0.07);
    border: 1px solid rgba(245,158,11,0.18);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin: 1.2rem 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.m-callout strong { color: var(--amber); }

.m-cta {
    display: inline-block;
    margin-top: 1.4rem;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #0D0804;
    padding: 11px 26px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 18px rgba(245,158,11,0.32);
}

.m-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,158,11,0.45); color: #0D0804; }

/* Tiles — show pointer and subtle ring on hover */
.step, .example-card, .feature, .testimonial, .faq-item {
    cursor: pointer;
}

/* ── Scroll animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { order: -1; }
    .radar-container { width: 290px; height: 290px; }
    .hero-subtitle { max-width: 100%; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .examples-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.65rem; }
    section { padding: 4rem 0; }
    .hero { padding: 4rem 0; min-height: auto; }
    .hero-stats { flex-direction: column; }
    .stat { border-right: none; border-bottom: 1px solid var(--border); }
    .stat:last-child { border-bottom: none; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .examples-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .pricing-card { padding: 2rem; }
    .btn-large { width: 100%; text-align: center; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .navbar .container { flex-wrap: wrap; gap: 10px; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.45rem; }
    .container { padding: 0 16px; }
    .radar-container { width: 230px; height: 230px; }
    .price { font-size: 3.5rem; }
}
