:root {
    color-scheme: dark;
    --bg: #07110d;
    --surface: #0d1713;
    --surface-2: #111e19;
    --ink: #f5f7f3;
    --muted: #aebaae;
    --line: rgba(255, 255, 255, 0.12);
    --green: #35d07f;
    --yellow: #f5c84b;
    --blue: #5ab2ff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Inter, Arial, Helvetica, sans-serif;
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background: rgba(7, 17, 13, 0.86);
    backdrop-filter: blur(14px);
}

.brand,
nav {
    display: flex;
    align-items: center;
}

.brand {
    gap: 12px;
    font-weight: 800;
}

.brand img {
    width: 36px;
    height: 36px;
}

nav {
    gap: 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

nav a:hover {
    color: var(--ink);
}

.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: grid;
    align-items: center;
    padding: clamp(56px, 8vw, 108px) clamp(18px, 4vw, 56px);
    overflow: hidden;
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 18vh;
    content: "";
    background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-media {
    position: absolute;
    inset: 0;
    opacity: 0.42;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(7, 17, 13, 0.98), rgba(7, 17, 13, 0.62) 45%, rgba(7, 17, 13, 0.88)),
        linear-gradient(180deg, rgba(7, 17, 13, 0.3), rgba(7, 17, 13, 0.88));
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 9ch;
    margin-bottom: 24px;
    font-size: clamp(58px, 9vw, 128px);
    line-height: 0.9;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 5vw, 66px);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
}

.lead {
    max-width: 650px;
    color: var(--muted);
    font-size: 22px;
    line-height: 1.36;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.primary,
.secondary,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 6px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.primary,
button {
    background: var(--green);
    color: #04120b;
}

.secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.06);
}

.status-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr)) auto auto;
    gap: 16px;
    align-items: center;
    padding: 18px clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.live-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 1px;
    border-bottom: 1px solid var(--line);
    background: var(--line);
}

.live-strip > div {
    min-width: 0;
    padding: 18px clamp(18px, 4vw, 56px);
    background: #09140f;
}

.live-strip strong {
    display: block;
    overflow-wrap: anywhere;
}

.launch-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background: #0d1b14;
}

.event-strip {
    display: grid;
    grid-template-columns: minmax(160px, 0.45fr) minmax(260px, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(90, 178, 255, 0.14), transparent),
        #07141a;
}

.event-strip strong {
    display: block;
    overflow-wrap: anywhere;
}

.launch-callout > div {
    min-width: 220px;
}

.launch-callout strong {
    display: block;
}

.label {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.section {
    padding: clamp(64px, 9vw, 116px) clamp(18px, 4vw, 56px);
}

.section-head {
    max-width: 760px;
    margin-bottom: 30px;
}

.steps,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

article,
.founder-box {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-2);
}

article span {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--green);
    font-weight: 900;
}

article p,
.founders p,
.rules li {
    color: var(--muted);
    line-height: 1.55;
}

code {
    color: var(--yellow);
}

.split,
.founders {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
    gap: 42px;
    align-items: start;
}

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

.rules {
    background: #0a1511;
}

.acquisition {
    background: #08130f;
}

.quick-lead {
    background:
        linear-gradient(90deg, rgba(53, 208, 127, 0.12), transparent),
        #08130f;
}

.quick-form {
    display: grid;
    gap: 16px;
    max-width: 1040px;
}

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

.ambassadors {
    background:
        linear-gradient(90deg, rgba(90, 178, 255, 0.1), transparent),
        #07120f;
}

.founder-event {
    background:
        linear-gradient(90deg, rgba(245, 200, 75, 0.1), transparent),
        #0a1511;
}

.ambassadors article span {
    color: var(--blue);
}

.shop-policy {
    background:
        linear-gradient(90deg, rgba(245, 200, 75, 0.08), transparent),
        #08130f;
}

.roles {
    background: #07110d;
}

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

.role-grid article {
    background: #0c1813;
}

.role-grid article span {
    margin-bottom: 12px;
}

.updates {
    background: #07120f;
}

.updates-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 18px;
    align-items: start;
}

.timeline,
.roadmap-list {
    display: grid;
    gap: 12px;
}

.timeline article,
.roadmap-list article {
    background: #0b1712;
}

.timeline article span,
.roadmap-list article span {
    margin-bottom: 12px;
}

.rules ul {
    display: grid;
    gap: 13px;
    max-width: 900px;
    padding-left: 22px;
    font-size: 18px;
}

.founders {
    background:
        linear-gradient(90deg, rgba(53, 208, 127, 0.12), transparent),
        var(--bg);
}

.founder-box {
    border-color: rgba(53, 208, 127, 0.32);
}

.microcopy {
    margin-bottom: 0;
    font-size: 14px;
}

.whitelist {
    background: var(--surface);
}

.wl-form {
    display: grid;
    gap: 18px;
    max-width: 980px;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
    outline: none;
    background: #08120e;
    color: var(--ink);
    font: inherit;
}

textarea {
    resize: vertical;
    line-height: 1.45;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(53, 208, 127, 0.72);
    box-shadow: 0 0 0 3px rgba(53, 208, 127, 0.14);
}

.checkline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkline input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

#founder-feedback {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

footer {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    justify-content: space-between;
    padding: 28px clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line);
    color: var(--muted);
}

@media (max-width: 900px) {
    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    nav {
        flex-wrap: wrap;
    }

    .status-band,
    .live-strip,
    .event-strip,
    .launch-callout,
    .steps,
    .feature-grid,
    .role-grid,
    .updates-layout,
    .split,
    .founders,
    .quick-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .launch-callout {
        align-items: stretch;
        flex-direction: column;
    }

    h1 {
        font-size: 62px;
    }
}

@media (max-width: 520px) {
    .brand span {
        font-size: 15px;
    }

    h1 {
        font-size: 48px;
    }

    .lead {
        font-size: 18px;
    }

    .status-band {
        gap: 18px;
    }
}
