@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
    --forest: #173f35;
    --forest-dark: #0d2a24;
    --forest-soft: #2b5b4d;
    --teal: #3d8578;
    --coral: #ed7858;
    --gold: #efc86a;
    --ivory: #f8f4e9;
    --paper: #fffdf7;
    --ink: #17231f;
    --muted: #5e6d66;
    --line: #d9dfd7;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(9, 33, 27, 0.2);
    --content: 118rem;
    --gutter: clamp(2rem, 4vw, 5rem);
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

.homeBody {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

.homeBody main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.homeBody .hero {
    flex: 1;
    display: flex;
}

.homeBody .heroInner {
    flex: 1;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-underline-offset: 0.3em;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.skipLink {
    position: fixed;
    z-index: 100;
    top: 1.2rem;
    left: 1.2rem;
    padding: 0.9rem 1.3rem;
    color: var(--forest-dark);
    background: var(--gold);
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skipLink:focus {
    transform: translateY(0);
}

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

h1,
h2,
h3,
.brand,
.metricNumber,
.currentFlag strong,
.journeyFlag strong {
    font-family: "Manrope", sans-serif;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 2.2rem;
    color: var(--ivory);
    font-size: clamp(6.2rem, 9vw, 12.4rem);
    font-weight: 800;
    line-height: 0.92;
}

h2 {
    margin-bottom: 2rem;
    font-size: clamp(3.8rem, 5.2vw, 6.8rem);
    font-weight: 700;
    line-height: 1.05;
}

h3 {
    margin-bottom: 0.8rem;
    font-size: 2.4rem;
    line-height: 1.2;
}

.siteHeader {
    position: sticky;
    z-index: 30;
    top: 0;
    width: 100%;
    margin-bottom: -8.4rem;
    color: var(--ivory);
    background: rgba(13, 42, 36, 0.82);
    border-bottom: 1px solid rgba(248, 244, 233, 0.18);
    backdrop-filter: blur(1.2rem);
    -webkit-backdrop-filter: blur(1.2rem);
}

.headerInner,
.heroInner,
.privacyStripInner,
.progressSection,
.featuresSection,
.localSection,
.footerInner {
    width: min(100%, var(--content));
    margin-inline: auto;
}

.headerInner {
    position: relative;
    min-height: 8.4rem;
    padding-inline: var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.brandIcon {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 1.2rem;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.desktopNav {
    display: flex;
    gap: 3.2rem;
}

.desktopNav a {
    color: rgba(248, 244, 233, 0.78);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

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

.headerCta {
    position: absolute;
    top: 50%;
    right: 0;
    padding: 1rem 1.6rem;
    color: var(--forest-dark);
    background: var(--gold);
    border-radius: 0.6rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    opacity: 1;
    transform: translateY(-50%);
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity 0.2s ease,
        transform 0.24s ease,
        visibility 0s linear 0s;
}

.headerActions {
    position: relative;
    flex: 0 0 10rem;
    height: 5rem;
}

.headerStoreButtons {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    width: max-content;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(calc(-100% - 1rem));
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.24s ease,
        transform 0.28s ease,
        visibility 0s linear 0.22s;
}

.headerStoreButtons a,
.headerStoreButtons img {
    display: block;
}

.headerStoreButtons a {
    border-radius: 0.7rem;
    transition: transform 160ms ease;
}

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

.headerStoreButtons img {
    width: auto;
    max-width: none;
    height: 4.2rem;
}

.header-show-downloads .headerCta {
    opacity: 0;
    transform: translateY(calc(-100% - 1rem));
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.24s ease,
        visibility 0s linear 0.2s;
}

.header-show-downloads .headerStoreButtons {
    opacity: 1;
    transform: translateY(-50%);
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity 0.24s ease,
        transform 0.28s ease,
        visibility 0s linear 0s;
}

.header-show-downloads .hero .storeButtons {
    opacity: 0;
    transform: translateY(-0.8rem);
    pointer-events: none;
}

.hero {
    position: relative;
    min-height: min(86rem, 92svh);
    overflow: hidden;
    color: var(--ivory);
    background: var(--forest);
}

.heroTexture {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 7rem 7rem;
    mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
}

.heroInner {
    position: relative;
    min-height: min(86rem, 92svh);
    padding: 14.5rem var(--gutter) 6rem;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(34rem, 0.94fr);
    align-items: center;
    gap: clamp(4rem, 8vw, 10rem);
}

.heroCopy {
    position: relative;
    z-index: 3;
    max-width: 69rem;
}

.eyebrow {
    margin-bottom: 1.8rem;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--teal);
}

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

.heroPromise {
    max-width: 63rem;
    margin-bottom: 3rem;
    color: rgba(248, 244, 233, 0.84);
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    line-height: 1.55;
}

.storeButtons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.storeButtons a {
    display: block;
    border-radius: 0.8rem;
    transition: transform 160ms ease;
}

.storeButtons a:hover {
    transform: translateY(-3px);
}

.storeButtons img {
    display: block;
    width: auto;
    height: 5.2rem;
}

.availability {
    margin: 1.2rem 0 0;
    color: rgba(248, 244, 233, 0.6);
    font-size: 1.4rem;
}

.phoneStage {
    position: relative;
    width: min(100%, 47rem);
    min-height: 60rem;
    display: grid;
    place-items: center;
}

.phoneShell {
    position: relative;
    z-index: 2;
    width: min(32rem, 80vw);
    padding: 0.9rem;
    background: #0d1513;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 4.6rem;
    box-shadow: var(--shadow);
    transform: rotate(3deg);
}

.appScreenshot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3.7rem;
}

.phoneStatus,
.metricRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phoneStatus {
    padding-inline: 0.6rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.metricRow span {
    display: block;
    color: var(--muted);
    font-size: 1.1rem;
}

.routePreview {
    position: relative;
    height: 46rem;
    margin-top: 1.6rem;
    overflow: hidden;
    color: var(--ivory);
    background: #174a3d;
    border-radius: 2.2rem;
}

.mountainLayer,
.journeyMountain {
    position: absolute;
    right: -8%;
    bottom: -2%;
    left: -8%;
    transform-origin: bottom center;
}

.mountainLayerBack {
    height: 92%;
    background: #2f6d5b;
    clip-path: polygon(0 45%, 20% 24%, 36% 42%, 57% 10%, 75% 37%, 100% 14%, 100% 100%, 0 100%);
}

.mountainLayerMiddle {
    height: 77%;
    background: #205346;
    clip-path: polygon(0 46%, 23% 12%, 42% 41%, 64% 5%, 82% 33%, 100% 18%, 100% 100%, 0 100%);
}

.mountainLayerFront {
    height: 57%;
    background: #123b32;
    clip-path: polygon(0 34%, 20% 12%, 44% 45%, 69% 3%, 100% 42%, 100% 100%, 0 100%);
}

.routeLine,
.journeyRoute {
    position: absolute;
    z-index: 3;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.routeLine path,
.journeyRoute path {
    fill: none;
    stroke: var(--gold);
    stroke-linecap: round;
    stroke-linejoin: round;
}

.routeLine path {
    stroke-width: 5;
    filter: drop-shadow(0 0 0.5rem rgba(239, 200, 106, 0.45));
}

.futureCamp,
.currentFlag,
.routeDirection {
    position: absolute;
    z-index: 4;
}

.futureCamp {
    top: 27%;
    right: 8%;
    padding: 0.8rem 1rem;
    color: var(--forest-dark);
    background: var(--ivory);
    border-left: 0.4rem solid var(--teal);
    box-shadow: 0 0.8rem 2rem rgba(5, 23, 19, 0.28);
}

.futureCamp span,
.futureCamp small {
    display: block;
}

.futureCamp span {
    font-family: "Manrope", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
}

.futureCamp small {
    font-size: 0.9rem;
}

.currentFlag {
    top: 43%;
    left: 40%;
    min-width: 10.5rem;
    padding: 0.8rem 1rem;
    display: grid;
    grid-template-columns: 2.8rem auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 0.6rem;
    color: var(--forest-dark);
    background: var(--gold);
    border: 2px solid var(--forest-dark);
    box-shadow: 0.5rem 0.5rem 0 rgba(8, 31, 26, 0.7);
    transform: rotate(-2deg);
}

.currentFlag strong,
.currentFlag small {
    display: block;
    line-height: 1;
}

.currentFlag strong {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 2.7rem;
}

.currentFlag small {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 0.2rem;
    font-size: 1rem;
    font-weight: 700;
}

.flagShape {
    position: relative;
    grid-row: 1 / 3;
    width: 2.8rem;
    height: 3.6rem;
    background: linear-gradient(90deg, var(--ivory) 0 0.2rem, transparent 0.2rem);
}

.flagShape::after {
    content: "";
    position: absolute;
    top: 0.3rem;
    left: 0.2rem;
    width: 2.4rem;
    height: 1.6rem;
    background: var(--coral);
    clip-path: polygon(0 0, 100% 18%, 76% 100%, 0 84%);
}

.routeDirection {
    left: 1.5rem;
    color: rgba(248, 244, 233, 0.62);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.routeDirectionUp {
    top: 2rem;
}

.routeDirectionDown {
    right: 1.5rem;
    bottom: 2rem;
    left: auto;
}

.metricRow {
    gap: 1rem;
    margin-top: 1.4rem;
}

.metricRow div {
    flex: 1;
    padding: 1.2rem;
    background: #e8e9df;
    border-radius: 1.2rem;
}

.metricRow strong {
    display: block;
    font-size: 1.8rem;
}

.orbitNote {
    position: absolute;
    z-index: 3;
    min-width: 12.5rem;
    padding: 1.3rem 1.5rem;
    color: var(--forest-dark);
    background: var(--gold);
    border: 2px solid var(--forest-dark);
    box-shadow: 0.7rem 0.7rem 0 rgba(7, 29, 24, 0.75);
}

.orbitNoteTop {
    top: 8rem;
    right: -2rem;
    transform: rotate(5deg);
}

.orbitNoteBottom {
    top: 14.4rem;
    left: -2rem;
    color: var(--white);
    background: var(--coral);
    transform: rotate(-5deg);
}

.orbitValue,
.orbitLabel {
    display: block;
}

.orbitValue {
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
}

.orbitLabel {
    font-size: 1.1rem;
    font-weight: 600;
}

.privacyStrip {
    color: var(--forest-dark);
    background: var(--gold);
}

.privacyStripInner {
    min-height: 8.4rem;
    padding-inline: var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.privacyStripInner span + span {
    border-left: 1px solid rgba(23, 63, 53, 0.32);
}

.progressSection,
.featuresSection,
.localSection {
    padding: clamp(8rem, 12vw, 15rem) var(--gutter);
}

.sectionIntro {
    max-width: 80rem;
    margin-bottom: clamp(5rem, 8vw, 9rem);
}

.sectionIntro > p:last-child {
    max-width: 62rem;
    color: var(--muted);
    font-size: 2rem;
}

.sectionIntro.compact {
    margin-bottom: 5rem;
}

.metricStory {
    display: grid;
    grid-template-columns: minmax(28rem, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(5rem, 10vw, 12rem);
    align-items: center;
}

.largeMetric {
    min-height: 39rem;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--ivory);
    background: var(--teal);
    border: 1rem solid var(--forest-dark);
    box-shadow: 1.2rem 1.2rem 0 var(--coral);
}

.metricCaption {
    font-size: 1.5rem;
    font-weight: 700;
}

.metricNumber {
    font-size: clamp(11rem, 18vw, 20rem);
    font-weight: 800;
    line-height: 0.9;
}

.metricWord {
    align-self: flex-end;
    color: var(--gold);
    font-family: "Manrope", sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

.metricDetails {
    display: grid;
    gap: 4rem;
}

.metricDetails > div {
    display: grid;
    grid-template-columns: 6rem 1fr;
    column-gap: 2rem;
}

.metricDetails strong,
.metricDetails p {
    grid-column: 2;
}

.metricDetails strong {
    font-family: "Manrope", sans-serif;
    font-size: 2.4rem;
}

.metricDetails p {
    margin: 0.6rem 0 0;
    color: var(--muted);
}

.detailIcon {
    grid-row: 1 / 3;
    width: 6rem;
    height: 6rem;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--teal);
    border-radius: 50%;
    font-size: 2.6rem;
    font-weight: 700;
}

.detailIcon.coral {
    background: var(--coral);
}

.journeySection {
    min-height: 72rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    color: var(--ivory);
    background: var(--forest-dark);
}

.journeyArtwork,
.journeyCopy {
    min-width: 0;
}

.journeyArtwork {
    position: relative;
    min-height: 62rem;
    overflow: hidden;
    background: #174a3d;
}

.journeyMountainBack {
    height: 93%;
    background: #34705f;
    clip-path: polygon(0 44%, 18% 25%, 38% 47%, 60% 5%, 78% 35%, 100% 15%, 100% 100%, 0 100%);
}

.journeyMountainMiddle {
    height: 76%;
    background: #245749;
    clip-path: polygon(0 41%, 22% 7%, 46% 43%, 67% 4%, 86% 31%, 100% 20%, 100% 100%, 0 100%);
}

.journeyMountainFront {
    height: 57%;
    background: #123b32;
    clip-path: polygon(0 38%, 18% 11%, 40% 45%, 70% 2%, 100% 42%, 100% 100%, 0 100%);
}

.journeyRoute path {
    stroke-width: 8;
    filter: drop-shadow(0 0 0.7rem rgba(239, 200, 106, 0.48));
}

.journeyFlag,
.journeyCamp,
.journeyNote,
.routeTag {
    position: absolute;
    z-index: 4;
}

.journeyFlag {
    top: 42%;
    left: 41%;
    padding: 1.3rem 1.5rem 1.2rem 3rem;
    color: var(--forest-dark);
    background: var(--gold);
    border: 0.3rem solid var(--forest-dark);
    box-shadow: 0.8rem 0.8rem 0 rgba(7, 29, 24, 0.7);
    transform: rotate(-3deg);
}

.journeyFlag strong,
.journeyFlag small,
.journeyCamp strong,
.journeyCamp span,
.journeyNote strong {
    display: block;
}

.journeyFlag strong {
    font-size: 2.6rem;
}

.journeyFlag small {
    font-size: 1.1rem;
    font-weight: 700;
}

.journeyCamp {
    top: 12%;
    right: 11%;
    padding: 1.2rem 1.4rem;
    color: var(--forest-dark);
    background: var(--ivory);
    border-left: 0.5rem solid var(--teal);
    box-shadow: 0.8rem 0.8rem 0 rgba(7, 29, 24, 0.55);
}

.journeyCamp strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.8rem;
}

.journeyCamp span {
    font-size: 1.1rem;
}

.journeyNote {
    bottom: 17%;
    left: 13%;
    padding: 1rem 1.4rem 1rem 4.5rem;
    color: var(--forest-dark);
    background: var(--ivory);
    box-shadow: 0.8rem 0.8rem 0 rgba(7, 29, 24, 0.55);
}

.journeyNote span {
    position: absolute;
    top: 50%;
    left: 1.1rem;
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--coral);
    border-radius: 50%;
    transform: translateY(-50%);
}

.journeyNote strong {
    font-size: 1.3rem;
}

.journeyCopy {
    padding: clamp(7rem, 10vw, 13rem) clamp(3rem, 8vw, 11rem);
    align-self: center;
}

.journeyCopy > p:not(.eyebrow):not(.journeyStatement) {
    max-width: 58rem;
    color: rgba(248, 244, 233, 0.74);
}

.journeyStatement {
    max-width: 58rem;
    margin: 3.4rem 0 1.6rem;
    padding-left: 2rem;
    color: var(--gold);
    border-left: 0.5rem solid var(--coral);
    font-family: "Manrope", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
}

.routeTag {
    position: absolute;
    padding: 1.2rem 1.6rem;
    color: var(--forest-dark);
    background: var(--gold);
    border: 2px solid var(--forest-dark);
    box-shadow: 0.7rem 0.7rem 0 rgba(13, 42, 36, 0.8);
    font-weight: 700;
}

.routeTagOne {
    top: 8%;
    left: 7%;
    transform: rotate(-4deg);
}

.routeTagTwo {
    right: 7%;
    bottom: 9%;
    transform: rotate(4deg);
}

.featuresSection {
    background: var(--paper);
}

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

.featureList article {
    min-height: 13rem;
    padding-block: 2.6rem;
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.featureNumber {
    color: var(--coral);
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.featureList h3 {
    display: inline-block;
    width: min(35%, 32rem);
    margin: 0;
    vertical-align: top;
}

.featureList p {
    display: inline-block;
    width: min(58%, 60rem);
    margin: 0 0 0 5%;
    color: var(--muted);
}

.widgetSection {
    padding: clamp(8rem, 12vw, 14rem) max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(42rem, 1.2fr);
    align-items: center;
    gap: clamp(5rem, 9vw, 12rem);
    color: var(--ivory);
    background: var(--teal);
}

.widgetCopy p:last-child {
    max-width: 52rem;
    color: rgba(255, 255, 255, 0.78);
}

.widgetGallery {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 2rem;
}

.widgetSquare,
.widgetWide {
    color: var(--ink);
    background: var(--ivory);
    border: 1px solid rgba(13, 42, 36, 0.2);
    border-radius: 3.2rem;
    box-shadow: 0 2rem 5rem rgba(13, 42, 36, 0.3);
}

.widgetSquare {
    aspect-ratio: 1;
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
}

.widgetSquare span,
.widgetWide span {
    color: var(--muted);
    font-size: 1.2rem;
    font-weight: 700;
}

.widgetSquare strong {
    margin-top: auto;
    color: var(--forest);
    font-family: "Manrope", sans-serif;
    font-size: clamp(6rem, 9vw, 9.5rem);
    line-height: 0.9;
}

.widgetSquare small,
.widgetWide small {
    color: var(--muted);
    font-size: 1.1rem;
}

.widgetWide {
    min-height: 18rem;
    padding: 2.2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.widgetRoute {
    position: relative;
    flex: 0 0 9rem;
    height: 10rem;
    border-radius: 1.8rem;
    background: var(--forest);
}

.widgetRoute::before {
    content: "";
    position: absolute;
    top: 1.2rem;
    bottom: 1.2rem;
    left: 50%;
    width: 0.4rem;
    background: var(--gold);
    border-radius: 1rem;
    transform: translateX(-50%) rotate(9deg);
}

.widgetRoute::after {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: calc(50% + 0.2rem);
    width: 2.8rem;
    height: 1.8rem;
    background: var(--coral);
    clip-path: polygon(0 0, 100% 18%, 75% 100%, 0 83%);
}

.widgetWide strong,
.widgetWide small {
    display: block;
}

.widgetWide strong {
    margin: 0.5rem 0;
    font-family: "Manrope", sans-serif;
    font-size: 2.4rem;
}

.localSection {
    display: grid;
    grid-template-columns: 16rem minmax(0, 1fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 8rem);
}

.localSection > div:last-child {
    max-width: 82rem;
}

.localSection p:last-child {
    color: var(--muted);
    font-size: 2rem;
}

.localMark {
    width: 14rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: var(--ivory);
    background: var(--forest);
    border-radius: 50%;
    font-size: 6rem;
}

.finalCta {
    padding: clamp(6rem, 9vw, 10rem) max(var(--gutter), calc((100vw - var(--content)) / 2 + var(--gutter)));
    display: grid;
    grid-template-columns: 11rem minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(3rem, 5vw, 6rem);
    color: var(--ivory);
    background: var(--forest);
}

.finalCta h2 {
    max-width: 70rem;
    margin: 0;
    font-size: clamp(3.2rem, 4vw, 5.2rem);
}

.finalIcon {
    width: 11rem;
    height: 11rem;
    object-fit: cover;
    border-radius: 2.4rem;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
}

.compactButtons {
    flex-direction: column;
    align-items: stretch;
}

.compactButtons img {
    height: 4.8rem;
}

.siteFooter {
    color: rgba(248, 244, 233, 0.7);
    background: var(--forest-dark);
}

.footerInner {
    min-height: 16rem;
    padding: 4rem var(--gutter);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 4rem;
}

.footerInner nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.4rem;
}

.footerInner nav a {
    font-size: 1.4rem;
}

.footerInner p {
    margin: 0;
    font-size: 1.4rem;
}

.legalBody {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background: var(--paper);
}

.legalBody main {
    flex: 1;
}

.legalBody .siteHeader {
    position: sticky;
    margin-bottom: 0;
    color: var(--ivory);
    background: var(--forest);
}

.legalBody .headerActions {
    flex: 0 0 auto;
    height: auto;
}

.legalBody .headerStoreButtons {
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition: none;
}

.legalPage {
    width: min(100%, 86rem);
    min-height: 65vh;
    margin-inline: auto;
    padding: clamp(6rem, 10vw, 11rem) var(--gutter);
}

.legalPage h1 {
    margin-bottom: 1.2rem;
    color: var(--ink);
    font-size: clamp(4.4rem, 7vw, 7rem);
}

.legalPage h2 {
    margin: 4.5rem 0 1.2rem;
    font-size: 2.6rem;
}

.legalPage h3 {
    margin-top: 3rem;
    font-size: 2rem;
}

.legalPage p,
.legalPage li {
    color: #46554f;
}

.legalPage .updated {
    margin-bottom: 4rem;
    color: var(--teal);
    font-size: 1.4rem;
    font-weight: 700;
}

.contactPanel {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--ivory);
    border-left: 0.6rem solid var(--coral);
}

.contactDialog {
    width: min(calc(100% - 3.2rem), 52rem);
    margin: auto;
    padding: 0;
    overflow: visible;
    color: var(--ivory);
    background:
        linear-gradient(rgba(248, 244, 233, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 244, 233, 0.05) 1px, transparent 1px),
        linear-gradient(145deg, var(--forest) 0%, var(--forest-dark) 72%);
    background-size: 4.8rem 4.8rem, 4.8rem 4.8rem, cover;
    border: 1px solid rgba(239, 200, 106, 0.3);
    border-radius: 2.4rem;
    box-shadow: 0 3rem 9rem rgba(0, 0, 0, 0.58), 0 0 6rem rgba(239, 200, 106, 0.12);
}

.contactDialog::backdrop {
    background: rgba(4, 21, 18, 0.78);
    backdrop-filter: blur(8px);
}

.contactDialogCard {
    position: relative;
    padding: clamp(3.2rem, 7vw, 5.6rem);
    display: grid;
    justify-items: start;
    gap: 2rem;
}

.contactDialogTitle {
    max-width: 19ch;
    margin: 0;
    color: var(--ivory);
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1.12;
}

.contactDialogEmail {
    display: block;
    margin-top: 0.5rem;
    color: var(--gold);
    overflow-wrap: anywhere;
}

.contactDialogClose {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    width: 4rem;
    height: 4rem;
    padding: 0;
    display: grid;
    place-items: center;
    color: rgba(248, 244, 233, 0.72);
    background: rgba(13, 42, 36, 0.78);
    border: 1px solid rgba(248, 244, 233, 0.16);
    border-radius: 50%;
    font: inherit;
    font-size: 2.6rem;
    line-height: 1;
    cursor: pointer;
}

.contactDialogClose:hover,
.contactDialogClose:focus-visible {
    color: var(--white);
    border-color: rgba(239, 200, 106, 0.56);
}

.copyEmailButton {
    min-width: 14rem;
    padding: 1.3rem 2rem;
    color: var(--forest-dark);
    background: var(--gold);
    border: 0;
    border-radius: 1.2rem;
    box-shadow: 0 1rem 2.8rem rgba(239, 200, 106, 0.18);
    font: inherit;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

.copyEmailButton:hover,
.copyEmailButton:focus-visible {
    background: #f7d98d;
    transform: translateY(-1px);
}

.contactDialogStatus {
    min-height: 1.5em;
    margin: -1rem 0 0;
    color: rgba(248, 244, 233, 0.68);
    font-size: 1.3rem;
}

.comingSoonPage {
    text-align: center;
}

.comingSoonIcon {
    width: 15rem;
    height: 15rem;
    margin-bottom: 2rem;
    object-fit: cover;
    border-radius: 3.2rem;
}

.textButton {
    display: inline-block;
    margin-top: 1.8rem;
    padding: 1.2rem 1.8rem;
    color: var(--ivory);
    background: var(--forest);
    border-radius: 0.6rem;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .desktopNav {
        display: none;
    }

    .hero,
    .heroInner {
        min-height: auto;
    }

    .heroInner {
        padding-top: 13rem;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .heroCopy {
        margin-inline: auto;
    }

    .heroPromise {
        margin-inline: auto;
    }

    .storeButtons {
        justify-content: center;
    }

    .phoneStage {
        min-height: 56rem;
        margin-inline: auto;
    }

    .phoneShell {
        transform: none;
    }

    .orbitNoteTop {
        right: 0;
    }

    .orbitNoteBottom {
        left: 0;
    }

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

    .journeyArtwork {
        min-height: 58rem;
    }

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

    .finalCta {
        grid-template-columns: 9rem 1fr;
    }

    .finalIcon {
        width: 9rem;
        height: 9rem;
    }

    .compactButtons {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-start;
    }

    .footerInner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}

@media (max-width: 800px) {
    .homeBody .headerStoreButtons {
        opacity: 1;
        transform: translateY(-50%);
        visibility: visible;
        pointer-events: auto;
        transition: none;
    }
}

@media (max-width: 768px) {
    .siteHeader .brand span {
        display: none;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 1.6rem;
    }

    .headerInner {
        min-height: 7.4rem;
        gap: 1rem;
    }

    .siteHeader {
        margin-bottom: -7.4rem;
    }

    .brand {
        flex-shrink: 0;
        gap: 0.8rem;
        font-size: 1.7rem;
    }

    .brandIcon {
        width: 3.8rem;
        height: 3.8rem;
    }

    .headerCta {
        padding: 0.8rem 1rem;
        font-size: 1.3rem;
    }

    .headerStoreButtons {
        gap: 0.7rem;
    }

    .headerStoreButtons img {
        height: 3.1rem;
    }

    .heroInner {
        padding-top: 8.8rem;
        padding-bottom: 2.8rem;
        gap: 0;
    }

    h1 {
        margin-bottom: 1.6rem;
        font-size: 5.4rem;
    }

    .hero .eyebrow {
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
    }

    .heroPromise {
        margin-bottom: 2.2rem;
        font-size: 1.5rem;
        line-height: 1.45;
    }

    .storeButtons img {
        height: 4.2rem;
    }

    .availability {
        margin-top: 0.9rem;
        font-size: 1.2rem;
    }

    .privacyStripInner {
        padding-block: 2.5rem;
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .privacyStripInner span + span {
        padding-top: 1.2rem;
        border-top: 1px solid rgba(23, 63, 53, 0.24);
        border-left: 0;
    }

    .phoneStage {
        min-height: 56rem;
        margin-top: 1.8rem;
    }

    .metricStory,
    .localSection {
        grid-template-columns: 1fr;
    }

    .largeMetric {
        min-height: 30rem;
        padding: 2.8rem;
    }

    .journeyArtwork {
        min-height: 42rem;
    }

    .featureList article {
        grid-template-columns: 5rem minmax(0, 1fr);
        align-items: start;
    }

    .featureList h3,
    .featureList p {
        display: block;
        width: 100%;
        margin-left: 0;
    }

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

    .widgetSquare {
        width: min(100%, 30rem);
    }

    .localMark {
        width: 9rem;
        font-size: 4rem;
    }

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

    .finalIcon {
        margin-inline: auto;
    }

    .compactButtons {
        grid-column: auto;
        justify-content: center;
    }

    .compactButtons img {
        height: 4.4rem;
    }
}

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

    .storeButtons,
    .storeButtons a,
    .headerCta,
    .headerStoreButtons,
    .headerStoreButtons a {
        transition: none;
    }
}

@media (max-width: 380px) {
    .headerInner {
        padding-inline: 1rem;
        gap: 0.5rem;
    }

    .brand {
        gap: 0.6rem;
        font-size: 1.5rem;
    }

    .brandIcon {
        width: 3.2rem;
        height: 3.2rem;
    }

    .headerStoreButtons {
        gap: 0.5rem;
    }

    .headerStoreButtons img {
        height: 2.1rem;
    }
}
