:root {
    color-scheme: dark;
    --ink: #070914;
    --ink-2: #0d1220;
    --ink-3: #151c2d;
    --paper: #f8fafc;
    --paper-2: #eef3fb;
    --text: #f8fafc;
    --text-dark: #0b1020;
    --muted: #aab5c7;
    --muted-dark: #586474;
    --line: rgba(255,255,255,.13);
    --line-dark: #dde6f2;
    --purple: #7b00ff;
    --purple-2: #4a00d9;
    --cyan: #11bdf4;
    --lime: #a6ff4d;
    --amber: #ffb84d;
    --pink: #ff4d7d;
    --shadow: 0 28px 80px rgba(0,0,0,.36);
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        var(--ink);
    background-size: 80px 80px;
    overflow-x: hidden;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

button,
input,
select,
textarea {
    font: inherit;
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    border-radius: 8px;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px 34px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 20, .88);
    backdrop-filter: blur(18px);
}

.site-header > * {
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    padding: 6px 8px;
    border-radius: 8px;
    background: #fff;
}

.brand img {
    width: 218px;
    height: auto;
}

.top-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.top-nav a {
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 850;
}

.top-nav a:hover,
.top-nav a:focus-visible {
    color: #fff;
    background: rgba(255,255,255,.08);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 950;
    line-height: 1.1;
    text-align: center;
}

.nav-cta {
    padding: 12px 16px;
    color: #fff;
    background: var(--purple);
    box-shadow: 0 14px 34px rgba(123,0,255,.28);
}

.button {
    padding: 14px 18px;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    box-shadow: 0 18px 42px rgba(123,0,255,.32);
}

.button-secondary {
    color: #fff;
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.07);
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-1px);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: 52px;
    align-items: center;
    min-height: 820px;
    padding: 76px 44px 44px;
    overflow: hidden;
    max-width: 100vw;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(123,0,255,.38), transparent 38%),
        linear-gradient(45deg, transparent 52%, rgba(17,189,244,.22)),
        linear-gradient(180deg, transparent 72%, rgba(166,255,77,.12));
    pointer-events: none;
}

.hero-copy,
.hero-stage {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hero-copy {
    max-width: 780px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--lime);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--purple);
}

h1,
h2,
h3,
p {
    margin-top: 0;
    overflow-wrap: break-word;
}

h1 {
    max-width: 900px;
    margin-bottom: 22px;
    font-size: 76px;
    line-height: .94;
    font-weight: 950;
    overflow-wrap: break-word;
}

h1,
h2,
h3,
.button,
.nav-cta,
.eyebrow,
.hero-metrics strong,
.drop-row strong {
    font-family: "Segoe UI Black", "Arial Black", "Segoe UI", Arial, Helvetica, sans-serif;
}

.hero-lead {
    max-width: 720px;
    color: #dfe7f6;
    font-size: 20px;
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 28px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 780px;
}

.hero-metrics div {
    min-height: 112px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.06);
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    margin-bottom: 8px;
    font-size: 19px;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.hero-stage {
    display: grid;
    gap: 14px;
}

.hero-phone {
    padding: 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(22,29,47,.98), rgba(10,13,24,.98));
    box-shadow: var(--shadow);
}

.phone-top,
.chat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
}

.live-pill i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 6px rgba(255,77,125,.14);
}

.stream-window {
    position: relative;
    height: 360px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: #050711;
}

.stream-window img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.16) contrast(1.04);
}

.stream-window::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,7,17,.86), transparent 48%);
}

.auction-float {
    position: absolute;
    z-index: 1;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(7,9,20,.86);
    backdrop-filter: blur(12px);
}

.auction-float span {
    color: var(--muted);
}

.auction-float strong {
    color: var(--lime);
}

.drop-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.drop-row article {
    min-width: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.055);
}

.drop-row img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    background: #111827;
}

.drop-row strong,
.drop-row span {
    display: block;
    overflow-wrap: anywhere;
}

.drop-row strong {
    margin-top: 9px;
    font-size: 14px;
}

.drop-row span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.chat-card {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,.075);
    box-shadow: 0 16px 50px rgba(0,0,0,.28);
}

.chat-card p {
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,.09);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.chat-card b {
    color: #fff;
}

.chat-card .pin {
    color: #fff;
}

.logo-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 18px 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.logo-wall span {
    padding: 8px 12px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    color: #172033;
    font-size: 13px;
    font-weight: 950;
    background: #fff;
}

.section {
    padding: 86px 44px;
    overflow: hidden;
}

.section-heading,
.platform-copy,
.proof-copy {
    max-width: var(--max);
    margin: 0 auto 30px;
}

.section-heading.compact {
    max-width: 820px;
}

h2 {
    max-width: 880px;
    margin-bottom: 16px;
    font-size: 52px;
    line-height: 1;
    font-weight: 950;
}

h3 {
    font-size: 22px;
    line-height: 1.12;
}

.section-heading p,
.platform-copy p,
.seller-copy p,
.form-copy p {
    max-width: 760px;
    color: var(--muted-dark);
    font-size: 18px;
    line-height: 1.7;
}

.problem-section,
.seller-section,
.proof-section,
.faq-section {
    color: var(--text-dark);
    background: var(--paper);
}

.story-grid,
.platform-grid,
.proof-grid,
.timeline {
    display: grid;
    max-width: var(--max);
    margin: 0 auto;
    gap: 14px;
}

.story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-grid article,
.feature-card,
.timeline article,
.proof-grid div,
.signup-form,
.faq-list details,
.contact-note {
    border-radius: 8px;
}

.story-grid article {
    min-height: 300px;
    padding: 24px;
    border: 1px solid var(--line-dark);
    background: #fff;
}

.story-grid span,
.feature-number,
.timeline span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 36px;
    margin-bottom: 22px;
    padding: 0 10px;
    border-radius: 8px;
    color: #fff;
    background: var(--purple);
    font-size: 12px;
    font-weight: 950;
}

.story-grid p,
.feature-card p,
.timeline p,
.proof-grid span,
.seller-list li {
    color: var(--muted-dark);
    line-height: 1.65;
}

.platform-section,
.form-section,
.beta-journey {
    background: var(--ink-2);
}

.platform-copy p,
.form-copy p,
.beta-journey .section-heading p {
    color: #d6deef;
}

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

.feature-card {
    min-height: 300px;
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.055);
}

.feature-card.featured {
    background:
        linear-gradient(135deg, rgba(123,0,255,.34), transparent 58%),
        rgba(255,255,255,.075);
}

.feature-card p {
    color: var(--muted);
}

.seller-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    gap: 44px;
    align-items: center;
}

.seller-media {
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(15,23,42,.16);
}

.seller-media img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: 50% 44%;
}

.seller-copy {
    max-width: 620px;
}

.seller-list {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.seller-list li {
    padding: 15px 16px;
    border-left: 4px solid var(--purple);
    border-radius: 0 8px 8px 0;
    background: #fff;
}

.seller-list strong {
    color: var(--text-dark);
}

.beta-journey .section-heading {
    color: #fff;
}

.timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline article {
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
}

.timeline h3 {
    color: #fff;
}

.timeline p {
    color: var(--muted);
}

.proof-section {
    border-top: 1px solid var(--line-dark);
}

.proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid div {
    padding: 20px;
    border: 1px solid var(--line-dark);
    background: #fff;
}

.proof-grid strong,
.proof-grid span {
    display: block;
}

.proof-grid strong {
    margin-bottom: 8px;
    font-size: 18px;
}

.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: var(--max);
    margin: 22px auto 0;
}

.payment-strip span {
    min-height: 34px;
    padding: 8px 11px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    color: #172033;
    background: #fff;
    font-size: 13px;
    font-weight: 950;
}

.form-section {
    display: grid;
    grid-template-columns: minmax(320px, 460px) minmax(0, 680px);
    justify-content: center;
    gap: 56px;
    align-items: start;
}

.form-copy {
    position: sticky;
    top: 106px;
}

.contact-note {
    display: grid;
    gap: 6px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
}

.contact-note span {
    color: var(--muted);
    line-height: 1.5;
}

.signup-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.signup-form label {
    display: grid;
    gap: 8px;
    color: #152033;
    font-size: 14px;
    font-weight: 900;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
    width: 100%;
    border: 1px solid #d5dfec;
    background: #f8fafc;
    color: #0f172a;
    outline: none;
}

.signup-form input,
.signup-form select {
    height: 48px;
    padding: 0 13px;
}

.signup-form textarea {
    min-height: 140px;
    padding: 13px;
    resize: vertical;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(123,0,255,.14);
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.check-line {
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    font-weight: 700;
}

.check-line input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.check-line span {
    color: var(--muted-dark);
    line-height: 1.45;
}

.form-submit {
    width: 100%;
}

.form-submit:disabled {
    opacity: .7;
    cursor: wait;
}

.form-message {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 8px;
}

.form-message.success {
    border: 1px solid #9ae6b4;
    background: #ecfdf3;
    color: #166534;
}

.form-message.error {
    border: 1px solid #fecaca;
    background: #fff1f2;
    color: #9f1239;
}

.form-message ul {
    margin: 0;
    padding-left: 18px;
}

.faq-list {
    display: grid;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-list details {
    border: 1px solid var(--line-dark);
    background: #fff;
}

.faq-list summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 950;
}

.faq-list p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--muted-dark);
    line-height: 1.65;
}

.site-footer {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 44px 20px;
    border-top: 1px solid var(--line);
    background: var(--ink);
    color: var(--muted);
    text-align: center;
}

.site-footer img {
    width: 230px;
    padding: 8px;
    border-radius: 8px;
    background: #fff;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: #fff;
    font-weight: 900;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .top-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding-top: 58px;
    }

    .hero-copy {
        max-width: 920px;
    }

    h1 {
        font-size: 62px;
    }

    .hero-stage {
        max-width: 760px;
    }

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

    .seller-section,
    .form-section {
        grid-template-columns: 1fr;
    }

    .form-copy {
        position: static;
    }
}

@media (max-width: 820px) {
    .site-header {
        grid-template-columns: 1fr;
        padding: 12px 16px;
        gap: 10px;
    }

    .brand,
    .nav-cta {
        justify-self: stretch;
    }

    .brand {
        justify-content: center;
    }

    .brand img {
        width: min(240px, calc(100vw - 64px));
    }

    .nav-cta {
        width: 100%;
        padding: 10px 12px;
        font-size: 13px;
    }

    .hero {
        width: 100%;
        max-width: 100vw;
        grid-template-columns: minmax(0, 1fr);
        padding: 44px 16px 28px;
        gap: 28px;
    }

    .hero-copy,
    .hero-stage,
    .hero-phone,
    .chat-card {
        width: 100%;
        max-width: calc(100vw - 32px);
    }

    .hero-lead {
        width: 100%;
        max-width: calc(100vw - 32px);
    }

    h1 {
        max-width: 10em;
        font-size: 38px;
        line-height: 1;
    }

    h2 {
        font-size: 36px;
    }

    .hero-lead,
    .section-heading p,
    .platform-copy p,
    .seller-copy p,
    .form-copy p {
        font-size: 16px;
    }

    .hero-actions,
    .hero-metrics,
    .story-grid,
    .platform-grid,
    .timeline,
    .proof-grid,
    .field-row {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
    }

    .hero-metrics div {
        min-height: 0;
    }

    .stream-window {
        height: 300px;
    }

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

    .drop-row article {
        display: grid;
        grid-template-columns: 76px 1fr;
        column-gap: 12px;
        align-items: center;
    }

    .drop-row img {
        grid-row: span 2;
    }

    .section {
        padding: 62px 16px;
    }

    .story-grid article,
    .feature-card,
    .timeline article {
        min-height: 0;
    }

    .seller-media img {
        height: 380px;
    }

    .signup-form {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    h1 {
        max-width: 9.4em;
        font-size: 34px;
    }

    h2 {
        font-size: 32px;
    }

    .stream-window {
        height: 240px;
    }

    .auction-float {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-strip span,
    .logo-wall span {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 620px) {
    .hero-copy,
    .hero-stage,
    .hero-phone,
    .chat-card,
    .hero-lead,
    .hero-metrics,
    .hero-actions {
        width: 100%;
        max-width: 358px;
    }

    h1 {
        max-width: 358px;
    }

    .hero-metrics {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
