:root {
    --paper: #f7f9f6;
    --paper-deep: #e8eeea;
    --ink: #15201d;
    --muted: #69736f;
    --line: #cad3ce;
    --signal: #2f7465;
    --yellow: #d6b955;
    --white: #fcfefc;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 17px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    border: 0;
    cursor: pointer;
}

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

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 20;
    display: flex;
    width: min(calc(100% - 48px), var(--max-width));
    height: 88px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.84rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-mark {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand svg {
    width: 36px;
    fill: none;
    stroke: var(--signal);
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand b {
    color: var(--signal);
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.site-header nav > a:not(.nav-cta) {
    color: var(--muted);
}

.site-header nav > a:not(.nav-cta):hover {
    color: var(--ink);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem 1rem;
    color: var(--white);
    background: var(--signal);
    transition: background 180ms ease, transform 180ms ease;
}

.nav-cta span {
    color: var(--white);
    transition: transform 180ms ease;
}

.nav-cta:hover {
    background: #245f53;
    transform: translateY(-1px);
}

.nav-cta:hover span {
    transform: translateX(4px);
}

.nav-cta:focus-visible,
.form-row button:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

.hero {
    display: grid;
    width: min(calc(100% - 48px), var(--max-width));
    min-height: 780px;
    margin: 0 auto;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
    padding: 6.5rem 0;
}

.overline,
.tiny-label {
    margin: 0;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.overline {
    color: var(--signal);
}

.hero h1,
.section-heading h2,
.collaboration-copy h2,
.less-inner h2,
.waitlist-inner h2 {
    margin: 0;
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.055em;
}

.hero h1 {
    margin-top: 1.4rem;
    font-size: clamp(4.6rem, 8vw, 7.8rem);
    line-height: 0.82;
}

.hero h1 em,
.collaboration-copy h2 em,
.less-inner h2 em {
    color: var(--signal);
    font-weight: 400;
}

.hero-intro {
    max-width: 500px;
    margin: 2rem 0 0;
    color: #494843;
    font-size: 1.05rem;
    line-height: 1.8;
}

.signup-form {
    max-width: 510px;
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border-bottom: 1px solid var(--ink);
}

.formkit-field {
    min-width: 0;
}

.form-row input {
    width: 100%;
    min-width: 0;
    padding: 1rem 0;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font-size: 0.95rem;
}

.form-row input::placeholder {
    color: #929087;
}

.form-row input:focus-visible {
    box-shadow: inset 0 -2px var(--signal);
}

.form-row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 3.35rem;
    padding: 0 1.25rem;
    color: var(--white);
    background: var(--signal);
    font-size: 0.8rem;
    font-weight: 700;
    transition: background 180ms ease, transform 180ms ease;
}

.form-row button span {
    color: var(--white);
    font-size: 1rem;
}

.form-row button:hover {
    background: #245f53;
    transform: translateY(-1px);
}

.form-row button:disabled {
    cursor: wait;
    opacity: 0.5;
}

.formkit-alert {
    margin: 0 0 0.75rem;
    padding: 0;
    list-style: none;
    color: #a92f20;
    font-size: 0.72rem;
    font-weight: 600;
}

.formkit-alert:empty {
    display: none;
}

.formkit-alert-success {
    color: #287443;
}

.form-note,
.form-status {
    margin: 0.65rem 0 0;
    color: #8a877f;
    font-size: 0.72rem;
}

.formkit-guarantee p {
    margin-bottom: 0;
}

.form-status {
    min-height: 1.1rem;
    font-weight: 600;
}

.form-status.is-error {
    color: #a92f20;
}

.form-status.is-success {
    color: #287443;
}

.product-stage {
    min-width: 0;
}

.project-card {
    overflow: hidden;
    border: 1px solid #2c2c2c;
    border-radius: 3px;
    color: #ece9e0;
    background: #171717;
    box-shadow: 24px 28px 0 var(--paper-deep);
}

.project-bar,
.player-row {
    display: flex;
    align-items: center;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid #333;
}

.project-bar {
    justify-content: space-between;
}

.tiny-label {
    color: #73736e;
    font-size: 0.7rem;
}

.project-title {
    margin: 0.25rem 0 0;
    font-size: 0.92rem;
    font-weight: 600;
}

.collaborators {
    display: flex;
    padding-left: 0.55rem;
}

.collaborators span {
    display: grid;
    width: 30px;
    height: 30px;
    margin-left: -0.55rem;
    place-items: center;
    border: 2px solid #171717;
    border-radius: 50%;
    color: var(--ink);
    background: var(--paper);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
}

.collaborators span:nth-child(2) {
    background: var(--yellow);
}

.collaborators span:nth-child(3) {
    color: var(--white);
    background: var(--signal);
}

.player-row {
    gap: 0.9rem;
}

.play-button {
    position: relative;
    display: grid;
    width: 38px;
    height: 38px;
    flex: none;
    place-items: center;
    border-radius: 50%;
    background: var(--signal);
}

.play-shape {
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--white);
}

.play-button.is-playing .play-shape {
    width: 8px;
    height: 10px;
    margin: 0;
    border: 0;
    border-right: 3px solid var(--white);
    border-left: 3px solid var(--white);
}

.time-readout {
    margin: 0;
    color: #777771;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
}

.time-readout strong {
    margin-right: 0.45rem;
    color: var(--paper);
    font-size: 0.82rem;
}

.playing-state {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 0.45rem;
    color: #777771;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.playing-state i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--signal);
}

.timeline {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid #333;
    background-image: linear-gradient(90deg, transparent 24.8%, #282828 25%, transparent 25.2%, transparent 49.8%, #282828 50%, transparent 50.2%, transparent 74.8%, #282828 75%, transparent 75.2%);
}

.waveform {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 1.25rem;
}

.waveform i {
    width: 100%;
    min-width: 1px;
    border-radius: 1px;
    background: #595954;
}

.progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 34.5%;
    pointer-events: none;
    border-right: 1px solid var(--signal);
    background: rgba(232, 78, 50, 0.08);
}

.playhead {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 34.5%;
    width: 1px;
    background: var(--signal);
}

.playhead i {
    position: absolute;
    top: 0;
    left: -4px;
    width: 0;
    height: 0;
    border-top: 6px solid var(--signal);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.cue {
    position: absolute;
    z-index: 3;
    top: 20px;
    padding: 0;
    background: transparent;
}

.cue i {
    display: block;
    width: 8px;
    height: 8px;
    border: 2px solid #171717;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 1px var(--signal);
}

.cue i::after {
    position: absolute;
    top: 8px;
    left: 3px;
    width: 1px;
    height: 165px;
    content: '';
    opacity: 0.25;
    background: var(--signal);
}

.cue-light i {
    background: var(--yellow);
    box-shadow: 0 0 0 1px var(--yellow);
}

.cue-light i::after {
    background: var(--yellow);
}

.cue-one {
    left: 34.5%;
}

.cue-two {
    left: 56%;
}

.cue-three {
    left: 72%;
}

.notes-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.note-item {
    min-width: 0;
    padding: 1rem 1.2rem 1.15rem;
}

.note-item + .note-item {
    border-left: 1px solid #333;
}

.note-meta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
}

.note-meta span {
    color: #a6a49d;
}

.note-meta b {
    color: var(--signal);
    font-weight: 500;
}

.note-light .note-meta b {
    color: var(--yellow);
}

.note-item p {
    overflow: hidden;
    margin: 0.55rem 0 0;
    color: #c5c2ba;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.promise-line {
    display: grid;
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.promise-line span {
    padding: 1.45rem;
    text-align: center;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.4rem;
}

.promise-line span + span {
    border-left: 1px solid var(--line);
}

.how-section {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 9rem 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.section-heading h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    text-align: right;
}

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

.steps article {
    padding: 1.5rem 1rem 1rem 0;
}

.steps article + article {
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
}

.steps span {
    color: var(--signal);
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
}

.steps h3 {
    margin: 2.8rem 0 0;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 2.3rem;
    font-weight: 400;
}

.steps p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.audience-section {
    display: grid;
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto 8rem;
    padding: clamp(3rem, 7vw, 6rem);
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
    background: var(--paper-deep);
}

.audience-copy h2 {
    margin-top: 1.4rem;
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    line-height: 0.93;
}

.audience-copy > p:last-child {
    max-width: 560px;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.8;
}

.audience-notes {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--ink);
    list-style: none;
}

.audience-notes li {
    display: grid;
    padding: 1.25rem 0;
    grid-template-columns: 42px 1fr;
    gap: 0.8rem;
    border-bottom: 1px solid var(--line);
}

.audience-notes li > span {
    padding-top: 0.15rem;
    color: var(--signal);
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
}

.audience-notes strong {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.audience-notes p {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

.collaboration-section {
    display: grid;
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(4rem, 10vw, 10rem);
    align-items: center;
    padding: 5rem 0 10rem;
}

.conversation {
    border-top: 1px solid var(--ink);
}

.conversation article {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
}

.conversation header {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    align-items: center;
    gap: 0.7rem;
}

.conversation header b,
.conversation time {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.conversation header b {
    color: var(--muted);
}

.conversation time {
    color: var(--signal);
}

.person {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
}

.person-red {
    color: var(--white);
    background: var(--signal);
}

.person-ink {
    color: var(--white);
    background: var(--ink);
}

.person-yellow {
    background: var(--yellow);
}

.conversation article p {
    margin: 1rem 0 0 2.55rem;
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.6rem;
    line-height: 1.32;
}

.collaboration-copy h2 {
    margin-top: 1.5rem;
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 0.88;
}

.collaboration-copy > p:last-child {
    max-width: 430px;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.8;
}

.less-section {
    color: var(--paper);
    background: var(--ink);
}

.less-inner {
    width: min(calc(100% - 48px), 920px);
    margin: 0 auto;
    padding: 9rem 0;
    text-align: center;
}

.less-inner h2 {
    margin-top: 1.5rem;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.87;
}

.less-inner > p:not(.overline) {
    max-width: 550px;
    margin: 2rem auto 0;
    color: #a5a29a;
    font-size: 1.03rem;
    line-height: 1.85;
}

.less-inner ul {
    display: flex;
    margin: 3rem 0 0;
    padding: 1.4rem 0 0;
    justify-content: center;
    gap: 2.3rem;
    border-top: 1px solid #3b3b3b;
    list-style: none;
    color: #cfcbc1;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.waitlist-section {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 10rem 0;
}

.waitlist-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.waitlist-inner h2 {
    margin-top: 1.4rem;
    font-size: clamp(4rem, 9vw, 7.6rem);
    line-height: 0.85;
}

.waitlist-inner > p:not(.overline) {
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: 1.03rem;
}

.signup-form-large {
    margin: 3rem auto 0;
    text-align: left;
}

footer {
    display: grid;
    width: min(calc(100% - 48px), var(--max-width));
    min-height: 110px;
    margin: 0 auto;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-top: 1px solid var(--line);
}

footer p,
footer > a:last-child {
    color: var(--muted);
    font-size: 0.74rem;
}

footer p {
    margin: 0;
}

footer > a:last-child {
    justify-self: end;
    border-bottom: 1px solid var(--muted);
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 650ms ease,
        transform 650ms ease;
}

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

.js .reveal-delay {
    transition-delay: 120ms;
}

@media (max-width: 960px) {
    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 5rem 0 7rem;
    }

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

    .project-card {
        box-shadow: 14px 16px 0 var(--paper-deep);
    }

    .collaboration-section {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .audience-section {
        grid-template-columns: 1fr;
    }

    .collaboration-copy {
        max-width: 650px;
    }
}

@media (max-width: 700px) {
    .site-header,
    .hero,
    .promise-line,
    .how-section,
    .audience-section,
    .collaboration-section,
    .waitlist-section,
    footer {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .site-header {
        height: 72px;
    }

    .site-header nav > a:not(.nav-cta) {
        display: none;
    }

    .company-mark {
        display: none;
    }

    .hero {
        gap: 4rem;
        padding-top: 4rem;
    }

    .hero h1 {
        font-size: clamp(4rem, 21vw, 6rem);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        border-bottom: 0;
    }

    .form-row .formkit-field {
        border-bottom: 1px solid var(--ink);
    }

    .form-row button {
        width: 100%;
        padding: 0.9rem 1.1rem;
    }

    .timeline {
        height: 165px;
    }

    .cue i::after {
        height: 120px;
    }

    .notes-preview {
        grid-template-columns: 1fr;
    }

    .note-item + .note-item {
        border-top: 1px solid #333;
        border-left: 0;
    }

    .promise-line {
        grid-template-columns: 1fr;
    }

    .promise-line span + span {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .how-section,
    .waitlist-section {
        padding: 7rem 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2 {
        text-align: left;
    }

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

    .steps article,
    .steps article + article {
        display: grid;
        padding: 1.3rem 0;
        grid-template-columns: 42px 1fr;
        border-bottom: 1px solid var(--line);
        border-left: 0;
    }

    .steps h3,
    .steps p {
        margin: 0;
    }

    .steps p {
        grid-column: 2;
    }

    .collaboration-section {
        padding-bottom: 7rem;
    }

    .audience-section {
        margin-bottom: 5rem;
        padding: 3rem 1.5rem;
    }

    .less-inner {
        width: min(calc(100% - 32px), 920px);
        padding: 7rem 0;
    }

    .less-inner ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    footer {
        padding: 2rem 0;
        grid-template-columns: 1fr auto;
        gap: 1.5rem;
    }

    footer p {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .js .reveal,
    .js .reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
