:root {
    --bg: #09090d;
    --surface: rgba(18, 16, 28, 0.82);
    --surface-strong: rgba(12, 11, 18, 0.94);
    --ink: #f7f5ff;
    --muted: #bab5d3;
    --line: rgba(184, 255, 74, 0.18);
    --lime: #b8ff4a;
    --purple: #a000ff;
    --purple-deep: #5d00c7;
    --pink: #ff7df2;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Space Grotesk", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 20%, rgba(160, 0, 255, 0.34), transparent 24%),
        radial-gradient(circle at 85% 18%, rgba(184, 255, 74, 0.22), transparent 20%),
        linear-gradient(160deg, #07070b 0%, #0f0d18 48%, #07070a 100%);
    overflow-x: hidden;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 14px 14px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.page-shell {
    position: relative;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0 32px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    padding: 14px 0 0;
}

.hero-copy,
.hero-board,
.info-panel {
    border: 2px solid var(--line);
    border-radius: 32px;
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.35);
}

.hero-copy {
    background:
        linear-gradient(180deg, rgba(184, 255, 74, 0.06), transparent 40%),
        linear-gradient(160deg, rgba(20, 18, 31, 0.96), rgba(8, 8, 12, 0.92));
    padding: 28px 38px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 0, 255, 0.22), transparent 68%);
    pointer-events: none;
}

.eyebrow,
.section-label,
.card-tag,
.vote-count,
.status-pill,
.metric-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--lime);
}

.hero-logo-wrap {
    display: block;
    width: min(100%, 540px);
    margin: 0 auto 10px;
}

.hero-logo {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 34px rgba(160, 0, 255, 0.4));
    transform: none;
}

h1 {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(2.35rem, 4.6vw, 3.6rem);
    line-height: 0.96;
    width: 100%;
    max-width: none;
}

.lead {
    margin: 18px 0 0;
    width: min(100%, 46rem);
    max-width: none;
    font-size: 1.02rem;
    line-height: 1.58;
    color: var(--muted);
}

.status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    width: 100%;
    justify-content: center;
}

.cta-row,
.waitlist-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-row {
    margin-top: 18px;
    width: 100%;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    border: 2px solid rgba(184, 255, 74, 0.18);
    text-decoration: none;
    font-weight: 700;
    color: var(--ink);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.cta-button.primary {
    background: linear-gradient(135deg, var(--lime), #e7ff9a);
    color: #101010;
    box-shadow: 0 14px 30px rgba(184, 255, 74, 0.2);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.04);
}

.cta-button.secondary:hover {
    border-color: rgba(160, 0, 255, 0.4);
    background: rgba(160, 0, 255, 0.08);
}

.cta-button.large {
    min-width: 220px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 2px solid rgba(184, 255, 74, 0.16);
    background: rgba(255, 255, 255, 0.05);
}

.status-pill::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--purple);
    box-shadow: 0 0 0 6px rgba(160, 0, 255, 0.18);
}

.status-pill.alt::before {
    background: var(--lime);
    box-shadow: 0 0 0 6px rgba(184, 255, 74, 0.14);
}

.hero-board {
    position: relative;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(184, 255, 74, 0.05), transparent),
        linear-gradient(160deg, rgba(15, 14, 24, 0.94), rgba(8, 8, 12, 0.88));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    overflow: hidden;
}

.hero-board::before,
.hero-board::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.55;
}

.hero-board::before {
    width: 160px;
    height: 160px;
    background: rgba(160, 0, 255, 0.42);
    top: -30px;
    right: -20px;
}

.hero-board::after {
    width: 180px;
    height: 180px;
    background: rgba(184, 255, 74, 0.24);
    bottom: -45px;
    left: -30px;
}

.error-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.error-panel {
    width: min(760px, 100%);
}

.error-logo {
    width: min(100%, 420px);
}

.logo-glow {
    position: absolute;
    inset: 18% 8% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 255, 74, 0.18), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

.card {
    position: relative;
    border: 2px solid rgba(184, 255, 74, 0.14);
    border-radius: 28px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
    color: #15121f;
}

.question-card {
    background: linear-gradient(135deg, rgba(184, 255, 74, 0.98), rgba(238, 255, 206, 0.98));
}

.question-card p,
.answer-card p {
    margin: 10px 0 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.32rem;
    line-height: 1.1;
}

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

.answer-card:last-child {
    grid-column: 1 / -1;
}

.accent-lime {
    background: rgba(184, 255, 74, 0.94);
}

.accent-coral {
    background: linear-gradient(145deg, rgba(160, 0, 255, 0.94), rgba(93, 0, 199, 0.94));
    color: #f8f3ff;
}

.accent-sky {
    background: linear-gradient(145deg, rgba(255, 125, 242, 0.96), rgba(217, 139, 255, 0.96));
}

.rotate-left {
    transform: rotate(-2.5deg);
}

.rotate-right {
    transform: rotate(2deg);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
    position: relative;
    z-index: 2;
}

.info-panel {
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(184, 255, 74, 0.04), transparent),
        linear-gradient(160deg, rgba(18, 17, 28, 0.88), rgba(9, 9, 13, 0.88));
}

.section-label {
    display: block;
    margin: 0 0 14px;
}

.big-panel p:last-child,
.footer-panel p:last-child {
    margin-bottom: 0;
}

.big-panel {
    position: relative;
    padding: 34px 40px;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--muted);
    text-align: center;
}

.big-panel::before,
.how-panel::before {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(184, 255, 74, 0.2), rgba(184, 255, 74, 1), rgba(160, 0, 255, 0.22));
}

.big-panel p:last-child {
    width: min(100%, 62rem);
    margin-left: auto;
    margin-right: auto;
}

.metrics-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    text-align: center;
    padding: 20px;
}

.metric-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 148px;
    padding: 18px 20px;
    border-radius: 26px;
    border: 2px solid rgba(184, 255, 74, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    width: 56px;
    height: 4px;
    border-radius: 999px;
    transform: translateX(-50%);
    opacity: 0.95;
}

.metric-card-lime::before {
    background: linear-gradient(90deg, rgba(184, 255, 74, 0.25), rgba(184, 255, 74, 1), rgba(184, 255, 74, 0.25));
}

.metric-card-purple::before {
    background: linear-gradient(90deg, rgba(160, 0, 255, 0.2), rgba(160, 0, 255, 1), rgba(160, 0, 255, 0.2));
}

.metric-card-pink::before {
    background: linear-gradient(90deg, rgba(255, 125, 242, 0.2), rgba(255, 125, 242, 1), rgba(255, 125, 242, 0.2));
}

.how-panel,
.waitlist-panel {
    grid-column: 1 / -1;
}

.how-panel {
    text-align: center;
    padding: 34px 30px 30px;
}

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

.step-card {
    padding: 26px 22px 24px;
    border-radius: 26px;
    border: 2px solid rgba(184, 255, 74, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    width: 58px;
    height: 4px;
    border-radius: 999px;
    transform: translateX(-50%);
}

.step-card:nth-child(1)::before {
    background: linear-gradient(90deg, rgba(184, 255, 74, 0.25), rgba(184, 255, 74, 1), rgba(184, 255, 74, 0.25));
}

.step-card:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(160, 0, 255, 0.2), rgba(160, 0, 255, 1), rgba(160, 0, 255, 0.2));
}

.step-card:nth-child(3)::before {
    background: linear-gradient(90deg, rgba(255, 125, 242, 0.2), rgba(255, 125, 242, 1), rgba(255, 125, 242, 0.2));
}

.step-number {
    display: inline-flex;
    margin: 14px 0 14px;
    color: var(--lime);
    font-weight: 700;
    letter-spacing: 0.14em;
    justify-content: center;
}

.step-card h2,
.waitlist-panel h2 {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
}

.step-card p,
.waitlist-panel p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.step-card p {
    max-width: 26ch;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 34px 30px;
}

.waitlist-copy {
    max-width: 34rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(100%, 460px);
}

.waitlist-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.waitlist-input-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.waitlist-input-row input {
    flex: 1;
    min-height: 52px;
    border-radius: 999px;
    border: 2px solid rgba(184, 255, 74, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ink);
    padding: 0 18px;
    font: inherit;
}

.waitlist-input-row input::placeholder {
    color: rgba(247, 245, 255, 0.45);
}

.waitlist-input-row input:focus {
    outline: none;
    border-color: rgba(184, 255, 74, 0.4);
    box-shadow: 0 0 0 4px rgba(184, 255, 74, 0.08);
}

.waitlist-note,
.waitlist-message {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.waitlist-note {
    color: var(--muted);
}

.waitlist-message {
    min-height: 1.5em;
    color: var(--muted);
}

.waitlist-message.is-success {
    color: var(--lime);
}

.waitlist-message.is-error {
    color: #ff9ebc;
}

.cta-button:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.metric-value {
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 2.15rem);
    line-height: 1.02;
    text-align: center;
    max-width: 10ch;
}

.metric-label {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.45;
    text-align: center;
    letter-spacing: 0.14em;
    max-width: 18ch;
}

.footer-panel {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.domain-link {
    color: var(--ink);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-decoration: none;
    text-shadow: 0 0 24px rgba(184, 255, 74, 0.14);
}

.domain-link:hover {
    color: var(--lime);
}

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

.question-card,
.answer-card {
    animation: float 5s ease-in-out infinite;
}

.answer-card:nth-child(2) {
    animation-delay: 0.4s;
}

.answer-card:nth-child(3) {
    animation-delay: 0.8s;
}

@media (max-width: 1024px) {
    .metrics-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .metric-card {
        min-height: 0;
    }

    .details-grid {
        margin-top: 20px;
    }

    .big-panel,
    .how-panel,
    .waitlist-panel {
        padding-left: 24px;
        padding-right: 24px;
    }

    .waitlist-actions {
        width: 100%;
    }

    .waitlist-form {
        width: 100%;
    }

    .cta-button.large {
        min-width: 0;
    }

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

    .waitlist-panel {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 20px, 1180px);
    }

    .hero {
        gap: 18px;
        padding: 18px 0 24px;
    }

    .details-grid {
        gap: 18px;
    }

    .hero-copy,
    .hero-board,
    .info-panel {
        border-radius: 24px;
    }

    .hero-copy,
    .hero-board,
    .info-panel,
    .card {
        padding: 20px;
    }

    .big-panel,
    .how-panel,
    .waitlist-panel {
        padding: 24px 20px;
    }

    h1 {
        font-size: clamp(2.2rem, 11vw, 3.4rem);
    }

    .hero-logo {
        width: 100%;
    }

    .hero-logo-wrap {
        width: min(100%, 520px);
    }

    .question-card p,
    .answer-card p {
        font-size: 1.2rem;
    }

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

    .answer-card:last-child {
        grid-column: auto;
    }

    .metrics-panel {
        grid-template-columns: 1fr;
    }

    .metric-card {
        min-height: 0;
    }

    .cta-row,
    .waitlist-actions {
        flex-direction: column;
    }

    .waitlist-input-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button,
    .cta-button.large {
        width: 100%;
    }
}