/* Versioned filename prevents stale CDN/browser styles after deployment. */
:root {
    --ink: #0b3343;
    --ink-deep: #082a36;
    --teal: #173f48;
    --teal-light: #285a62;
    --cream: #fff8ea;
    --cream-deep: #f5ead6;
    --paper: #fffcf6;
    --orange: #ff891d;
    --orange-bright: #ffa322;
    --coral: #e8736a;
    --white: #ffffff;
    --muted: #668088;
    --border: rgba(11, 51, 67, 0.14);
    --shadow: 0 24px 70px rgba(4, 31, 38, 0.14);
    --radius-lg: 36px;
    --radius-md: 24px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

button {
    font: inherit;
}

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

.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;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-160%);
}

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

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--white);
    transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
    color: var(--ink);
    background: rgba(255, 252, 246, 0.92);
    box-shadow: 0 1px 0 rgba(11, 51, 67, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    text-decoration: none;
    font-size: 1.26rem;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 7px 18px rgba(5, 36, 46, 0.2);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.92rem;
    font-weight: 700;
}

.site-nav a {
    text-decoration: none;
    transition: opacity 160ms ease;
}

.site-nav a:hover {
    opacity: 0.66;
}

.nav-download {
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--ink-deep);
    background: var(--cream);
}

.site-header.is-scrolled .nav-download,
.site-header.nav-open .nav-download {
    color: var(--white);
    background: var(--ink);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: inherit;
    background: rgba(255, 255, 255, 0.12);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-button span:not(.sr-only) {
    width: 18px;
    height: 2px;
    border-radius: 10px;
    background: currentColor;
    transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

.hero {
    min-height: 850px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--teal);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 84%, rgba(255, 155, 40, 0.13), transparent 29%),
        linear-gradient(130deg, rgba(255, 255, 255, 0.025), transparent 45%);
}

.sun-orbit {
    position: absolute;
    width: 560px;
    height: 560px;
    right: -270px;
    top: -270px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
    box-shadow:
        0 0 0 85px rgba(255, 255, 255, 0.025),
        0 0 0 170px rgba(255, 255, 255, 0.018);
}

.hero-grid {
    min-height: 850px;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
    padding-top: 116px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding: 56px 0 74px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow > span {
    display: inline-block;
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: var(--orange-bright);
}

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

.hero h1,
.section-heading h2,
.journey-copy h2,
.privacy-callout h2,
.final-cta h2,
.privacy-hero h1 {
    margin: 0;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(3.8rem, 6.3vw, 6.7rem);
    line-height: 0.91;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.hero h1 em {
    color: var(--orange-bright);
    font-style: normal;
}

.hero-lede {
    max-width: 640px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 36px;
}

.app-store-link {
    display: inline-block;
    border-radius: 12px;
    transition: transform 180ms ease, filter 180ms ease;
}

.app-store-link:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.2));
}

.app-store-link img {
    height: 54px;
    width: auto;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 6px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.83rem;
    font-weight: 700;
}

.hero-proof li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.proof-mark {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--orange-bright);
    font-size: 0.68rem;
}

.hero-visual {
    position: relative;
    align-self: end;
    height: 748px;
    display: flex;
    justify-content: center;
}

.hero-screen {
    position: relative;
    z-index: 2;
    width: min(100%, 475px);
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 38px 58px rgba(0, 0, 0, 0.26));
}

.hero-glow {
    position: absolute;
    z-index: 1;
    width: 420px;
    height: 420px;
    bottom: 110px;
    border-radius: 50%;
    background: rgba(255, 159, 44, 0.22);
    filter: blur(80px);
}

.floating-note {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(255, 250, 239, 0.9);
    box-shadow: 0 18px 40px rgba(4, 26, 34, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.floating-note strong,
.floating-note small {
    display: block;
}

.floating-note strong {
    font-size: 0.82rem;
}

.floating-note small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.68rem;
}

.floating-note-top {
    top: 250px;
    left: -30px;
}

.floating-note-bottom {
    right: -40px;
    bottom: 95px;
}

.note-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--white);
    background: var(--orange);
    font-size: 1.1rem;
}

.privacy-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4aa889;
    box-shadow: 0 0 0 6px rgba(74, 168, 137, 0.13);
}

.benefit-rail {
    overflow: hidden;
    color: var(--ink);
    background: var(--orange-bright);
    border-block: 1px solid rgba(11, 51, 67, 0.22);
}

.benefit-track {
    width: max-content;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 34px;
    padding: 17px 28px;
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.benefit-track i {
    font-style: normal;
    font-size: 0.7rem;
}

.section {
    padding: 128px 0;
}

.how-section {
    background:
        radial-gradient(circle at 95% 5%, rgba(255, 158, 34, 0.11), transparent 25%),
        var(--paper);
}

.section-heading h2,
.journey-copy h2 {
    font-size: clamp(3rem, 5.6vw, 5.7rem);
    color: var(--ink);
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 64px;
}

.split-heading > p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.68;
}

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

.feature-card {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 0 1px var(--border);
}

.feature-card-content {
    position: relative;
    z-index: 2;
    padding: 34px 38px 38px;
}

.feature-card-content .step-number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 900;
}

.feature-card-content h3 {
    margin: 0 0 10px;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

.feature-card-content p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-card-photo {
    color: var(--white);
    background: var(--teal);
}

.feature-photo {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, transparent 38%, rgba(7, 38, 47, 0.88) 100%),
        url("/public/brand/golden-hour.jpg") center 47% / cover;
    transform: scale(1.01);
    transition: transform 700ms ease;
}

.feature-card:hover .feature-photo {
    transform: scale(1.045);
}

.feature-card-photo .feature-card-content {
    margin-top: auto;
}

.feature-card-photo .feature-card-content p {
    color: rgba(255, 255, 255, 0.72);
}

.feature-card-orange {
    color: var(--ink);
    background: var(--orange-bright);
}

.feature-card-orange .feature-card-content p {
    color: rgba(11, 51, 67, 0.72);
}

.feature-symbol {
    position: relative;
    height: 235px;
    display: grid;
    place-items: center;
}

.sun-core {
    width: 106px;
    height: 106px;
    border-radius: 50%;
    background: var(--cream);
    box-shadow: 0 12px 38px rgba(129, 66, 0, 0.14);
}

.sun-ring {
    position: absolute;
    width: 185px;
    height: 185px;
    border: 2px dashed rgba(11, 51, 67, 0.25);
    border-radius: 50%;
}

.sun-ring::before,
.sun-ring::after {
    content: "";
    position: absolute;
    inset: 30px -38px;
    border-block: 2px solid rgba(11, 51, 67, 0.16);
    border-radius: 50%;
    transform: rotate(45deg);
}

.sun-ring::after {
    transform: rotate(-45deg);
}

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

.mini-timer {
    height: 245px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 22px;
}

.timer-arc {
    position: absolute;
    width: 225px;
    height: 112px;
    top: 54px;
    border: 18px solid var(--cream-deep);
    border-bottom: 0;
    border-radius: 225px 225px 0 0;
}

.timer-arc::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 112px;
    top: -18px;
    left: -18px;
    border: 18px solid var(--orange-bright);
    border-right: 0;
    border-bottom: 0;
    border-radius: 225px 0 0;
}

.mini-timer strong {
    position: relative;
    font-size: 3.8rem;
    letter-spacing: -0.06em;
}

.mini-timer span {
    padding: 7px 13px;
    border-radius: 999px;
    color: var(--white);
    background: var(--orange);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.feature-card-teal {
    color: var(--white);
    background:
        radial-gradient(circle at 82% 16%, rgba(255, 164, 34, 0.17), transparent 29%),
        var(--teal);
}

.feature-card-teal .feature-card-content p {
    color: rgba(255, 255, 255, 0.65);
}

.progress-stack {
    min-height: 235px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 55px 48px 12px;
}

.progress-badge {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 82px;
    height: 82px;
    border-radius: 24px;
    color: var(--ink);
    background: linear-gradient(145deg, #fff3bd, #f39a1f);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
    font-size: 2rem;
    transform: rotate(-4deg);
}

.progress-stack > div {
    flex: 1;
    min-width: 0;
}

.progress-stack small,
.progress-stack strong {
    display: block;
}

.progress-stack small {
    margin-bottom: 6px;
    color: var(--orange-bright);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.progress-stack strong {
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    white-space: nowrap;
}

.progress-line {
    display: block;
    height: 8px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
}

.progress-line i {
    display: block;
    width: 54%;
    height: 100%;
    border-radius: inherit;
    background: var(--orange-bright);
}

.showcase-section {
    overflow: hidden;
    color: var(--white);
    background: var(--teal);
}

.showcase-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 58px;
}

.showcase-heading h2 {
    color: var(--white);
    font-size: clamp(3rem, 5.6vw, 5.7rem);
}

.showcase-controls {
    display: flex;
    gap: 12px;
}

.showcase-controls button {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: var(--white);
    background: transparent;
    cursor: pointer;
    font-size: 1.25rem;
    transition: color 160ms ease, background 160ms ease;
}

.showcase-controls button:hover {
    color: var(--ink);
    background: var(--cream);
}

.gallery-shell {
    max-width: 1540px;
    margin-inline: auto;
}

.screen-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 340px);
    gap: 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(20px, calc((100vw - var(--container)) / 2));
    padding: 0 max(20px, calc((100vw - var(--container)) / 2)) 26px;
    scrollbar-width: none;
}

.screen-gallery::-webkit-scrollbar {
    display: none;
}

.screen-gallery figure {
    scroll-snap-align: start;
    margin: 0;
}

.screen-gallery img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
}

.screen-gallery figcaption {
    padding: 19px 2px 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.journey-section {
    background: var(--cream);
}

.journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.88fr);
    align-items: center;
    gap: clamp(60px, 9vw, 120px);
}

.journey-visual {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.journey-visual > img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center 48%;
}

.journey-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 47%, rgba(6, 38, 47, 0.82));
}

.journey-card {
    position: absolute;
    z-index: 2;
    inset: auto 32px 32px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 22px;
    color: var(--white);
    background: rgba(15, 57, 66, 0.72);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.journey-card > span {
    display: block;
    margin-bottom: 8px;
    color: var(--orange-bright);
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.journey-card strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.journey-levels {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.journey-levels i {
    display: block;
    height: 5px;
    flex: 1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.journey-levels i.active {
    background: var(--orange-bright);
}

.journey-intro {
    margin: 26px 0 38px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.detail-list {
    border-top: 1px solid var(--border);
}

.detail-list article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.detail-list article > span {
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 900;
}

.detail-list h3 {
    margin: -3px 0 6px;
    font-size: 1.22rem;
    letter-spacing: -0.025em;
}

.detail-list p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.privacy-callout {
    padding: 100px 0;
    color: var(--white);
    background: var(--ink-deep);
}

.privacy-callout-inner {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) minmax(300px, 0.64fr);
    align-items: center;
    gap: 48px;
}

.privacy-seal {
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.06);
}

.privacy-seal span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--ink-deep);
    background: var(--orange-bright);
    font-size: 1.45rem;
    font-weight: 900;
}

.privacy-callout h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 4.4vw, 4.6rem);
}

.privacy-callout .eyebrow {
    margin-bottom: 18px;
}

.privacy-copy p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

.privacy-copy a {
    color: var(--orange-bright);
    font-size: 0.9rem;
    font-weight: 850;
    text-decoration: none;
}

.guide-section {
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 158, 34, 0.11), transparent 24%),
        var(--paper);
}

.guide-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
    align-items: start;
    gap: clamp(60px, 9vw, 120px);
}

.guide-intro {
    position: sticky;
    top: 120px;
}

.guide-intro h2 {
    margin: 0;
    color: var(--ink);
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2.8rem, 4.8vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.guide-intro > p:not(.eyebrow) {
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.72;
}

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

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

.faq-list summary {
    position: relative;
    padding: 28px 54px 28px 0;
    cursor: pointer;
    list-style: none;
    color: var(--ink);
    font-size: clamp(1.15rem, 2vw, 1.42rem);
    font-weight: 850;
    letter-spacing: -0.025em;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 23px;
    right: 0;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--orange);
    font-size: 1.35rem;
    font-weight: 500;
}

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

.faq-list p {
    max-width: 690px;
    margin: -7px 54px 28px 0;
    color: var(--muted);
    line-height: 1.72;
}

.faq-list a {
    color: var(--orange);
    font-weight: 800;
}

.final-cta {
    min-height: 690px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--orange-bright);
}

.final-cta::before,
.final-cta::after {
    content: "";
    position: absolute;
    width: 680px;
    height: 680px;
    border: 1px solid rgba(11, 51, 67, 0.13);
    border-radius: 50%;
}

.final-cta::before {
    left: -420px;
    bottom: -460px;
    box-shadow: 0 0 0 80px rgba(11, 51, 67, 0.025), 0 0 0 160px rgba(11, 51, 67, 0.02);
}

.final-cta::after {
    right: -500px;
    top: -500px;
    box-shadow: 0 0 0 90px rgba(11, 51, 67, 0.025);
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 90px 20px;
}

.cta-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 26px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(124, 64, 0, 0.23);
}

.eyebrow-centred {
    justify-content: center;
    color: rgba(11, 51, 67, 0.66);
}

.eyebrow-centred > span {
    background: var(--ink);
}

.final-cta h2 {
    font-size: clamp(3.8rem, 7.5vw, 7.3rem);
}

.final-cta p:not(.eyebrow) {
    max-width: 610px;
    margin: 26px auto 30px;
    color: rgba(11, 51, 67, 0.72);
    font-size: 1.08rem;
    line-height: 1.65;
}

.app-store-link-large img {
    height: 64px;
}

.safety-note {
    padding: 28px 0;
    color: var(--ink);
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.safety-note .container {
    display: flex;
    align-items: baseline;
    gap: 18px;
}

.safety-note strong {
    flex: 0 0 auto;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.safety-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.77rem;
    line-height: 1.5;
}

.site-footer {
    padding: 70px 0 28px;
    color: var(--white);
    background: var(--teal);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 58px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-grid > div > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 16px 46px;
    align-content: start;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.87rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--orange-bright);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.74rem;
}

/* Privacy page */
.privacy-page {
    background: var(--cream);
}

.privacy-page .site-header {
    color: var(--ink);
    background: rgba(255, 248, 234, 0.92);
    box-shadow: 0 1px 0 var(--border);
    backdrop-filter: blur(18px);
}

.privacy-page .nav-download {
    color: var(--white);
    background: var(--ink);
}

.privacy-hero {
    padding: 190px 0 95px;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 24%, rgba(255, 160, 32, 0.2), transparent 28%),
        var(--teal);
}

.privacy-hero-inner {
    max-width: 850px;
}

.privacy-hero h1 {
    font-size: clamp(4rem, 7vw, 7rem);
}

.privacy-hero p:last-child {
    max-width: 640px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.12rem;
    line-height: 1.7;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 760px);
    justify-content: center;
    gap: 80px;
    padding-top: 90px;
    padding-bottom: 120px;
}

.privacy-nav {
    position: sticky;
    top: 120px;
    align-self: start;
    display: grid;
    gap: 13px;
}

.privacy-nav span {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.privacy-nav a {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

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

.privacy-content {
    min-width: 0;
}

.privacy-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 58px;
}

.summary-card {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.46);
}

.summary-card span {
    display: block;
    margin-bottom: 9px;
    color: var(--orange);
    font-size: 1.1rem;
}

.summary-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.summary-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.privacy-section {
    padding: 38px 0;
    border-top: 1px solid var(--border);
    scroll-margin-top: 110px;
}

.privacy-section h2 {
    margin: 0 0 18px;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    letter-spacing: -0.04em;
}

.privacy-section h3 {
    margin: 26px 0 9px;
    font-size: 1.06rem;
}

.privacy-section p,
.privacy-section li {
    color: #4f6a73;
    line-height: 1.72;
}

.privacy-section p {
    margin: 0 0 14px;
}

.privacy-section ul {
    margin: 12px 0 0;
    padding-left: 1.3rem;
}

.privacy-section li + li {
    margin-top: 10px;
}

.privacy-section a {
    color: var(--orange);
    font-weight: 750;
}

.privacy-updated {
    display: inline-flex;
    margin-top: 34px;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--orange-bright);
    font-size: 0.72rem;
    font-weight: 900;
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr 0.78fr;
        gap: 24px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 7vw, 5.2rem);
    }

    .hero-visual {
        height: 650px;
    }

    .floating-note {
        display: none;
    }

    .privacy-callout-inner {
        grid-template-columns: 92px 1fr;
    }

    .privacy-seal {
        width: 88px;
        height: 88px;
        border-radius: 28px;
    }

    .privacy-copy {
        grid-column: 2;
    }

    .privacy-layout {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 42px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 11px;
    }

    .menu-button {
        display: flex;
    }

    .site-header.is-scrolled .menu-button,
    .site-header.nav-open .menu-button {
        background: rgba(11, 51, 67, 0.08);
    }

    .site-nav {
        position: fixed;
        inset: 69px 0 auto;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding: 16px 20px 28px;
        color: var(--ink);
        background: rgba(255, 252, 246, 0.98);
        box-shadow: 0 24px 50px rgba(7, 36, 44, 0.12);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav a {
        padding: 15px 10px;
        border-bottom: 1px solid var(--border);
    }

    .site-nav .nav-download {
        margin-top: 8px;
        padding: 15px;
        color: var(--white);
        text-align: center;
        background: var(--ink);
        border: 0;
    }

    .hero-grid {
        display: block;
        padding-top: 98px;
    }

    .hero-copy {
        padding: 44px 0 20px;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 14vw, 5.2rem);
    }

    .hero-lede {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .app-store-link img {
        height: 50px;
    }

    .hero-proof {
        gap: 12px 18px;
    }

    .hero-visual {
        height: auto;
        margin-top: 4px;
        overflow: hidden;
    }

    .hero-screen {
        width: min(100%, 430px);
        margin-bottom: -1px;
    }

    .benefit-track {
        justify-content: flex-start;
        animation: ticker 24s linear infinite;
    }

    @keyframes ticker {
        to { transform: translateX(-50%); }
    }

    .section {
        padding: 90px 0;
    }

    .split-heading,
    .journey-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .split-heading {
        gap: 28px;
        margin-bottom: 42px;
    }

    .section-heading h2,
    .journey-copy h2 {
        font-size: clamp(3rem, 13vw, 4.6rem);
    }

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

    .feature-card {
        min-height: 480px;
        border-radius: 28px;
    }

    .feature-card-content {
        padding: 28px;
    }

    .showcase-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .screen-gallery {
        grid-auto-columns: minmax(260px, 78vw);
        gap: 16px;
        padding-inline: 14px;
        scroll-padding-inline: 14px;
    }

    .journey-grid {
        gap: 50px;
    }

    .guide-grid {
        gap: 50px;
    }

    .guide-intro {
        position: static;
    }

    .guide-intro h2 {
        font-size: clamp(3rem, 13vw, 4.6rem);
    }

    .journey-visual,
    .journey-visual > img {
        min-height: 570px;
        height: 570px;
    }

    .journey-card {
        inset: auto 18px 18px;
    }

    .privacy-callout-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .privacy-copy {
        grid-column: auto;
    }

    .final-cta {
        min-height: 620px;
    }

    .final-cta h2 {
        font-size: clamp(3.6rem, 16vw, 6.3rem);
    }

    .safety-note .container {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .footer-grid {
        flex-direction: column;
    }

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

    .privacy-hero {
        padding: 150px 0 74px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 58px;
        padding-bottom: 90px;
    }

    .privacy-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 20px;
    }

    .privacy-nav span {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 3.38rem;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .progress-stack {
        padding-inline: 28px;
    }

    .progress-badge {
        width: 66px;
        height: 66px;
        border-radius: 20px;
    }

    .progress-stack strong {
        white-space: normal;
    }

    .journey-visual,
    .journey-visual > img {
        min-height: 520px;
        height: 520px;
    }

    .privacy-summary {
        grid-template-columns: 1fr;
    }

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

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

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