:root {
    color-scheme: light;
    --ink: #1d1b18;
    --muted: #67615a;
    --paper: #fbfaf7;
    --paper-warm: #f6f1e8;
    --paper-deep: #eee6da;
    --card: rgba(255, 255, 255, 0.76);
    --card-solid: #fffefa;
    --line: rgba(42, 37, 31, 0.13);
    --line-strong: rgba(42, 37, 31, 0.21);
    --lavender: #8671bb;
    --lavender-soft: #e9e1f4;
    --rose: #c78378;
    --rose-soft: #f4ddd7;
    --sage: #7c9276;
    --sage-soft: #dfe8db;
    --gold: #c69b53;
    --gold-soft: #f1e4c7;
    --button-bg: #1d1b18;
    --button-text: #ffffff;
    --header-bg: rgba(251, 250, 247, 0.82);
    --shadow: 0 24px 70px rgba(62, 50, 36, 0.12);
    --shadow-soft: 0 12px 40px rgba(62, 50, 36, 0.08);
    --shell: 1180px;
    --eyebrow-font-size: 0.76rem;
}

.tw-dark {
    color-scheme: dark;
    --ink: #f5f1e9;
    --muted: #b9b1a6;
    --paper: #11100f;
    --paper-warm: #171513;
    --paper-deep: #201d1a;
    --card: rgba(34, 31, 28, 0.82);
    --card-solid: #211e1b;
    --line: rgba(255, 248, 236, 0.12);
    --line-strong: rgba(255, 248, 236, 0.22);
    --lavender: #b6a0e8;
    --lavender-soft: #352d45;
    --rose: #e1a69c;
    --rose-soft: #442c2a;
    --sage: #adc5a5;
    --sage-soft: #293527;
    --gold: #e2bc77;
    --gold-soft: #3f3421;
    --button-bg: #f6f1e8;
    --button-text: #171513;
    --header-bg: rgba(23, 21, 19, 0.84);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.22);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
summary {
    color: inherit;
    font: inherit;
}

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

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

.shell {
    width: min(calc(100% - 48px), var(--shell));
    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: 1000;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--button-bg);
    color: var(--button-text);
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

.site-header {
    position: fixed;
    top: 16px;
    left: 0;
    z-index: 100;
    width: 100%;
    pointer-events: none;
}

.header-inner {
    display: flex;
    width: min(calc(100% - 32px), 1040px);
    min-height: 64px;
    margin-inline: auto;
    padding: 8px 10px 8px 18px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--header-bg);
    box-shadow: 0 8px 30px rgba(31, 25, 19, 0.08);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: auto;
    transition: box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled .header-inner {
    box-shadow: 0 12px 36px rgba(31, 25, 19, 0.14);
}

.brand {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.tw-dark .brand img {
    filter: invert(1);
}

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

.site-nav>a:not(.button),
.theme-toggle {
    display: inline-flex;
    min-height: 42px;
    padding: 9px 13px;
    align-items: center;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 14px;
    transition: background 180ms ease, color 180ms ease;
}

.site-nav>a:not(.button):hover,
.theme-toggle:hover {
    background: var(--paper-deep);
    color: var(--ink);
}

.theme-toggle {
    width: 42px;
    justify-content: center;
    font-size: 17px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    font-size: 25px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 13px 20px;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--button-bg);
    border-radius: 14px;
    background: var(--button-bg);
    color: var(--button-text);
    font-weight: 600;
    line-height: 1.25;
    box-shadow: 0 8px 24px rgba(22, 19, 16, 0.14);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(22, 19, 16, 0.2);
}

.button i {
    transition: transform 180ms ease;
}

.button:hover i {
    transform: translateX(3px);
}

.header-download-link:hover i {
    transform: none;
}

.button-small {
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 11px;
    font-size: 14px;
    box-shadow: none;
}

.text-link,
.source-link {
    display: inline-flex;
    width: fit-content;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid var(--line-strong);
    color: var(--ink);
    font-weight: 600;
    transition: border-color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.source-link:hover {
    gap: 12px;
    border-color: currentColor;
}

.hero {
    position: relative;
    min-height: 860px;
    padding: 150px 0 84px;
    overflow: hidden;
    background:
        linear-gradient(180deg, transparent 0%, transparent 72%, var(--paper) 100%),
        radial-gradient(circle at 18% 22%, var(--lavender-soft) 0, transparent 31%),
        radial-gradient(circle at 90% 68%, var(--gold-soft) 0, transparent 27%),
        var(--paper-warm);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.28;
    pointer-events: none;
    background-image: url("../assets/images/background/dots-dark.svg");
    background-position: center;
    background-size: cover;
    mix-blend-mode: multiply;
}

.tw-dark .hero::before {
    background-image: url("../assets/images/background/dots.svg");
    mix-blend-mode: screen;
    opacity: 0.08;
}

.hero-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    filter: blur(65px);
    opacity: 0.34;
    pointer-events: none;
}

.hero-glow-one {
    top: 7%;
    left: 46%;
    background: var(--rose);
}

.hero-glow-two {
    right: -50px;
    bottom: 12%;
    background: var(--lavender);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.85fr);
    gap: 40px;
    align-items: center;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 17px;
    color: var(--lavender);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    font-size: var(--eyebrow-font-size);
    padding: 9px 14px;
    gap: 8px;
    align-items: center;
    border: 1px solid color-mix(in srgb, var(--lavender) 26%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--card-solid) 76%, transparent);
    box-shadow: var(--shadow-soft);
}

h1,
h2 {
    margin: 0;
    font-family: "Newsreader", serif;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.99;
}

h1 {
    max-width: 690px;
    font-size: clamp(54px, 5.5vw, 74px);
    text-wrap: balance;
}

.title-line {
    display: block;
}

h2 {
    font-size: clamp(42px, 5vw, 64px);
}

h3 {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.hero-lede {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    margin-top: 32px;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.platform-store-buttons {
    display: flex;
    gap: 11px;
    align-items: center;
    flex-wrap: wrap;
}

.reassurance-list {
    display: flex;
    margin: 25px 0 0;
    padding: 0;
    gap: 19px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
    list-style: none;
}

.reassurance-list li {
    display: flex;
    gap: 5px;
    align-items: center;
}

.reassurance-list i {
    color: var(--sage);
    font-size: 18px;
}

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

.phone-stage {
    position: absolute;
    right: 34px;
    bottom: 6px;
    width: 365px;
    height: 570px;
    border-radius: 48% 48% 42% 42% / 23% 23% 12% 12%;
    background: radial-gradient(circle at 50% 48%, var(--card-solid) 0, transparent 66%);
}

.hero-phone {
    height: 120%;
    position: absolute;
    right: 12px;
    bottom: 0;
    width: 325px;
    filter: drop-shadow(0 30px 35px rgba(38, 29, 20, 0.25));
    transform: rotate(3deg);
}

.week-label {
    position: absolute;
    top: 39px;
    right: -26px;
    z-index: 3;
    display: flex;
    padding: 11px 15px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card-solid);
    box-shadow: var(--shadow-soft);
    font-size: 11px;
    line-height: 1.35;
    transform: rotate(4deg);
}

.week-label span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.week-label strong {
    font-size: 14px;
}

.paper-note {
    position: absolute;
    z-index: 4;
    width: 220px;
    min-height: 154px;
    padding: 22px 22px 18px;
    border: 1px solid rgba(107, 80, 54, 0.14);
    background: #fff9df;
    color: #393027;
    box-shadow: 0 18px 34px rgba(66, 49, 31, 0.16);
}

.paper-note::before {
    position: absolute;
    top: -8px;
    left: 50%;
    width: 64px;
    height: 20px;
    content: "";
    background: rgba(215, 193, 160, 0.58);
    transform: translateX(-50%) rotate(-2deg);
}

.paper-note span {
    color: #89745d;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.paper-note p {
    margin: 7px 0 8px;
    font-family: "Newsreader", serif;
    font-size: 22px;
    line-height: 1.1;
}

.paper-note i {
    color: #9b625c;
    font-family: "Caveat", cursive;
    font-size: 21px;
    font-style: normal;
}

.note-one {
    top: 58px;
    left: 20px;
    transform: rotate(-7deg);
}

.note-two {
    right: -25px;
    bottom: 76px;
    width: 205px;
    background: #eee7f7;
    transform: rotate(7deg);
}

.visual-caption {
    position: absolute;
    bottom: -50px;
    right: calc(34px + 182.5px);
    z-index: 6;
    display: flex;
    width: max-content;
    padding: 13px 17px;
    gap: 9px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--card-solid);
    box-shadow: var(--shadow);
    color: var(--muted);
    font-size: 12px;
    transform: translateX(50%);
}

.visual-caption strong {
    color: var(--ink);
}

.visual-caption .spark {
    color: var(--gold);
}

.gentle-promise {
    padding: 23px 0;
    border-block: 1px solid var(--line);
    background: var(--paper);
}

.promise-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    text-align: center;
}

.promise-row p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.promise-row p span {
    color: var(--ink);
    font-weight: 600;
}

.promise-row .script-note {
    color: var(--rose);
    font-family: "Caveat", cursive;
    font-size: 28px;
    transform: rotate(-3deg);
}

.section {
    padding: 120px 0;
}

.research-section {
    position: relative;
}

.research-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.76fr);
    gap: clamp(55px, 8vw, 105px);
    align-items: center;
}

.research-copy h2 {
    max-width: 700px;
}

.research-copy>p:not(.section-kicker) {
    max-width: 665px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.research-copy .source-link {
    margin-top: 26px;
    font-size: 14px;
}

.research-card {
    position: relative;
    padding: 44px 38px 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--lavender-soft) 72%, var(--card-solid)), var(--card-solid));
    box-shadow: var(--shadow);
}

.research-card::after {
    position: absolute;
    right: -45px;
    bottom: -45px;
    width: 145px;
    height: 145px;
    content: "";
    border: 24px solid color-mix(in srgb, var(--rose) 12%, transparent);
    border-radius: 50%;
}

.research-mark {
    height: 44px;
    color: var(--lavender);
    font-family: "Newsreader", serif;
    font-size: 90px;
    line-height: 0.8;
}

.research-card>p {
    position: relative;
    z-index: 1;
    margin: 16px 0 30px;
    font-family: "Newsreader", serif;
    font-size: 28px;
    line-height: 1.24;
}

.research-card dl {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 25px;
}

.research-card dl>div {
    padding-right: 12px;
    border-right: 1px solid var(--line-strong);
}

.research-card dl>div:not(:first-child) {
    padding-left: 15px;
}

.research-card dl>div:last-child {
    border: 0;
}

.research-card dt {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.research-card dd {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.research-card small {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.how-section {
    background: var(--paper-warm);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-heading>p:last-child {
    max-width: 650px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 17px;
}

.steps-list {
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 26px;
    list-style: none;
}

.step-card {
    display: grid;
    min-height: 535px;
    padding: clamp(34px, 5vw, 64px);
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
    gap: clamp(45px, 7vw, 90px);
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: var(--card);
    box-shadow: var(--shadow-soft);
}

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

.step-card-reverse .step-visual {
    order: 1;
}

.step-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--muted);
    font-family: "Newsreader", serif;
    font-size: 19px;
}

.step-label {
    margin: 0 0 8px;
    color: var(--lavender);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.step-copy h3 {
    font-family: "Newsreader", serif;
    font-size: clamp(36px, 4vw, 49px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.step-copy>p:not(.step-label):not(.small-print) {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.mini-list {
    display: flex;
    margin: 25px 0 0;
    padding: 0;
    gap: 16px;
    flex-wrap: wrap;
    list-style: none;
}

.mini-list li {
    display: flex;
    gap: 6px;
    align-items: center;
    color: var(--muted);
    font-size: 12px;
}

.mini-list i {
    color: var(--lavender);
    font-size: 16px;
}

.step-visual {
    position: relative;
    min-height: 380px;
    border-radius: 26px;
}

.capture-visual {
    background:
        linear-gradient(125deg, color-mix(in srgb, var(--rose-soft) 65%, transparent), transparent 55%),
        var(--paper-deep);
}

.capture-card {
    position: absolute;
    border: 1px solid var(--line);
    background: var(--card-solid);
    box-shadow: var(--shadow);
}

.capture-card-photo {
    top: 42px;
    left: 55px;
    width: 190px;
    padding: 10px 10px 13px;
    transform: rotate(-7deg);
}

.capture-card-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.capture-card-photo span {
    display: block;
    padding-top: 8px;
    color: var(--muted);
    font-size: 10px;
    text-align: center;
}

.capture-card-note {
    top: 70px;
    right: 34px;
    width: 235px;
    padding: 28px 24px 22px;
    border-radius: 16px;
    transform: rotate(4deg);
}

.capture-card-note>i {
    color: var(--rose);
    font-size: 23px;
}

.capture-card-note p {
    margin: 9px 0 14px;
    font-family: "Newsreader", serif;
    font-size: 23px;
    line-height: 1.15;
}

.capture-card-note span {
    color: var(--rose);
    font-family: "Caveat", cursive;
    font-size: 19px;
}

.capture-card-voice {
    right: 77px;
    bottom: 40px;
    z-index: 3;
    display: flex;
    width: 260px;
    padding: 17px;
    gap: 12px;
    align-items: center;
    border-radius: 16px;
    transform: rotate(-2deg);
}

.capture-card-voice>i {
    display: flex;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lavender);
    color: #fff;
}

.capture-card-voice b {
    color: var(--muted);
    font-size: 10px;
}

.waveform {
    width: 150px;
    height: 28px;
    background: repeating-linear-gradient(90deg, var(--lavender) 0 2px, transparent 2px 6px);
    -webkit-mask: linear-gradient(0deg, transparent 0, #000 28%, #000 72%, transparent 100%);
    mask: linear-gradient(0deg, transparent 0, #000 28%, #000 72%, transparent 100%);
}

.week-visual {
    display: flex;
    min-height: 390px;
    padding: 36px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--card-solid);
    box-shadow: inset 0 0 0 9px var(--paper-deep);
}

.calendar-top {
    display: flex;
    padding: 0 4px 22px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.calendar-top span {
    font-family: "Newsreader", serif;
    font-size: 28px;
}

.calendar-top b {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--lavender-soft);
    color: var(--lavender);
    font-size: 11px;
}

.calendar-days {
    display: grid;
    min-height: 185px;
    padding-top: 30px;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-days>div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calendar-days span {
    color: var(--muted);
    font-size: 11px;
}

.calendar-days i {
    display: block;
    width: 12px;
    height: 12px;
    margin-top: 17px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
}

.calendar-days .has-moment i {
    border: 3px solid var(--card-solid);
    background: var(--lavender);
    box-shadow: 0 0 0 3px var(--lavender-soft);
}

.calendar-days small {
    position: absolute;
    top: 64px;
    padding: 6px 7px;
    border-radius: 8px;
    background: var(--paper-warm);
    color: var(--muted);
    font-family: "Caveat", cursive;
    font-size: 15px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transform: rotate(-4deg);
}

.calendar-days .has-moment:nth-child(6) small {
    top: 102px;
    transform: rotate(4deg);
}

.calendar-caption {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.no-pressure-note {
    display: flex;
    width: fit-content;
    margin-top: 25px;
    padding: 11px 15px;
    gap: 8px;
    align-items: center;
    border-radius: 10px;
    background: var(--sage-soft);
    color: var(--sage);
    font-size: 12px;
    font-weight: 600;
}

.cover-visual {
    min-height: 430px;
    background: radial-gradient(circle at 50% 50%, var(--gold-soft), transparent 67%);
}

.cover-stack,
.cover-main {
    position: absolute;
    top: 27px;
    left: 50%;
    width: 290px;
    aspect-ratio: 0.82;
    margin: 0;
    overflow: hidden;
    border: 10px solid var(--card-solid);
    border-radius: 8px;
    background: var(--card-solid);
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.cover-back-two {
    background: var(--sage-soft);
    transform: translateX(-50%) rotate(-10deg);
}

.cover-back-one {
    background: var(--rose-soft);
    transform: translateX(-50%) rotate(8deg);
}

.cover-main {
    z-index: 2;
}

.cover-main img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.cover-main figcaption {
    display: flex;
    padding: 13px 8px 5px;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

.cover-main figcaption span {
    color: var(--muted);
}

.made-from {
    position: absolute;
    right: 15px;
    bottom: 18px;
    z-index: 4;
    display: flex;
    padding: 11px 15px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--card-solid);
    box-shadow: var(--shadow-soft);
    font-size: 11px;
    line-height: 1.35;
    transform: rotate(4deg);
}

.made-from span {
    color: var(--muted);
}

.small-print {
    margin-top: 22px;
    color: var(--muted);
    font-size: 12px;
}

.perspective-section {
    background: var(--paper);
}

.perspective-panel {
    display: grid;
    min-height: 650px;
    padding: clamp(45px, 7vw, 84px);
    grid-template-columns: minmax(330px, 0.8fr) minmax(430px, 1.2fr);
    gap: 45px;
    align-items: center;
    overflow: hidden;
    border-radius: 36px;
    background:
        linear-gradient(120deg, color-mix(in srgb, var(--lavender-soft) 78%, var(--paper-warm)), var(--paper-warm));
}

.perspective-copy {
    position: relative;
    z-index: 3;
}

.perspective-copy>p:not(.section-kicker) {
    margin: 24px 0 27px;
    color: var(--muted);
}

.memory-ribbon {
    position: relative;
    min-height: 480px;
}

.memory-card {
    position: absolute;
    width: 245px;
    margin: 0;
    padding: 10px 10px 16px;
    border: 1px solid var(--line);
    background: var(--card-solid);
    box-shadow: var(--shadow);
}

.memory-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.memory-card figcaption {
    padding-top: 9px;
    color: var(--muted);
    font-family: "Caveat", cursive;
    font-size: 19px;
    text-align: center;
}

.memory-one {
    top: 1px;
    left: 0;
    z-index: 1;
    transform: rotate(-10deg);
}

.memory-two {
    top: 93px;
    left: 155px;
    z-index: 2;
    transform: rotate(5deg);
}

.memory-three {
    top: 38px;
    right: -80px;
    transform: rotate(12deg);
}

.fit-section {
    background: var(--paper-warm);
}

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

.fit-card {
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--card);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.fit-card:hover {
    transform: translateY(-5px) rotate(-0.5deg);
    box-shadow: var(--shadow-soft);
}

.fit-card:nth-child(even):hover {
    transform: translateY(-5px) rotate(0.5deg);
}

.fit-icon {
    display: flex;
    width: 48px;
    height: 48px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--lavender-soft);
    color: var(--lavender);
    font-size: 21px;
}

.fit-card:nth-child(2) .fit-icon {
    background: var(--sage-soft);
    color: var(--sage);
}

.fit-card:nth-child(3) .fit-icon {
    background: var(--rose-soft);
    color: var(--rose);
}

.fit-card:nth-child(4) .fit-icon {
    background: var(--gold-soft);
    color: var(--gold);
}

.fit-card h3 {
    font-size: 20px;
}

.fit-card p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.68fr) minmax(460px, 1.32fr);
    gap: clamp(55px, 9vw, 120px);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 125px;
}

.faq-intro h2 {
    font-size: clamp(42px, 4.5vw, 58px);
}

.faq-intro>p:last-child {
    margin-top: 20px;
    color: var(--muted);
}

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

.faq-list details:first-child {
    border-top: 1px solid var(--line-strong);
}

.faq-list summary {
    display: flex;
    padding: 25px 2px;
    gap: 25px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    list-style: none;
}

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

.faq-list summary i {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 20px;
    transition: transform 220ms ease;
}

.faq-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 660px;
    margin: -8px 45px 25px 2px;
    color: var(--muted);
    font-size: 15px;
}

.final-cta {
    padding: 35px 0 105px;
    scroll-margin-top: 96px;
}

.cta-card {
    position: relative;
    min-height: 470px;
    padding: 76px 35px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 36px;
    background:
        radial-gradient(circle at 12% 18%, var(--rose-soft), transparent 27%),
        radial-gradient(circle at 90% 84%, var(--lavender-soft), transparent 30%),
        var(--paper-warm);
    text-align: center;
}

.cta-card::before,
.cta-card::after {
    position: absolute;
    width: 200px;
    height: 200px;
    content: "";
    border: 1px solid var(--line);
    border-radius: 50%;
}

.cta-card::before {
    top: -135px;
    left: 14%;
}

.cta-card::after {
    right: 9%;
    bottom: -160px;
    width: 260px;
    height: 260px;
}

.cta-card h2 {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-inline: auto;
}

.cta-card>p:not(.section-kicker) {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 22px auto 0;
    color: var(--muted);
    font-size: 17px;
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    margin-top: 33px;
    gap: 13px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.store-link {
    display: flex;
    width: 166px;
    height: 50px;
    align-items: center;
    transition: transform 180ms ease;
}

.store-link-play {
    width: 184px;
}

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

.is-platform-hidden {
    display: none !important;
}

.store-link img {
    width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.cta-card>small {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 22px;
    color: var(--muted);
    font-size: 11px;
}

.cta-doodle {
    position: absolute;
    color: var(--rose);
    font-family: "Caveat", cursive;
    font-size: 28px;
    opacity: 0.75;
}

.doodle-left {
    top: 72px;
    left: 8%;
    transform: rotate(-13deg);
}

.doodle-right {
    right: 10%;
    bottom: 78px;
    font-size: 48px;
    transform: rotate(12deg);
}

.site-footer {
    padding: 30px 0 44px;
    border-top: 1px solid var(--line);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.footer-inner .brand {
    font-size: 18px;
}

.footer-inner .brand img {
    width: 30px;
    height: 30px;
}

.footer-inner>p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    text-align: right;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.3, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

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

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

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
        gap: 20px;
    }

    .hero-visual {
        margin-top: 40px;
        transform: scale(0.92);
        transform-origin: right center;
    }

    .note-one {
        left: 10px;
    }

    .step-card {
        grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
        gap: 42px;
    }

    .perspective-panel {
        padding-right: 35px;
    }

    .memory-three {
        display: none;
    }

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

    .fit-card {
        min-height: 240px;
    }
}

@media (max-width: 860px) {
    .site-header {
        top: 8px;
    }

    .header-inner {
        min-height: 58px;
        padding: 6px 8px 6px 14px;
        border-radius: 14px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: 74px;
        left: 16px;
        display: flex;
        width: calc(100% - 32px);
        max-height: 0;
        padding: 0 18px;
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
        border: 1px solid transparent;
        border-radius: 16px;
        background: var(--header-bg);
        opacity: 0;
        transform: translateY(-10px);
        -webkit-backdrop-filter: blur(18px);
        backdrop-filter: blur(18px);
        transition: max-height 260ms ease, padding 260ms ease, opacity 180ms ease, transform 260ms ease, border-color 260ms ease;
    }

    .site-nav.is-open {
        max-height: 420px;
        padding-block: 15px;
        border-color: var(--line);
        box-shadow: var(--shadow);
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav>a:not(.button),
    .theme-toggle {
        min-height: 48px;
        width: 100%;
        justify-content: flex-start;
        font-size: 16px;
    }

    .site-nav .button {
        margin-top: 7px;
    }

    .header-download-link {
        width: 100%;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-copy {
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    .hero-copy h1 {
        max-width: 660px;
        margin-inline: auto;
        font-size: clamp(46px, 6.4vw, 52px);
    }

    .hero-lede {
        margin-inline: auto;
    }

    .hero-actions,
    .reassurance-list {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
        width: min(100%, 580px);
        min-height: 585px;
        margin-inline: auto;
        transform: none;
    }

    .research-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .research-grid {
        gap: 50px;
    }

    .research-copy {
        max-width: 720px;
    }

    .research-card {
        max-width: 620px;
    }

    .step-card,
    .step-card-reverse {
        grid-template-columns: 1fr;
    }

    .step-card-reverse .step-copy,
    .step-card-reverse .step-visual {
        order: initial;
    }

    .perspective-panel {
        grid-template-columns: 1fr;
        padding-right: clamp(45px, 7vw, 84px);
    }

    .perspective-copy {
        max-width: 650px;
    }

    .memory-ribbon {
        max-width: 570px;
    }

    .memory-one {
        left: 30px;
    }

    .memory-two {
        left: 265px;
    }

    .memory-three {
        display: block;
        top: 20px;
        right: -220px;
    }

    .faq-grid {
        gap: 35px;
    }

    .faq-intro {
        position: static;
        max-width: 650px;
    }
}

@media (max-width: 600px) {
    .shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    .brand {
        font-size: 18px;
    }

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

    .hero {
        min-height: 0;
        padding: 112px 0 72px;
    }

    h1 {
        max-width: 480px;
        font-size: clamp(42px, 11vw, 46px);
        line-height: 0.98;
    }

    h2 {
        font-size: clamp(38px, 12vw, 50px);
    }

    .eyebrow {
        font-size: var(--eyebrow-font-size);
    }

    .hero-lede {
        margin-top: 22px;
        font-size: 16px;
    }

    .hero-actions {
        margin-top: 27px;
        gap: 17px;
        flex-direction: column;
    }

    .hero-actions .button,
    .hero-actions .text-link {
        width: 100%;
    }

    .hero-actions .text-link {
        justify-content: center;
        border: 0;
    }

    .platform-store-buttons {
        width: 100%;
        justify-content: center;
    }

    .reassurance-list {
        gap: 9px 15px;
        font-size: 11px;
    }

    .hero-visual {
        margin-top: 40px;
        min-height: 535px;
    }

    .phone-stage {
        right: 50%;
        bottom: 0;
        width: 300px;
        height: 485px;
        transform: translateX(50%);
    }

    .hero-phone {
        right: 12px;
        width: 278px;
    }

    .week-label {
        top: 30px;
        right: -10px;
    }

    .paper-note {
        width: 165px;
        min-height: 125px;
        padding: 18px 17px 13px;
    }

    .paper-note p {
        font-size: 17px;
    }

    .paper-note i {
        font-size: 17px;
    }

    .note-one {
        top: 24px;
        left: 14px;
    }

    .note-two {
        right: -14px;
        bottom: 44px;
        width: 155px;
    }

    .visual-caption {
        bottom: -50px;
        left: 50%;
        right: auto;
        width: max-content;
        transform: translateX(-50%);
    }

    .promise-row {
        gap: 2px;
        flex-direction: column;
    }

    .section {
        padding: 82px 0;
    }

    .research-grid {
        gap: 40px;
    }

    .research-copy>p:not(.section-kicker) {
        font-size: 15px;
    }

    .research-card {
        padding: 36px 25px 28px;
    }

    .research-card>p {
        font-size: 24px;
    }

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

    .research-card dl>div,
    .research-card dl>div:not(:first-child) {
        display: flex;
        padding: 0 0 9px;
        gap: 7px;
        align-items: baseline;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .research-card dl>div:last-child {
        border-bottom: 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading>p:last-child {
        font-size: 15px;
    }

    .step-card {
        min-height: 0;
        padding: 28px 20px 22px;
        gap: 32px;
        border-radius: 24px;
    }

    .step-copy h3 {
        font-size: 37px;
    }

    .step-copy>p:not(.step-label):not(.small-print) {
        font-size: 14px;
    }

    .step-visual {
        min-height: 345px;
    }

    .capture-card-photo {
        top: 45px;
        left: 14px;
        width: 145px;
    }

    .capture-card-note {
        top: 28px;
        right: 9px;
        width: 180px;
        padding: 23px 17px 17px;
    }

    .capture-card-note p {
        font-size: 19px;
    }

    .capture-card-voice {
        right: 15px;
        bottom: 27px;
        width: 230px;
    }

    .waveform {
        width: 110px;
    }

    .week-visual {
        min-height: 370px;
        padding: 27px 17px;
        box-shadow: inset 0 0 0 7px var(--paper-deep);
    }

    .calendar-top span {
        font-size: 23px;
    }

    .calendar-days {
        gap: 2px;
    }

    .calendar-days small {
        padding: 5px 4px;
        font-size: 13px;
    }

    .cover-stack,
    .cover-main {
        width: 230px;
    }

    .cover-visual {
        min-height: 375px;
    }

    .made-from {
        right: 0;
        bottom: 8px;
    }

    .perspective-panel {
        min-height: 0;
        padding: 45px 20px 20px;
        border-radius: 26px;
    }

    .memory-ribbon {
        min-height: 390px;
        transform: scale(0.82);
        transform-origin: left top;
    }

    .memory-one {
        left: 0;
    }

    .memory-two {
        left: 150px;
    }

    .memory-three {
        display: none;
    }

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

    .fit-card {
        min-height: 0;
        padding: 24px;
    }

    .fit-icon {
        margin-bottom: 28px;
    }

    .faq-list summary {
        padding-block: 22px;
        font-size: 16px;
        line-height: 1.35;
    }

    .faq-list details p {
        margin-right: 26px;
        font-size: 14px;
    }

    .final-cta {
        padding-bottom: 75px;
    }

    .cta-card {
        min-height: 0;
        padding: 62px 20px;
        border-radius: 26px;
    }

    .cta-card>p:not(.section-kicker) {
        font-size: 15px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .button,
    .store-link,
    .store-link-play {
        width: min(100%, 230px);
    }

    .doodle-left,
    .doodle-right {
        opacity: 0.28;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-inner>p {
        grid-column: auto;
        text-align: left;
    }
}

@media (max-width: 370px) {
    h1 {
        font-size: 40px;
    }

    .hero-visual {
        margin-top: 40px;
        transform: scale(0.9);
        transform-origin: center top;
        margin-bottom: -45px;
    }

    .capture-card-photo {
        width: 130px;
    }

    .capture-card-note {
        width: 165px;
    }

    .memory-ribbon {
        transform: scale(0.7);
        margin-bottom: -100px;
    }
}
