:root {
    --bg: #faf9f7;
    --surface: #ffffff;
    --ink: #4a4541;
    --muted: #8b8681;
    --line: #e8e6e3;
    --accent: #d97757;
    --accent-ink: #ffffff;
    --shadow: 0 24px 60px rgba(20, 24, 30, 0.08);
    --radius: 12px;
    --max: 1120px;
    --font: "Sora", "Avenir Next", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background-color: var(--bg);
    width: 100%;
    overflow-x: hidden;
    overscroll-behavior: auto;
}

html,
body {
    height: 100%;
}

.waitlist-page {
    overflow: hidden;
}

.waitlist-page .waitlist-scroll {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 0;
}

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

.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(249, 245, 231, 0.9);
    backdrop-filter: blur(12px);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.topbar__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.legal .topbar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.legal .topbar__inner .nav {
    justify-self: end;
}

.legal .brand__full {
    height: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand__mark {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(217, 119, 87, 0.15);
}

.brand__logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.brand__name {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand__full {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 20px;
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    font-weight: 600;
    transition:
        transform 0.12s ease,
        box-shadow 0.12s ease,
        border-color 0.12s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(20, 24, 30, 0.12);
    border-color: rgba(217, 119, 87, 0.3);
}

.btn--primary {
    background: var(--accent);
    color: var(--accent-ink);
    border-color: var(--accent);
    box-shadow: 0 16px 30px rgba(217, 119, 87, 0.25);
}

.btn--ghost {
    background: transparent;
}

.btn--small {
    padding: 10px 14px;
    font-size: 14px;
}

.hero {
    padding: 68px 0 40px;
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: center;
}

.hero__kicker {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.pill {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
}

h1 {
    margin: 16px 0 12px;
    font-size: clamp(30px, 3.6vw, 52px);
    letter-spacing: -0.5px;
    line-height: 1.06;
}

.hero-headline span {
    display: block;
    white-space: nowrap;
}

.subhead {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 60ch;
}

.hero-cta-line {
    margin: 14px 0 0;
    color: var(--ink);
    font-weight: 600;
}

.hero__cta {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero__card {
    display: flex;
    justify-content: center;
}

.hero__media {
    display: grid;
    justify-items: center;
}

.fineprint {
    margin: 12px 0 0;
    color: #808386;
    font-size: 13px;
}

.hero__note {
    margin-top: 20px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    color: var(--muted);
}

.hero__note strong {
    color: var(--ink);
}

/* Phone mockup with screenshot */
.phone-mockup {
    display: grid;
    place-items: center;
    position: relative;
    padding-bottom: 28px;
    padding-top: 16px;
}

.phone-frame {
    width: min(320px, 85vw);
    background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 45%, #1a1a1a 100%);
    border-radius: 44px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 36px rgba(10, 15, 20, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.phone-frame::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 16px;
    z-index: 10;
}

.phone-viewport {
    border-radius: 36px;
    overflow: hidden;
}

.phone-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
}

.phone-screen {
    width: 100%;
    display: block;
}

.phone-screen--current,
.phone-screen--next {
    width: 100%;
    display: block;
}

.phone-screen--current {
    position: relative;
    z-index: 1;
}

.phone-screen--next {
    position: absolute;
    inset: 0;
    z-index: 2;
    transform: translateX(-100%);
}

.phone-carousel.is-sliding .phone-screen--current {
    animation: slide-out-right 0.7s ease forwards;
}

.phone-carousel.is-sliding .phone-screen--next {
    animation: slide-in-right 0.7s ease forwards;
}

@keyframes slide-in-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slide-out-right {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

.section {
    padding: 64px 0;
}

/* Offset anchor jumps for sticky header */
.section {
    scroll-margin-top: 96px;
}

.section--tight-top {
    padding-top: 32px;
}

.section--alt {
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section--no-top-border {
    border-top: 0;
}

.section__header {
    max-width: 680px;
    margin-bottom: 28px;
}

.section__header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: -35px;
}

.section__headline {
    font-family: "Shrikhand", serif;
    font-style: italic;
    color: #5b5651;
    font-size: 48px;
    margin-left: 40px;
}

.section__header--center h2 {
    margin-bottom: 8px;
}

h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 2.5vw, 36px);
    letter-spacing: -0.3px;
}

h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.proof {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
}

.proof__line {
    font-size: 18px;
    color: var(--ink);
    font-weight: 600;
    max-width: 32ch;
}

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

.feature-screen {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.feature-screen__copy h3 {
    margin-bottom: 8px;
}

.feature-screen__media {
    display: grid;
    place-items: center;
}

.feature-screen__media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.feature-list {
    display: grid;
    gap: 32px;
}

.feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.feature-row__copy h3 {
    margin: 0 0 8px;
}

.feature-row__copy p {
    margin: 0;
}

.feature-row__media {
    display: grid;
    justify-items: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
    margin-top: 224px;
}

#features {
    background: #ede8df;
    padding: 0 0 150px;
}

#features .container {
    max-width: none;
    width: 100%;
    padding: 0;
}

.section-spacer {
    height: 20px;
}

.feature-phone-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 200px;
    margin-top: 80px;
    width: 100%;
    padding: 0;
}

.feature-phone {
    display: grid;
    justify-items: center;
    text-align: center;
    flex: 0 0 340px;
}

.feature-phone__title {
    margin: 24px 0 6px;
    font-family: "Shrikhand", serif;
    font-style: italic;
    color: #5b5651;
    font-size: 24px;
}

.feature-phone__copy {
    margin: 0;
    color: #6a625c;
    font-size: 14px;
    line-height: 1.6;
    max-width: 240px;
}

.positioning {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    padding: 0;
    min-height: 100vh;
}

#positioning {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-top: -1px;
}

#positioning .container {
    padding: 0;
    max-width: none;
}

.positioning__block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 180px 22% 180px;
}

.positioning__block:first-child {
    background: #f9f5e7;
}

.positioning__block:last-child {
    background: #ede8df;
    padding-top: 690px;
    padding-left: calc(22% + 120px);
}

.positioning__title {
    margin: 0;
    font-family: "Shrikhand", serif;
    font-style: italic;
    color: #5b5651;
    font-size: 32px;
    line-height: 1.1;
    white-space: nowrap;
}

.positioning__em {
    font-size: 1.8em;
    line-height: 1;
}

.positioning__list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #6a625c;
    font-size: 20px;
    line-height: 1.9;
    display: grid;
    gap: 10px;
}

.positioning__list li::before {
    content: "- ";
}

/* CTA */
#cta {
    background: #f9f5e7;
    padding: 200px 0 300px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta__headline {
    margin: 0 0 24px;
    font-family: "Shrikhand", serif;
    font-style: italic;
    color: #d97757;
    font-size: 48px;
    line-height: 1.15;
    max-width: 800px;
}

.cta__sub {
    margin: 0 0 40px;
    color: #6a625c;
    font-size: 18px;
}

.cta__badge {
    display: inline-block;
}

.cta__badge img {
    display: block;
    width: 160px;
    height: auto;
}

#features .section__headline {
    margin: 0;
    text-align: center;
}

.feature-item {
    text-align: center;
}

.feature-item__media {
    display: grid;
    justify-items: center;
    margin-bottom: 14px;
}

.feature-item h3 {
    margin: 0 0 6px;
    font-family: "Shrikhand", serif;
    font-style: italic;
    color: #5b5651;
    font-size: 18px;
}

.feature-item p {
    margin: 0;
    color: #6a625c;
    font-size: 14px;
    line-height: 1.6;
}

.story {
    display: grid;
    gap: 18px;
    position: relative;
    padding-left: 18px;
}

.story::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: rgba(10, 15, 20, 0.1);
}

.story__item {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 14px;
    align-items: start;
}

.story__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(217, 119, 87, 0.15);
    margin-top: 6px;
}

.story__content h3 {
    margin-bottom: 6px;
}

.card {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: 0 14px 28px rgba(20, 24, 30, 0.05);
    font-weight: 500;
}

.steps {
    display: grid;
    gap: 16px;
}

.step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: start;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
}

.step__badge {
    display: grid;
    justify-items: center;
}

.step__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(217, 119, 87, 0.12);
    color: var(--accent);
}

.step__icon svg {
    width: 22px;
    height: 22px;
}

.bullets {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.bullets li {
    margin: 6px 0;
}

.trust {
    text-align: center;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-weight: 500;
    max-width: 340px;
}

.final {
    text-align: center;
}

.ck-wrap {
    max-width: 560px;
    margin: 20px auto 0;
}

.ck-wrap .formkit-form {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 100%;
}

.ck-wrap [data-style="clean"] {
    width: 100%;
    padding: 0;
    background: transparent;
}

.ck-wrap .formkit-alert {
    display: none;
}

.ck-wrap .formkit-fields {
    display: flex;
    gap: 12px;
    width: 100%;
    margin: 0;
}

.ck-wrap .formkit-field {
    flex: 1;
    margin: 0;
}

.ck-wrap .formkit-input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--ink);
    font-size: 16px;
    padding: 10px;
}

.ck-wrap .formkit-input::placeholder {
    color: rgba(95, 96, 97, 0.65);
}

.ck-wrap .formkit-submit {
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 600;
    padding: 0;
    cursor: pointer;
}

.ck-wrap .formkit-submit > span {
    display: block;
    padding: 12px 20px;
}

.ck-wrap .formkit-powered-by-convertkit-container {
    display: none;
}

.footer {
    padding: 28px 0;
    border-top: none;
    background: #f9f5e7;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: space-between;
    column-gap: 24px;
    row-gap: 10px;
}

.footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.footer__logo-link {
    display: inline-flex;
    text-decoration: none;
}

.footer__logo {
    height: 16px;
    width: auto;
}

.footer__tagline {
    justify-self: start;
}

.footer__links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

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

/* Scroll hint text */
.scroll-hint {
    position: fixed;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    font-size: 12px;
    color: #6a625c;
    opacity: 0.4;
    letter-spacing: 0.5px;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.scroll-hint.hidden {
    opacity: 0;
}

/* Scroll navigation arrow */
.scroll-arrow {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: none;
    border: none;
    cursor: pointer;
    color: #6a625c;
    opacity: 0.35;
    transition: opacity 0.3s ease;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow:hover {
    opacity: 0.7;
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-arrow {
        transition: none;
    }
}

.legal {
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #f9f5e7;
    overflow: hidden;
}

.legal-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.legal main {
    flex: 1;
}

.legal__header {
    padding: 56px 0 24px;
}

.legal__title {
    max-width: 760px;
}

.legal__meta {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.legal__content {
    max-width: 760px;
    padding-bottom: 64px;
}

.legal__content h2 {
    margin-top: 28px;
    font-size: 20px;
}

.legal__content p {
    margin-top: 10px;
}

.legal__content ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.legal__content li {
    margin: 6px 0;
}

.muted {
    color: #7a7c80;
    font-size: 13px;
}

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

.panel {
    max-width: 560px;
    padding: 32px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: center;
}

.panel p {
    margin-top: 10px;
}

.panel .btn {
    margin-top: 16px;
}

.reveal {
    animation: float-in 0.6s ease both;
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Waitlist desktop base */
.waitlist {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 61% 39%;
    font-size: 17px;
    overscroll-behavior: contain;
}

.waitlist__left {
    background: #ede8df;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 26vh 0 60px calc(12% + 80px);
    position: relative;
}

.waitlist__right {
    background: #f9f5e7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.waitlist__right img {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.waitlist__phone {
    width: min(28vw, 42vh, 440px);
    height: auto;
    display: block;
}

.waitlist__content {
    text-align: left;
    width: 100%;
    max-width: calc(100% - 320px);
}

.waitlist__logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 8px;
}

.waitlist__copy {
    margin-left: 40px;
}

.waitlist__logo-icon {
    height: 78px;
    width: 78px;
}

.waitlist__logo-text {
    font-size: 56px;
    color: var(--ink);
    letter-spacing: 1.3px;
    font-weight: 400;
    line-height: 1;
}

.waitlist__headline {
    font-family: "Shrikhand", serif;
    font-style: italic;
    color: #da836a;
    font-size: clamp(46px, 5.6vw, 74px);
    line-height: 1.15;
    margin: 0 0 12px 8%;
    letter-spacing: 0;
    white-space: nowrap;
}

.waitlist__subhead {
    color: var(--ink);
    font-size: 26px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0 0 78px calc(8% + 220px);
    max-width: 100%;
    text-align: center;
}

.waitlist__form {
    max-width: 320px;
    margin: 0 0 0 calc(8% + 220px + ((100% - (8% + 220px)) / 2) - 160px);
    margin-top: 100px;
}

.waitlist__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.waitlist__cta .waitlist__notice {
    margin: 0;
}

.waitlist__form .newsletter-form-container {
    width: 100%;
}

.waitlist__form .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.waitlist__form .newsletter-form-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #f9f5e7;
    color: var(--ink);
    font-size: 17px;
    font-family: var(--font);
    outline: none;
    box-sizing: border-box;
}

.waitlist__form .newsletter-form-input::placeholder {
    color: var(--muted);
}

.waitlist__form .newsletter-form-input:focus {
    border-color: var(--accent);
}

.waitlist__form .newsletter-form-button {
    background: none;
    border: none;
    color: var(--ink);
    font-weight: 700;
    font-size: 17px;
    font-family: var(--font);
    cursor: pointer;
    padding: 0;
    transition: color 0.12s ease;
}

.waitlist__form .newsletter-form-button:hover {
    color: var(--accent);
}

.waitlist__form .newsletter-loading-button {
    display: none;
    background: none;
    border: none;
    color: var(--muted);
    font-weight: 700;
    font-size: 17px;
    font-family: var(--font);
    padding: 0;
}

.waitlist__form .newsletter-success,
.waitlist__form .newsletter-error {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.waitlist__form .newsletter-success-message {
    font-family: var(--font);
    color: var(--ink);
    font-size: 17px;
}

.waitlist__form .newsletter-error-message {
    font-family: var(--font);
    color: #b91c1c;
    font-size: 14px;
}

.waitlist__form .newsletter-back-button {
    display: none;
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 14px;
    font-family: var(--font);
    margin: 10px auto 0;
    cursor: pointer;
}

.waitlist__form .newsletter-back-button:hover {
    text-decoration: underline;
}

.waitlist__notice {
    margin: 16px 0 0;
    font-size: 11px;
    line-height: 1.3;
    color: var(--muted);
    text-align: center;
}

.waitlist__notice a {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 980px) {
    .feature-phone-container {
        gap: 60px;
    }

    .feature-phone {
        flex: 0 0 auto;
        width: 24vw;
    }

    /* Waitlist tablet overrides */
    .waitlist {
        grid-template-columns: 1fr;
    }

    .waitlist__left {
        padding: 72px 48px 32px;
    }

    .waitlist__right {
        background: #ede8df;
        padding: 12px 24px 56px;
    }

    .waitlist__content {
        max-width: none;
        margin-bottom: -20px;
    }

    .waitlist__copy {
        margin-left: 0;
    }

    .waitlist__headline {
        margin-left: 0;
        white-space: normal;
    }

    .waitlist__subhead {
        margin: 0 0 32px;
        text-align: left;
    }

    .waitlist__form {
        margin: 0;
        transform: none;
        min-height: 190px;
    }

    .waitlist__phone {
        width: min(60vw, 360px);
    }
    .topbar__inner {
        padding: 12px 0;
    }

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

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero__media {
        order: 2;
    }

    .nav {
        display: none;
    }

    .legal .nav {
        display: flex;
    }

    .legal .topbar__inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .legal .brand__full {
        margin-left: 0;
    }

    .legal__header {
        padding-top: 24px;
    }

    h1 {
        font-size: 28px;
        margin: 12px 0 8px;
    }

    .subhead {
        font-size: 16px;
    }

    .hero__cta {
        margin-top: 16px;
    }

    .fineprint {
        display: none;
    }

    .pill {
        padding: 6px 10px;
        font-size: 12px;
    }

    .phone-frame {
        width: min(280px, 75vw);
        padding: 10px;
        border-radius: 38px;
    }

    .phone-screen {
        border-radius: 30px;
    }

    .phone-frame::before {
        width: 80px;
        height: 24px;
        top: 14px;
    }

    .feature-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-row__media {
        order: -1;
    }

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

    .feature-item {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .scroll-arrow,
    .scroll-hint {
        display: none;
    }

    #cta {
        min-height: auto;
        padding: 60px 24px 40px;
    }

    .cta__headline {
        font-size: 40px;
    }

    .positioning {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .positioning__block {
        padding: 60px 24px;
    }

    .positioning__block:last-child {
        padding-top: 60px;
        padding-left: 24px;
    }

    .positioning__title {
        font-size: 28px;
    }

    .positioning__list {
        font-size: 17px;
    }

    #features {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    #features .section__headline {
        font-size: 32px;
    }

    .feature-phone-container {
        flex-direction: column;
        align-items: center;
        gap: 48px;
        margin-top: 32px;
    }

    .feature-phone {
        flex: 0 0 auto;
        width: 60vw;
        max-width: 300px;
    }

    .feature-phone img {
        margin: 0 auto;
        display: block;
        width: 100%;
    }

    .feature-phone__title {
        margin-top: 12px;
    }

    .container {
        padding: 0 16px;
    }

    .topbar__inner {
        padding: 18px 0;
        align-items: center;
    }

    .brand {
        margin-left: 0;
    }

    .brand__full {
        margin-left: 17px;
    }

    .hero {
        padding: 28px 0 12px;
    }

    .hero__copy {
        text-align: center;
    }

    .hero-headline span {
        white-space: normal;
    }

    h1 {
        font-size: 22px;
        margin: 0 0 4px;
        line-height: 1.12;
    }

    .subhead {
        font-size: 14px;
        margin: 0 auto;
    }

    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .btn--small {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero__cta {
        margin-top: 10px;
        gap: 10px;
        justify-content: center;
    }

    .hero__copy .subhead,
    .hero__copy .hero-headline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__card {
        padding: 12px 0 0;
    }

    .hero__card {
        display: none;
    }

    .grid3,
    .grid2 {
        grid-template-columns: 1fr;
    }

    .proof {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .proof__line {
        margin: 0 auto;
    }

    .feature-screens {
        grid-template-columns: 1fr;
    }

    .feature-row {
        text-align: left;
    }

    .feature-row__media {
        order: 2;
    }

    .ck-wrap .formkit-form {
        flex-direction: column;
        align-items: stretch;
        border-radius: var(--radius);
    }

    .ck-wrap .formkit-fields {
        flex-direction: column;
    }

    .ck-wrap .formkit-input {
        padding: 12px 14px;
    }

    .ck-wrap .formkit-submit {
        width: 100%;
    }

    .phone-frame {
        width: min(230px, 68vw);
        box-shadow:
            0 20px 36px rgba(10, 15, 20, 0.32),
            inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .phone-mockup {
        margin-top: -25px;
    }

    .footer {
        padding-top: 18px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        justify-content: center;
        justify-items: center;
        text-align: center;
        column-gap: 10px;
        row-gap: 0;
        width: 100%;
    }

    .footer__brand {
        flex-direction: column;
        gap: 2px;
    }

    .footer__links {
        margin-top: 6px;
    }

    .brand__name {
        grid-row: auto;
    }

    .footer__tagline {
        grid-row: auto;
        justify-self: auto;
    }

    .footer .muted,
    .brand__name {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .brand__full {
        height: 22px;
        margin-left: 17px;
    }

    .topbar__inner {
        padding: 14px 0;
    }

    .brand {
        margin-left: 0;
    }

    .hero {
        padding: 28px 0 28px;
    }

    .hero__card {
        padding: 14px 20px 0;
    }

    h1 {
        font-size: 21px;
    }

    .subhead {
        font-size: 13px;
    }

    .phone-frame {
        width: min(210px, 66vw);
        padding: 8px;
        border-radius: 32px;
    }

    .phone-screen {
        border-radius: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        animation: none;
    }
}

/* Waitlist responsive */
/* Waitlist mobile overrides */
@media (max-width: 720px) {
    .waitlist {
        grid-template-columns: 1fr;
        min-height: none;
        height: auto;
        align-content: start;
    }

    .waitlist__left {
        padding: 24px 24px 60px;
        align-items: flex-start;
    }

    .waitlist__right {
        background: #ede8df;
        padding: 0 24px 20px;
        align-items: flex-start;
        justify-content: center;
    }

    .waitlist__content {
        max-width: none;
    }

    .waitlist__copy {
        margin-left: 0;
        width: 100%;
    }

    .waitlist__headline {
        font-size: clamp(52px, 12.5vw, 64px);
        margin: 0 auto 12px;
        white-space: normal;
        text-align: center;
        max-width: 14ch;
    }

    .waitlist__subhead {
        font-size: 16px;
        margin: 0 0 12px;
        text-align: center;
    }

    .waitlist__form {
        margin: 0 auto;
        transform: none;
        min-height: 0;
    }

    .waitlist__logo {
        justify-content: flex-start;
    }

    .waitlist__logo-icon {
        height: 27px;
        width: 27px;
    }

    .waitlist__logo-text {
        font-size: 22px;
    }

    .waitlist__form .newsletter-form-input {
        text-align: left;
    }

    .waitlist__form .newsletter-form {
        min-height: 0;
    }

    .waitlist__form .newsletter-form-button {
        font-size: 15px;
        font-weight: 500;
    }

    .waitlist__notice {
        margin-top: 12px;
        font-size: 11px;
    }

    .waitlist__phone {
        width: min(72vw, 320px);
        margin-top: -10px;
    }
}
