:root {
    --cream: #fbf5eb;
    --cream-soft: #fffaf3;
    --paper: #fcfbfa;
    --espresso: #3b2b24;
    --espresso-soft: #6f625c;
    --teal: #6b8c92;
    --teal-dark: #4f747b;
    --mint: #1cb495;
    --mint-dark: #13967d;
    --sand: #f2d6a1;
    --peach: #efaa7f;
    --night: #1b1715;
    --border: rgba(59, 43, 36, 0.12);
    --shadow: 0 24px 70px rgba(59, 43, 36, 0.11);
    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1200px;
    --container-wide: 1380px;
    --section-space: clamp(5.5rem, 10vw, 9rem);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    -webkit-font-smoothing: antialiased;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--espresso);
    background: var(--paper);
    font-family: var(--font-body);
    line-height: 1.65;
}

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

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

button,
input {
    font: inherit;
}

.section {
    position: relative;
}

.container,
.container-wide {
    width: min(100% - 3rem, var(--container));
    margin-inline: auto;
}

.container-wide {
    width: min(100% - 4rem, var(--container-wide));
}

.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: 1rem;
    left: 1rem;
    z-index: 2000;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: white;
    background: var(--espresso);
    transform: translateY(-180%);
    transition: transform 0.2s ease;
}

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

.display-heading {
    max-width: 780px;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.4vw, 5rem);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.display-heading em {
    color: var(--mint);
    font-weight: 400;
}

.section-kicker,
.eyebrow {
    margin-bottom: 1.2rem;
    color: var(--mint-dark);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: '';
    display: inline-block;
    width: 2.25rem;
    height: 1px;
    margin-right: 0.8rem;
    vertical-align: middle;
    background: currentColor;
}

.section-kicker--light {
    color: #6fe1c6;
}

.lead {
    max-width: 660px;
    color: var(--espresso-soft);
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    line-height: 1.85;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.95rem 1.75rem;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--primary {
    color: white;
    background: var(--mint);
    box-shadow: 0 12px 30px rgba(28, 180, 149, 0.22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--mint-dark);
    box-shadow: 0 16px 36px rgba(28, 180, 149, 0.3);
    transform: translateY(-2px);
}

.btn:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: 1.35rem 0;
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar--scrolled {
    padding: 0.85rem 0;
    background: rgba(251, 245, 235, 0.88);
    box-shadow: 0 1px 0 rgba(59, 43, 36, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-inner {
    display: flex;
    width: min(100% - 4rem, var(--container-wide));
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
}

.nav-logo,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-heading);
    font-size: 1.36rem;
}

.nav-logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.1rem;
}

.nav-links > a {
    color: rgba(59, 43, 36, 0.68);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links > a:hover,
.nav-links > a:focus-visible {
    color: var(--espresso);
}

.nav-links .nav-cta {
    padding: 0.68rem 1.3rem;
    color: white;
    border-radius: 999px;
    background: var(--mint);
}

.section--hero {
    display: grid;
    min-height: max(760px, 100svh);
    place-items: center;
    overflow: hidden;
    text-align: center;
    background: var(--cream);
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.hero-bg--mobile {
    display: none;
}

.hero-overlay {
    background:
        radial-gradient(circle at 50% 47%, rgba(255, 252, 246, 0.94) 0, rgba(255, 252, 246, 0.72) 21%, rgba(255, 252, 246, 0) 47%),
        linear-gradient(180deg, rgba(251, 245, 235, 0.12), rgba(251, 245, 235, 0.04));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 3rem, 690px);
    margin-top: -1rem;
}

.eyebrow {
    margin-bottom: 1.25rem;
    color: var(--mint-dark);
}

.hero-title {
    margin-bottom: 1.35rem;
    font-family: var(--font-heading);
    font-size: clamp(3.7rem, 7.3vw, 6.7rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-title em {
    color: var(--espresso);
    font-weight: 400;
}

.hero-subtitle {
    max-width: 620px;
    margin: 0 auto 2rem;
    color: rgba(59, 43, 36, 0.7);
    font-size: clamp(1rem, 1.55vw, 1.15rem);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
}

.text-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-link span {
    display: inline-block;
    margin-left: 0.35rem;
    color: var(--mint-dark);
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateY(3px);
}

.hero-note {
    display: flex;
    margin-top: 1.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: rgba(59, 43, 36, 0.55);
    font-size: 0.74rem;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 5px rgba(28, 180, 149, 0.12);
}

.scroll-cue {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.6rem;
    color: rgba(59, 43, 36, 0.5);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--mint), transparent);
    animation: breathe 2.2s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.35; transform: scaleY(0.7); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

.section--product {
    padding: var(--section-space) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 20%, rgba(107, 140, 146, 0.12), transparent 31%),
        var(--paper);
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: center;
}

.product-copy .display-heading {
    margin-bottom: 1.6rem;
}

.product-points {
    display: flex;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.product-points span {
    padding: 0.6rem 0.9rem;
    border: 1px solid rgba(107, 140, 146, 0.24);
    border-radius: 999px;
    color: var(--teal-dark);
    background: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.phone-gallery {
    position: relative;
    min-height: 680px;
    perspective: 1200px;
}

.phone {
    position: absolute;
    top: 50%;
    width: 282px;
    overflow: hidden;
    border: 8px solid #293638;
    border-radius: 42px;
    background: var(--cream);
    box-shadow: 0 30px 70px rgba(42, 52, 52, 0.18);
    transform-origin: center;
}

.phone::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    z-index: 2;
    width: 76px;
    height: 18px;
    border-radius: 999px;
    background: #293638;
    transform: translateX(-50%);
}

.phone img {
    width: 100%;
    height: auto;
}

.phone--main {
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.phone--left {
    left: 0;
    z-index: 1;
    opacity: 0.94;
    transform: translateY(-47%) rotateY(12deg) rotate(-4deg) scale(0.85);
}

.phone--right {
    right: 0;
    z-index: 2;
    opacity: 0.94;
    transform: translateY(-47%) rotateY(-12deg) rotate(4deg) scale(0.85);
}

.section--ritual {
    padding: var(--section-space) 0;
    background: var(--cream);
}

.section-header {
    max-width: 780px;
    margin: 0 auto 4.4rem;
    text-align: center;
}

.section-header .section-kicker::before {
    display: none;
}

.section-header .display-heading {
    margin-inline: auto;
}

.section-intro {
    max-width: 650px;
    margin: 1.5rem auto 0;
    color: var(--espresso-soft);
    font-size: 1.08rem;
}

.ritual-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}

.ritual-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(242, 214, 161, 0.8);
    border-radius: 28px;
    background: var(--cream-soft);
    box-shadow: 0 20px 50px rgba(59, 43, 36, 0.07);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.ritual-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-0.45rem);
}

.ritual-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ritual-card:hover > img {
    transform: scale(1.025);
}

.ritual-card::after {
    content: '';
    position: absolute;
    inset: 38% 0 0;
    background: linear-gradient(transparent, rgba(20, 55, 53, 0.9));
}

.ritual-card-copy {
    position: absolute;
    right: 1.65rem;
    bottom: 1.65rem;
    left: 1.65rem;
    z-index: 2;
    color: white;
}

.ritual-card-copy span {
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--font-heading);
    font-size: 0.8rem;
}

.ritual-card-copy h3 {
    margin: 0.22rem 0 0.35rem;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 400;
}

.ritual-card-copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.section--focus {
    padding: var(--section-space) 0;
    background: var(--paper);
}

.focus-header {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
    align-items: end;
}

.focus-header > p {
    max-width: 460px;
    padding-bottom: 0.5rem;
    color: var(--espresso-soft);
    font-size: 1rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.focus-card {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid rgba(242, 214, 161, 0.75);
    border-radius: 26px;
    background: var(--cream);
    box-shadow: 0 18px 45px rgba(59, 43, 36, 0.06);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.focus-card:hover {
    box-shadow: var(--shadow);
}

.focus-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-card:hover img {
    transform: scale(1.025);
}

.focus-card::after {
    content: '';
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(27, 23, 21, 0.82));
}

.focus-card-copy {
    position: absolute;
    right: 1.4rem;
    bottom: 1.5rem;
    left: 1.4rem;
    z-index: 2;
    color: white;
}

.focus-card-copy span {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--font-heading);
    font-size: 0.8rem;
}

.focus-card-copy h3 {
    margin: 0.22rem 0;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 400;
}

.focus-card-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
}

.section--mantra {
    display: grid;
    min-height: min(900px, 92svh);
    place-items: center;
    overflow: hidden;
    color: white;
    background-image: var(--mantra-image);
    background-position: center;
    background-size: cover;
}

.mantra-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 40%, rgba(28, 180, 149, 0.18), transparent 35%),
        rgba(27, 23, 21, 0.88);
}

.mantra-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mantra-content .section-kicker::before {
    display: none;
}

.mantra-line {
    font-family: var(--font-heading);
    font-size: clamp(3.4rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.mantra-line em {
    color: #6fe1c6;
    font-weight: 400;
}

.mantra-note {
    margin-top: 2.3rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    letter-spacing: 0.09em;
}

.section--launch {
    padding: var(--section-space) 0;
    background:
        linear-gradient(135deg, rgba(242, 214, 161, 0.22), transparent 38%),
        var(--cream-soft);
}

.launch-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
}

.platform-pill {
    display: inline-flex;
    margin-bottom: 1.5rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(28, 180, 149, 0.24);
    border-radius: 999px;
    align-items: center;
    gap: 0.55rem;
    color: var(--mint-dark);
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.platform-pill__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.platform-pill__divider {
    width: 1px;
    height: 1.1rem;
    background: rgba(28, 180, 149, 0.24);
}

.platform-pill__icon {
    width: 1.1rem;
    height: 1.1rem;
    color: var(--mint-dark);
    flex: 0 0 auto;
}

.platform-pill__icon--android {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.platform-pill__icon--android circle {
    fill: currentColor;
    stroke: none;
}

.platform-pill__icon--ios {
    fill: currentColor;
}

.launch-copy .display-heading {
    margin-bottom: 1.5rem;
}

.launch-copy .btn {
    margin-top: 2rem;
}

.launch-details {
    overflow: hidden;
    border: 1px solid rgba(107, 140, 146, 0.18);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow);
}

.launch-list,
.later-note {
    padding: 2.2rem;
}

.later-note {
    border-top: 1px solid var(--border);
    background: rgba(107, 140, 146, 0.07);
}

.list-title {
    margin-bottom: 1.1rem;
    color: var(--teal-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.launch-list ul {
    display: grid;
    gap: 1rem;
    list-style: none;
}

.launch-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--espresso);
    font-size: 0.95rem;
}

.launch-list li span {
    display: grid;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    place-items: center;
    color: white;
    background: var(--mint);
    font-size: 0.74rem;
}

.later-note p:last-child {
    color: var(--espresso-soft);
    font-size: 0.9rem;
}

.section--cta {
    display: grid;
    min-height: 720px;
    padding: var(--section-space) 0;
    place-items: center;
    overflow: hidden;
    color: white;
}

.cta-bg,
.cta-overlay {
    position: absolute;
    inset: 0;
}

.cta-bg {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.cta-overlay {
    background: linear-gradient(115deg, rgba(27, 23, 21, 0.91), rgba(27, 23, 21, 0.67));
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
}

.cta-content .section-kicker::before {
    display: none;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.4vw, 5.6rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.cta-content > p:not(.section-kicker) {
    max-width: 620px;
    margin: 1.4rem auto 2.2rem;
    color: rgba(255, 255, 255, 0.69);
    font-size: 1.05rem;
}

.waitlist-form {
    width: min(100%, 650px);
    margin-inline: auto;
}

.form-trap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

.form-row {
    display: flex;
    gap: 0.75rem;
}

.form-row input {
    min-width: 0;
    flex: 1;
    padding: 1rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    outline: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border 0.2s ease, background 0.2s ease;
}

.form-row input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.form-row input:focus {
    border-color: #6fe1c6;
    background: rgba(255, 255, 255, 0.16);
}

.form-privacy {
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
}

.marketing-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    max-width: 610px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

.marketing-consent input {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    margin-top: 0.08rem;
    accent-color: #6fe1c6;
}

.marketing-consent input:focus-visible {
    outline: 2px solid white;
    outline-offset: 3px;
}

.form-message {
    min-height: 1.5rem;
    margin-top: 0.65rem;
    font-size: 0.83rem;
}

.form-message.success {
    color: #6fe1c6;
}

.form-message.error {
    color: #ffb7a8;
}

.footer {
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.48);
    background: var(--night);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.76rem;
}

.footer-brand {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
}

.footer-logo {
    width: 32px;
    opacity: 0.9;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.ritual-card:nth-child(2),
.focus-card:nth-child(2) {
    transition-delay: 0.08s;
}

.ritual-card:nth-child(3),
.focus-card:nth-child(3) {
    transition-delay: 0.16s;
}

.focus-card:nth-child(4) {
    transition-delay: 0.24s;
}

@media (max-width: 1120px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-copy {
        max-width: 760px;
    }

    .phone-gallery {
        width: min(100%, 760px);
        margin-inline: auto;
    }

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

    .focus-card {
        min-height: 560px;
    }

}

@media (max-width: 820px) {
    .container,
    .container-wide,
    .nav-inner {
        width: min(100% - 2rem, var(--container));
    }

    .nav-links > a:not(.nav-cta) {
        display: none;
    }

    .section--hero {
        min-height: 860px;
        align-items: start;
    }

    .hero-bg--desktop {
        display: none;
    }

    .hero-bg--mobile {
        display: block;
        opacity: 0.74;
        background-position: center bottom;
        background-size: auto 41%;
    }

    .hero-overlay {
        background: linear-gradient(180deg, var(--cream) 7%, rgba(251, 245, 235, 0.95) 49%, rgba(251, 245, 235, 0.28) 76%, rgba(251, 245, 235, 0.02));
    }

    .hero-content {
        margin-top: 0;
        padding-top: 8.5rem;
    }

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

    .hero-subtitle {
        max-width: 530px;
    }

    .scroll-cue {
        display: none;
    }

    .ritual-grid,
    .launch-grid,
    .focus-header {
        grid-template-columns: 1fr;
    }

    .ritual-card {
        min-height: 390px;
    }

    .focus-header {
        gap: 1.4rem;
    }

    .focus-header > p {
        max-width: 650px;
    }

    .launch-grid {
        gap: 3rem;
    }
}

@media (max-width: 620px) {
    :root {
        --section-space: 5rem;
    }

    .display-heading {
        font-size: clamp(2.6rem, 12vw, 3.8rem);
    }

    .navbar {
        padding: 0.85rem 0;
    }

    .nav-logo {
        gap: 0.5rem;
        font-size: 1.15rem;
    }

    .nav-logo-img {
        width: 38px;
        height: 38px;
    }

    .nav-links .nav-cta {
        padding: 0.58rem 0.9rem;
        font-size: 0.63rem;
    }

    .section--hero {
        min-height: 820px;
    }

    .hero-content {
        width: min(100% - 2rem, 520px);
        padding-top: 7.2rem;
    }

    .eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.18em;
    }

    .hero-title {
        font-size: clamp(3.05rem, 15.5vw, 4rem);
    }

    .hero-subtitle {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.95rem;
    }

    .hero-actions .btn {
        width: min(100%, 320px);
    }

    .hero-actions .text-link {
        display: none;
    }

    .hero-note {
        flex-wrap: wrap;
        font-size: 0.65rem;
    }

    .phone-gallery {
        min-height: 540px;
    }

    .phone {
        width: 220px;
        border-width: 6px;
        border-radius: 33px;
    }

    .phone::before {
        top: 5px;
        width: 58px;
        height: 14px;
    }

    .phone--left {
        left: -94px;
        transform: translateY(-46%) rotate(-5deg) scale(0.76);
    }

    .phone--right {
        right: -94px;
        transform: translateY(-46%) rotate(5deg) scale(0.76);
    }

    .product-points {
        gap: 0.45rem;
    }

    .product-points span {
        font-size: 0.66rem;
    }

    .section-header {
        margin-bottom: 2.8rem;
        text-align: left;
    }

    .section-header .display-heading,
    .section-header .section-intro {
        margin-left: 0;
    }

    .section-header .section-kicker::before {
        display: inline-block;
    }

    .ritual-grid {
        gap: 0.9rem;
    }

    .ritual-card {
        border-radius: 22px;
    }

    .ritual-card-copy {
        right: 1.35rem;
        bottom: 1.35rem;
        left: 1.35rem;
    }

    .focus-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .focus-card {
        min-height: 420px;
    }

    .section--mantra {
        min-height: 690px;
    }

    .mantra-line {
        font-size: clamp(3rem, 14vw, 4.5rem);
        line-height: 1.02;
    }

    .mantra-note {
        max-width: 280px;
        margin-inline: auto;
        line-height: 1.7;
    }

    .launch-details {
        border-radius: 24px;
    }

    .launch-list,
    .later-note {
        padding: 1.55rem;
    }

    .section--cta {
        min-height: 720px;
    }

    .cta-content h2 {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .form-row {
        flex-direction: column;
    }

    .form-row input,
    .form-row .btn {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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