@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    color-scheme: light;
    --ink: #171714;
    --paper: #f4f0e7;
    --acid: #c7ff46;
    --orange: #ff6b35;
    --muted: #6d6b63;
    --line: rgba(23, 23, 20, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", sans-serif;
}

.grain {
    position: fixed;
    z-index: 10;
    inset: 0;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header,
main,
footer {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.brand img {
    border-radius: 11px;
}

.header-note,
.section-label,
.status,
.form-note {
    font-family: "DM Mono", monospace;
    font-size: 12px;
}

.header-note {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    align-items: center;
    min-height: 760px;
    padding: 86px 0 90px;
    border-bottom: 1px solid var(--line);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.16);
}

.kicker {
    margin: 32px 0 14px;
    font-size: 16px;
    font-weight: 700;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(64px, 7.7vw, 124px);
    font-weight: 800;
    line-height: 0.84;
    letter-spacing: -0.085em;
}

h1 em {
    position: relative;
    display: inline-block;
    z-index: 0;
    font-style: normal;
}

h1 em::after {
    position: absolute;
    z-index: -1;
    right: -0.08em;
    bottom: -0.04em;
    left: -0.08em;
    height: 0.33em;
    background: var(--acid);
    content: "";
    transform: rotate(-1.5deg);
}

.lede {
    max-width: 670px;
    margin: 34px 0 0;
    color: #3d3c37;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
    letter-spacing: -0.025em;
}

.waitlist {
    display: flex;
    max-width: 650px;
    margin-top: 36px;
    padding: 7px;
    border: 2px solid var(--ink);
    border-radius: 16px;
    background: #fffdf8;
    box-shadow: 8px 8px 0 var(--ink);
}

.waitlist input {
    min-width: 0;
    flex: 1;
    padding: 16px 18px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: 600 16px "Manrope", sans-serif;
}

.waitlist button {
    padding: 16px 22px;
    border: 0;
    border-radius: 10px;
    background: var(--ink);
    color: white;
    cursor: pointer;
    font: 700 15px "Manrope", sans-serif;
    transition: transform 160ms ease, background 160ms ease;
}

.waitlist button:hover {
    background: #32322d;
    transform: translateY(-2px);
}

.waitlist button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.form-note {
    margin: 16px 0 0;
    color: var(--muted);
}

.form-note.success {
    color: #356600;
}

.form-note.error {
    color: #a93212;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 38px;
    color: #4c4a43;
    font-size: 13px;
    font-weight: 700;
}

.trust-row span::before {
    margin-right: 7px;
    color: #4a7200;
    content: "✓";
}

.hero-art {
    position: relative;
    min-height: 590px;
    isolation: isolate;
}

.launch-backdrop {
    position: absolute;
    z-index: -3;
    inset: 1% -8% 0 -3%;
    margin: 0;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 48% 48% 44% 56% / 40% 42% 58% 60%;
    background: var(--ink);
    box-shadow: 12px 14px 0 var(--ink);
    transform: rotate(2deg);
}

.launch-backdrop::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(23, 23, 20, 0.04) 18%, rgba(23, 23, 20, 0.7) 100%),
        linear-gradient(110deg, rgba(255, 107, 53, 0.12), transparent 55%);
    content: "";
}

.launch-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    filter: saturate(0.82) contrast(1.12);
}

.launch-backdrop figcaption {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 22px;
    left: 28px;
    color: rgba(255, 255, 255, 0.72);
    font: 500 9px/1.45 "DM Mono", monospace;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.launch-backdrop figcaption a {
    color: inherit;
}

.orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.orbit-one {
    inset: 10% -12% 2% 0;
    transform: rotate(-10deg);
}

.orbit-two {
    inset: 23% 4% 15% -12%;
    border-style: dashed;
    transform: rotate(13deg);
}

.exit-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    filter: drop-shadow(18px 24px 0 rgba(23, 23, 20, 0.13));
    transform: translate(-50%, -50%) rotate(4deg);
}

.exit-mark img {
    border-radius: 56px;
}

.card,
.verified-pill {
    position: absolute;
    z-index: 2;
    border: 2px solid var(--ink);
    background: #fffdf8;
    box-shadow: 7px 7px 0 var(--ink);
}

.card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 13px;
    min-width: 210px;
    padding: 17px 19px;
    border-radius: 15px;
}

.card-photo {
    top: 9%;
    right: -1%;
    transform: rotate(5deg);
}

.card-notes {
    bottom: 10%;
    left: -5%;
    transform: rotate(-5deg);
}

.mini-icon {
    grid-row: 1 / span 2;
    align-self: center;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--acid);
    font: 500 23px/38px "DM Mono", monospace;
    text-align: center;
}

.card strong {
    font-size: 14px;
}

.card small {
    margin-top: 2px;
    color: var(--muted);
    font-family: "DM Mono", monospace;
    font-size: 10px;
}

.verified-pill {
    right: 3%;
    bottom: 23%;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    transform: rotate(3deg);
}

.verified-pill span {
    display: inline-grid;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--acid);
    place-items: center;
}

.promise {
    padding: 110px 0 120px;
    border-bottom: 1px solid var(--line);
}

.section-label {
    margin: 0 0 20px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

h2 {
    max-width: 930px;
    margin: 0;
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1;
    letter-spacing: -0.065em;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    border-top: 2px solid var(--ink);
}

.steps article {
    min-height: 260px;
    padding: 25px 24px 20px 0;
    border-right: 1px solid var(--line);
}

.steps article:not(:first-child) {
    padding-left: 24px;
}

.steps article:last-child {
    border-right: 0;
}

.steps article > span {
    font-family: "DM Mono", monospace;
    font-size: 12px;
}

.steps h3 {
    margin: 78px 0 12px;
    font-size: 20px;
    letter-spacing: -0.04em;
}

.steps p,
.manifesto > p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.manifesto {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 100px;
    align-items: end;
    padding: 110px 0;
}

.manifesto h2 {
    max-width: 770px;
}

.manifesto > p {
    max-width: 520px;
    margin: 0 0 6px;
    font-size: 18px;
}

footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 38px;
    align-items: center;
    padding: 34px 0 45px;
    border-top: 1px solid var(--line);
}

footer p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

footer a {
    color: var(--ink);
    font-family: "DM Mono", monospace;
    font-size: 11px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

@media (max-width: 1050px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 65px;
    }

    .hero-art {
        min-height: 520px;
        margin-top: 30px;
    }

    .launch-backdrop {
        inset: 0;
    }

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

    .steps article:nth-child(2) {
        border-right: 0;
    }

    .steps article:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .manifesto {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 650px) {
    .site-header,
    main,
    footer {
        width: min(100% - 28px, 1380px);
    }

    .header-note {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 46px;
    }

    h1 {
        font-size: clamp(58px, 19vw, 90px);
    }

    .waitlist {
        display: grid;
        box-shadow: 5px 5px 0 var(--ink);
    }

    .waitlist button {
        width: 100%;
    }

    .trust-row {
        display: grid;
        gap: 8px;
    }

    .hero-art {
        min-height: 450px;
    }

    .launch-backdrop {
        border-radius: 36px;
        box-shadow: 6px 7px 0 var(--ink);
        transform: none;
    }

    .launch-backdrop figcaption {
        right: 16px;
        bottom: 14px;
        left: 16px;
        font-size: 8px;
    }

    .exit-mark img {
        width: 165px;
        height: 165px;
        border-radius: 44px;
    }

    .card {
        min-width: 186px;
        padding: 13px;
    }

    .card-photo {
        right: 0;
    }

    .card-notes {
        left: 0;
    }

    .verified-pill {
        right: 0;
        bottom: 19%;
    }

    .promise {
        padding: 85px 0;
    }

    .steps {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .steps article,
    .steps article:not(:first-child) {
        min-height: auto;
        padding: 22px 0 30px;
        border-top: 1px solid var(--line);
        border-right: 0;
    }

    .steps h3 {
        margin-top: 36px;
    }

    .manifesto {
        padding: 85px 0;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .exit-mark {
        animation: float 5s ease-in-out infinite;
    }

    .card-photo {
        animation: float-card 6s ease-in-out infinite;
    }

    .card-notes {
        animation: float-card 6s ease-in-out -2s infinite reverse;
    }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(4deg); }
    50% { transform: translate(-50%, calc(-50% - 12px)) rotate(1deg); }
}

@keyframes float-card {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -9px; }
}
