:root {
    --bg: #06090f;
    --bg-soft: #0c1220;
    --panel: rgba(14, 23, 39, 0.7);
    --text: #eef5ff;
    --muted: #9aacbf;
    --accent: #c8ff2a;
    --accent-strong: #dcff73;
    --line: rgba(255, 255, 255, 0.14);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-main: 0 24px 90px rgba(0, 0, 0, 0.55);
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    isolation: isolate;
}

::selection {
    color: #0c1119;
    background: var(--accent);
}

.page-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(115deg, rgba(200, 255, 42, 0.12) 0%, rgba(200, 255, 42, 0) 23%),
        linear-gradient(245deg, rgba(66, 110, 255, 0.18) 0%, rgba(66, 110, 255, 0) 32%),
        linear-gradient(130deg, #05080e 0%, #09101d 45%, #06090f 100%);
    overflow: hidden;
}

.page-bg::before {
    content: '';
    position: absolute;
    inset: -24%;
    background:
        linear-gradient(100deg, transparent 0 39%, rgba(255, 255, 255, 0.055) 45%, rgba(200, 255, 42, 0.07) 50%, transparent 61%),
        linear-gradient(170deg, transparent 0 58%, rgba(66, 110, 255, 0.1) 64%, transparent 72%);
    opacity: 0.75;
    transform: translateX(-28%) rotate(6deg);
    animation: backgroundSweep 14s var(--ease-premium) infinite;
}

.page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
    opacity: 0.12;
    pointer-events: none;
    animation: gridDrift 28s linear infinite;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(8, 12, 18, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 42, 0.55), transparent);
    opacity: 0;
    transform: scaleX(0.42);
    transition: opacity 260ms ease, transform 260ms ease;
}

.site-header.is-scrolled {
    background: rgba(6, 9, 15, 0.82);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-shell {
    width: min(1150px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.logo-wrap img {
    width: 130px;
    height: auto;
    display: block;
    transition: transform 260ms var(--ease-premium), filter 260ms ease;
}

.logo-wrap:hover img {
    transform: translateY(-1px) scale(1.025);
    filter: drop-shadow(0 0 18px rgba(200, 255, 42, 0.18));
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0d131d;
    background: var(--accent);
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(200, 255, 42, 0.18);
    transition: transform 200ms var(--ease-premium), box-shadow 200ms ease, background 200ms ease;
}

.nav-cta::after {
    content: '';
    position: absolute;
    inset: -60% -45%;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.5), transparent 62%);
    transform: translateX(-62%) rotate(8deg);
    transition: transform 620ms var(--ease-premium);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(200, 255, 42, 0.35);
}

.nav-cta:hover::after {
    transform: translateX(62%) rotate(8deg);
}

main {
    width: min(1150px, 92vw);
    margin: 0 auto;
    padding: 20px 0 68px;
    position: relative;
    z-index: 1;
}

.hero {
    position: relative;
    min-height: calc(100vh - 98px);
    padding: 62px 0 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    isolation: isolate;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.hero::before {
    inset: 28px -5vw auto auto;
    width: 52%;
    height: 72%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
    border-radius: 0 34px 34px 0;
    background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.035)),
        repeating-linear-gradient(180deg, transparent 0 42px, rgba(255, 255, 255, 0.04) 43px, transparent 44px);
    opacity: 0.9;
}

.hero::after {
    left: 0;
    bottom: 22px;
    width: 240px;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 255, 42, 0.8), transparent);
    animation: linePulse 3.8s ease-in-out infinite;
}

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

.kicker {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-strong);
    font-family: 'Syncopate', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(200, 255, 42, 0.45);
}

h1,
h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.04;
    text-wrap: balance;
}

h1 {
    margin-top: 14px;
    font-size: 4.35rem;
    max-width: 9ch;
    color: var(--text);
    background: linear-gradient(180deg, var(--text) 0%, rgba(238, 245, 255, 0.72) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 3rem;
}

.lead {
    color: rgba(238, 245, 255, 0.76);
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 58ch;
    margin: 20px 0 0;
}

.launch-strip {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.launch-strip span {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(10, 16, 28, 0.56);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
}

.launch-strip span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 42, 0.14), transparent);
    transform: translateX(-110%);
    animation: stripSheen 6s var(--ease-premium) infinite;
}

.launch-strip span:nth-child(2)::after {
    animation-delay: 700ms;
}

.launch-strip span:nth-child(3)::after {
    animation-delay: 1400ms;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 20px;
    min-height: 46px;
    position: relative;
    overflow: hidden;
    transition: transform 180ms var(--ease-premium), box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn::after {
    content: '';
    position: absolute;
    inset: -70% -35%;
    background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.42), transparent 58%);
    transform: translateX(-68%) rotate(6deg);
    transition: transform 620ms var(--ease-premium);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover::after {
    transform: translateX(68%) rotate(6deg);
}

.btn-primary {
    background: var(--accent);
    color: #0c1119;
    box-shadow: 0 16px 30px rgba(200, 255, 42, 0.24);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    border-color: var(--line);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    border-color: rgba(200, 255, 42, 0.4);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.hero-visual {
    position: relative;
    padding: 30px 10px;
    perspective: 1100px;
    isolation: isolate;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 2% 4% 7%;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 26%),
        repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.045) 35px, transparent 36px);
    transform: rotate(-3deg);
    animation: stageFloat 8s ease-in-out infinite;
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 8%;
    bottom: 11%;
    left: 51%;
    width: 1px;
    z-index: -1;
    background: linear-gradient(180deg, transparent, rgba(200, 255, 42, 0.52), transparent);
    animation: scanRail 4.6s ease-in-out infinite;
}

.phone-frame {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    width: min(320px, 78vw);
    margin: 0 auto;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 24%, rgba(255, 255, 255, 0.09)),
        linear-gradient(180deg, #111a29 0%, #0a101b 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 34px;
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(200, 255, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    padding: 12px;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 240ms var(--ease-premium), border-color 240ms ease, box-shadow 240ms ease;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 38%;
    height: 19px;
    border-radius: 999px;
    background: rgba(6, 9, 15, 0.9);
    z-index: 3;
}

.phone-frame::after {
    content: '';
    position: absolute;
    inset: -42% -60%;
    z-index: 4;
    background: linear-gradient(112deg, transparent 36%, rgba(255, 255, 255, 0.22), transparent 58%);
    transform: translateX(-46%) rotate(6deg);
    opacity: 0.72;
    pointer-events: none;
    animation: glassSweep 6.4s var(--ease-premium) infinite;
}

.phone-frame img,
.phone-frame video {
    width: 100%;
    height: auto;
    min-height: 510px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    position: relative;
    z-index: 1;
    background: var(--bg-soft);
}

.phone-frame-hero {
    animation: heroDeviceFloat 6.8s ease-in-out infinite;
}

.phone-gloss {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.16), transparent 35%, transparent 65%, rgba(255, 255, 255, 0.1));
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 2;
}

.floating-stat {
    position: absolute;
    backdrop-filter: blur(10px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(8, 13, 22, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 16px;
    padding: 11px 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    animation: statDrift 5.8s ease-in-out infinite;
}

.floating-stat::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    opacity: 0.85;
}

.floating-stat span {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent-strong);
}

.floating-stat small {
    color: var(--muted);
    font-size: 0.78rem;
}

.stat-one {
    left: 0;
    top: 18%;
}

.stat-two {
    right: 0;
    bottom: 14%;
    animation-delay: 850ms;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 18px;
}

.metric-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
        var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 20px;
    backdrop-filter: blur(16px);
    transition: transform 240ms var(--ease-premium), border-color 240ms ease, box-shadow 240ms ease;
}

.metric-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 42, 0.56), transparent);
    transform: translateX(-80%);
    opacity: 0.8;
    transition: transform 520ms var(--ease-premium);
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 255, 42, 0.36);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.metric-card:hover::before {
    transform: translateX(80%);
}

.metric-card strong {
    font-size: 1.1rem;
}

.metric-card p {
    color: var(--muted);
    margin: 10px 0 0;
    line-height: 1.55;
}

.demo {
    margin-top: 72px;
}

.section-head {
    margin-bottom: 20px;
}

.section-head h2 {
    margin-top: 10px;
}

.demo-picker {
    display: none;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    perspective: 900px;
}

.demo-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    margin: 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.018)),
        rgba(10, 16, 28, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 14px;
    transition: transform 250ms var(--ease-premium), border-color 220ms ease, box-shadow 220ms ease;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
    backdrop-filter: blur(14px);
    transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
}

.demo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(200, 255, 42, 0.08), transparent 32%),
        linear-gradient(315deg, rgba(66, 110, 255, 0.08), transparent 38%);
    opacity: 0;
    transition: opacity 260ms ease;
    pointer-events: none;
}

.demo-card:hover {
    transform: perspective(900px) translateY(-6px) rotateX(calc(var(--tilt-y) + 1.8deg)) rotateY(var(--tilt-x));
    border-color: rgba(200, 255, 42, 0.55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.demo-card:hover::before {
    opacity: 1;
}

.demo-card .phone-frame {
    width: 100%;
    max-width: 300px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.demo-card p {
    margin: 12px 4px 4px;
    color: var(--muted);
    font-size: 0.88rem;
    position: relative;
    z-index: 2;
}

.register {
    margin-top: 78px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 22px;
    align-items: start;
    position: relative;
}

.register::before {
    content: '';
    position: absolute;
    top: -34px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    opacity: 0.8;
}

.register-copy p {
    color: var(--muted);
    line-height: 1.65;
    max-width: 52ch;
}

.register-form {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.018)),
        rgba(9, 15, 24, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 22px;
    display: grid;
    gap: 10px;
    box-shadow:
        var(--shadow-main),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.register-form::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 42, 0.76), transparent);
    animation: formScan 5.5s var(--ease-premium) infinite;
}

.register-form::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.28;
    pointer-events: none;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 75%);
}

.register-form > * {
    position: relative;
    z-index: 1;
}

.register-form label,
.register-form legend {
    color: var(--text);
    font-weight: 650;
    font-size: 0.93rem;
}

.register-form input,
.register-form textarea {
    width: 100%;
    background: rgba(5, 9, 16, 0.85);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 11px 12px;
    font: inherit;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    accent-color: var(--accent);
}

.register-form input.is-invalid,
.register-form textarea.is-invalid,
.register-form fieldset.is-invalid {
    border-color: rgba(255, 110, 110, 0.82);
    box-shadow: 0 0 0 1px rgba(255, 110, 110, 0.4);
}

.field-error {
    margin: -2px 0 4px;
    font-size: 0.83rem;
    color: #ff9ea8;
}

.register-form textarea {
    resize: vertical;
    min-height: 90px;
}

.register-form input:focus,
.register-form textarea:focus,
.register-form button:focus,
.nav-cta:focus,
.btn:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.register-form input:focus,
.register-form textarea:focus {
    background: rgba(5, 9, 16, 0.95);
    border-color: rgba(200, 255, 42, 0.48);
    box-shadow: 0 0 0 3px rgba(200, 255, 42, 0.1);
}

.register-form fieldset {
    margin: 6px 0 4px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    padding: 11px;
}

.goal-grid,
.phone-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.phone-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.goal-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    min-height: 44px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms var(--ease-premium);
}

.goal-option:hover {
    transform: translateY(-1px);
    border-color: rgba(200, 255, 42, 0.38);
    background: rgba(255, 255, 255, 0.04);
}

.goal-option:has(input:checked) {
    border-color: rgba(200, 255, 42, 0.62);
    background: rgba(200, 255, 42, 0.08);
}

.goal-option input {
    width: 17px;
    height: 17px;
}

.consent-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 8px;
    color: var(--muted);
}

.consent-row input {
    width: 17px;
    height: 17px;
}

.honeypot {
    display: none;
}

.form-banner {
    border-radius: var(--radius-md);
    padding: 11px 12px;
    font-size: 0.93rem;
    backdrop-filter: blur(12px);
}

.form-banner[data-success-banner] {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 360ms ease, transform 360ms ease;
}

.form-banner[data-success-banner].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.form-banner.success {
    border: 1px solid rgba(200, 255, 42, 0.54);
    background: rgba(70, 110, 22, 0.28);
}

.form-banner.success {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.success-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 rgba(200, 255, 42, 0.75);
    animation: pulseGlow 1.4s ease-out 1;
}

.form-banner.error {
    border: 1px solid rgba(255, 102, 102, 0.46);
    background: rgba(120, 24, 35, 0.25);
}

.form-banner ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.register-form > .btn {
    width: 100%;
    margin-top: 4px;
}

.site-footer {
    margin: 40px auto 24px;
    width: min(1150px, 92vw);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 255, 42, 0.6), transparent);
}

.site-footer img {
    width: 110px;
    height: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: transform 650ms cubic-bezier(0.2, 0.6, 0.2, 1), opacity 650ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.thank-you-body {
    position: relative;
    min-height: 100vh;
}

.thank-you-shell {
    width: min(1180px, 92vw);
    margin: 44px auto;
    min-height: calc(100vh - 88px);
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 24px;
    align-items: center;
    position: relative;
    isolation: isolate;
}

.thank-you-shell::before {
    content: '';
    position: absolute;
    inset: 8% 12% auto;
    height: 1px;
    z-index: -1;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 42, 0.52), transparent);
    animation: linePulse 4.4s ease-in-out infinite;
}

.thank-you-copy,
.thank-you-visual {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.018)),
        rgba(10, 16, 28, 0.84);
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow:
        var(--shadow-main),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.thank-you-copy {
    padding: 42px;
    overflow: hidden;
}

.thank-you-copy::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 42, 0.76), transparent);
    animation: formScan 5.2s var(--ease-premium) infinite;
}

.thank-you-copy img {
    width: 166px;
    height: auto;
    display: block;
    margin-bottom: 28px;
}

.thank-you-copy h1 {
    margin-top: 16px;
    font-size: 4.5rem;
    max-width: 9ch;
}

.thank-you-lead {
    margin-top: 18px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 54ch;
}

.thank-you-points {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.thank-you-point {
    display: grid;
    gap: 5px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    transition: transform 220ms var(--ease-premium), border-color 220ms ease, background 220ms ease;
}

.thank-you-point:hover {
    transform: translateX(4px);
    border-color: rgba(200, 255, 42, 0.34);
    background: linear-gradient(180deg, rgba(200, 255, 42, 0.06), rgba(255, 255, 255, 0.012));
}

.thank-you-point strong {
    font-size: 0.96rem;
}

.thank-you-point span {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.92rem;
}

.thank-you-actions {
    margin-top: 28px;
}

.thank-you-visual {
    min-height: 720px;
    overflow: hidden;
    padding: 32px 24px;
    display: grid;
    place-items: center;
    perspective: 1100px;
}

.thank-you-visual::before {
    content: '';
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
        repeating-linear-gradient(90deg, transparent 0 40px, rgba(255, 255, 255, 0.045) 41px, transparent 42px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 38%);
    opacity: 0.9;
    transform: rotate(2deg);
    animation: stageFloat 8.4s ease-in-out infinite reverse;
}

.thank-you-phone {
    width: min(360px, 78vw);
    transform: rotate(-4deg) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
    z-index: 2;
    animation: thankYouDeviceFloat 7s ease-in-out infinite;
}

.thank-you-phone img {
    min-height: 610px;
}

.thank-you-lightbar {
    position: absolute;
    left: -28%;
    width: 156%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 255, 42, 0.58), rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.7;
    transform-origin: center;
    animation: lightbarSweep 5.6s var(--ease-premium) infinite;
}

.bar-one {
    top: 40px;
    transform: rotate(-12deg);
}

.bar-two {
    bottom: 40px;
    background: linear-gradient(90deg, transparent, rgba(66, 110, 255, 0.42), rgba(255, 255, 255, 0.16), transparent);
    transform: rotate(12deg);
    animation-delay: 900ms;
}

.thank-you-badge {
    position: absolute;
    z-index: 3;
    display: grid;
    gap: 3px;
    padding: 14px 16px;
    min-width: 156px;
    border-radius: 18px;
    background: rgba(7, 11, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
    animation: statDrift 6s ease-in-out infinite;
}

.thank-you-badge span {
    font-weight: 800;
    color: var(--accent-strong);
}

.thank-you-badge small {
    color: var(--muted);
    font-size: 0.8rem;
}

.badge-top {
    top: 90px;
    left: 28px;
}

.badge-bottom {
    right: 24px;
    bottom: 90px;
    animation-delay: 650ms;
}

@keyframes backgroundSweep {
    0%,
    100% {
        transform: translateX(-32%) rotate(6deg);
    }
    50% {
        transform: translateX(18%) rotate(6deg);
    }
}

@keyframes gridDrift {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 64px 64px, 64px 64px;
    }
}

@keyframes linePulse {
    0%,
    100% {
        opacity: 0.24;
        transform: scaleX(0.82);
    }
    50% {
        opacity: 0.9;
        transform: scaleX(1);
    }
}

@keyframes stripSheen {
    0%,
    55% {
        transform: translateX(-110%);
    }
    100% {
        transform: translateX(110%);
    }
}

@keyframes stageFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes scanRail {
    0%,
    100% {
        opacity: 0.18;
        transform: scaleY(0.72);
    }
    50% {
        opacity: 0.8;
        transform: scaleY(1);
    }
}

@keyframes glassSweep {
    0%,
    52% {
        transform: translateX(-52%) rotate(6deg);
    }
    100% {
        transform: translateX(52%) rotate(6deg);
    }
}

@keyframes heroDeviceFloat {
    0%,
    100% {
        transform: translateY(0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
    }
    50% {
        transform: translateY(-12px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
    }
}

@keyframes thankYouDeviceFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-4deg) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
    }
    50% {
        transform: translateY(-12px) rotate(-3deg) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
    }
}

@keyframes statDrift {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
}

@keyframes formScan {
    0%,
    100% {
        transform: translateX(-74%);
        opacity: 0.35;
    }
    50% {
        transform: translateX(74%);
        opacity: 1;
    }
}

@keyframes lightbarSweep {
    0%,
    100% {
        opacity: 0.22;
        background-position: -220px 0;
    }
    50% {
        opacity: 0.86;
        background-position: 220px 0;
    }
}

@keyframes floaty {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 255, 42, 0.75);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(200, 255, 42, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200, 255, 42, 0);
    }
}

@media (max-width: 1024px) {
    .hero,
    .register,
    .thank-you-shell {
        grid-template-columns: 1fr;
    }

    .hero {
        gap: 18px;
        min-height: auto;
        padding-top: 34px;
    }

    .hero-visual {
        order: -1;
    }

    h1 {
        font-size: 3.65rem;
        max-width: 11ch;
    }

    h2 {
        font-size: 2.5rem;
    }

    .metrics,
    .demo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .floating-stat {
        display: none;
    }

    .phone-frame {
        width: min(360px, 88vw);
    }

    .thank-you-shell {
        min-height: auto;
    }

    .thank-you-copy h1 {
        font-size: 3.65rem;
        max-width: 11ch;
    }

    .thank-you-visual {
        min-height: 560px;
    }
}

@media (max-width: 720px) {
    main {
        display: flex;
        flex-direction: column;
    }

    .hero {
        order: 1;
    }

    .metrics {
        order: 2;
    }

    .demo {
        order: 3;
        margin-top: 48px;
    }

    .register {
        order: 4;
        margin-top: 52px;
    }

    .register::before {
        top: -18px;
    }

    .demo-picker {
        display: flex;
        gap: 10px;
        margin: 20px -4vw 18px;
        padding: 0 4vw 12px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        scroll-padding-inline: 4vw;
        scroll-snap-type: x mandatory;
    }

    .demo-picker::-webkit-scrollbar {
        display: none;
    }

    .demo-picker-button {
        flex: 0 0 min(72vw, 230px);
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 3px 10px;
        align-items: center;
        min-height: 70px;
        padding: 12px 14px;
        color: var(--text);
        text-align: left;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 16px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
            rgba(10, 16, 28, 0.76);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
        backdrop-filter: blur(14px);
        cursor: pointer;
        scroll-snap-align: center;
        transition: transform 180ms var(--ease-premium), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .demo-picker-button.is-active {
        border-color: rgba(200, 255, 42, 0.64);
        background:
            linear-gradient(135deg, rgba(200, 255, 42, 0.14), rgba(255, 255, 255, 0.025) 46%),
            rgba(10, 16, 28, 0.88);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(200, 255, 42, 0.12);
        transform: translateY(-2px);
    }

    .demo-picker-number {
        grid-row: span 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        color: #0c1119;
        font-size: 0.76rem;
        font-weight: 800;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 24px rgba(200, 255, 42, 0.22);
    }

    .demo-picker-text {
        overflow: hidden;
        color: var(--text);
        font-size: 0.86rem;
        font-weight: 800;
        line-height: 1.25;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .demo-picker-button small {
        color: var(--muted);
        font-size: 0.74rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .demo-grid {
        display: block;
        position: relative;
        margin-top: 4px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
            rgba(8, 13, 22, 0.58);
        box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
        overflow: hidden;
    }

    .demo-grid::before {
        content: '';
        position: absolute;
        inset: 0 0 auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(200, 255, 42, 0.66), transparent);
        animation: linePulse 4s ease-in-out infinite;
    }

    .demo-card {
        display: none;
        max-width: 360px;
        margin: 0 auto;
        box-shadow: 0 22px 64px rgba(0, 0, 0, 0.36);
    }

    .demo-card.is-active {
        display: block;
    }

    .demo-card .phone-frame {
        max-width: 310px;
    }

    .metrics,
    .phone-platform-grid,
    .goal-grid {
        grid-template-columns: 1fr;
    }

    .nav-shell {
        min-height: 68px;
    }

    h1 {
        font-size: 2.65rem;
        max-width: 14ch;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding-top: 28px;
    }

    .hero-copy {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-actions,
    .launch-strip {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .site-footer {
        flex-direction: column;
        gap: 10px;
    }

    .thank-you-shell {
        width: min(94vw, 560px);
        margin: 18px auto 28px;
    }

    .thank-you-copy,
    .thank-you-visual {
        border-radius: 24px;
    }

    .thank-you-copy {
        padding: 28px 22px;
    }

    .thank-you-copy h1 {
        font-size: 2.55rem;
        max-width: 10ch;
    }

    .thank-you-visual {
        min-height: 460px;
        padding: 20px 16px;
    }

    .thank-you-phone {
        width: min(290px, 72vw);
    }

    .thank-you-phone img {
        min-height: 500px;
    }

    .thank-you-badge {
        min-width: 132px;
        padding: 12px 14px;
    }

    .badge-top {
        top: 24px;
        left: 16px;
    }

    .badge-bottom {
        right: 16px;
        bottom: 28px;
    }
}

@media (max-width: 420px) {
    .nav-cta {
        padding: 10px 14px;
        font-size: 0.86rem;
    }

    .logo-wrap img {
        width: 112px;
    }

    h1,
    .thank-you-copy h1 {
        font-size: 2.25rem;
    }

    .register-form {
        padding: 18px;
        border-radius: 22px;
    }

    .phone-frame img,
    .phone-frame video {
        min-height: 460px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .phone-frame-hero,
    .thank-you-phone,
    .floating-stat,
    .thank-you-badge,
    .demo-card {
        transform: none !important;
    }
}
