/* =============================================================================
 * Reclaim — Design Tokens
 * Source of truth: `constants/colors.ts`, `constants/fonts.ts`,
 * `constants/radius.ts`, `constants/styles.ts` from the Reclaim codebase.
 *
 * Reclaim is a dark, meditative mobile app. Almost every screen sits on top of
 * a photographic background (mountain, pagoda, lantern, moon-gate) and uses
 * BlurView "Liquid Glass" surfaces on top. The token system below preserves
 * that contract: most surfaces are translucent whites + a single grounded
 * green accent; solid color is rare and reserved.
 * ========================================================================== */

:root {
  /* --------------------------------------------------------------- TEXT  */
  --fg-primary:        #FFFFFF;          /* white on photo / dark surfaces  */
  --fg-secondary:      #EBEBF599;        /* white-60% — labels, captions    */
  --fg-on-light:       #1C1C1E;          /* near-black for article surfaces */
  --fg-on-light-2:     #1c1c1e99;        /* secondary on cream surfaces     */

  /* ------------------------------------------------------ BRAND ACCENTS  */
  --accent:            #5F9569;          /* "primaryaccent" — green CTA     */
  --accent-darker:     #476453;          /* gradient bottom + pressed state */
  --danger:            #973C50;          /* panic button, relapse, destruct */
  --danger-darker:     #562C36;
  --warning:           #F3F087;
  --warning-darker:    #F2D24E;

  /* -------------------------------------------------------- BACKGROUNDS  */
  --bg-cream:          #fffdf8;          /* light/article surfaces          */
  --bg-ink:            #1C1C1E;          /* deep neutral, never pure black  */

  /* ------------------------------------------------- MODAL / SHEET PALETTE */
  --modal-bg:          #FFFFFF;
  --modal-separator:   #C7C7CC;
  --modal-surface:     rgba(243,243,243,1);
  --modal-selected:    rgb(220,220,220);

  /* -------------------------------- TRANSLUCENT WHITES (on photo)  */
  --white-soft:        rgba(255,255,255,0.30);  /* tab bar, stat pills, switch track */
  --white-strong:      rgba(255,255,255,0.70);  /* image subtitles, thread lines     */

  /* ------------------------------- GLASS / OVERLAY (on photo)  */
  --glass-border:      rgba(255,255,255,0.12);  /* hairline on every glass card */
  --glass-tint:        rgba(0,0,0,0.25);        /* tint baked behind BlurView   */
  --disabled:          rgba(255,255,255,0.08);  /* locked icon backings         */
  --locked-overlay:    rgba(0,0,0,0.55);        /* dim layer over locked cards  */
  --modal-backdrop:    rgba(0,0,0,0.40);        /* scrim behind a modal sheet   */

  /* -------------------------------- LINEAR GRADIENT STOPS (image scrims) */
  --scrim-top:         rgba(0,0,0,0.15);
  --scrim-bottom:      rgba(0,0,0,0.75);
  --scrim-bottom-soft: rgba(0,0,0,0.70);

  /* ------------------------------------------------------------ RADIUS  */
  --radius-sm:         12px;   /* small buttons, action pills, comment input  */
  --radius-md:         16px;   /* mid cards, popup icons, secondary buttons   */
  --radius-lg:         20px;   /* large buttons, screen card wrappers         */
  --radius-xl:         30px;   /* plan cards, hero buttons                    */
  --radius-card:       28px;   /* post cards, journey cards, glass cards      */
  --radius-round:      9999px; /* pills, avatars, day circles, panic button   */

  /* ------------------------------------------------------------ SPACING */
  /* The Reclaim spacing scale — extend only when the value is reused.     */
  --space-1:           4px;
  --space-2:           8px;
  --space-3:           12px;
  --space-4:           16px;
  --space-5:           20px;
  --space-6:           24px;
  --space-7:           32px;
  --space-8:           40px;

  /* ------------------------------------------------------------ TYPE    */
  /* Reclaim uses the system stack — SF Pro on iOS, Roboto on Android.
   * On the web preview we approximate with -apple-system / Inter fallback. */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display",
               "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Font size scale (px values straight from constants/fonts.ts) */
  --fs-small:           12px;  /* captions, helper, timestamps                */
  --fs-medium:          14px;  /* dense grid labels (calendar day numbers)    */
  --fs-base:            16px;  /* body, button labels, default paragraph      */
  --fs-large:           20px;  /* emphasized labels, large buttons, sub-head  */
  --fs-heading:         24px;  /* screen titles, prominent section headings   */
  --fs-title:           32px;  /* hero/screen-name titles (auth, onboarding)  */
  --fs-article-h1:      28px;  /* long-form article H1 inside a module        */
  --fs-article-h2:      22px;  /* long-form article H2 inside a module        */
  --fs-slowly:          28px;  /* contemplative copy that fades in (panic)    */
  --fs-streak:          72px;  /* the home-screen streak day counter          */

  /* Font weights (RN-canonical strings; named for intent) */
  --fw-medium:          500;   /* labels, captions, weak emphasis             */
  --fw-semibold:        600;   /* sub-headings, usernames, modest emphasis    */
  --fw-bold:            700;   /* button labels, titles, primary headings     */
  --fw-heavy:           800;   /* max impact — streak, payment hero, panic    */

  /* ------------------------------- ELEVATION (the "glass" formula)
   * Reclaim has no traditional drop shadows. Depth comes from translucent
   * white borders + a behind-BlurView tint. These vars encode that recipe
   * so HTML mocks can recreate it with backdrop-filter.                   */
  --glass-blur:         saturate(140%) blur(22px);
  --glass-backdrop:     var(--glass-tint);        /* tint layer behind blur */
  --glass-border-1:     1px solid var(--glass-border);
}

/* =============================================================================
 * Semantic shortcuts
 * Match the React Native intent names so a designer can grep for "h1" / "p"
 * and find one place. Apply to plain HTML mocks.
 * ========================================================================== */

html, body {
  font-family: var(--font-sans);
  color: var(--fg-primary);
  background: var(--bg-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.r-title       { font-size: var(--fs-title);      font-weight: var(--fw-bold); color: var(--fg-primary); }
.r-heading     { font-size: var(--fs-heading);    font-weight: var(--fw-semibold); color: var(--fg-primary); }
.r-article-h1  { font-size: var(--fs-article-h1); font-weight: var(--fw-bold); color: var(--fg-primary); }
.r-article-h2  { font-size: var(--fs-article-h2); font-weight: var(--fw-semibold); color: var(--fg-primary); }
.r-large       { font-size: var(--fs-large);      font-weight: var(--fw-semibold); color: var(--fg-primary); }
.r-base        { font-size: var(--fs-base);       font-weight: var(--fw-medium);   color: var(--fg-primary); }
.r-secondary   { font-size: var(--fs-base);       font-weight: var(--fw-medium);   color: var(--fg-secondary); }
.r-small       { font-size: var(--fs-small);      font-weight: var(--fw-medium);   color: var(--fg-secondary); }
.r-streak      { font-size: var(--fs-streak);     font-weight: var(--fw-heavy);    color: var(--fg-primary); letter-spacing: -1px; }

/* =============================================================================
 * Glass surface — the most important element of the system.
 * Recreates the React Native <GlassCard> on the web: rounded rect with a
 * dark tint + backdrop-blur + 1px white-alpha border.
 * ========================================================================== */
.r-glass {
  position: relative;
  border-radius: var(--radius-card);
  border: var(--glass-border-1);
  background: var(--glass-backdrop);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
}

/* Pill / chip variant — used for tabs, action buttons, time pills */
.r-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  border-radius: var(--radius-round);
  padding: 6px 12px;
  background: var(--white-soft);
  color: var(--fg-primary);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}

/* Outlined action button — community/post action pill (like, reply, comments) */
.r-action {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
  padding: 6px 10px;
  color: var(--fg-secondary);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  background: transparent;
}

/* Primary green CTA — used on auth, primary actions */
.r-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--fg-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  padding: 14px 24px;
  border: 0;
  cursor: pointer;
  transition: background-color .15s ease, opacity .15s ease;
}
.r-cta:hover  { background: var(--accent-darker); }
.r-cta:active { opacity: .85; }

/* Panic / destructive — vertical gradient red */
.r-panic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: var(--radius-round);
  background: linear-gradient(180deg, var(--danger), var(--danger-darker));
  color: var(--fg-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  padding: 14px 56px;
  border: 0;
  cursor: pointer;
}


/* ====================================================== */

/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-1.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-2.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-3.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-5.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-6.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-1.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-2.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-3.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-5.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-6.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-1.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-2.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-3.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-5.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-6.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-1.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-2.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-3.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-4.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-5.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-6.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/newsreader-1.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/newsreader-2.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/newsreader-3.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/newsreader-1.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/newsreader-2.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/newsreader-3.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/newsreader-1.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/newsreader-2.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/newsreader-3.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* ====================================================== */

/* Phosphor Icons — trimmed to the icons used on this page */

@font-face{font-family:"Phosphor";font-display:block;src:url("assets/fonts/phosphor.woff2") format("woff2")}
@font-face{font-family:"Phosphor-Fill";font-display:block;src:url("assets/fonts/phosphor-fill.woff2") format("woff2")}
@font-face{font-family:"Phosphor-Duotone";font-display:block;src:url("assets/fonts/phosphor-duotone.woff2") format("woff2")}

.ph {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Phosphor" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ph-fill {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Phosphor-Fill" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ph-duotone {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "Phosphor-Duotone" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* icon glyphs */

.ph.ph-arrow-right:before {
  content: "\e06c";
}
.ph.ph-check:before {
  content: "\e182";
}
.ph-fill.ph-apple-logo:before {
  content: "\e516";
}
.ph-fill.ph-books:before {
  content: "\e758";
}
.ph-fill.ph-check-circle:before {
  content: "\e184";
}
.ph-fill.ph-clock-countdown:before {
  content: "\ed2c";
}
.ph-fill.ph-device-mobile:before {
  content: "\e1e0";
}
.ph-fill.ph-google-play-logo:before {
  content: "\e294";
}
.ph-fill.ph-path:before {
  content: "\e39c";
}
.ph-fill.ph-shield-check:before {
  content: "\e40c";
}
.ph-fill.ph-sparkle:before {
  content: "\e6a2";
}
.ph-fill.ph-users:before {
  content: "\e4d6";
}
.ph-duotone.ph-brain:before {
  content: "\e74e";
  opacity: 0.2;
}
.ph-duotone.ph-brain:after {
  content: "\e74f";
  margin-left: -1em;
}
.ph-duotone.ph-calendar-check:before {
  content: "\e712";
  opacity: 0.2;
}
.ph-duotone.ph-calendar-check:after {
  content: "\e713";
  margin-left: -1em;
}
.ph-duotone.ph-eye-slash:before {
  content: "\e224";
  opacity: 0.2;
}
.ph-duotone.ph-eye-slash:after {
  content: "\e225";
  margin-left: -1em;
}
.ph-duotone.ph-first-aid:before {
  content: "\e56e";
  opacity: 0.2;
}
.ph-duotone.ph-first-aid:after {
  content: "\e56f";
  margin-left: -1em;
}
.ph-duotone.ph-headphones:before {
  content: "\e2a6";
  opacity: 0.2;
}
.ph-duotone.ph-headphones:after {
  content: "\e2a7";
  margin-left: -1em;
}
.ph-duotone.ph-path:before {
  content: "\e39c";
  opacity: 0.2;
}
.ph-duotone.ph-path:after {
  content: "\e39d";
  margin-left: -1em;
}
.ph-duotone.ph-stethoscope:before {
  content: "\e7ea";
  opacity: 0.2;
}
.ph-duotone.ph-stethoscope:after {
  content: "\e7eb";
  margin-left: -1em;
}
.ph-duotone.ph-target:before {
  content: "\e47c";
  opacity: 0.2;
}
.ph-duotone.ph-target:after {
  content: "\e47d";
  margin-left: -1em;
}
.ph-duotone.ph-timer:before {
  content: "\e492";
  opacity: 0.2;
}
.ph-duotone.ph-timer:after {
  content: "\e493";
  margin-left: -1em;
}
.ph-duotone.ph-users-three:before {
  content: "\e68e";
  opacity: 0.2;
}
.ph-duotone.ph-users-three:after {
  content: "\e68f";
  margin-left: -1em;
}
.ph-duotone.ph-warning:before {
  content: "\e4e0";
  opacity: 0.2;
}
.ph-duotone.ph-warning:after {
  content: "\e4e1";
  margin-left: -1em;
}
.ph-duotone.ph-wave-sine:before {
  content: "\ea9a";
  opacity: 0.2;
}
.ph-duotone.ph-wave-sine:after {
  content: "\ea9b";
  margin-left: -1em;
}
.ph-duotone.ph-wind:before {
  content: "\e5d2";
  opacity: 0.2;
}
.ph-duotone.ph-wind:after {
  content: "\e5d3";
  margin-left: -1em;
}

/* ====================================================== */


    :root {
      --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
      --sans:  'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --ink:   #0F1714;
      --ink-2: #1C2622;
      --cream: #F4EDE3;
      --cream-2: #ECE4D6;
      --moss:  #5F9569;
      --moss-dark: #476453;
      --moss-bright: #A9CDAF;
      --moss-soft: rgba(95,149,105,0.12);
      --ink-fg:  #F4EDE3;
      --ink-fg2: rgba(244,237,227,0.64);
      --cream-fg:  #0F1714;
      --cream-fg2: rgba(15,23,20,0.64);
      --rule: rgba(244,237,227,0.12);
      --rule-strong: rgba(244,237,227,0.24);
      --rule-light: rgba(15,23,20,0.10);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-snap-type: y proximity; }
    html, body { margin: 0; padding: 0; overflow-x: clip; }
    body {
      font-family: var(--sans); font-weight: 400; font-size: 17px; line-height: 1.6;
      background: var(--ink); color: var(--ink-fg);
      -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    }
    @media (max-width: 900px) {
      /* Hand vertical scrolling back to the browser on touch devices. The pinned
         "What's inside" deck uses root-level scroll-snap on desktop, which on iOS
         overrides native inertial scrolling and kills the deceleration feel. The
         deck animates from scroll position alone (site.js), so dropping snap here
         only loses the card-by-card locking — momentum returns everywhere. */
      html { scroll-snap-type: none; scroll-behavior: auto; }
    }

    /* ──────────────────── PRIMITIVES ──────────────────── */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }

    .eyebrow {
      font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--moss);
    }
    h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; line-height: 1.06; letter-spacing: -0.02em; }
    h1 { font-size: clamp(42px, 4.6vw, 74px); }
    h2 { font-size: clamp(32px, 4.4vw, 54px); line-height: 1.08; }
    h3 { font-size: clamp(21px, 2.2vw, 26px); line-height: 1.25; }
    h1 em, h2 em { font-style: italic; font-weight: 400; }
    p  { margin: 0; max-width: 60ch; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 28px; border-radius: 9999px; border: 1px solid transparent;
      font-family: var(--sans); font-size: 15px; font-weight: 700;
      cursor: pointer; text-decoration: none; white-space: nowrap;
      transition: background-color .2s, border-color .2s, transform .3s cubic-bezier(.22,1,.36,1);
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary { background: linear-gradient(135deg, var(--moss) 0%, var(--moss-dark) 100%); color: #fff; }
    .btn-primary:hover { background: linear-gradient(135deg, var(--moss-dark) 0%, #3A5A40 100%); }
    .btn-ghost-dark { background: transparent; color: var(--cream-fg); border-color: rgba(15,23,20,0.25); }
    .btn-ghost-dark:hover { border-color: var(--cream-fg); }

    /* Store buttons — same gradient language as the primary CTA */
    .store-row, .cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
    .cta-row.center { justify-content: center; }
    .store-btn {
      display: inline-flex; align-items: center; gap: 12px;
      background: linear-gradient(135deg, var(--moss) 0%, var(--moss-dark) 100%);
      color: #fff; padding: 12px 24px 12px 18px; border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.16); text-decoration: none;
      transition: filter .2s, transform .3s cubic-bezier(.22,1,.36,1);
    }
    .store-btn:hover { filter: brightness(1.12); transform: translateY(-2px); }
    .store-btn i { font-size: 28px; line-height: 1; color: #fff; }
    .store-btn .small { display: block; font-size: 10px; line-height: 1.1; opacity: 0.85; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; }
    .store-btn .big   { display: block; font-size: 17px; line-height: 1.1; font-weight: 700; margin-top: 2px; color: #fff; }
    @media (max-width: 500px) {
      .store-btn { padding: 10px 16px 10px 13px; }
      .store-btn .big { font-size: 14px; }
      .store-btn i { font-size: 22px; }
    }

    /* ──────────────────── NAVBAR ──────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      padding-top: env(safe-area-inset-top);
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
    }
    .nav.solid {
      background: rgba(15,23,20,0.62);
      backdrop-filter: blur(22px) saturate(160%);
      -webkit-backdrop-filter: blur(22px) saturate(160%);
      border-bottom-color: var(--rule);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 11px; position: relative; }
    .nav-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink-fg); }
    .nav-brand img { width: 32px; height: 32px; border-radius: 8px; display: block; }
    .nav-brand span { font-family: var(--sans); font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
    .nav-links { display: flex; gap: 26px; align-items: center; }
    .nav-links-center { display: flex; gap: 26px; align-items: center; position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-links a, .nav-links-center a { color: var(--ink-fg2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .15s; }
    .nav-links a:hover, .nav-links-center a:hover { color: var(--ink-fg); }
    @media (max-width: 860px) {
      .nav .nav-inner { padding: 10px 20px; }
      .nav-links-center { display: none; }
    }

    /* ──────────────────── HERO ──────────────────── */
    .hero {
      position: relative; overflow: hidden;
      display: flex; align-items: center;
      min-height: 100vh;
      padding: calc(96px + env(safe-area-inset-top)) 0 56px;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background-image: url("assets/images/hero-bg.jpg");
      background-size: cover; background-position: center 30%;
    }
    .hero::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(15,23,20,0.14) 0%, rgba(15,23,20,0.42) 55%, rgba(15,23,20,0.94) 100%);
    }
    .hero-inner {
      position: relative; z-index: 2; width: 100%;
      display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px 48px; align-items: center;
    }
    .hero h1 { max-width: 13ch; font-size: clamp(52px, 6.2vw, 96px); line-height: 1.14; }
    .hero p.lead { margin-top: 30px; max-width: 44ch; font-size: 18px; font-weight: 400; color: var(--ink-fg); line-height: 1.5; }
    .hero .eyebrow { color: var(--moss-bright); }
    .meta-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-fg2); }
    .meta-item i { font-size: 16px; color: var(--moss); }

    .hero-notify-form {
      margin-top: 42px; display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap;
    }
    .hero-notify-input {
      flex: 1 1 280px; min-width: 0; font-family: var(--sans);
      font-size: 16px; padding: 14px 18px; border-radius: 9999px;
      background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      color: var(--ink-fg); outline: none;
      transition: border-color .15s, box-shadow .15s;
    }
    .hero-notify-input::placeholder { color: rgba(244,237,227,0.45); }
    .hero-notify-input:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(95,149,105,0.28); }
    .hero-notify-input:disabled { opacity: .55; }
    .hero-notify-input.invalid { border-color: #973C50; box-shadow: 0 0 0 3px rgba(151,60,80,0.2); }
    .hero-notify-btn { flex: 0 0 auto; padding-inline: 28px; }
    .hero .notify-msg { margin-top: 12px; text-align: left; }
    .hero-trust-row {
      grid-column: 1 / -1; margin-top: 8px;
      display: flex; gap: 16px 34px; flex-wrap: wrap;
    }
    .hero-trust-row .strip-item { font-size: 14px; font-weight: 700; color: var(--ink-fg); gap: 14px; line-height: 1.35; white-space: nowrap; }
    .hero-trust-row .strip-icon {
      width: 58px; height: 58px; font-size: 27px;
      background: transparent; border: 1px solid rgba(255,255,255,0.28); color: #fff;
    }
    @media (max-width: 520px) { .hero-notify-form { flex-direction: column; } .hero-notify-input { flex: 0 1 auto; width: 100%; } .hero-notify-btn { width: 100%; } }
    .proof-pill {
      display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px;
      border-radius: 999px; background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      font-size: 13px; font-weight: 600; color: var(--ink-fg);
    }
    .proof-pill .stars { color: #F2D24E; letter-spacing: 2px; font-size: 12px; }
    .hero-fan img { width: 112%; max-width: none; height: auto; display: block; margin-left: -6%; }
    @media (max-width: 900px) {
      .hero { min-height: auto; padding: calc(96px + env(safe-area-inset-top)) 0 48px; }
      .hero-inner { grid-template-columns: 1fr; gap: 0; }
      .hero-trust-row { margin-top: 28px; gap: 14px 24px; }
      .hero h1 { font-size: 44px; max-width: 14ch; }
      .hero p.lead { font-size: 16px; margin-top: 16px; }
      .hero-fan { padding: 60px 0 18px; }
      .hero-fan img { width: 120%; margin-left: -10%; }
    }

    /* ──────────────────── CREDIBILITY BAR ──────────────────── */
    .strip {
      border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
      padding: 30px 0; background: var(--ink);
    }
    .strip-inner { display: flex; flex-wrap: wrap; gap: 18px 48px; align-items: center; justify-content: center; }
    .strip-item { font-size: 14px; color: var(--ink-fg2); display: flex; align-items: center; gap: 12px; }
    .strip-item strong { color: var(--ink-fg); font-weight: 600; }
    .strip-icon {
      width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: var(--moss-soft); color: var(--moss-bright); font-size: 15px;
    }
    @media (max-width: 760px) { .strip { padding: 20px 0; } .strip-inner { justify-content: flex-start; gap: 14px 24px; } }

    /* ──────────────────── SECTION CHROME ──────────────────── */
    section { padding: 112px 0; position: relative; }
    .section-dark { background: var(--ink-2); position: relative; }
    #inside.section-dark { background: var(--ink); }
    #inside.section-dark::before {
      content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 140px;
      background: linear-gradient(180deg, var(--ink) 0%, transparent 100%);
      pointer-events: none; z-index: 1;
    }
    #box-breathing > .container { position: relative; z-index: 2; }
    .section-cream { background: var(--cream); color: var(--cream-fg); }
    .section-cream .eyebrow { color: var(--moss-dark); }
    .section-cream p { color: var(--cream-fg2); }
    .section-head { max-width: 720px; margin-bottom: 56px; }
    .section-head p { font-size: 18px; margin-top: 16px; }

    /* ──────────────────── PRICE ANCHOR (therapy vs Reclaim) ──────────────────── */
    .price-head { max-width: 880px; margin-left: auto; margin-right: auto; text-align: center; }
    .price-vs {
      margin-top: 44px;
      display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(18px, 3.5vw, 40px);
      align-items: center;
    }
    .vs-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .vs-amt { font-family: var(--serif); line-height: 1; letter-spacing: -1px; white-space: nowrap; }
    .vs-muted .vs-amt { font-size: clamp(42px, 5vw, 62px); color: rgba(15,23,20,0.38); }
    .vs-green .vs-amt { font-size: clamp(56px, 7vw, 88px); color: var(--moss-dark); }
    .vs-per { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--cream-fg2); margin-left: 8px; letter-spacing: 0; }
    .vs-cap { font-size: 14px; line-height: 1.5; color: var(--cream-fg2); max-width: 26ch; }
    .vs-cap strong { color: var(--cream-fg); font-weight: 600; }
    .vs-div {
      width: 46px; height: 46px; border-radius: 999px; justify-self: center;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(15,23,20,0.20);
      font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--cream-fg2);
    }
    @media (max-width: 640px) {
      .price-vs { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
      .vs-div { width: 38px; height: 38px; font-size: 15px; }
    }

    /* Full-bleed art sections */
    .art-sec { overflow: hidden; }
    .band-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transform: scale(1.15); will-change: transform;
    }
    .band-scrim {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(15,23,20,0.60) 0%, rgba(15,23,20,0.86) 100%);
    }
    .band-scrim.soft { background: linear-gradient(180deg, rgba(15,23,20,0.35) 0%, rgba(15,23,20,0.75) 100%); }
    .art-sec > .container { position: relative; z-index: 2; }

    /* ──────────────────── WHY IT'S HARD ──────────────────── */
    .why-copy { max-width: 60ch; }
    .why-copy p { margin-top: 18px; font-size: 18px; color: var(--ink-fg2); }
    .why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
    .why-card {
      padding: 28px; border-radius: 20px;
      background: var(--ink-2); border: 1px solid rgba(244,237,227,0.14);
    }
    .why-card h3 { font-size: 19px; line-height: 1.3; }
    .why-card p { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--ink-fg2); }
    .why-closing { margin: 44px auto 0; text-align: center; max-width: 46ch; font-size: 16px; color: var(--ink-fg2); }

    /* Card 3's only flourish: a line that reads as unbroken, then thins into
       dashes on entry — a literal picture of falling frequency. */
    .freq-bar { position: relative; height: 2px; margin-top: 20px; }
    .freq-bar .solid, .freq-bar .dotted { position: absolute; inset: 0; transition: opacity .8s cubic-bezier(.16,1,.3,1) .3s; }
    .freq-bar .solid { background: var(--moss); opacity: 1; }
    .freq-bar .dotted {
      background-image: linear-gradient(to right, var(--moss) 0 4px, transparent 4px 11px);
      background-size: 11px 2px; opacity: 0;
    }
    .why-card.in .freq-bar .solid { opacity: 0; }
    .why-card.in .freq-bar .dotted { opacity: 1; }
    @media (max-width: 860px) { .why-cards { grid-template-columns: 1fr; } }

    /* ──────────────────── FEATURE CARDS (art-backed) ──────────────────── */
    .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
    @media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }
    .card {
      position: relative; border-radius: 28px; overflow: hidden;
      background: var(--ink-2);
      border: 1px solid rgba(244,237,227,0.16);
      transition: transform .5s cubic-bezier(.22,1,.36,1), border-color .4s;
    }
    .card:hover { transform: translateY(-6px); border-color: rgba(244,237,227,0.36); }
    .card-art {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform 1.2s cubic-bezier(.22,1,.36,1);
    }
    .card:hover .card-art { transform: scale(1.05); }
    .card-scrim {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(15,23,20,0.05) 0%, rgba(15,23,20,0.50) 52%, rgba(15,23,20,0.93) 100%);
    }
    .feature-card { min-height: 430px; display: flex; align-items: flex-end; }
    .feature-body { position: relative; z-index: 2; padding: 30px; display: flex; flex-direction: column; gap: 12px; }
    .feature-icon {
      width: 52px; height: 52px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(15,23,20,0.35); border: 1px solid rgba(244,237,227,0.25);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      font-size: 26px; color: var(--ink-fg); margin-bottom: 4px;
    }
    .feature-body h3 { color: #fff; }
    .feature-body p { color: rgba(244,237,227,0.80); font-size: 15.5px; line-height: 1.55; max-width: 44ch; }
    .feature-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--moss-bright); margin-top: 6px;
    }
    .feature-link i { transition: transform .3s; }
    .card:hover .feature-link i { transform: translateX(4px); }
    @media (max-width: 860px) { .feature-card { min-height: 340px; } .feature-body { padding: 24px; } }

    /* ──────────────────── WHAT'S INSIDE — VERTICAL SPLIT (v2) ──────────────────── */
    .inside-rows { display: flex; flex-direction: column; gap: 128px; }
    .inside-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .inside-row .inside-screen { order: 1; }
    .inside-row .inside-text { order: 2; }
    .inside-row.reverse .inside-screen { order: 2; }
    .inside-row.reverse .inside-text { order: 1; }
    .inside-screen { position: relative; display: flex; justify-content: center; align-items: center; padding: 24px 0; }
    /* The phone mocks are JPEGs (PNG was ~2MB each for photographic content).
       JPEG has no alpha, so the frame's rounded corners are baked in here at
       the same split radius that keeps the corner circular on a 600x1249
       image: 11% of width == 5.28% of height. Full screen shown, tilted
       outward 15deg away from the copy column. */
    .inside-screen img {
      width: min(230px, 58%); max-width: none; height: auto; display: block;
      border-radius: 11% / 5.28%;
      transform: rotate(-15deg);
      transition: transform .6s cubic-bezier(.22,1,.36,1);
    }
    .inside-row.reverse .inside-screen img { transform: rotate(15deg); }
    .inside-text h3 { font-size: clamp(26px, 3vw, 34px); }
    .inside-text p { margin-top: 14px; color: var(--ink-fg2); font-size: 16.5px; line-height: 1.6; max-width: 42ch; }
    @media (max-width: 860px) {
      .inside-rows { gap: 64px; }
      .inside-row, .inside-row.reverse { grid-template-columns: 1fr; gap: 24px; }
      .inside-row .inside-screen, .inside-row.reverse .inside-screen { order: 1; }
      .inside-row .inside-text, .inside-row.reverse .inside-text { order: 2; }
      .inside-screen { padding: 12px 0; }
      .inside-screen img { width: min(210px, 62%); transform: rotate(-8deg); }
      .inside-row.reverse .inside-screen img { transform: rotate(8deg); }
    }

    /* ──────────────────── HEADLINE UNDERLINE (draws in on reveal) ──────────────────── */
    h1 em, h2 em {
      background-image: linear-gradient(to right, var(--moss), var(--moss));
      background-repeat: no-repeat;
      background-position: 0 94%;
      background-size: 100% 0.075em;
      padding-bottom: 0.06em;
      -webkit-box-decoration-break: clone; box-decoration-break: clone;
      transition: background-size 1.1s cubic-bezier(.22,1,.36,1) 0.35s;
    }
    .reveal h1 em, .reveal h2 em { background-size: 0% 0.075em; }
    .reveal.in h1 em, .reveal.in h2 em { background-size: 100% 0.075em; }

    /* ──────────────────── SHOWCASES — spotlight panels ──────────────────── */
    .spot {
      position: relative; border-radius: 34px; overflow: hidden;
      border: 1px solid rgba(244,237,227,0.16);
    }
    .spot-bg { position: absolute; inset: 0; background-size: cover; background-position: center; will-change: transform; }

    /* ──────────────── WHAT'S INSIDE — SHUFFLING DECK (scroll-pinned) ──────────────── */
    .carousel-sec { position: relative; height: 480vh; padding: 0; }
    /* Snap anchors — one per card. Mandatory + snap-stop:always locks each card
       and catches entry momentum so it can't glide past the first. */
    .deck-snap { position: absolute; inset: 0; pointer-events: none; }
    .deck-snap span { position: absolute; left: 0; width: 1px; height: 1px; scroll-snap-align: start; }
    .deck-snap span:nth-child(1) { top: 0; }
    .deck-snap span:nth-child(2) { top: calc(380vh / 3); }
    .deck-snap span:nth-child(3) { top: calc(760vh / 3); }
    .deck-snap span:nth-child(4) { top: 380vh; }
    .carousel-sticky {
      position: sticky; top: 0; height: 100vh; overflow: hidden;
      display: flex; align-items: center;
    }
    .carousel-grid {
      position: relative; z-index: 2; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr; align-items: center;
      gap: clamp(32px, 6vw, 90px);
    }
    .deck-stage { display: flex; justify-content: center; align-items: center; perspective: 1600px; }
    .deck {
      position: relative; height: min(70vh, 640px); aspect-ratio: 600 / 1249;
      max-width: 100%; transform-style: preserve-3d;
    }
    .deck-card {
      position: absolute; inset: 0; transform-origin: 50% 55%;
      will-change: transform, opacity;
    }
    .deck-card img {
      width: 100%; height: 100%; object-fit: contain; display: block;
      border-radius: 11% / 5.3%;
      box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    }
    .carousel-copy { max-width: 460px; }
    .carousel-copy .eyebrow { color: var(--moss-bright); }
    .carousel-cards { position: relative; margin-top: 26px; min-height: 120px; }
    .carousel-card {
      position: absolute; inset: 0;
      opacity: 0; transform: translateY(14px); pointer-events: none;
      transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1);
    }
    .carousel-card.active { opacity: 1; transform: none; pointer-events: auto; }
    .carousel-card h3 { font-size: 24px; color: #fff; }
    .carousel-card p { margin-top: 10px; font-size: 16px; line-height: 1.6; color: rgba(244,237,227,0.78); max-width: 40ch; }
    .carousel-dots { display: flex; gap: 10px; margin-top: 30px; }
    .c-dot { width: 12px; height: 8px; border-radius: 999px; background: rgba(244,237,227,0.24); transition: background-color .3s, width .3s; }
    .c-dot.active { background: var(--moss); width: 40px; }
    /* Mobile-only duplicate of the carousel eyebrow/h2 — see index.html;
       keep both copies of that text in sync. */
    .carousel-head-mobile { display: none; }
    @media (max-width: 900px) {
      .carousel-grid { grid-template-columns: 1fr; gap: 16px; }
      .deck { height: min(40vh, 340px); }
      .carousel-copy { max-width: none; text-align: center; }
      .carousel-copy > .eyebrow, .carousel-copy > h2 { display: none; }
      .carousel-head-mobile { display: block; text-align: center; margin-top: 72px; margin-bottom: 12px; }
      .carousel-dots { justify-content: center; }
      .carousel-cards { margin-top: 10px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .carousel-sec { height: auto; }
      .carousel-sticky { position: relative; height: auto; overflow: visible; padding: 90px 0; }
      .deck-card { position: relative; opacity: 1 !important; }
      .deck-card + .deck-card { display: none; }
    }
    .spot-scrim {
      position: absolute; inset: 0;
      background: linear-gradient(100deg, rgba(15,23,20,0.90) 0%, rgba(15,23,20,0.66) 52%, rgba(15,23,20,0.32) 100%);
    }
    .spot.reverse .spot-scrim {
      background: linear-gradient(-100deg, rgba(15,23,20,0.90) 0%, rgba(15,23,20,0.66) 52%, rgba(15,23,20,0.32) 100%);
    }
    .spot-grid {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center;
      padding: clamp(26px, 4vw, 56px);
    }
    .spot.reverse .spot-copy { order: 2; }
    .spot.reverse .spot-shot { order: 1; }
    .spot-copy { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
    .spot-row {
      appearance: none; -webkit-appearance: none; font: inherit; text-align: left;
      display: flex; gap: 16px; align-items: flex-start;
      padding: 18px 20px; border-radius: 20px;
      background: transparent; border: 1px solid transparent;
      color: var(--ink-fg); cursor: pointer;
      transition: background-color .4s, border-color .4s;
    }
    .spot-row:hover { border-color: rgba(244,237,227,0.18); }
    .spot-row.active {
      background: rgba(15,23,20,0.52);
      border-color: rgba(244,237,227,0.22);
      backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
    }
    .spot-row i { font-size: 24px; flex-shrink: 0; padding-top: 1px; color: var(--moss-bright); }
    .spot-row .h { display: block; font-weight: 600; font-size: 16.5px; line-height: 1.35; color: var(--ink-fg); }
    .spot-row .b {
      display: block; font-size: 14.5px; line-height: 1.55; color: var(--ink-fg2);
      max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
      transition: max-height .55s cubic-bezier(.22,1,.36,1), opacity .45s ease .1s, margin-top .55s cubic-bezier(.22,1,.36,1);
    }
    .spot-row.active .b { max-height: 130px; opacity: 1; margin-top: 5px; }
    .spot-shot { position: relative; display: flex; justify-content: center; }
    .spot-device {
      background: rgba(12,17,15,0.92); padding: 9px; border-radius: 40px;
      border: 1px solid rgba(244,237,227,0.30);
    }
    .spot-device img { display: block; width: min(280px, 62vw); height: auto; border-radius: 32px; }
    .spot-chip {
      position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 16px; border-radius: 9999px;
      background: rgba(15,23,20,0.78);
      border: 1px solid rgba(244,237,227,0.26);
      backdrop-filter: blur(14px) saturate(150%); -webkit-backdrop-filter: blur(14px) saturate(150%);
      color: var(--ink-fg); font-size: 13px; font-weight: 600; white-space: nowrap;
      transition: opacity .22s ease, transform .22s ease;
    }
    .spot-chip.swap { opacity: 0; transform: translateX(-50%) translateY(8px); }
    .spot-chip i { font-size: 16px; color: var(--moss-bright); }
    @media (max-width: 900px) {
      .spot-grid { grid-template-columns: 1fr; gap: 30px; padding: 22px 18px 26px; }
      .spot.reverse .spot-copy { order: 2; }
      .spot .spot-shot { order: 1; }
      .spot-device img { width: min(240px, 58vw); }
      .spot-row { padding: 15px 16px; }
      .spot-row .h { font-size: 15.5px; }
      .spot-row .b { font-size: 14px; }
      .spot-chip { font-size: 12px; padding: 8px 13px; bottom: 18px; }
    }

    /* ──────────────────── BREATHING DEMO ──────────────────── */
    .breath-sec { text-align: center; }
    .breath-inner { display: flex; flex-direction: column; align-items: center; }
    .breath-lead { margin: 18px auto 0; font-size: 18px; color: var(--ink-fg2); max-width: 46ch; }
    .breath-demo {
      position: relative; width: 300px; height: 300px; margin: 52px auto 4px;
      display: flex; align-items: center; justify-content: center;
    }
    .breath-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(244,237,227,0.28); }
    .breath-circle {
      width: 172px; height: 172px; border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, rgba(169,205,175,0.95), rgba(95,149,105,0.80));
      border: 1px solid rgba(255,255,255,0.35);
      display: flex; align-items: center; justify-content: center;
      transform: scale(1);
      transition: transform 3.9s cubic-bezier(.45,0,.55,1);
      will-change: transform;
    }
    .breath-circle span { font-family: var(--serif); font-size: 42px; color: #fff; }
    .breath-label { margin-top: 26px; font-family: var(--serif); font-size: 26px; font-style: italic; color: var(--ink-fg); }
    .breath-note { margin: 40px auto 0; font-size: 15px; color: var(--ink-fg2); max-width: 52ch; }
    .breath-cta { margin-top: 28px; justify-content: center; }
    @media (max-width: 500px) {
      .breath-demo { width: 250px; height: 250px; margin-top: 40px; }
      .breath-circle { width: 144px; height: 144px; }
    }

    /* ──────────────────── BOX BREATHING — INTERACTIVE PHONE DEMO ──────────────────── */
    .bb-split { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(40px, 6vw, 80px); }
    .bb-copy { flex: 1 1 380px; min-width: 0; text-align: center; }
    .bb-copy .eyebrow { color: var(--moss-bright); }
    .bb-copy > p { margin: 18px auto 0; font-size: 18px; color: var(--ink-fg2); max-width: 46ch; }
    .bb-phone { flex: 0 0 380px; max-width: 100%; }
    .bb-phone-screen { background: #0F1714; }
    .bb-screen-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transform: scale(1.08); }
    .bb-screen-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,12,10,0.16) 0%, rgba(8,12,10,0.28) 42%, rgba(8,12,10,0.84) 100%); }
    .bb-phone-screen .phone-status { position: relative; z-index: 2; }
    .bb-content { position: relative; z-index: 2; flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; padding: 14px 18px 18px; }
    .bb-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
    .bb-title { font-family: var(--sans); font-size: 18px; font-weight: 700; color: #fff; margin: 0; }
    .bb-desc { margin: 3px 0 0; font-size: 10.5px; line-height: 1.35; color: rgba(235,235,245,0.62); max-width: 20ch; }
    .bb-timer { font-size: 11px; font-weight: 600; color: rgba(235,235,245,0.62); white-space: nowrap; padding-top: 1px; }
    .bb-circle-area { flex: 1 1 auto; min-height: 0; display: flex; align-items: center; justify-content: center; position: relative; }
    .bb-ring { position: absolute; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); }
    .bb-inner { width: 162px; height: 162px; border-radius: 50%; background: var(--moss-dark); transform: scale(0.3); will-change: transform; }
    .bb-phase { margin-top: 14px; text-align: center; font-family: var(--sans); font-size: 25px; font-weight: 300; color: #fff; }
    .bb-seconds { margin-top: 4px; text-align: center; font-size: 13px; font-weight: 600; color: rgba(235,235,245,0.6); }
    .bb-sep { margin: 0 5px; color: rgba(235,235,245,0.5); }
    .bb-sec.active { color: var(--moss); font-weight: 700; }
    .bb-stats { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 14px 0 16px; }
    .bb-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .bb-stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(235,235,245,0.6); }
    .bb-stat-value { font-size: 16px; font-weight: 700; color: #fff; }
    .bb-stat-divider { width: 1px; height: 26px; background: rgba(255,255,255,0.35); }
    .bb-controls { display: flex; align-items: center; justify-content: center; margin-top: auto; padding: 0 24px; }
    .bb-cta {
      flex: 1 1 auto; width: auto; padding: 12px 27px; border: none; border-radius: 999px; cursor: pointer;
      background: linear-gradient(180deg, var(--moss), var(--moss-dark));
      display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff;
      transition: opacity .2s;
    }
    .bb-cta:hover, .bb-cta:active { opacity: .85; }
    .bb-cta-icon { display: flex; align-items: center; }
    .bb-cta-label { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.3; text-align: center; }
    .bb-fine { margin: 16px auto 0; font-size: 14px; line-height: 1.5; color: var(--ink-fg2); max-width: 40ch; }
    @media (max-width: 980px) { .bb-phone { flex: 0 0 340px; } }
    /* Mobile-only duplicate of .bb-copy's fine-print + CTA — see index.html;
       keep both copies in sync. */
    .bb-tail-mobile { display: none; }
    @media (max-width: 760px) {
      .bb-split { gap: 32px; }
      .bb-phone { flex: 1 1 100%; max-width: 400px; margin: 0 auto; }
      .bb-copy > .bb-fine, .bb-copy > .btn { display: none; }
      .bb-tail-mobile { display: block; text-align: center; margin-top: 24px; }
      .bb-tail-mobile .btn { margin-top: 16px; }
    }

    /* ──────────────────── COACH AI CHAT ────────────────────
       Wired to chat.js via #ai-chat-widget + the data-chat-* hooks.
       This is the app's Coach screen, not a web chat card: a phone frame on
       the left, the section copy on the right. Inside the frame everything
       matches the native screen — #1C1C1E ground, no coach bubble, floating
       glass header and input with gradient fade scrims. */
    .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;
    }

    .coach-split { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(40px, 6vw, 80px); }
    .coach-phone { flex: 0 0 400px; max-width: 100%; }
    .coach-copy  { flex: 1 1 380px; min-width: 0; text-align: center; }
    .coach-copy h2 { margin-top: 14px; }
    .coach-copy > p { margin: 18px auto 0; font-size: 18px; color: var(--ink-fg2); max-width: 46ch; }
    .coach-head-mobile h2 { margin-top: 14px; }
    .coach-head-mobile > p { margin: 18px auto 0; font-size: 18px; color: var(--ink-fg2); max-width: 46ch; }
    .coach-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 30px; }
    .coach-cta .fine { font-size: 14px; color: var(--ink-fg2); }

    /* Star rating — replaces the "start the conversation" CTA row */
    .coach-rate { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
    .coach-rate-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-fg2); }
    .star-row { display: flex; gap: 6px; }
    .star-btn {
      appearance: none; -webkit-appearance: none; border: 0; background: transparent; cursor: pointer;
      padding: 4px; line-height: 0;
    }
    .star-btn svg {
      width: 50px; height: 50px; fill: transparent; stroke: #F2D24E; stroke-width: 1.6;
      stroke-linejoin: round; stroke-linecap: round;
      transition: fill .15s ease, transform .2s cubic-bezier(.22,1,.36,1);
    }
    .star-btn:hover svg { transform: scale(1.1); }
    .star-btn.on svg { fill: #F2D24E; }
    .coach-rate-row { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
    .star-submit:disabled { opacity: .4; cursor: not-allowed; transform: none; }
    .coach-rate-thanks {
      font-size: 14px; color: var(--moss-bright);
      opacity: 0; transform: translateY(4px); transition: opacity .35s ease, transform .35s ease;
    }
    .coach-rate-thanks.show { opacity: 1; transform: none; }

    /* Phone — no shadow anywhere, the brand has none */
    .phone-frame {
      padding: 11px; border-radius: 56px;
      background: #0A0C0B; border: 1px solid rgba(244,237,227,0.16);
    }
    .phone-screen {
      position: relative; display: flex; flex-direction: column;
      aspect-ratio: 9 / 16; border-radius: 45px; overflow: hidden;
      /* the app's deep neutral — never pure black */
      background: #1C1C1E;
    }
    .phone-status {
      flex: 0 0 38px; display: flex; align-items: center; justify-content: space-between;
      padding: 0 26px 0 30px; font-size: 14px; font-weight: 600; color: #fff;
    }
    .phone-status-icons { display: flex; align-items: center; gap: 6px; }

    /* The widget fills the rest of the screen; header and dock float over it */
    .chat { position: relative; flex: 1 1 auto; min-height: 0; }

    .chat-log {
      position: absolute; inset: 0; overflow-y: auto; overscroll-behavior: contain;
      display: flex; flex-direction: column; gap: 24px;
      padding: 60px 16px 168px; scrollbar-width: none;
    }
    .chat:has(.chat-chips[hidden]) .chat-log { padding-bottom: 138px; }
    .chat-log::-webkit-scrollbar { width: 0; height: 0; }
    /* the app's list is inverted — the conversation sits on the bottom edge */
    .chat-log > *:first-child { margin-top: auto; }

    /* Decorative: messages fade out behind the floating bars instead of
       being hard-clipped by them. */
    .chat-scrim-top, .chat-scrim-bottom { position: absolute; left: 0; right: 0; pointer-events: none; z-index: 2; }
    .chat-scrim-top    { top: 0; height: 66px; background: linear-gradient(180deg, rgba(28,28,30,1) 0%, rgba(28,28,30,0) 100%); }
    .chat-scrim-bottom { bottom: 0; height: 150px; background: linear-gradient(0deg, rgba(28,28,30,1) 0%, rgba(28,28,30,0.92) 46%, rgba(28,28,30,0) 100%); }

    .chat-head {
      position: absolute; top: 8px; left: 16px; right: 16px; z-index: 3;
      display: flex; align-items: center; gap: 9px; height: 42px; padding: 0 14px;
      border-radius: 9999px; background: var(--glass-tint, rgba(0,0,0,0.25));
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(40px) saturate(140%);
      -webkit-backdrop-filter: blur(40px) saturate(140%);
    }
    .chat-head i { font-size: 15px; color: var(--moss); }
    .chat-head strong { font-family: var(--sans); font-size: 13px; font-weight: 700; color: #fff; }
    .chat-status { flex: 1 1 auto; font-size: 12px; color: rgba(235,235,245,0.6); }
    .chat-count { flex-shrink: 0; font-size: 12px; color: rgba(235,235,245,0.6); font-variant-numeric: tabular-nums; }

    .chat-dock { position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; padding: 30px 16px 18px; }
    /* Once chips are hidden (conversation started), collapse back to normal spacing. */
    .chat:has(.chat-chips[hidden]) .chat-dock { padding-top: 0; }

    /* ---- messages: assistant replies are plain text, not bubbles ---- */
    .msg-coach {
      display: flex; flex-direction: column; gap: 8px;
      font-size: 16px; line-height: 23px; color: #fff;
    }
    .msg-label { display: flex; align-items: center; gap: 8px; }
    .msg-label i { font-size: 14px; color: var(--moss); }
    .msg-label span { font-size: 12px; font-weight: 600; color: rgba(235,235,245,0.6); }

    .msg-body { display: flex; flex-direction: column; }
    .msg-body > * { margin: 0; }
    /* 12px between blocks; a heading takes 24 above and gives 8 to whatever
       follows it — headings belong with their content. */
    .msg-body > * + * { margin-top: 12px; }
    .msg-body > .msg-h + * { margin-top: 8px; }
    .msg-body > .msg-h { margin-top: 24px; font-size: 20px; line-height: 26px; font-weight: 600; }
    .msg-body > .msg-h:first-child { margin-top: 0; }
    .msg-body p { white-space: pre-wrap; }
    .msg-list { display: flex; flex-direction: column; gap: 8px; }
    .msg-li { display: flex; gap: 10px; }
    .msg-li > .bullet { flex-shrink: 0; color: rgba(235,235,245,0.6); }
    .msg-li.pending > .bullet { color: transparent; }
    .msg-li > .t { flex: 1 1 auto; min-width: 0; }
    /* the not-yet-typed tail: still occupies space, so nothing reflows */
    .pending { color: transparent; }

    .msg-user {
      align-self: flex-end; max-width: 85%; padding: 12px 16px; border-radius: 20px;
      background: linear-gradient(to bottom, var(--moss), var(--moss-dark));
      font-size: 16px; line-height: 22px; color: #fff;
    }
    .msg-user p { margin: 0; }
    .msg-user p + p { margin-top: 8px; }

    .msg-note { font-size: 14px; line-height: 20px; color: rgba(235,235,245,0.6); }
    .msg-note p { margin: 0; }

    /* "thinking…" — the app's quiet, unhurried tempo (dots cycle 1→2→3) */
    .msg-typing { font-size: 14px; font-style: italic; line-height: 20px; color: rgba(235,235,245,0.6); }

    .chat-chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 10px; scrollbar-width: none; }
    .chat-chips::-webkit-scrollbar { display: none; }
    .chat-chips[hidden] { display: none; }
    .chat-chip {
      appearance: none; -webkit-appearance: none; font: inherit; cursor: pointer;
      flex-shrink: 0; white-space: nowrap;
      font-size: 13px; font-weight: 700; padding: 9px 16px; border-radius: 9999px;
      border: 2px solid transparent;
      background: linear-gradient(#1C1C1E, #1C1C1E) padding-box,
                  linear-gradient(135deg, var(--moss-bright), var(--moss)) border-box;
      color: var(--moss-bright); transition: background-color .15s, filter .15s;
    }
    .chat-chip:hover {
      background: linear-gradient(rgba(95,149,105,0.18), rgba(95,149,105,0.18)) padding-box,
                  linear-gradient(135deg, var(--moss-bright), var(--moss)) border-box;
    }

    .chat-form { display: flex; gap: 10px; align-items: flex-end; }
    .chat-form textarea {
      flex: 1; resize: none; font-family: var(--sans);
      /* 16px keeps iOS from zooming the page on focus — do not lower */
      font-size: 16px; line-height: 22px; min-height: 48px; max-height: 110px;
      padding: 12px 16px; border-radius: var(--radius-lg);
      background: rgba(0,0,0,0.28); color: var(--ink-fg);
      border: 1px solid rgba(255,255,255,0.12); outline: none;
      transition: border-color .15s;
    }
    .chat-form textarea::placeholder { color: rgba(244,237,227,0.42); }
    .chat-form textarea:focus { border-color: rgba(95,149,105,0.6); }
    .chat-form textarea:disabled { opacity: .5; }

    .chat-send {
      flex-shrink: 0; width: 44px; height: 44px; border-radius: 9999px;
      display: grid; place-items: center; cursor: pointer; font-size: 19px;
      color: #fff; border: 1px solid transparent;
      background: linear-gradient(to bottom, var(--moss), var(--moss-dark));
      transition: opacity .15s;
    }
    .chat-send:disabled { opacity: .4; cursor: not-allowed; }

    /* Disclosure, not decoration: it names the third party that sees the
       messages and the fact that they're stored, before anyone types. */
    .chat-note {
      display: flex; align-items: flex-start; gap: 8px; text-align: left;
      margin: 16px auto 0; max-width: 380px;
      font-size: 11.5px; line-height: 1.5; color: var(--ink-fg2);
    }
    .chat-note i { flex-shrink: 0; font-size: 15px; color: var(--moss); margin-top: 2px; }
    .chat-note strong { color: var(--ink-fg); font-weight: 600; }
    .chat-note a { color: var(--moss-bright); text-decoration: underline; text-underline-offset: 2px; }

    @media (max-width: 980px) {
      .coach-phone { flex: 0 0 340px; }
    }
    /* Mobile-only duplicate of the coach eyebrow/h2/paragraph — see index.html;
       keep both copies of that text in sync. */
    .coach-head-mobile { display: none; }
    @media (max-width: 760px) {
      .coach-split { gap: 32px; }
      .coach-copy { flex: 1 1 100%; }
      .coach-copy > .eyebrow, .coach-copy > h2, .coach-copy > p { display: none; }
      .coach-head-mobile { display: block; text-align: center; margin-bottom: 8px; }
      .coach-phone { flex: 1 1 100%; max-width: 400px; margin: 0 auto; }
      .star-btn svg { width: 36px; height: 36px; }
      .star-row { gap: 4px; }
      .coach-bb-divider { margin-top: 56px; }
      #coach { padding-top: 140px; }
      /* Chat text: smaller on mobile only — desktop keeps the original sizes above. */
      .msg-coach { font-size: 14px; line-height: 21px; }
      .msg-user { font-size: 14px; line-height: 20px; }
      .msg-body > .msg-h { font-size: 18px; line-height: 24px; }
      .chat-chip { padding: 8px 16px; }
      .chat-form textarea {
        /* Must stay 16px: anything smaller makes iOS zoom the page when the
           field is focused. Only min-height shrinks on mobile. */
        font-size: 16px; line-height: 21px; min-height: 46px;
      }
      .chat-send { width: 42px; height: 42px; }
    }

    /* ──────────────────── JOURNEY ──────────────────── */
    .journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .journey-card {
      position: relative; overflow: hidden;
      border-radius: 26px; aspect-ratio: 3 / 4; padding: 26px;
      display: flex; flex-direction: column; justify-content: flex-end;
      background-size: cover; background-position: center; color: var(--ink-fg);
      transition: transform .5s cubic-bezier(.22,1,.36,1);
    }
    .journey-card:hover { transform: translateY(-6px); }
    .journey-card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.06) 30%, rgba(0,0,0,0.82) 100%);
    }
    .journey-card-inner { position: relative; z-index: 2; }
    .journey-card .num {
      display: inline-flex; align-items: center; justify-content: center;
      height: 30px; padding: 0 14px; border-radius: 999px;
      background: rgba(95,149,105,0.92); color: #fff;
      font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 14px;
    }
    .journey-card h3 { font-size: 23px; color: #fff; }
    .journey-card-text {
      max-height: 44px; overflow: hidden; margin-top: 8px;
      transition: max-height 1.6s cubic-bezier(.19,1,.22,1);
    }
    .journey-card-text p {
      display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
      font-size: 14px; color: rgba(255,255,255,0.82); max-width: 32ch; line-height: 1.5; overflow: hidden;
      opacity: 0.9; transition: opacity 1.4s ease .15s;
    }
    .journey-card:hover .journey-card-text, .journey-card.expanded .journey-card-text {
      max-height: 260px; overflow-y: auto;
    }
    .journey-card:hover .journey-card-text p, .journey-card.expanded .journey-card-text p {
      -webkit-line-clamp: unset; overflow: visible; opacity: 1; transition: opacity 1.6s ease .5s, -webkit-line-clamp .01s .7s;
    }
    .journey-card:hover::after, .journey-card.expanded::after {
      background: linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.92) 55%);
    }
    .journey-card::after { transition: background .8s ease; }
    @media (max-width: 860px) {
      .journey-grid {
        display: flex; gap: 14px; overflow-x: auto;
        scroll-snap-type: x mandatory; padding: 4px 20px 8px; margin: 0 -20px;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
      }
      .journey-grid::-webkit-scrollbar { display: none; }
      .journey-card { flex: 0 0 76%; scroll-snap-align: center; }
    }

    /* ──────────────────── TESTIMONIALS (glass on art) ──────────────────── */
    .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    @media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }
    .quote {
      border-radius: 26px; padding: 30px;
      display: flex; flex-direction: column; gap: 16px;
      background: rgba(15,23,20,0.42);
      border: 1px solid rgba(244,237,227,0.20);
      backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
      transition: transform .5s cubic-bezier(.22,1,.36,1), border-color .4s;
    }
    .quote:hover { transform: translateY(-4px); border-color: rgba(244,237,227,0.36); }
    .quote .mark { font-family: var(--serif); font-size: 54px; line-height: 0.8; color: var(--moss-bright); }
    .quote-text { font-family: var(--serif); font-size: 19px; font-weight: 400; line-height: 1.45; font-style: italic; color: var(--ink-fg); }
    .quote-meta { font-size: 13px; color: var(--ink-fg2); }
    .quote-meta strong { color: var(--ink-fg); font-weight: 600; font-family: var(--sans); }
    @media (max-width: 500px) { .quote { padding: 24px; } .quote .mark { font-size: 40px; } .quote-text { font-size: 17px; } }

    /* ──────────────────── PRICING ──────────────────── */
    .pricing { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; align-items: stretch; }
    @media (max-width: 760px) { .pricing { grid-template-columns: 1fr; gap: 16px; } }
    .plan {
      border: 1px solid rgba(15,23,20,0.12); background: #FFFDF8; border-radius: 28px;
      padding: 36px; display: flex; flex-direction: column; gap: 14px;
    }
    .plan.featured {
      background: linear-gradient(160deg, #182420 0%, #0F1714 70%);
      color: var(--ink-fg); border: 1px solid rgba(95,149,105,0.55);
      position: relative; overflow: hidden;
    }
    .plan.featured::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse at top right, rgba(95,149,105,0.30), transparent 55%);
    }
    .plan.featured > * { position: relative; z-index: 2; }
    .plan.featured h3, .plan.featured .price-amt { color: var(--ink-fg); }
    .plan.featured p { color: var(--ink-fg2); }
    .plan.featured ul li { color: var(--ink-fg2); border-color: var(--rule); }
    .plan-tag {
      display: inline-block; background: var(--moss-soft); color: var(--moss-dark);
      font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 4px 12px; border-radius: 999px; align-self: flex-start;
    }
    .plan.featured .plan-tag { background: rgba(95,149,105,0.22); color: var(--moss-bright); }
    .plan h3 { font-family: var(--serif); }
    .price-amt { font-family: var(--serif); font-size: 54px; font-weight: 500; line-height: 1; letter-spacing: -1px; }
    .price-amt .per { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--cream-fg2); margin-left: 6px; letter-spacing: 0; }
    .plan.featured .price-amt .per { color: var(--ink-fg2); }
    .price-sub { font-size: 14.5px; line-height: 1.5; }
    .plan ul { padding: 0; margin: 6px 0 0; list-style: none; display: flex; flex-direction: column; }
    .plan ul li {
      display: flex; gap: 10px; align-items: flex-start; padding: 10px 0;
      border-top: 1px solid rgba(15,23,20,0.08); font-size: 14px;
    }
    .plan ul li:first-child { border-top: 0; padding-top: 12px; }
    .plan ul li i { color: var(--moss); font-size: 16px; flex-shrink: 0; padding-top: 2px; }
    .plan .btn { margin-top: 8px; align-self: flex-start; }
    /* Early-users discount ribbon — a strip tucked behind the card, poking out
       the top with the card's own top radius and width. In-flow (not absolute)
       so each slot reserves real space for it — on mobile, stacked slots no
       longer overlap the ribbon of the slot above/below. */
    .plan-slot { position: relative; display: flex; flex-direction: column; }
    .plan-slot > .plan { flex: 1; position: relative; z-index: 1; }
    .early-ribbon {
      position: relative; margin-bottom: -26px;
      background: linear-gradient(160deg, var(--moss-bright) 0%, var(--moss-dark) 100%);
      color: #fff;
      border-radius: 28px 28px 0 0;
      padding: 15px 22px 40px; text-align: center;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      z-index: 0;
    }
    .ribbon-kicker {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    }
    .ribbon-kicker i { font-size: 12px; color: #fff; animation: ribbonSparkle 2.6s ease-in-out infinite; }
    .ribbon-kicker i:last-child { animation-delay: 1.3s; }
    @keyframes ribbonSparkle { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }
    .ribbon-pct {
      font-size: 15px; font-weight: 800; letter-spacing: 0.02em;
    }
    .price-old {
      text-decoration: line-through; text-decoration-thickness: 2px;
      font-size: 0.5em; font-weight: 400; opacity: 0.45; margin-right: 12px; letter-spacing: 0;
    }
    @media (max-width: 760px) {
      .early-ribbon { margin-bottom: -24px; padding: 12px 18px 34px; gap: 6px; }
      .ribbon-kicker { font-size: 12px; }
      .ribbon-pct { font-size: 13px; }
    }
    .pricing-note {
      margin: 32px auto 0; text-align: center; font-family: var(--serif); font-style: italic;
      font-size: 16px; color: var(--cream-fg2); max-width: 56ch;
    }
    @media (max-width: 760px) {
      .plan { padding: 26px; gap: 10px; }
      .plan h3 { font-size: 20px; }
      .price-amt { font-size: 40px; }
      .plan ul li { padding: 7px 0; font-size: 13px; }
    }

    /* ──────────────────── FAQ (accordion) ──────────────────── */
    .faq-list { display: flex; flex-direction: column; border-bottom: 1px solid var(--rule); }
    .faq-item { border-top: 1px solid var(--rule); }
    .faq-q {
      all: unset; box-sizing: border-box; cursor: pointer; width: 100%;
      display: flex; justify-content: space-between; align-items: center; gap: 24px;
      padding: 26px 0;
      font-family: var(--serif); font-size: clamp(19px, 2.4vw, 24px); font-weight: 500;
      color: var(--ink-fg); letter-spacing: -0.01em;
      transition: color .2s;
    }
    .faq-q:hover { color: var(--moss-bright); }
    .faq-chev {
      position: relative; width: 34px; height: 34px; flex-shrink: 0;
      border-radius: 999px; border: 1px solid rgba(244,237,227,0.28);
      transition: transform .45s cubic-bezier(.22,1,.36,1), background-color .3s, border-color .3s;
    }
    .faq-chev::before, .faq-chev::after {
      content: ''; position: absolute; top: 50%; left: 50%; background: var(--ink-fg);
      transform: translate(-50%, -50%);
    }
    .faq-chev::before { width: 12px; height: 1.5px; }
    .faq-chev::after { width: 1.5px; height: 12px; transition: opacity .3s; }
    .faq-item.open .faq-chev { transform: rotate(135deg); background: var(--moss); border-color: var(--moss); }
    .faq-a {
      display: grid; grid-template-rows: 0fr;
      transition: grid-template-rows .55s cubic-bezier(.22,1,.36,1);
    }
    .faq-item.open .faq-a { grid-template-rows: 1fr; }
    .faq-a-inner { overflow: hidden; min-height: 0; }
    .faq-a p {
      padding: 0 60px 26px 0; color: var(--ink-fg2); font-size: 16px; max-width: 68ch;
      opacity: 0; transform: translateY(-6px);
      transition: opacity .45s ease .12s, transform .45s cubic-bezier(.22,1,.36,1) .12s;
    }
    .faq-item.open .faq-a p { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .faq-a, .faq-a p, .faq-chev { transition: none; }
    }
    @media (max-width: 500px) { .faq-a p { padding-right: 0; } }

    /* ──────────────────── WAITLIST ────────────────────
       Wired to signup.js via #waitlist-form + the data-signup-* hooks. */
    .notify-sec { padding: 150px 0; }
    .notify-card { max-width: 620px; margin: 0 auto; text-align: center; }
    .notify-card p { margin: 20px auto 0; font-size: 18px; }

    .notify-form {
      margin-top: 34px; display: flex; gap: 10px; align-items: stretch;
      justify-content: center; flex-wrap: wrap;
    }
    .notify-input {
      flex: 1 1 280px; min-width: 0; font-family: var(--sans);
      /* 16px keeps iOS from zooming the page on focus — do not lower */
      font-size: 16px; padding: 14px 20px; border-radius: 9999px;
      background: rgba(255,255,255,0.09); color: var(--ink-fg);
      backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.18); outline: none;
      transition: border-color .15s, box-shadow .15s;
    }
    .notify-input::placeholder { color: rgba(244,237,227,0.45); }
    .notify-input:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(95,149,105,0.28); }
    .notify-input:disabled { opacity: .55; }
    /* Only after signup.js has flagged it — never scold someone mid-typing */
    .notify-input.invalid { border-color: #973C50; box-shadow: 0 0 0 3px rgba(151,60,80,0.15); }

    .notify-btn { flex: 0 0 auto; padding-inline: 32px; }
    .notify-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

    /* Honeypot: off-screen rather than display:none, because some bots skip
       hidden inputs. Real people never see or tab into it. */
    .notify-hp {
      position: absolute; left: -9999px; width: 1px; height: 1px;
      overflow: hidden; opacity: 0; pointer-events: none;
    }

    .notify-msg {
      margin: 18px auto 0; min-height: 0; font-size: 15px;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    /* Success is already conveyed by the button label — only errors need the line. */
    .notify-msg.ok { display: none; }
    .notify-msg.err { color: #E2879A; }
    .notify-msg i { font-size: 18px; }

    .notify-fine {
      display: flex; align-items: flex-start; justify-content: center; gap: 8px;
      margin: 10px auto 0; max-width: 46ch;
      font-size: 13px; line-height: 1.5; color: var(--cream-fg2);
    }
    .notify-fine i { flex-shrink: 0; font-size: 15px; color: var(--moss-dark); margin-top: 1px; }

    @media (max-width: 520px) {
      .notify-form { flex-direction: column; }
      .notify-input { flex: 0 1 auto; width: 100%; }
      .notify-btn { width: 100%; }
    }

    /* ──────────────────── FINAL CTA ──────────────────── */
    .final { padding: 150px 0; text-align: center; }
    .final-inner { max-width: 720px; margin: 0 auto; }
    .final p { margin: 24px auto 0; font-size: 18px; color: var(--ink-fg); }
    .final .cta-row { margin-top: 40px; justify-content: center; }

    /* ──────────────────── FOOTER ──────────────────── */
    footer { padding: 64px 0 calc(40px + env(safe-area-inset-bottom)); border-top: 1px solid var(--rule); background: var(--ink); }
    .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    @media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
    @media (max-width: 420px) { .foot-grid { grid-template-columns: 1fr; gap: 24px; } }
    .foot-col h4 {
      font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--ink-fg); margin: 0 0 16px;
    }
    .foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
    .foot-col a { color: var(--ink-fg2); text-decoration: none; font-size: 14px; transition: color .15s; }
    .foot-col a:hover { color: var(--ink-fg); }
    .foot-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
    .foot-brand img { width: 40px; height: 40px; border-radius: 10px; }
    .foot-brand span { font-family: var(--sans); font-size: 26px; font-weight: 700; }
    .foot-bio { color: var(--ink-fg2); font-size: 14px; max-width: 32ch; }
    .foot-base {
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
      padding-top: 32px; border-top: 1px solid var(--rule); font-size: 12px; color: var(--ink-fg2);
    }

    /* ──────────────────── STICKY MOBILE CTA ──────────────────── */
    .sticky-cta {
      position: fixed; left: 16px; right: 16px; bottom: calc(8px + env(safe-area-inset-bottom) * 0.5); z-index: 60;
      display: none; align-items: center; gap: 10px;
      padding: 5px 5px 5px 12px; border-radius: 999px;
      background: rgba(15,23,20,0.78);
      backdrop-filter: blur(24px) saturate(160%); -webkit-backdrop-filter: blur(24px) saturate(160%);
      border: 1px solid rgba(244,237,227,0.18);
      box-shadow: 0 16px 48px rgba(0,0,0,0.5);
      transform: translateY(140%); transition: transform .5s cubic-bezier(.22,1,.36,1);
      max-width: 420px; margin: 0 auto;
    }
    .sticky-cta.show { transform: none; }
    .sticky-cta img { width: 30px; height: 30px; border-radius: 999px; display: block; }
    .sticky-cta-txt { display: flex; flex-direction: column; line-height: 1.2; flex: 1; min-width: 0; }
    .sticky-cta-txt strong { font-family: var(--sans); font-size: 15px; font-weight: 700; }
    .sticky-cta-txt span { font-size: 11px; color: var(--ink-fg2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .sticky-cta .btn { padding: 9px 18px; font-size: 13px; }
    /* Hidden per request — remove this rule to bring it back. */
    .sticky-cta { display: none !important; }
    @media (max-width: 760px) { .sticky-cta { display: flex; } }

    /* ──────────────────── SCROLL REVEAL ────────────────────
       Motion foundation: 500ms, cubic-bezier(0.16,1,0.3,1), transform+opacity
       only. 70ms/sibling stagger is applied per-element by site.js. */
    .reveal {
      opacity: 0; transform: translateY(16px);
      transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1);
      will-change: opacity, transform;
    }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      html { scroll-behavior: auto; }
    }

    /* Section seams: a soft gradient bleed over each photographic section's
       own edges, so the dark atmosphere reads as continuous rather than
       stacked slabs. Flat-color sections need no bleed — there's no seam to
       hide. Sits above the art/scrim but under the content
       (.art-sec > .container is z-index 2). */
    .art-sec::before, .art-sec::after {
      content: ''; position: absolute; left: 0; right: 0; height: 110px;
      pointer-events: none; z-index: 1;
    }
    .art-sec::before { top: -1px; background: linear-gradient(180deg, rgba(15,23,20,1) 0%, rgba(15,23,20,0) 100%); }
    .art-sec::after  { bottom: -1px; background: linear-gradient(0deg, rgba(15,23,20,1) 0%, rgba(15,23,20,0) 100%); }
    /* Coach section: gradient bleed re-enabled (was previously removed) — the
       section gets extra top padding below so the heading clears it. */
    #coach { padding-top: 160px; }

    /* ──────────────────── MOBILE DENSITY ──────────────────── */
    @media (max-width: 720px) {
      section { padding: 68px 0; }
      .section-head { margin-bottom: 36px; }
      .section-head p { font-size: 16px; }
      .final { padding: 96px 0; }
      .notify-sec { padding: 96px 0; }
    }
