:root {
    --paper: #f4f0e8;
    --paper-deep: #eae2d5;
    --card: #fffdf8;
    --ink: #25231f;
    --muted: #776c59;
    --quiet: #9a9082;
    --line: #d8d0c3;
    --amber: #d6ae62;
    --amber-soft: #f0e7d7;
    --sage: #668470;
    --sage-light: #a7bea9;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

a:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 5px;
}

.site-shell {
    width: min(1220px, 100%);
    margin: 0 auto;
    padding: 0 34px;
}

.site-header,
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header {
    min-height: 92px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

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

.site-nav,
.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a,
.footer-links a {
    color: var(--muted);
    font-size: 12px;
    text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover {
    color: var(--ink);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
    gap: clamp(40px, 8vw, 112px);
    align-items: center;
    min-height: 650px;
    padding: 78px 0 72px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 4px var(--amber-soft);
}

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

h1,
h2 {
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.055em;
}

h1 {
    max-width: 680px;
    margin-bottom: 29px;
    font-size: clamp(62px, 8vw, 105px);
    line-height: .87;
}

h1 em,
h2 em {
    color: var(--sage);
    font-style: italic;
}

.hero-lede {
    max-width: 455px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 27px;
    min-width: 210px;
    padding: 16px 18px 16px 20px;
    background: var(--amber);
    box-shadow: 5px 5px 0 var(--ink);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover {
    background: #dfb971;
    box-shadow: 3px 3px 0 var(--ink);
    transform: translate(2px, 2px);
}

.button span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.availability {
    margin: 22px 0 0;
    color: var(--quiet);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.availability span {
    padding: 0 6px;
    color: var(--amber);
}

.hero-art {
    position: relative;
    min-height: 0;
    margin: 0;
}

.screenshot-frame {
    overflow: hidden;
    border: 1px solid rgba(37, 35, 31, .14);
    border-radius: 18px;
    background: var(--ink);
    box-shadow: 0 24px 45px rgba(60, 53, 42, .13);
}

.screenshot-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.screenshot-frame-featured {
    max-width: 520px;
    margin-left: auto;
    transform: rotate(1.4deg);
    transition: transform .3s ease, box-shadow .3s ease;
}

.screenshot-frame-featured:hover {
    box-shadow: 0 28px 52px rgba(60, 53, 42, .17);
    transform: rotate(0) translateY(-4px);
}

.hero-art figcaption,
.app-shot figcaption {
    color: var(--quiet);
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-size: 13px;
    font-style: italic;
}

.hero-art figcaption {
    margin: 22px 0 0 auto;
    max-width: 520px;
    text-align: right;
}

.signal-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.signal {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 25px 18px 24px 0;
}

.signal + .signal {
    padding-left: 30px;
    border-left: 1px solid var(--line);
}

.signal strong {
    color: var(--sage);
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: 1;
}

.signal span {
    max-width: 130px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.app-tour {
    padding: 135px 0 145px;
    border-bottom: 1px solid var(--line);
}

.app-tour-heading {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 65px;
}

.app-tour-heading .eyebrow {
    margin-top: 16px;
}

.app-tour-heading h2 {
    max-width: 680px;
    margin-bottom: 24px;
    font-size: clamp(43px, 5.6vw, 74px);
    line-height: .95;
}

.app-tour-heading > div > p {
    max-width: 470px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.app-tour-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(24px, 4vw, 55px);
    align-items: start;
}

.app-shot {
    margin: 0;
}

.app-shot-scanning {
    padding-top: 58px;
}

.app-shot figcaption {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-top: 18px;
}

.app-shot figcaption span {
    color: var(--amber);
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .18em;
}

.how-section {
    padding: 130px 0 135px;
}

.section-intro {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 70px;
}

.section-intro .eyebrow {
    margin-top: 16px;
}

.section-intro h2,
.closing-section h2 {
    margin-bottom: 0;
    font-size: clamp(43px, 5.6vw, 74px);
    line-height: .95;
}

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

.step {
    min-height: 220px;
    padding: 22px 30px 20px 0;
}

.step + .step {
    padding-left: 30px;
    border-left: 1px solid var(--line);
}

.step-number {
    display: block;
    margin-bottom: 48px;
    color: var(--amber);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
}

.step h3 {
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: -.02em;
}

.step p {
    max-width: 245px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.privacy-section {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(40px, 8vw, 110px);
    padding: 70px clamp(30px, 7vw, 95px);
    background: var(--ink);
    color: var(--paper);
}

.eyebrow-light {
    color: var(--sage-light);
}

.privacy-copy h2 {
    margin-bottom: 25px;
    color: var(--paper);
    font-size: clamp(47px, 6vw, 78px);
    line-height: .9;
}

.privacy-copy h2 em {
    color: var(--sage-light);
}

.privacy-copy > p:not(.eyebrow) {
    max-width: 440px;
    margin-bottom: 25px;
    color: #cfc8bc;
    font-size: 14px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--amber);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    color: #e9c47a;
}

.text-link span {
    font-size: 17px;
    font-weight: 400;
}

.privacy-list {
    display: grid;
    align-content: center;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.privacy-list li {
    padding: 19px 0;
    border-bottom: 1px solid rgba(244, 240, 232, .18);
    color: #cfc8bc;
    font-size: 13px;
    line-height: 1.5;
}

.privacy-list li:first-child {
    border-top: 1px solid rgba(244, 240, 232, .18);
}

.privacy-list li::before {
    margin-right: 12px;
    color: var(--amber);
    content: "—";
}

.closing-section {
    padding: 140px 0 150px;
    text-align: center;
}

.closing-section .eyebrow {
    justify-content: center;
}

.closing-section h2 {
    margin-bottom: 39px;
}

.button-dark {
    background: var(--ink);
    box-shadow: 5px 5px 0 var(--amber);
    color: var(--paper);
}

.button-dark:hover {
    background: #39352f;
    box-shadow: 3px 3px 0 var(--amber);
}

.site-footer {
    min-height: 78px;
    border-top: 1px solid var(--line);
    color: var(--quiet);
}

.site-footer p {
    margin: 0;
    font-size: 11px;
}

/* The two linked pages intentionally share the same small, static stylesheet. */
.utility-page {
    min-height: 100vh;
}

.utility-main {
    max-width: 830px;
    padding: 100px 0 130px;
}

.utility-main h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(56px, 8vw, 96px);
    line-height: .9;
}

.utility-intro {
    max-width: 590px;
    margin-bottom: 70px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.effective-date {
    margin: -8px 0 25px;
    color: var(--quiet);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.policy-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin: -25px 0 45px;
    padding: 20px 24px;
    border: 1px solid var(--sage);
    background: rgba(102, 132, 112, .08);
}

.policy-summary strong {
    color: var(--sage);
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
}

.policy-summary span {
    max-width: 440px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.utility-grid section {
    min-height: 190px;
    padding: 26px 28px;
    background: var(--card);
}

.utility-kicker {
    margin-bottom: 20px;
    color: var(--sage);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.utility-grid h2,
.support-card h2 {
    margin-bottom: 11px;
    font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.02em;
}

.utility-grid p,
.support-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.policy-grid .policy-contact {
    grid-column: 1 / -1;
    min-height: 0;
}

.policy-contact a {
    color: var(--sage);
    font-weight: 700;
}

.back-link {
    display: inline-flex;
    gap: 10px;
    margin-top: 45px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.back-link:hover {
    color: var(--sage);
}

.support-list {
    display: grid;
    gap: 1px;
    max-width: 720px;
    background: var(--line);
    border: 1px solid var(--line);
}

.support-identity {
    display: flex;
    align-items: center;
    gap: 17px;
    max-width: 720px;
    margin: -25px 0 70px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    background: var(--card);
}

.support-identity img {
    width: 52px;
    height: 52px;
}

.support-identity strong,
.support-identity span {
    display: block;
}

.support-identity strong {
    margin-bottom: 4px;
    font-size: 15px;
}

.support-identity span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.support-section {
    margin-bottom: 45px;
}

.support-contact {
    max-width: 720px;
    margin-bottom: 70px;
    padding: 30px;
    background: var(--ink);
    color: var(--paper);
}

.support-contact .utility-kicker {
    color: var(--sage-light);
}

.support-contact h2 {
    margin-bottom: 10px;
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: -.035em;
}

.support-contact p:not(.utility-kicker) {
    max-width: 520px;
    margin-bottom: 19px;
    color: #cfc8bc;
    font-size: 13px;
    line-height: 1.65;
}

.support-contact a {
    display: inline-block;
    color: var(--amber);
    font-size: 16px;
    font-weight: 700;
    text-underline-offset: 4px;
}

.support-contact a:hover {
    color: #e9c47a;
}

.support-section .eyebrow {
    margin-bottom: 12px;
}

.support-section-title {
    margin-bottom: 28px;
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: -.04em;
}

.support-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 25px 28px;
    background: var(--card);
}

.support-card > span {
    color: var(--amber);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.support-card h3 {
    margin: 0 0 11px;
    font-size: 17px;
    letter-spacing: -.02em;
}

.support-privacy {
    max-width: 720px;
    padding: 28px;
    border: 1px solid var(--sage);
    background: rgba(102, 132, 112, .08);
}

.support-privacy h2 {
    margin-bottom: 12px;
    font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -.035em;
}

.support-privacy > p:not(.utility-kicker) {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.support-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sage);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.support-action:hover {
    color: var(--ink);
}

@media (max-width: 800px) {
    .site-shell {
        padding: 0 22px;
    }

    .site-header {
        min-height: 75px;
    }

    .site-nav {
        gap: 15px;
    }

    .site-nav a:nth-child(2) {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: 0;
        padding: 65px 0 55px;
    }

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

    .hero-art {
        margin-top: 8px;
    }

    .screenshot-frame-featured {
        transform: none;
    }

    .hero-art figcaption {
        margin-left: 0;
        text-align: left;
    }

    .app-tour {
        padding: 90px 0;
    }

    .app-tour-heading {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 45px;
    }

    .app-tour-heading .eyebrow {
        margin-top: 0;
    }

    .app-tour-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .app-shot-scanning {
        padding-top: 0;
    }

    .signal-row {
        grid-template-columns: 1fr;
    }

    .signal,
    .signal + .signal {
        padding: 17px 0;
        border-left: 0;
    }

    .signal + .signal {
        border-top: 1px solid var(--line);
    }

    .how-section {
        padding: 90px 0;
    }

    .section-intro {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 45px;
    }

    .section-intro .eyebrow {
        margin-top: 0;
    }

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

    .step,
    .step + .step {
        min-height: 0;
        padding: 22px 0 26px;
        border-left: 0;
    }

    .step + .step {
        border-top: 1px solid var(--line);
    }

    .step-number {
        margin-bottom: 28px;
    }

    .privacy-section {
        gap: 48px;
        padding: 52px 28px 58px;
    }

    .closing-section {
        padding: 100px 0 110px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 25px 0;
    }

    .utility-main {
        padding: 75px 0 100px;
    }

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

    .support-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .policy-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .policy-summary span {
        text-align: left;
    }

    .policy-grid .policy-contact {
        grid-column: auto;
    }
}

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

    .button {
        transition: none;
    }
}
