:root {
    --forest-950: #182a22;
    --forest-900: #233b2f;
    --forest-800: #2f4a3b;
    --forest-700: #45634f;
    --sage-500: #809674;
    --sage-300: #b8c7aa;
    --sage-100: #e8eee2;
    --cream-50: #fffdf7;
    --cream-100: #f8f2e7;
    --cream-200: #efe4d2;
    --honey-500: #d8a84d;
    --honey-300: #edc97c;
    --terracotta-500: #bd684c;
    --brown-700: #654737;
    --ink: #26322c;
    --muted: #68736d;
    --white: #fff;
    --shadow-sm: 0 10px 30px rgba(31, 48, 39, .08);
    --shadow-lg: 0 25px 70px rgba(22, 39, 30, .18);
    --radius-sm: 16px;
    --radius-md: 26px;
    --radius-lg: 40px;
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream-50);
    font-family: Inter, ui-rounded, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: var(--forest-700);
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

a:hover {
    color: var(--terracotta-500);
}

h1,
h2,
h3 {
    margin: 0 0 .55em;
    color: var(--forest-950);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    letter-spacing: -.025em;
}

h1 {
    font-size: clamp(3.1rem, 7vw, 6.6rem);
}

h2 {
    font-size: clamp(2.25rem, 4.3vw, 4rem);
}

h3 {
    font-size: 1.55rem;
}

p {
    margin: 0 0 1.15em;
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.narrow {
    max-width: 790px;
}

.center {
    text-align: center;
}

.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;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--forest-950);
    border-radius: 10px;
    transform: translateY(-160%);
}

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

.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled,
body:not(.home-page) .site-header {
    position: fixed;
    background: rgba(24, 42, 34, .96);
    box-shadow: 0 8px 28px rgba(13, 26, 20, .16);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: block;
    flex: 0 0 auto;
}

.brand img {
    width: 210px;
    height: auto;
    filter: drop-shadow(0 4px 9px rgba(0, 0, 0, .16));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav a {
    color: rgba(255, 255, 255, .88);
    font-size: .93rem;
    font-weight: 750;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--white);
}

.site-nav .nav-pill {
    padding: 10px 18px;
    color: var(--forest-950);
    background: var(--honey-300);
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 10px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 12px;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: var(--white);
}

.hero {
    position: relative;
    display: grid;
    min-height: min(900px, 100vh);
    overflow: hidden;
    align-items: center;
    color: var(--white);
    background: var(--forest-950);
}

.hero-art,
.hero-art img,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-art img {
    object-fit: cover;
    object-position: center;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(19, 38, 29, .96) 0%, rgba(24, 43, 34, .82) 29%, rgba(24, 43, 34, .2) 62%, rgba(24, 43, 34, .08) 100%),
        linear-gradient(0deg, rgba(22, 36, 29, .4), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 135px;
    padding-bottom: 70px;
}

.hero-content h1 {
    max-width: 720px;
    color: var(--white);
    text-shadow: 0 4px 26px rgba(0, 0, 0, .28);
}

.hero-content h1 em {
    color: var(--honey-300);
    font-weight: inherit;
}

.hero-copy {
    max-width: 600px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.05rem, 2vw, 1.27rem);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--terracotta-500);
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow > span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: currentColor;
}

.hero .eyebrow,
.eyebrow.light {
    color: var(--honey-300);
}

.eyebrow.centered {
    justify-content: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-button {
    display: grid;
    min-width: 174px;
    padding: 10px 18px;
    color: var(--white);
    background: rgba(18, 28, 23, .85);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 14px;
    line-height: 1.08;
    box-shadow: 0 9px 24px rgba(0, 0, 0, .17);
    text-decoration: none;
}

a.store-button:hover {
    color: var(--white);
    border-color: var(--honey-300);
    transform: translateY(-2px);
}

.store-button small {
    font-size: .68rem;
}

.store-button strong {
    margin-top: 3px;
    font-size: 1.15rem;
}

.development-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .78);
    font-size: .84rem;
}

.status-dot {
    width: 9px;
    height: 9px;
    background: #9ed48a;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(158, 212, 138, .18);
}

.section {
    padding: clamp(80px, 10vw, 140px) 0;
}

.intro {
    position: relative;
    overflow: hidden;
    background: var(--cream-50);
}

.intro::before,
.intro::after {
    position: absolute;
    width: 270px;
    height: 270px;
    content: "";
    background: var(--sage-100);
    border-radius: 48% 52% 65% 35%;
    filter: blur(2px);
    opacity: .5;
}

.intro::before {
    top: -150px;
    left: -100px;
}

.intro::after {
    right: -130px;
    bottom: -180px;
}

.large-copy {
    color: var(--muted);
    font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.features-section,
.soft-section {
    background: var(--cream-100);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(250px, .6fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 52px;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card,
.support-card,
.roadmap-card,
.notice-card,
.prose-card {
    padding: 30px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(47, 74, 59, .08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.feature-card {
    min-height: 315px;
}

.feature-card:nth-child(even) {
    transform: translateY(20px);
}

.feature-card p,
.support-card p,
.roadmap-card p {
    color: var(--muted);
    font-size: .95rem;
}

.feature-mark {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    place-items: center;
    color: var(--cream-50);
    background: var(--forest-700);
    border-radius: 18px 18px 18px 6px;
    font-size: 1.45rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(47, 74, 59, .2);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    align-items: center;
    gap: clamp(45px, 8vw, 100px);
}

.split-layout.reverse {
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
}

.cast-section {
    overflow: hidden;
}

.art-card {
    position: relative;
    margin-left: -11vw;
    padding: 25px 0 0;
    background: linear-gradient(145deg, var(--sage-100), var(--cream-200));
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: var(--shadow-lg);
}

.art-card img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.split-copy p:not(.eyebrow) {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
    font-weight: 800;
    text-decoration: none;
}

.home-section {
    background: var(--forest-900);
}

.home-section h2,
.home-section .split-copy p:not(.eyebrow),
.home-section .tick-list {
    color: var(--white);
}

.home-section .split-copy p:not(.eyebrow) {
    opacity: .78;
}

.collection-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    background: var(--cream-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.collection-card img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.collection-label {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 13px 16px;
    color: var(--white);
    background: rgba(35, 59, 47, .93);
    border-radius: 13px;
    font-size: .9rem;
    font-weight: 750;
    text-align: center;
}

.tick-list {
    padding: 0;
    list-style: none;
}

.tick-list li {
    position: relative;
    padding: 8px 0 8px 34px;
}

.tick-list li::before {
    position: absolute;
    top: 8px;
    left: 0;
    display: grid;
    width: 23px;
    height: 23px;
    content: "✓";
    place-items: center;
    color: var(--forest-950);
    background: var(--honey-300);
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 900;
}

.roadmap-section {
    background: linear-gradient(180deg, var(--cream-50), var(--sage-100));
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 55px;
}

.roadmap-card {
    position: relative;
    min-height: 280px;
}

.roadmap-number {
    color: var(--cream-200);
    font-family: Georgia, serif;
    font-size: 4.6rem;
    font-weight: 800;
    line-height: 1;
}

.roadmap-status {
    display: inline-block;
    margin: 3px 0 15px;
    padding: 5px 10px;
    color: var(--forest-800);
    background: var(--sage-100);
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.faq-list {
    margin: 45px 0 32px;
}

.faq-list details {
    padding: 0;
    border-bottom: 1px solid var(--cream-200);
}

.faq-list summary {
    position: relative;
    padding: 22px 45px 22px 0;
    cursor: pointer;
    color: var(--forest-950);
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 19px;
    right: 4px;
    content: "+";
    color: var(--terracotta-500);
    font-family: system-ui, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding: 0 45px 20px 0;
    color: var(--muted);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button.primary {
    color: var(--white);
    background: var(--forest-700);
    box-shadow: 0 10px 24px rgba(47, 74, 59, .22);
}

.button.primary:hover {
    color: var(--white);
    background: var(--terracotta-500);
}

.button.secondary {
    color: var(--forest-800);
    background: transparent;
    border-color: rgba(47, 74, 59, .24);
}

.button.secondary:hover {
    border-color: var(--terracotta-500);
}

.final-cta {
    padding: 80px 0;
    color: var(--white);
    background: var(--terracotta-500);
}

.final-cta-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 38px;
}

.final-cta img {
    border: 5px solid rgba(255, 255, 255, .24);
    border-radius: 28px;
    box-shadow: 0 18px 38px rgba(66, 34, 24, .24);
}

.final-cta h2,
.final-cta a {
    color: var(--white);
}

.site-footer {
    padding: 70px 0 24px;
    color: rgba(255, 255, 255, .7);
    background: var(--forest-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    width: 190px;
    height: auto;
    margin-bottom: 16px;
}

.footer-grid h2 {
    color: var(--honey-300);
    font-family: inherit;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-grid a {
    display: block;
    margin: 7px 0;
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .78rem;
}

.page-hero {
    padding: 190px 0 95px;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 15%, rgba(216, 168, 77, .22), transparent 28%),
        linear-gradient(145deg, var(--forest-950), var(--forest-700));
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5.2rem);
}

.page-hero > div > p:not(.eyebrow) {
    max-width: 680px;
    margin-inline: auto;
    color: rgba(255, 255, 255, .76);
}

.page-hero .button {
    margin-top: 12px;
    color: var(--forest-950);
    background: var(--honey-300);
}

.legal-content {
    padding-top: 80px;
    padding-bottom: 110px;
}

.legal-content section {
    padding: 30px 0;
    border-bottom: 1px solid var(--cream-200);
}

.legal-content h2 {
    font-size: 1.75rem;
}

.legal-content p,
.prose-card p {
    color: #4f5b55;
}

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

.support-card h2 {
    font-size: 1.45rem;
}

.notice-card {
    background: var(--cream-100);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.press-fact-card {
    display: grid;
    padding: 24px;
    background: var(--cream-100);
    border-radius: var(--radius-sm);
}

.press-fact-card span {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.press-fact-card strong {
    margin-top: 7px;
    color: var(--forest-900);
}

.press-quote {
    color: var(--forest-800) !important;
    font-family: Georgia, serif;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.28;
}

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

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

.screenshot-card {
    margin: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.screenshot-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.screenshot-card figcaption {
    padding: 15px 18px;
    color: var(--muted);
    font-size: .86rem;
}

.download-card {
    padding: 18px 18px 28px;
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.download-card h3,
.download-card p,
.download-card .button {
    margin-right: 10px;
    margin-left: 10px;
}

.download-card p {
    color: var(--muted);
    font-size: .9rem;
}

.download-preview {
    display: grid;
    min-height: 220px;
    margin-bottom: 24px;
    overflow: hidden;
    place-items: center;
    background: var(--sage-100);
    border-radius: 18px;
}

.download-preview img {
    max-height: 210px;
    object-fit: contain;
}

.logo-download .download-preview {
    padding: 25px;
    background: var(--cream-100);
}

.icon-preview img {
    width: 180px;
    border-radius: 34px;
}

.hero-download .download-preview img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.error-content {
    min-height: 75vh;
    padding: 190px 0 100px;
    background: var(--cream-100);
}

.error-content img {
    margin: 0 auto 28px;
    border-radius: 30px;
}

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

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

@media (max-width: 980px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
        min-height: 270px;
    }

    .feature-card:nth-child(even) {
        transform: none;
    }

    .split-layout,
    .split-layout.reverse {
        grid-template-columns: 1fr;
    }

    .split-layout.reverse .split-copy {
        order: 2;
    }

    .art-card {
        margin-left: -20px;
    }

    .press-grid,
    .download-grid,
    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .header-inner {
        min-height: 76px;
    }

    .brand img {
        width: 164px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 70px;
        right: 20px;
        left: 20px;
        display: none;
        padding: 18px;
        align-items: stretch;
        background: var(--forest-950);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 18px;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        gap: 4px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 10px 12px;
    }

    .site-nav .nav-pill {
        margin-top: 5px;
        text-align: center;
    }

    .hero {
        min-height: 840px;
        align-items: end;
    }

    .hero-art img {
        object-position: 61% center;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(20, 37, 28, .98) 5%, rgba(20, 37, 28, .78) 58%, rgba(20, 37, 28, .2) 100%);
    }

    .hero-content {
        padding-top: 190px;
        padding-bottom: 48px;
    }

    .hero-content h1 {
        font-size: clamp(3.1rem, 14vw, 4.7rem);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .roadmap-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .final-cta img {
        margin-inline: auto;
    }

    .final-cta .eyebrow {
        justify-content: center;
    }

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

    .page-hero {
        padding-top: 150px;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .feature-grid,
    .press-grid,
    .download-grid,
    .screenshot-grid {
        grid-template-columns: 1fr;
    }

    .download-card:last-child {
        grid-column: auto;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .store-button {
        min-width: 0;
    }

    .art-card {
        margin-left: -14px;
        padding-top: 12px;
        border-radius: 0 24px 24px 0;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
