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

:root {
    --bg: #050507;
    --surface: #0c0c10;
    --surface-2: #121218;
    --surface-3: #1a1a22;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --accent-glow: rgba(99, 102, 241, 0.15);
    --accent-border: rgba(99, 102, 241, 0.3);
    --green: #10b981;
    --green-soft: rgba(16, 185, 129, 0.1);
    --green-border: rgba(16, 185, 129, 0.25);
    --text: #f0f0f5;
    --text-2: #a0a0b0;
    --text-3: #60607a;
    --border: rgba(255, 255, 255, 0.06);
    --border-2: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.3px;
}
.logo span { color: var(--accent-light); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-primary:hover { background: #5558e6; transform: translateY(-1px); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid var(--border-2);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--accent-border); background: var(--accent-glow); }

/* ===== HERO ===== */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: min(700px, 100vw);
    height: 500px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: var(--green-soft);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 32px;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: blink 2s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.08;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.hero h1 .accent { color: var(--accent-light); }
.hero-sub {
    font-size: 1.12rem;
    color: var(--text-2);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 40px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-actions .btn-primary { padding: 14px 32px; font-size: 0.95rem; }
.hero-actions .btn-outline { padding: 14px 32px; font-size: 0.95rem; }

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 0.82rem;
    color: var(--text-3);
}
.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-proof-item svg {
    width: 14px;
    height: 14px;
    color: var(--green);
}

/* ===== VIDEO SECTION ===== */
.video-section {
    padding: 72px 0 0;
}
.video-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-light);
    margin-bottom: 16px;
}
.video-heading {
    text-align: center;
    font-size: clamp(1.25rem, 2.5vw, 1.7rem);
    font-weight: 700;
    letter-spacing: -0.8px;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.3;
}
.video-heading span { color: #f59e0b; }
.video-wrapper {
    position: relative;
    max-width: 390px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--accent-border);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.12), 0 24px 48px rgba(0, 0, 0, 0.5);
}
.video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: #000;
}

/* ── Lazy-load click-to-play ── */
.video-poster {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-poster-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #1a1a2e 100%);
}
/* Subtle animated glow */
.video-poster-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 55%, rgba(99,102,241,0.18) 0%, transparent 70%);
    animation: poster-pulse 3s ease-in-out infinite alternate;
}
@keyframes poster-pulse {
    from { opacity: 0.6; }
    to   { opacity: 1;   }
}
/* Music note watermark */
.video-poster-icon {
    position: absolute;
    font-size: 7rem;
    opacity: 0.06;
    user-select: none;
    pointer-events: none;
}
.video-play-btn {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 40px rgba(99,102,241,0.4);
}
.video-poster:hover .video-play-btn {
    background: rgba(99,102,241,0.55);
    border-color: rgba(99,102,241,0.9);
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(99,102,241,0.6);
}
.video-play-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    margin-left: 4px;
}
.video-poster-caption {
    position: absolute;
    bottom: 20px;
    left: 0; right: 0;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
    z-index: 2;
}
/* Duration badge */
.video-poster-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}
@media (max-width: 640px) {
    .video-section { padding: 56px 0 0; }
    .video-play-btn { width: 64px; height: 64px; }
    .video-play-btn svg { width: 26px; height: 26px; }
}

/* ── Fullscreen video modal ── */
.video-fullscreen-modal {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9999;
    animation: modal-fade-in 0.18s ease;
}
@keyframes modal-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.video-fullscreen-modal video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    background: #000;
}
.video-fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
}
.video-fullscreen-close:hover {
    background: rgba(255,255,255,0.28);
}

/* ===== METRICS BAR ===== */
.metrics {
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.metric {
    text-align: center;
}
.metric-val {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text);
    margin-bottom: 4px;
}
.metric-val .highlight { color: var(--accent-light); }
.metric-label {
    font-size: 0.78rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}
.section-header {
    margin-bottom: 56px;
}
.section-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-light);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 520px;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-2);
    margin-top: 12px;
    max-width: 480px;
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px 32px;
    position: relative;
    transition: all 0.25s ease;
}
.step:hover {
    border-color: var(--accent-border);
    transform: translateY(-2px);
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent-glow);
    border: 1px solid var(--accent-border);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 20px;
}
.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.step p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.65;
}

/* ===== WHAT'S INCLUDED ===== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.included-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    transition: border-color 0.2s;
}
.included-card:hover { border-color: var(--accent-border); }
.included-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.included-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.included-card p {
    font-size: 0.84rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ===== COMPARISON ===== */
.comparison {
    border-top: 1px solid var(--border);
}
.comp-table {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.comp-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-header {
    background: var(--surface-2);
}
.comp-cell {
    padding: 16px 24px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
}
.comp-header .comp-cell {
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-3);
    padding: 14px 24px;
}
.comp-header .comp-cell:last-child {
    color: var(--accent-light);
}
.comp-cell:first-child {
    color: var(--text-2);
}
.comp-cell .yes {
    color: var(--green);
    font-weight: 600;
}
.comp-cell .no {
    color: #ef4444;
    opacity: 0.6;
}
.comp-cell .partial {
    color: #f59e0b;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 680px;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}
.faq-q {
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text);
    user-select: none;
}
.faq-q::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-3);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.faq-item.open .faq-q::after {
    content: '−';
}
.faq-a {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
    max-height: 400px;
    padding-top: 14px;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 780px;
    margin: 0 auto;
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px 32px 36px;
    position: relative;
    transition: all 0.25s ease;
}
.pricing-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-3px);
}
.pricing-card.featured {
    border-color: var(--accent-border);
    background: linear-gradient(175deg, rgba(99, 102, 241, 0.06) 0%, var(--surface) 40%);
}
.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
}
.pricing-name {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: 10px;
}
.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 4px;
}
.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0;
}
.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-2);
    margin-bottom: 28px;
    line-height: 1.6;
}
.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}
.pricing-features li {
    font-size: 0.88rem;
    color: var(--text-2);
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.pricing-features li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    background: var(--green);
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
}
.pricing-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}
.pricing-cta-primary {
    background: var(--accent);
    color: #fff;
    border: none;
}
.pricing-cta-primary:hover { background: #5558e6; transform: translateY(-1px); }
.pricing-cta-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-2);
}
.pricing-cta-outline:hover { border-color: var(--accent-border); background: var(--accent-glow); }
.pricing-guarantee {
    text-align: center;
    margin-top: 28px;
    font-size: 0.82rem;
    color: var(--text-3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ===== PRICING EXTENDED ===== */
.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    gap: 16px;
}
.pricing-per-slot {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-3);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding: 4px 10px;
    background: var(--surface-3);
    border-radius: 6px;
    display: inline-block;
}
.pricing-card.scale {
    border-color: var(--green-border);
}
.pricing-card.scale:hover {
    border-color: var(--green);
}
.pricing-card.scale .pricing-name {
    color: var(--green);
}
.pricing-card.scale .pricing-per-slot {
    color: var(--green);
    background: var(--green-soft);
}
.pricing-cta-green {
    background: var(--green);
    color: #fff;
    border: none;
}
.pricing-cta-green:hover { background: #0ea373; transform: translateY(-1px); }
.pricing-card.gold {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(175deg, rgba(245, 158, 11, 0.05) 0%, var(--surface) 40%);
}
.pricing-card.gold:hover {
    border-color: rgba(245, 158, 11, 0.6);
}
.pricing-card.gold .pricing-name {
    color: #f59e0b;
}
.pricing-card.gold .pricing-per-slot {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}
.pricing-card.gold .pricing-badge {
    background: #f59e0b;
    color: #000;
}
.pricing-cta-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-weight: 700;
    border: none;
}
.pricing-cta-gold:hover { background: #d97706; transform: translateY(-1px); }
.installment-section {
    margin-top: 16px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}
.installment-section summary {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-light);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    padding: 4px 0;
}
.installment-section summary::-webkit-details-marker { display: none; }
.installment-section summary::after {
    content: '▸';
    font-size: 0.7rem;
    transition: transform 0.2s;
}
.installment-section[open] summary::after {
    transform: rotate(90deg);
}
.installment-section.gold summary { color: #f59e0b; }
.installment-section.green summary { color: var(--green); }
.installment-rows {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.installment-row {
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.76rem;
    color: var(--text-2);
    line-height: 1.5;
}
.installment-row strong {
    color: var(--text);
    display: block;
    font-size: 0.8rem;
}
.pricing-card .pricing-price {
    font-size: 2.2rem;
}

/* ===== EARLY ADOPTER BAND ===== */
.early-adopter {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.early-adopter::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: min(800px, 100vw);
    height: 100%;
    background: radial-gradient(ellipse at 50% 40%, rgba(99,102,241,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.early-adopter-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.early-adopter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px 5px 8px;
    background: rgba(245,158,11,0.10);
    border: 1px solid rgba(245,158,11,0.30);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 24px;
}
.early-adopter-tag-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    animation: blink 2s infinite;
}
.early-adopter h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.early-adopter-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 32px;
}
.early-adopter-price-box {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    background: rgba(99,102,241,0.08);
    border: 1px solid var(--accent-border);
    border-radius: 14px;
    padding: 16px 28px;
    margin-bottom: 28px;
}
.early-adopter-price {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text);
}
.early-adopter-price-label {
    font-size: 0.9rem;
    color: var(--text-2);
    font-weight: 500;
}
.btn-early-adopter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: -0.2px;
}
.btn-early-adopter:hover { background: linear-gradient(135deg, #fbbf24, #f59e0b); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.3); }
.early-adopter-fine {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--text-3);
    line-height: 1.6;
}
.early-adopter-fine strong { color: var(--text-2); }

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 100px 0 80px;
    text-align: center;
    border-top: 1px solid var(--border);
    position: relative;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 100vw);
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.15;
}
.final-cta .cta-sub {
    font-size: 1.05rem;
    color: var(--text-2);
    margin-bottom: 36px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ===== EMAIL FORM ===== */
.email-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto 14px;
}
.email-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--surface-2);
    border: 1px solid var(--border-2);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
}
.email-form input::placeholder { color: var(--text-3); }
.email-form input:focus { border-color: var(--accent-border); }
.email-form button {
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}
.email-form button:hover { background: #5558e6; }
.email-form button:disabled { opacity: 0.5; cursor: not-allowed; }
.form-msg {
    max-width: 440px;
    margin: 0 auto;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    display: none;
}
.form-msg.success {
    background: var(--green-soft);
    border: 1px solid var(--green-border);
    color: var(--green);
}
.form-msg.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}
.form-fine {
    font-size: 0.78rem;
    color: var(--text-3);
    margin-top: 10px;
}

/* ===== FOOTER ===== */
footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 0.78rem;
    color: var(--text-3);
}
.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-links a {
    font-size: 0.78rem;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-2); }

/* ===== REAL RESULTS ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.result-card {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}
.result-card:hover {
    border-color: var(--accent-border);
    transform: translateY(-3px);
}
.result-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center top;
}
.result-info {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}
.result-revenue {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.5px;
}
.result-label {
    font-size: 0.78rem;
    color: var(--text-3);
    margin-top: 2px;
}
.results-disclaimer {
    font-size: 0.78rem;
    color: var(--text-3);
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}
.results-disclaimer a {
    color: var(--accent-light);
    text-decoration: none;
}
.results-disclaimer a:hover { text-decoration: underline; }

/* ===== FTC DISCLAIMERS ===== */
.disclaimers-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    background: var(--surface);
}
.disclaimers-inner {
    max-width: 760px;
    margin: 0 auto;
}
.disclaimers-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}
.disclaimers-list {
    list-style: none;
    padding: 0;
}
.disclaimers-list li {
    font-size: 0.76rem;
    color: var(--text-3);
    line-height: 1.6;
    padding: 5px 0 5px 16px;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.disclaimers-list li:last-child { border-bottom: none; }
.disclaimers-list li::before {
    content: "·";
    position: absolute;
    left: 4px;
    color: var(--text-3);
}
.disclaimers-list strong { color: var(--text-2); }
.disclaimers-link {
    margin-top: 14px;
    font-size: 0.75rem;
}
.disclaimers-link a {
    color: var(--accent-light);
    text-decoration: none;
    opacity: 0.7;
}
.disclaimers-link a:hover { opacity: 1; text-decoration: underline; }

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .steps { grid-template-columns: 1fr; gap: 14px; }
    .included-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .comp-row { grid-template-columns: 1fr 1fr 1fr; }
    .comp-cell { padding: 12px 14px; font-size: 0.82rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

@media (max-width: 640px) {
    .pricing-grid-4 { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .results-grid { grid-template-columns: 1fr; }
    .hero { padding: 130px 0 60px; }
    .hero h1 { letter-spacing: -1.5px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
    .hero-proof { flex-direction: column; gap: 10px; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 72px 0; }
    .email-form { flex-direction: column; }
    .email-form button { width: 100%; }
    .nav-links a:not(.btn-primary) { display: none; }
    .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
    .comp-cell { padding: 10px 10px; font-size: 0.76rem; }
}

@media (max-width: 400px) {
    .wrap { padding: 0 16px; }
    .hero h1 { font-size: 2rem; }
    .metric-val { font-size: 1.6rem; }
}
