:root {
    color-scheme: light;
    --paper: #f5f5f2;
    --ink: #171716;
    --muted: #6d6b68;
    --line: #d8d7d2;
    --purple: #8e43dc;
    --purple-dark: #7430bd;
    --yellow: #ffcc09;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--paper);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.page {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 680;
    text-decoration: none;
}

.brand img {
    display: block;
    width: 42px;
    height: 42px;
    padding: 5px;
    object-fit: contain;
    background: var(--ink);
    border-radius: 50%;
}

.header-contact {
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.header-contact:hover,
.header-contact:focus-visible {
    color: var(--purple-dark);
}

.hero {
    display: flex;
    min-height: 0;
    padding: 52px 0 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.release-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 34px;
    color: #4c4945;
    font-size: 13px;
    font-weight: 650;
}

.release-dot {
    width: 9px;
    height: 9px;
    background: var(--yellow);
    border: 1px solid #c99e00;
    border-radius: 50%;
}

h1 {
    max-width: 1040px;
    margin: 0;
    font-size: clamp(56px, 6.2vw, 88px);
    font-weight: 620;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-description {
    max-width: 650px;
    margin: 32px auto 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.formats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 22px;
    max-width: 840px;
    margin: 40px auto 0;
    color: #444240;
    font-size: 14px;
}

.formats span {
    position: relative;
}

.formats span + span::before {
    position: absolute;
    top: 50%;
    left: -13px;
    width: 3px;
    height: 3px;
    background: #a6a39d;
    border-radius: 50%;
    content: "";
}

.hero-actions {
    width: min(100%, 470px);
    margin-top: 48px;
}

.waitlist-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 7px;
    background: var(--white);
    border: 1px solid #d2d0ca;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgb(23 23 22 / 6%);
}

.waitlist-form input {
    width: 100%;
    min-width: 0;
    height: 48px;
    padding: 0 13px;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: none;
}

.waitlist-form input::placeholder {
    color: #94918b;
}

.waitlist-form button {
    height: 48px;
    padding: 0 20px;
    color: var(--white);
    background: var(--ink);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible {
    background: var(--purple-dark);
}

.waitlist-form button:disabled {
    cursor: wait;
    opacity: 0.65;
}

.form-status {
    min-height: 21px;
    margin: 10px 0 0;
    color: var(--purple-dark);
    font-size: 13px;
}

.model-work {
    display: grid;
    grid-template-columns: 0.55fr 1.2fr;
    gap: 48px 72px;
    padding: 70px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-label {
    margin: 0;
    color: var(--purple-dark);
    font-size: 12px;
    font-weight: 750;
    text-transform: uppercase;
}

.model-work-copy {
    max-width: 700px;
    margin: 0;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 530;
    line-height: 1.25;
}

.work-list {
    display: grid;
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 32px;
    border-top: 1px solid var(--line);
}

.work-list span {
    padding: 19px 0;
    color: #4d4a46;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}

.collaborators {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 64px;
    align-items: start;
    padding: 70px 0;
}

.relationship-group {
    min-width: 0;
}

.relationship-group > .partner-logo {
    justify-content: flex-start;
    width: fit-content;
    margin-top: 28px;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
    align-items: center;
    margin-top: 28px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    min-width: 0;
}

.partner-logo img {
    display: block;
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.67;
}

.partner-logo:nth-child(3) img {
    max-height: 52px;
}

.conviction-logo {
    gap: 8px;
    color: #3f3d3a;
    font-size: 13px;
    font-weight: 750;
}

.conviction-logo img {
    width: 23px;
    height: 25px;
    object-fit: contain;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    padding: 24px 0 34px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 12px;
}

.site-footer div {
    display: flex;
    gap: 24px;
}

.site-footer a {
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--purple-dark);
}

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

@media (max-width: 760px) {
    .page {
        width: min(100% - 32px, 640px);
    }

    .site-header {
        height: 76px;
    }

    .hero {
        min-height: 0;
        padding: 66px 0 46px;
    }

    h1 {
        font-size: 58px;
    }

    .model-work,
    .collaborators {
        display: block;
    }

    .model-work {
        padding: 54px 0;
    }

    .model-work-copy {
        margin-top: 28px;
    }

    .work-list {
        margin-top: 40px;
    }

    .collaborators {
        padding: 56px 0;
    }

    .collaborator-group {
        margin-top: 46px;
    }
}

@media (max-width: 520px) {
    .page {
        width: calc(100% - 28px);
    }

    .brand {
        font-size: 16px;
    }

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

    .hero {
        padding: 54px 0 32px;
    }

    .release-note {
        margin-bottom: 28px;
    }

    h1 {
        font-size: 45px;
        line-height: 1;
    }

    .hero-description {
        margin-top: 26px;
        font-size: 17px;
    }

    .formats {
        justify-content: flex-start;
        gap: 9px 19px;
        margin-top: 32px;
        text-align: left;
    }

    .formats span + span::before {
        left: -11px;
    }

    .hero-actions {
        margin-top: 38px;
    }

    .waitlist-form {
        grid-template-columns: 1fr;
    }

    .waitlist-form button {
        width: 100%;
    }

    .model-work-copy {
        font-size: 27px;
    }

    .work-list {
        grid-template-columns: 1fr;
    }

    .logo-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .site-footer {
        gap: 20px;
    }

    .site-footer div {
        gap: 14px;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 34px 0 24px;
    }

    .release-note {
        margin-bottom: 20px;
        font-size: 12px;
    }

    h1 {
        font-size: 39px;
    }

    .hero-description {
        margin-top: 20px;
        font-size: 16px;
    }

    .formats {
        margin-top: 24px;
        font-size: 13px;
    }

    .hero-actions {
        margin-top: 28px;
    }
}
