/* ==========================================================================
   ALeads — Premium Design System v2
   --------------------------------------------------------------------------
   Dark. Cinematic. Data-forward.
   Palette:  #080B10 base, #00FFB2 electric (primary), #0A4A3A deep accent
   Display:  Syne 800 (geometric punch)
   Body:     DM Sans 400/500
   Motion:   aurora hero, particle network, blur-to-sharp reveals,
             conic-gradient spin borders, lerp cursor, count-up
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
    #cursor-dot, #cursor-ring { display: none; }
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: var(--accent); }

button {
    font-family: inherit;
    cursor: none;
}

@media (max-width: 768px) { button { cursor: pointer; } }

/* ---------- Tokens ---------- */
:root {
    --bg:           #080B10;
    --bg-2:         #0C1018;
    --bg-3:         #111820;
    --bg-glass:     rgba(12, 16, 24, 0.72);
    --ink:          #E8EEF5;
    --ink-dim:      #7A8899;
    --ink-mute:     #3A4452;
    --accent:       #00FFB2;
    --accent-2:     #00E5A0;
    --accent-dim:   rgba(0, 255, 178, 0.12);
    --accent-mid:   rgba(0, 255, 178, 0.28);
    --accent-glow:  rgba(0, 255, 178, 0.45);
    --accent-bloom: rgba(0, 255, 178, 0.08);
    --border:       rgba(255, 255, 255, 0.07);
    --border-med:   rgba(255, 255, 255, 0.12);
    --border-hi:    rgba(0, 255, 178, 0.40);
    --radius:       16px;
    --radius-sm:    10px;
    --ease:         cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-in:      cubic-bezier(0.4, 0, 1, 1);
    --ease-out:     cubic-bezier(0, 0, 0.2, 1);
}

/* ---------- Scroll progress bar ---------- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), #7BFFE0, var(--accent));
    background-size: 200% 100%;
    animation: progress-shimmer 2.5s linear infinite;
    z-index: 9998;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px var(--accent-glow);
}

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

/* ---------- Dot-grid background overlay ---------- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

/* ---------- Type scale ---------- */
.display,
h1, h2, h3, .h1, .h2, .h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -0.025em;
}

.h1, h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
.h2, h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); }
.h3, h3 { font-size: clamp(1.15rem, 2vw, 1.55rem); }

.eyebrow {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 1px;
    background: var(--accent);
    vertical-align: middle;
    margin-right: 10px;
    opacity: 0.7;
}

.lede {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--ink-dim);
    max-width: 56ch;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: clamp(5rem, 10vw, 9rem) 0;
    position: relative;
    z-index: 1;
}

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 960px) {
    .grid-3 { grid-template-columns: 1fr; }
}

@media (min-width: 600px) and (max-width: 960px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section dividers (shimmer gradient) ---------- */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--border-med) 20%,
        var(--accent-mid) 50%,
        var(--border-med) 80%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: divider-shimmer 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes divider-shimmer {
    0%, 100% { background-position: 0% 0; opacity: 0.5; }
    50%       { background-position: 100% 0; opacity: 1; }
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 20px 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(8, 11, 16, 0.50);
    border-bottom: 1px solid transparent;
    transition: padding 0.4s var(--ease),
                background 0.4s var(--ease),
                border-color 0.4s var(--ease),
                backdrop-filter 0.4s var(--ease);
}

.nav.scrolled {
    padding: 14px 0;
    background: rgba(8, 11, 16, 0.88);
    border-bottom-color: var(--border-med);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.logo span {
    color: var(--accent);
    display: inline-block;
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 0.9rem;
    color: var(--ink-dim);
}

.nav-links a:not(.btn) {
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.nav-links a:not(.btn):hover { color: var(--ink); }

@media (max-width: 640px) {
    .nav-links a:not(.btn) { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.93rem;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        transform 0.35s var(--ease),
        box-shadow 0.35s var(--ease),
        background 0.35s var(--ease),
        color 0.35s var(--ease),
        border-color 0.35s var(--ease);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

@media (min-width: 769px) { .btn { cursor: none; } }

/* shimmer sweep on btn-primary */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.28) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease);
}

.btn-primary:hover::after { transform: translateX(100%); }

.btn-primary {
    background: var(--accent);
    color: #021a10;
    box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
    color: #021a10;
    transform: translateY(-2px);
    box-shadow: 0 18px 60px -12px var(--accent-glow), 0 0 0 3px var(--accent-dim);
}

/* pulsing glow on CTA btn-primary--pulse */
.btn-primary--pulse {
    animation: btn-pulse 2.8s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50%       { box-shadow: 0 0 0 16px transparent, 0 20px 60px -10px var(--accent-glow); }
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--border-med);
}

.btn-ghost:hover {
    border-color: var(--border-hi);
    color: var(--accent);
    transform: translateY(-2px);
    background: var(--accent-bloom);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Multi-layer aurora background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 500px at 15% -5%,  rgba(0, 255, 178, 0.09) 0%, transparent 60%),
        radial-gradient(ellipse 700px 400px at 85% 110%, rgba(0, 255, 178, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 500px 300px at 55% 50%,  rgba(0, 180, 130, 0.04) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: aurora-shift 12s ease-in-out infinite alternate;
}

@keyframes aurora-shift {
    0%   { opacity: 0.7; transform: scale(1)   translateY(0px); }
    100% { opacity: 1.0; transform: scale(1.04) translateY(-20px); }
}

/* second aurora layer for depth */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 1100px 600px at 60% 20%, rgba(0, 255, 178, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 600px 800px at -10% 80%, rgba(0, 140, 100, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: aurora-shift 18s ease-in-out infinite alternate-reverse;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.65;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    max-width: 20ch;
    margin-bottom: 28px;
    line-height: 1.0;
}

.hero-title em {
    font-style: normal;
    background: linear-gradient(120deg,
        var(--accent) 0%,
        #60FFDA 30%,
        #AAFFF0 60%,
        var(--accent) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 250% 100%;
    animation: shimmer-text 5s linear infinite;
    filter: drop-shadow(0 0 22px rgba(0, 255, 178, 0.45));
    display: inline-block;
}

@keyframes shimmer-text {
    0%   { background-position: 0% 0; }
    100% { background-position: 250% 0; }
}

.hero-sub {
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    color: var(--ink-dim);
    max-width: 54ch;
    margin-bottom: 42px;
    line-height: 1.7;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-footnote {
    color: var(--ink-mute);
    font-size: 0.82rem;
    margin-top: 18px;
    letter-spacing: 0.02em;
}

/* Floating CSS particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    animation: particle-float var(--dur, 12s) var(--delay, 0s) ease-in-out infinite;
}

.hero-particles span:nth-child(odd) {
    background: transparent;
    border: 1px solid var(--accent);
    width: 6px;
    height: 6px;
}

@keyframes particle-float {
    0%   { opacity: 0;    transform: translateY(0)    translateX(0)    scale(0.5); }
    15%  { opacity: 0.55; }
    85%  { opacity: 0.35; }
    100% { opacity: 0;    transform: translateY(-80px) translateX(var(--drift, 20px)) scale(1); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    align-items: stretch;
    border: 1px solid var(--border-hi);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0,255,178,0.05) 0%, rgba(8,11,16,0.8) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--accent-dim), 0 24px 64px -24px rgba(0, 255, 178, 0.2);
    padding: 0;
    max-width: 860px;
    margin: 0 auto;
}

.trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-dim);
    border-right: 1px solid var(--border);
    flex: 1;
    justify-content: center;
    white-space: nowrap;
    transition: color 0.3s ease, background 0.3s ease;
}

.trust-bar span:last-child { border-right: none; }

.trust-bar span:hover {
    color: var(--accent);
    background: var(--accent-bloom);
}

.trust-bar span::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    flex-shrink: 0;
}

@media (max-width: 860px) {
    .trust-bar {
        border-radius: var(--radius);
        flex-direction: column;
    }
    .trust-bar span {
        border-right: none;
        border-bottom: 1px solid var(--border);
        justify-content: flex-start;
    }
    .trust-bar span:last-child { border-bottom: none; }
}

/* ---------- Stats counter section ---------- */
.stats-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

@media (max-width: 860px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
}

.stat-item {
    background: var(--bg-2);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: background 0.3s ease;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover { background: var(--bg-3); }
.stat-item:hover::before { opacity: 1; }

.stat-value {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    letter-spacing: -0.03em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* ---------- How-it-works steps ---------- */
#how {
    background:
        radial-gradient(ellipse 800px 400px at 50% 0%, rgba(0,255,178,0.04) 0%, transparent 60%);
}

.steps-wrapper {
    position: relative;
}

/* connecting line between steps */
.steps-connector {
    position: absolute;
    top: 44px; /* center of step-num circle */
    left: calc(16.666% + 32px);
    right: calc(16.666% + 32px);
    height: 1px;
    background: linear-gradient(90deg,
        var(--accent-mid) 0%,
        var(--accent-dim) 50%,
        var(--accent-mid) 100%
    );
    z-index: 0;
    display: none;
}

@media (min-width: 960px) {
    .steps-connector { display: block; }
}

.step {
    text-align: center;
    padding: 28px 20px;
    position: relative;
    z-index: 1;
}

/* animated gradient border on step number */
.step-num-wrapper {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    background: var(--bg-2);
}

.step-num-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: conic-gradient(
        from var(--angle, 0deg),
        var(--accent) 0%,
        rgba(0,255,178,0.15) 25%,
        rgba(0,255,178,0.05) 50%,
        rgba(0,255,178,0.15) 75%,
        var(--accent) 100%
    );
    animation: spin-border 4s linear infinite;
    z-index: -1;
}

.step-num-wrapper::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: var(--bg-2);
    z-index: -1;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes spin-border {
    0%   { --angle: 0deg; }
    100% { --angle: 360deg; }
}

.step-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--accent);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: var(--ink-dim);
    font-size: 0.96rem;
    max-width: 26ch;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Cards (niche + testimonial) ---------- */
.card {
    background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg-3) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    position: relative;
    transition:
        transform 0.5s var(--ease),
        border-color 0.5s var(--ease),
        box-shadow 0.5s var(--ease);
    overflow: hidden;
    isolation: isolate;
}

/* top accent gradient edge */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-mid) 40%,
        var(--accent) 50%,
        var(--accent-mid) 60%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

/* radial glow on hover (mouse-tracked) */
.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        380px 240px at var(--mx, 50%) var(--my, -20%),
        var(--accent-bloom),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
    z-index: 0;
}

.card > * { position: relative; z-index: 1; }

.card:hover {
    transform: translateY(-8px) scale(1.006);
    border-color: var(--border-hi);
    box-shadow: 0 32px 80px -20px rgba(0, 255, 178, 0.20),
                0 0 0 1px var(--accent-dim);
}

.card:hover::before { opacity: 1; }
.card:hover::after  { opacity: 1; }

.card h3 { margin-bottom: 12px; }

.card p {
    color: var(--ink-dim);
    margin-bottom: 20px;
    line-height: 1.65;
}

/* featured niche card highlight */
.card.highlight {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 40px 120px -30px var(--accent-glow);
    background: linear-gradient(160deg, rgba(0,255,178,0.07) 0%, var(--bg-2) 40%, var(--bg-3) 100%);
}

.card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 13px;
    border-radius: 999px;
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--accent);
    color: #021a10;
    font-weight: 800;
}

.card .price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 5vw, 4rem);
    letter-spacing: -0.04em;
    margin: 10px 0 4px;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent) 0%, #7BFFE0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.card .price sup {
    font-size: 1.2rem;
    vertical-align: super;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.card .price small {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-dim);
    -webkit-text-fill-color: var(--ink-dim);
    letter-spacing: 0;
}

/* rotating gradient border for featured pricing card */
.card.pricing-featured {
    position: relative;
    background: linear-gradient(160deg, rgba(0,255,178,0.08) 0%, var(--bg-2) 40%, var(--bg-3) 100%);
    border: none;
}

.card.pricing-featured::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: calc(var(--radius) + 2px);
    background: conic-gradient(
        from var(--angle, 0deg),
        var(--accent),
        rgba(0,255,178,0.2) 30%,
        rgba(0,255,178,0.05) 50%,
        rgba(0,255,178,0.2) 70%,
        var(--accent) 100%
    );
    animation: spin-border 5s linear infinite;
    z-index: -1;
    height: unset;
    top: unset;
    left: unset;
    right: unset;
    opacity: 1;
}

.card.pricing-featured::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: calc(var(--radius) - 1px);
    background: linear-gradient(160deg, rgba(0,255,178,0.08) 0%, var(--bg-2) 40%, var(--bg-3) 100%);
    z-index: -1;
    opacity: 1;
    pointer-events: none;
}

/* ---------- Feature list ---------- */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
}

.feature-list li {
    padding: 9px 0 9px 32px;
    position: relative;
    color: var(--ink-dim);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--border);
}

.feature-list li:last-child { border-bottom: none; }

/* accent checkmark */
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 17px;
    height: 17px;
    background: var(--accent);
    border-radius: 4px;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    box-shadow: 0 0 10px rgba(0,255,178,0.4);
    flex-shrink: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: linear-gradient(155deg, rgba(0,255,178,0.04) 0%, var(--bg-2) 30%, var(--bg-3) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 24px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 7rem;
    color: var(--accent);
    opacity: 0.08;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hi);
}

.testimonial-text {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--border-hi);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.testimonial-role {
    color: var(--ink-dim);
    font-size: 0.8rem;
}

/* star rating */
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars span {
    color: var(--accent);
    font-size: 0.9rem;
}

/* ---------- Final CTA section ---------- */
.final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 9rem) 0;
    background:
        radial-gradient(ellipse 900px 500px at 50% 50%, rgba(0,255,178,0.07) 0%, transparent 65%);
}

.final-cta .display-xl {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.final-cta .display-xl em {
    font-style: normal;
    background: linear-gradient(120deg, var(--accent), #7BFFE0, var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 250% 100%;
    animation: shimmer-text 4s linear infinite;
}

.final-cta-sub {
    color: var(--ink-dim);
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    max-width: 52ch;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* ---------- Guarantee card ---------- */
.guarantee-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px;
    background: linear-gradient(160deg, rgba(0,255,178,0.06) 0%, var(--bg-2) 50%, var(--bg-3) 100%);
    border: 1px solid var(--border-hi);
    border-radius: var(--radius);
    box-shadow: 0 40px 100px -30px rgba(0,255,178,0.15);
}

@media (max-width: 640px) {
    .guarantee-card { padding: 36px 24px; }
}

/* ---------- Footer ---------- */
.footer {
    padding: 64px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
    position: relative;
    z-index: 1;
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 28px;
    color: var(--ink-dim);
    font-size: 0.88rem;
}

.footer .logo { font-size: 1.1rem; }

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a:hover { color: var(--accent); }

/* ---------- Forms ---------- */
.form-card {
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
}

label {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--ink);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: text;
}

@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    select,
    textarea { font-size: 16px; }
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-error {
    color: #FF6680;
    font-size: 0.85rem;
    padding: 10px 14px;
    margin-bottom: 16px;
    border-radius: 8px;
    background: rgba(255, 102, 128, 0.08);
    border: 1px solid rgba(255, 102, 128, 0.3);
}

.niche-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

@media (max-width: 640px) { .niche-picker { grid-template-columns: 1fr; } }

.niche-picker label {
    text-transform: none;
    letter-spacing: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.niche-picker input[type="radio"] { display: none; }

.niche-picker input[type="radio"]:checked + label {
    border-color: var(--accent);
    background: var(--accent-dim);
    color: var(--accent);
}

/* ---------- Dashboard ---------- */
.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}

@media (max-width: 700px) { .dash-stats { grid-template-columns: 1fr; } }

.stat {
    padding: 26px;
    background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stat-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 8px;
}

.stat-value {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--accent);
}

.lead-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-2);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 20px;
}

.lead-table th,
.lead-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.lead-table th {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-dim);
    background: var(--bg-3);
}

.lead-table tbody tr:hover { background: rgba(0, 255, 178, 0.04); }

.plan-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid var(--border-hi);
}

/* ---------- Custom cursor ---------- */
#cursor-dot,
#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
}

#cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease), height 0.2s var(--ease), opacity 0.2s ease;
    box-shadow: 0 0 8px var(--accent-glow);
}

#cursor-ring {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(0, 255, 178, 0.65);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease),
                opacity 0.2s ease, border-color 0.3s ease,
                background 0.3s ease;
}

.cursor-hover #cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent-glow);
}

.cursor-hover #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--accent);
    background: var(--accent-bloom);
}

/* ---------- Scroll reveal (blur-to-sharp) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(6px);
    transition:
        opacity  0.85s var(--ease),
        transform 0.85s var(--ease),
        filter   0.85s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

/* stagger siblings */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- Utility ---------- */
.text-center  { text-align: center; }
.text-dim     { color: var(--ink-dim); }
.mt-2         { margin-top: 20px; }
.mt-3         { margin-top: 28px; }
.mt-4         { margin-top: 40px; }
.mb-2         { margin-bottom: 20px; }
.mb-4         { margin-bottom: 40px; }
