/* Mobill redesign v2 — "Acid Shock" (self-contained; does not touch ../styles.css) */
:root {
    --acid: #C8FF00;
    --shock: #FF2E88;
    --electric: #2E45FF;
    --mint: #00E676;
    --bg-color: #0A0A0A;
    --surface-color: #1A1A1A;
    --surface-alt: #151515;
    --paper: #EFEEEA;
    --line: #1E1E1E;
    --line-strong: #2A2A2A;
    --text-color: #ffffff;
    --text-soft: #E5E5E5;
    --text-muted: #B8B8B8;
    --text-faint: #9A9A9A;
    --text-dim: #6E6E6E;
    --font-display: 'Anton', 'Impact', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --gutter: 40px;
    --transition: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

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

img,
video {
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

a {
    color: var(--acid);
    transition: var(--transition);
}

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

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.98;
    letter-spacing: 0;
}

.mono {
    font-family: var(--font-mono);
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--acid);
    margin-bottom: 18px;
}

.eyebrow--shock {
    color: var(--shock);
}

.eyebrow--ink {
    color: #000;
}

.eyebrow--white {
    color: #fff;
}

.text-acid { color: var(--acid); }
.text-shock { color: var(--shock); }

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 44px;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border-radius: 0;
}

.btn-acid {
    background: var(--acid);
    color: #000;
    border-color: var(--acid);
}

.btn-acid:hover {
    background: var(--shock);
    border-color: var(--shock);
    color: #000;
}

.btn-ink {
    background: #000;
    color: var(--acid);
    border-color: #000;
}

.btn-ink:hover {
    background: var(--shock);
    color: #000;
    border-color: var(--shock);
}

.btn-outline {
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    border-color: var(--acid);
    color: var(--acid);
}

.btn-outline-ink {
    color: #000;
    border-color: #000;
}

.btn-outline-ink:hover {
    background: #000;
    color: var(--acid);
}

.btn-sm {
    font-size: 0.9rem;
    padding: 12px 26px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Nav */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--acid);
    color: #000;
    padding: 14px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-nav__logo img {
    height: 32px;
    display: block;
    filter: invert(1) brightness(0);
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.site-nav__links a:not(.btn) {
    color: #000;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav__links a:not(.btn):hover {
    color: var(--shock);
}

/* Hero */
.hero {
    position: relative;
    min-height: 900px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
}

.hero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-color) 8%, rgba(10, 10, 10, 0.4) 55%, rgba(10, 10, 10, 0.1) 85%);
}

.hero__content {
    position: relative;
    padding: 140px var(--gutter) 64px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.6rem, 7.3vw, 7.2rem);
    line-height: 1.02;
    margin-bottom: 28px;
}

.hero h1 span {
    display: block;
}

.hero__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__subtitle {
    font-size: 1.3rem;
    color: var(--text-soft);
    max-width: 560px;
}

.hero__buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    /* keep clear of the fixed "Have questions?" box (200px + 20px margin) */
    margin-right: 240px;
}

@media (max-width: 960px) {
    .hero__buttons {
        margin-right: 0;
    }
}

/* Marquee */
.marquee {
    background: var(--shock);
    color: #000;
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    animation: marquee 22s linear infinite;
}

.marquee__track span {
    padding-right: 1.2em;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Motion: scroll progress, hero rise-in, scroll reveal */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--shock);
    z-index: 200;
    pointer-events: none;
}

@keyframes riseIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 span {
    animation: riseIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero h1 span:nth-child(1) { animation-delay: 0.1s; }
.hero h1 span:nth-child(2) { animation-delay: 0.3s; }
.hero h1 span:nth-child(3) { animation-delay: 0.5s; }

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal="in"] {
    opacity: 1;
    transform: translateY(0);
}

.loop-grid .loop-step:nth-child(2) { transition-delay: 0.12s; }
.loop-grid .loop-step:nth-child(3) { transition-delay: 0.24s; }
.loop-grid .loop-step:nth-child(4) { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    .marquee__track,
    .hero h1 span {
        animation: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Sections */
.section {
    padding: 88px var(--gutter);
}

.section--bleed {
    padding-left: 0;
    padding-right: 0;
}

.section--bleed > .inset {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.section--acid {
    background: var(--acid);
    color: #000;
}

.section--electric {
    background: var(--electric);
    color: #fff;
}

.section--shock {
    background: var(--shock);
    color: #000;
}

.section--ruled {
    border-bottom: 2px solid var(--line);
}

.section h2 {
    font-size: 4.6rem;
    margin-bottom: 16px;
}

.section h2.h2--xl {
    font-size: 5.2rem;
    line-height: 0.96;
}

.section h2.h2--lg {
    font-size: 4rem;
    margin-bottom: 24px;
}

.section-lede {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 720px;
}

.section--electric .section-lede {
    color: #fff;
    opacity: 0.9;
    margin-bottom: 44px;
    max-width: 760px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.body-copy {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 14px;
}

.section--acid .body-copy {
    color: #000;
}

/* Street + Digital */
.why h2 {
    margin-bottom: 52px;
    max-width: 1000px;
}

.paper {
    background: var(--paper);
    padding: 80px var(--gutter);
    display: flex;
    justify-content: center;
}

.paper .player {
    width: 100%;
    max-width: 1080px;
}

.why__copy {
    padding: 64px var(--gutter) 0;
    max-width: 1060px;
    margin: 0 auto;
    text-align: center;
}

.why__lead {
    color: #fff;
    font-size: 1.7rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 28px;
    text-wrap: pretty;
}

.why__sub {
    color: var(--text-soft);
    font-size: 1.35rem;
    line-height: 1.45;
    text-wrap: pretty;
}

.why__sub strong {
    font-weight: 700;
}

/* Split layouts */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.split--wide-right {
    grid-template-columns: 1fr 1.1fr;
}

.split--wide-left {
    grid-template-columns: 1.1fr 1fr;
}

.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.stat__value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    text-transform: uppercase;
    line-height: 1;
}

.stat__label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    margin-top: 2px;
}

.photo-frame {
    border: 4px solid #000;
    position: relative;
}

.photo-frame img {
    width: 100%;
    display: block;
}

.photo-frame__blur {
    position: absolute;
    left: 44%;
    top: 77.5%;
    width: 12.5%;
    height: 9%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Flow blocks (Street Echo / Living Audience) */
.flow {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.block {
    background: var(--surface-color);
    border-left: 8px solid var(--acid);
    padding: 26px 30px;
}

.block--shock {
    border-left-color: var(--shock);
}

.block--fill-acid {
    background: var(--acid);
    color: #000;
    border-left: 0;
}

.block--fill-shock {
    background: var(--shock);
    color: #000;
    border-left: 0;
}

.block__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.block__sub {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-faint);
}

.block--fill-acid .block__sub,
.block--fill-shock .block__sub {
    color: #000;
}

.flow__arrow {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--acid);
    margin-left: 30px;
}

.flow__arrow--shock {
    color: var(--shock);
}

.flow__caption {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 8px;
}

.note {
    background: var(--surface-color);
    padding: 16px 20px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.note strong {
    color: #fff;
}

/* Loop */
.loop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.loop-step {
    background: #000;
    padding: 28px 24px;
}

.loop-step__num {
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--step-accent);
}

.loop-step__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.loop-step__desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.loop-step__plan {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--step-accent);
}

.loop-foot {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    margin-top: 28px;
    opacity: 0.85;
}

.accent-electric { --step-accent: var(--electric); }
.accent-acid { --step-accent: var(--acid); }
.accent-shock { --step-accent: var(--shock); }
.accent-mint { --step-accent: var(--mint); }

/* Tiers */
.tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}

.tier {
    background: var(--surface-alt);
    color: #fff;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 8px solid var(--step-accent);
}

.tier--popular {
    background: var(--acid);
    color: #000;
}

.tier__badge {
    position: absolute;
    top: -18px;
    right: 16px;
    background: var(--shock);
    color: #000;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 12px;
}

.tier__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--step-accent);
    margin-bottom: 10px;
}

.tier--popular .tier__eyebrow {
    color: #000;
}

.tier h3 {
    font-size: 1.9rem;
    margin-bottom: 4px;
}

.tier__promise {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.tier__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px;
}

.tier__price strong {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.6rem;
    line-height: 1;
}

.tier__price span {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    opacity: 0.7;
}

.tier__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.tier__features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.86rem;
    line-height: 1.5;
}

.tier__features li::before {
    content: "✚";
    color: var(--step-accent);
    font-weight: 700;
    line-height: 1.4;
}

.tier--popular .tier__features li::before {
    color: #000;
}

.tier__features li span {
    opacity: 0.85;
}

.tier__note {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    opacity: 0.65;
    margin-top: 18px;
    border-top: 1px solid var(--line-strong);
    padding-top: 12px;
}

.tier--popular .tier__note {
    border-top-color: rgba(0, 0, 0, 0.3);
}

.tier .btn {
    margin-top: 18px;
    font-size: 0.95rem;
    padding: 14px 0;
    background: var(--step-accent);
    color: #000;
    border-color: var(--step-accent);
}

.tier .btn:hover {
    opacity: 0.85;
}

.tier--popular .btn {
    background: #000;
    color: var(--acid);
    border-color: #000;
}

.tiers-footnote {
    font-family: var(--font-mono);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-faint);
    margin: 44px auto 0;
    max-width: 720px;
}

.addons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 44px;
}

.addon__eyebrow {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.addon__title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.addon p:last-child {
    font-size: 0.88rem;
    color: var(--text-faint);
}

/* Timeline */
.timeline {
    background: var(--surface-color);
    padding: 44px 36px;
    margin-top: 44px;
}

.timeline h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.timeline__intro {
    color: var(--text-faint);
    font-size: 0.95rem;
    margin-bottom: 32px;
    max-width: 640px;
}

.timeline__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.timeline__step {
    border-left: 6px solid var(--step-accent);
    padding-left: 18px;
}

.timeline__when {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--step-accent);
    margin-bottom: 6px;
}

.timeline__title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.timeline__text {
    font-size: 0.85rem;
    color: var(--text-faint);
}

/* CTA */
.cta {
    padding: 100px var(--gutter);
    text-align: center;
}

.cta h2 {
    font-size: 5rem;
    line-height: 0.96;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.15rem;
    margin: 0 auto 36px;
    max-width: 640px;
    font-weight: 500;
}

.cta .btn-ink {
    padding: 20px 52px;
}

.cta .btn-ink:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Footer */
.site-footer {
    padding: 28px var(--gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 2px solid var(--line);
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__brand img {
    height: 20px;
}

.site-footer span,
.site-footer a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
}

.site-footer a:hover {
    color: var(--acid);
}

.site-footer__links {
    display: flex;
    gap: 18px;
    list-style: none;
}

/* Plyr theming */
.plyr {
    --plyr-color-main: var(--acid);
    --plyr-video-background: #000;
    --plyr-video-control-color: #fff;
    --plyr-video-control-color-hover: #000;
    --plyr-font-family: var(--font-body);
    --plyr-control-radius: 0;
}

/* Floating contact box ("Have questions?") */
.floating-contact-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 200px;
    background: rgba(60, 60, 60, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-contact-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.contact-box-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-box-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    color: #ffffff;
    transform: scale(1.05);
}

.contact-btn i {
    font-size: 1rem;
}

/* Onboarding */
.onboarding-nav {
    background: var(--acid);
    color: #000;
    padding: 14px var(--gutter);
}

.onboarding-nav__inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.onboarding-nav__inner img {
    height: 30px;
    display: block;
    filter: invert(1) brightness(0);
}

.steps {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.steps li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.steps__dot {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    background: transparent;
    color: #000;
    border: 2px solid #000;
    opacity: 0.45;
}

.steps__label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    opacity: 0.45;
}

.steps li.is-active .steps__dot,
.steps li.is-active .steps__label,
.steps li.is-done .steps__dot,
.steps li.is-done .steps__label {
    opacity: 1;
}

.steps li.is-active .steps__dot {
    background: #000;
    color: var(--acid);
}

.steps li.is-done .steps__dot {
    background: var(--shock);
    border-color: var(--shock);
    color: #000;
}

.onboarding {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px var(--gutter) 120px;
}

.onboarding h1 {
    font-size: 3.4rem;
    margin-bottom: 10px;
}

.onboarding h2 {
    font-size: 2rem;
    margin-bottom: 6px;
}

.onboarding__intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.onboarding__intro strong {
    color: #fff;
}

.onboarding-step {
    display: none;
}

.onboarding-step.is-visible {
    display: block;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form--tight {
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--acid);
}

.field label span {
    color: var(--text-dim);
    text-transform: none;
    letter-spacing: 0;
}

.field input,
.field select {
    background: var(--surface-color);
    border: 2px solid var(--line-strong);
    border-radius: 0;
    padding: 14px 16px;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-body);
    width: 100%;
}

.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--acid);
}

.field input::placeholder {
    color: var(--text-dim);
}

.field select option {
    color: #000;
}

.form__error {
    font-family: var(--font-mono);
    color: var(--shock);
    font-size: 0.85rem;
}

.form__error:empty {
    display: none;
}

.form__hint {
    font-family: var(--font-mono);
    color: var(--text-dim);
    font-size: 0.78rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.checking {
    text-align: center;
    padding: 96px 0;
}

.checking i {
    font-size: 2rem;
    color: var(--acid);
}

.checking p {
    font-family: var(--font-mono);
    color: var(--text-muted);
    margin-top: 20px;
}

.approved-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.approved-title h1 {
    margin-bottom: 0;
}

.check-badge {
    width: 48px;
    height: 48px;
    background: var(--mint);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.check-badge--lg {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin: 24px auto;
}

.expect {
    background: var(--surface-color);
    border-left: 8px solid var(--acid);
    padding: 28px;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.expect__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.expect__num {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1;
    color: var(--acid);
    min-width: 22px;
    margin-top: 2px;
}

.expect__item p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.expect__item i {
    margin-top: 4px;
    width: 18px;
    flex-shrink: 0;
}

.expect__item strong {
    color: #fff;
}

.expect__icon--street { color: var(--acid); }
.expect__icon--social { color: var(--shock); }
.expect__icon--growth { color: var(--mint); }

.no-charge {
    font-family: var(--font-mono);
    color: var(--mint);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.agree {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer;
    background: var(--surface-color);
    padding: 16px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.agree input {
    margin-top: 4px;
    accent-color: var(--acid);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.turnstile {
    min-height: 65px;
}

.recommend {
    background: var(--surface-color);
    border-left: 8px solid var(--shock);
    padding: 22px 26px;
    margin-bottom: 24px;
}

.recommend__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.recommend__text {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.waitlist {
    background: var(--acid);
    color: #000;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 0.92rem;
}

#payment-element {
    margin-bottom: 4px;
}

.demo-notice {
    font-family: var(--font-mono);
    background: var(--shock);
    color: #000;
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.done {
    text-align: center;
}

.done h1 {
    margin-bottom: 12px;
}

.done .onboarding__intro {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.done .expect {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    gap: 18px;
}

.back-link {
    display: inline-block;
    margin-top: 36px;
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

.back-link:hover {
    color: var(--acid);
}

/* Responsive */
@media (max-width: 1100px) {
    .loop-grid,
    .tiers,
    .timeline__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tiers {
        row-gap: 34px;
    }
}

@media (max-width: 960px) {
    .split,
    .split--wide-right,
    .split--wide-left {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .split--wide-left > :first-child {
        order: 2;
    }

    .addons {
        grid-template-columns: 1fr;
    }

    .site-nav__links li:not(.site-nav__cta):not(.site-nav__drivers) {
        display: none;
    }

    .site-nav__links {
        gap: 10px;
    }

    .section h2,
    .section h2.h2--xl,
    .section h2.h2--lg,
    .cta h2 {
        font-size: 3.2rem;
    }
}

@media (max-width: 640px) {
    :root {
        --gutter: 20px;
    }

    .hero {
        min-height: 640px;
    }

    .hero__content {
        padding-top: 100px;
        padding-bottom: 48px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .btn-sm {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .section {
        padding: 64px var(--gutter);
    }

    .section h2,
    .section h2.h2--xl,
    .section h2.h2--lg,
    .cta h2 {
        font-size: 2.6rem;
    }

    .why__lead {
        font-size: 1.3rem;
    }

    .why__sub {
        font-size: 1.1rem;
    }

    .paper {
        padding: 32px var(--gutter);
    }

    .loop-grid,
    .tiers,
    .timeline__grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .onboarding h1 {
        font-size: 2.4rem;
    }

    .steps__label {
        display: none;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-contact-box {
        width: 160px;
        bottom: 15px;
        right: 15px;
        padding: 12px;
    }

    .contact-box-title {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .contact-btn {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}
