:root {
    color-scheme: light;
    --ink: #1f2933;
    --muted: #52606d;
    --paper: #fffdf8;
    --wash: #f2f6f4;
    --line: #d9e2df;
    --accent: #0f766e;
    --accent-dark: #115e59;
    --max-width: 960px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

a {
    color: var(--accent-dark);
}

a:hover,
a:focus-visible {
    color: var(--accent);
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, #e4f2ed, #fffdf8 72%);
}

.header-inner,
.page,
.site-footer {
    width: min(100% - 2rem, var(--max-width));
    margin-inline: auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.brand {
    color: var(--accent-dark);
    font-size: 1.05rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.site-nav,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.35rem;
}

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

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

.page {
    padding: 3.5rem 0 4rem;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.15;
}

h1 {
    max-width: 18ch;
    margin: 0;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 500;
}

.hero {
    padding-bottom: 5rem;
}

.hero h1 {
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    letter-spacing: -0.03em;
}

h1 em {
    color: var(--accent);
    font-style: normal;
}

h2 {
    margin: 2.75rem 0 0.75rem;
    font-size: 1.65rem;
    font-weight: 500;
}

h3 {
    margin: 1.5rem 0 0.4rem;
    font-size: 1rem;
}

p,
ul {
    margin: 0 0 1rem;
}

ul {
    padding-left: 1.25rem;
}

.lede {
    max-width: 60ch;
    margin: 1.5rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 2rem;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.2rem;
    border-radius: 0.35rem;
    color: #fff;
    background: var(--accent-dark);
    font-weight: 700;
    text-decoration: none;
}

.button:hover,
.button:focus-visible {
    color: #fff;
    background: var(--accent);
}

.text-link {
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: none;
}

.text-link span {
    display: inline-block;
    margin-left: 0.3rem;
}

.section {
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.section h2,
.mission-block h2 {
    max-width: 20ch;
}

.feature-grid,
.principle-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    padding: 1.35rem;
    border-top: 3px solid var(--accent);
    background: #f4f8f4;
}

.feature-card h3 {
    margin-top: 2.5rem;
}

.feature-card p,
.principle-list p {
    color: var(--muted);
}

.feature-number {
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.statement-band {
    padding: 4rem 0;
    color: #f4fbf7;
    background: var(--accent-dark);
}

.statement-band .eyebrow,
.statement-band .text-link {
    color: #b8e2d3;
}

.statement-band h2 {
    max-width: 17ch;
}

.statement-band p:not(.eyebrow) {
    max-width: 52ch;
}

.mission-block {
    max-width: 700px;
    margin: 3rem 0 5rem;
    padding: 2rem 0 2rem 1.5rem;
    border-left: 4px solid var(--accent);
}

.principle-list {
    gap: 1.5rem;
}

.principle-list h3 {
    margin-top: 0;
}

.callout {
    margin: 2rem 0;
    padding: 1.25rem 1.35rem;
    border: 1px solid #b7d8ce;
    border-radius: 0.5rem;
    background: #edf8f3;
}

.callout p:last-child,
section> :last-child {
    margin-bottom: 0;
}

.placeholder {
    color: #8a4b08;
    font-weight: 700;
}

.site-footer {
    padding: 1.5rem 0 2.5rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-links {
    margin-top: 0.5rem;
}

@media (max-width: 679px) {

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

    .header-inner {
        align-items: flex-start;
        gap: 1rem;
    }

    .site-nav {
        justify-content: flex-end;
        gap: 0.75rem;
    }
}

@media (min-width: 680px) {

    .header-inner,
    .page,
    .site-footer {
        width: min(100% - 4rem, var(--max-width));
    }

    .page {
        padding-top: 5rem;
    }
}

/* Product website */
:root {
    --paper: #fffefb;
    --wash: #eef4ef;
    --ink: #202522;
    --muted: #59645e;
    --line: #d4ddd6;
    --accent: #287052;
    --accent-dark: #184c38;
    --coral: #e9674f;
    --sun: #f0bf4c;
    --max-width: 1120px;
    --reading-width: 760px;
}

body {
    font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

a:focus-visible {
    outline: 3px solid var(--sun);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 100;
    padding: 0.65rem 0.9rem;
    color: #fff;
    background: var(--accent-dark);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-180%);
}

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

.site-header {
    position: relative;
    z-index: 10;
    background: rgba(255, 254, 251, 0.96);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

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

.site-nav {
    align-items: center;
}

.site-nav a[aria-current="page"] {
    color: var(--ink);
    font-weight: 750;
}

.site-nav .nav-download {
    padding: 0.55rem 0.9rem;
    border-radius: 4px;
    color: #fff;
    background: var(--accent-dark);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    align-items: center;
    gap: 3rem;
    min-height: min(780px, calc(100vh - 84px));
    overflow: hidden;
}

.hero h1 {
    max-width: 10ch;
    font-family: Charter, Georgia, serif;
    font-size: clamp(3.5rem, 7vw, 6.75rem);
    letter-spacing: 0;
}

.hero-copy .lede {
    max-width: 52ch;
    font-size: 1.18rem;
}

.hero-visual {
    position: relative;
    min-height: 560px;
}

.hero-phone {
    position: absolute;
    width: min(88%, 420px);
    height: auto;
    border-radius: 22px;
    box-shadow: 0 28px 60px rgba(32, 37, 34, 0.18);
}

.hero-phone-primary {
    top: 0;
    right: 0;
    z-index: 2;
}

.store-actions,
.closing-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.store-badge {
    display: inline-flex;
}

.store-badge img {
    width: 180px;
    height: 60px;
}

.coming-soon {
    display: inline-flex;
    min-height: 60px;
    flex-direction: column;
    justify-content: center;
    padding: 0.4rem 1rem;
    border-left: 2px solid var(--line);
    color: var(--ink);
}

.coming-soon small,
.eligibility {
    color: var(--muted);
}

.invite-note {
    max-width: 58ch;
    margin-top: 1.25rem;
    font-size: 0.94rem;
}

.invitation-form {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 0.75rem;
    max-width: 34rem;
    margin-top: 1.25rem;
}

.invitation-form label {
    display: grid;
    flex: 1 1 16rem;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.invitation-form input {
    min-height: 2.9rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 0.25rem;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.invitation-form button {
    min-height: 2.9rem;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.invitation-form [role="status"] {
    flex-basis: 100%;
    color: var(--muted);
}

.mission-strip,
.mission-band {
    background: #173f34;
    color: #f7fbf8;
}

.mission-strip .page,
.mission-band .page {
    padding-block: 4.5rem;
}

.mission-strip .eyebrow,
.mission-band .eyebrow {
    color: #a8d7bd;
}

.mission-strip h2 {
    max-width: 20ch;
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.mission-strip p:last-child {
    max-width: 56ch;
    color: #d9e8df;
}

.section-heading,
.closing-cta,
.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    align-items: end;
    gap: 2rem;
}

.section-heading>p {
    color: var(--muted);
}

.product-band {
    padding: 1rem 0 5rem;
    background: #f4efe9;
}

.screenshot-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.screenshot-row figure {
    margin: 0;
}

.screenshot-row img,
.journey-step img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(32, 37, 34, 0.14);
}

.screenshot-row figcaption {
    margin-top: 0.8rem;
    color: var(--muted);
    font-weight: 700;
}

.closing-cta {
    padding-block: 5rem;
    border-top: 1px solid var(--line);
}

.closing-cta h2,
.page-intro h1 {
    max-width: 18ch;
}

.page-intro {
    padding-bottom: 5rem;
}

.page-intro .lede {
    font-size: 1.2rem;
}

.vision-statement {
    max-width: 920px;
}

.vision-statement blockquote {
    margin: 1rem 0 0;
    color: var(--ink);
    font-family: Charter, Georgia, serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.15;
}

.large-copy {
    font-size: 1.3rem;
}

.notice {
    max-width: 64ch;
    margin-top: 2rem;
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--coral);
    background: #fff1ec;
}

.journey {
    padding-top: 1rem;
}

.journey-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
    align-items: center;
    gap: clamp(2rem, 8vw, 7rem);
    padding: 4rem 0;
    border-top: 1px solid var(--line);
}

.journey-step-reverse .journey-copy {
    order: 2;
}

.step-number {
    display: block;
    margin-bottom: 1rem;
    color: var(--coral);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
    padding-block: 2.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
}

.eligibility {
    max-width: 42ch;
    font-size: 0.84rem;
}

@media (max-width: 820px) {

    .hero,
    .section-heading,
    .closing-cta,
    .two-column,
    .journey-step,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        padding-top: 3.5rem;
    }

    .hero-copy {
        position: relative;
        z-index: 1;
    }

    .hero-visual {
        position: static;
        clear: both;
        display: grid;
        gap: 1.25rem;
        min-height: 0;
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
        padding-top: 3rem;
    }

    .hero-phone {
        position: relative;
        justify-self: center;
        transform: none;
    }

    .journey-step-reverse .journey-copy {
        order: initial;
    }

    .journey-step img {
        max-width: 360px;
        margin-inline: auto;
    }

    .screenshot-row {
        gap: 1rem;
    }
}

@media (max-width: 620px) {
    .header-inner {
        align-items: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
        gap: 0.5rem 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--line);
        font-size: 0.8rem;
    }

    .site-nav .nav-download {
        padding: 0.4rem 0.65rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .hero-visual {
        min-height: 0;
    }

    .hero-phone {
        width: min(82%, 320px);
    }

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

    .screenshot-row figure {
        max-width: 320px;
        margin-inline: auto;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

.legal-page,
.faq-page {
    max-width: var(--reading-width);
}

.legal-page h1,
.faq-page h1 {
    max-width: 14ch;
}

.legal-page section {
    padding-top: 0.5rem;
}

.legal-page h2 {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.legal-emphasis {
    font-size: 0.9rem;
    font-weight: 700;
}

.emergency-banner {
    max-width: 68ch;
    margin-top: 2rem;
    padding: 1.1rem 1.25rem;
    border: 2px solid #b53426;
    background: #fff1ee;
    color: #74251b;
}

.safety-grid,
.prohibited-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
}

.safety-grid article {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.safety-grid h2,
.prohibited-grid h3,
.contact-card h2 {
    margin-top: 0;
}

.warning-band {
    padding-block: 1rem;
    background: #392f44;
    color: #fff;
}

.warning-band .page {
    padding-block: 4rem;
}

.warning-band .eyebrow {
    color: #f0bf4c;
}

.warning-band h2 {
    max-width: 19ch;
}

.prohibited-grid {
    margin-top: 2rem;
}

.prohibited-grid div {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.prohibited-grid p {
    color: #ded7e3;
}

.action-list {
    padding-left: 1.25rem;
}

.action-list li {
    margin-bottom: 0.8rem;
    padding-left: 0.35rem;
}

.faq-list {
    margin-top: 3rem;
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    padding: 1.25rem 2.25rem 1.25rem 0;
    cursor: pointer;
    color: var(--ink);
    font-family: Charter, Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-list details p {
    padding: 0 1rem 1.25rem 0;
    color: var(--muted);
}

.contact-grid {
    margin: 3rem 0;
}

.contact-card {
    padding: 1.5rem;
    border-top: 3px solid var(--accent);
    background: #f4f8f4;
}

@media (max-width: 620px) {

    .safety-grid,
    .prohibited-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}