/* LuminaryAura v3.3 — styles-fixed.css */
/* ============================================================
   PATCH NOTES v3.3:
   1. Hero eyebrow — no longer bleeds behind nav (z-index + padding-top fix)
   2. Hero white-space gap below CTAs — removed
   3. Ghost button — visually subordinate, clearly secondary
   4. Hero-why block — tighter line-height, no awkward mid-phrase breaks
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500&family=Lora:ital,wght@0,400;0,500;1,400;1,500&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --cream:        #F8F4EE;
  --cream-deep:   #F0E9DD;
  --gold:         #C9A96E;
  --gold-light:   #E5D3B3;
  --gold-muted:   #B89E74;
  --bronze:       #9E7B4F;
  --beige:        #E6DAC9;
  --beige-mid:    #D0BFA8;
  --charcoal:     #261F18;
  --charcoal-mid: #433729;
  --charcoal-soft:#5C5045;
  --charcoal-text:#3A3028;
  --warm-white:   #FDFAF5;
  --shadow-warm:  rgba(38, 31, 24, 0.09);
  --shadow-gold:  rgba(201, 169, 110, 0.2);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-reading: 'Lora', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --space-xs:   0.625rem;
  --space-sm:   1.125rem;
  --space-md:   2rem;
  --space-lg:   3.5rem;
  --space-xl:   5.5rem;
  --space-xxl:  9rem;

  --ease-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-silk:   cubic-bezier(0.16, 1, 0.3, 1);
  --duration-sm: 280ms;
  --duration-md: 480ms;
  --duration-lg: 720ms;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  color-scheme: light only;

}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--cream);
  color: var(--charcoal-text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
textarea, input { font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 6.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--charcoal);
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 400;
  line-height: 1.32;
  color: var(--charcoal);
}

.body-lg {
  font-family: var(--font-reading);
  font-size: clamp(1.05rem, 2.5vw, 1.15rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--charcoal-soft);
  letter-spacing: 0.01em;
}

.body-md {
  font-family: var(--font-reading);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--charcoal-soft);
  letter-spacing: 0.01em;
}

.label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.gold-text  { color: var(--gold); }
.bronze-text{ color: var(--bronze); }
.italic     { font-style: italic; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--duration-md) var(--ease-silk);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--bronze) 100%);
  color: var(--warm-white);
  box-shadow: 0 4px 24px var(--shadow-gold), 0 1px 0 rgba(255,255,255,0.15) inset;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--shadow-gold), 0 1px 0 rgba(255,255,255,0.15) inset;
}

.btn-primary:active { transform: translateY(0); }

/* ── FIX 3: Ghost button clearly secondary ─────────────────── */
.btn-ghost {
  background: transparent;
  color: var(--charcoal-soft);          /* softer than charcoal */
  border: 1px solid var(--beige);       /* lighter border — less weight */
  font-size: 0.75rem;                   /* slightly smaller than primary */
  letter-spacing: 0.06em;
  padding: 0.85rem 1.8rem;             /* slightly less padding */
  opacity: 0.85;
}

.btn-ghost:hover {
  border-color: var(--gold-muted);
  color: var(--gold);
  background: rgba(201,169,110,0.05);
  opacity: 1;
}

.btn-full { width: 100%; }

.btn-lg {
  padding: 1.2rem 2rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem 1.5rem;
  background: linear-gradient(to top, var(--cream) 60%, transparent);
  display: none;
}

.sticky-cta.visible { display: block; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section       { padding: var(--space-xl) 0; }
.section-tight { padding: var(--space-lg) 0; }
.text-center   { text-align: center; }
.text-left     { text-align: left; }

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.stack-sm {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.prose p + p { margin-top: 1.25em; }

.divider-gold {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration-md) var(--ease-gentle),
              box-shadow var(--duration-md) var(--ease-gentle);
}

.nav.scrolled {
  background: rgba(249, 245, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--beige);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.nav-logo span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--gold-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.nav-cta {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 1px;
  transition: color var(--duration-sm) var(--ease-gentle);
}

.nav-cta:hover { color: var(--gold); }

/* ============================================================
   HERO — FULL WIDTH v3.3
   FIX 1: eyebrow clear of nav via padding-top
   FIX 2: no dead space below CTAs
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background: var(--cream);
  overflow: hidden;
  /* Tight bottom — breath moment picks up immediately */
  padding-bottom: 4.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,169,110,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(158,123,79,0.07) 0%, transparent 60%),
    linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 40%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

/* ── FIX 1: Eyebrow clear of fixed nav ─────────────────────── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 100%;               /* was 52% — allow full width */
}

.hero-eyebrow .label {
  white-space: nowrap;
  font-size: 0.52rem;
  letter-spacing: 0.18em;
}

.hero-eyebrow-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
  max-width: 40px;
}

/* ── HEADLINE: unified typographic block ───────────────────── */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 22vw, 11rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-bottom: 0.1em;
}

/* ── "1%" FILL FIX ─────────────────────────────────────────────
   Cormorant italic numerals are inherently narrow glyphs.
   em-relative sizing keeps them small. Solution:
   — Override with a direct vw value that matches "Speak" visually
   — letter-spacing spreads the two characters to fill the line
   — gradient shimmer adds premium depth
   ──────────────────────────────────────────────────────────── */
.hero-headline em {
  font-style: italic;
  display: block;
  /* Direct vw — NOT relative to parent font-size.
     Tuned so "1%" fills roughly the same width as "Speak" on mobile */
  font-size: clamp(6rem, 38vw, 18rem);
  line-height: 0.85;
  /* Spread the narrow "1" and "%" apart to fill the line */
  letter-spacing: 0.08em;
  /* Gold shimmer gradient */
  background: linear-gradient(135deg, #B89E74 0%, #E5C98A 40%, #C9A96E 70%, #9E7B4F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subheadline — commanding, reads as a real statement */
.hero-subheadline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-mid);
  line-height: 1.42;
  margin-bottom: 1.4rem;
  max-width: 30ch;
  letter-spacing: -0.005em;
}

/* ── FIX 4: Hero-why — no orphan word-breaks ────────────────── */
.hero-why {
  margin: 1rem 0 1.5rem;
  padding: 1.1rem 1.4rem;
  border-left: 2px solid var(--gold-light);
  background: linear-gradient(90deg, rgba(201,169,110,0.06), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-why-text {
  font-family: var(--font-reading);
  font-size: clamp(0.92rem, 2.3vw, 1rem);   /* slightly smaller = fewer breaks */
  font-weight: 400;
  color: var(--charcoal-soft);
  line-height: 1.8;
  letter-spacing: 0.005em;
  /* Prevent mid-phrase orphans */
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}

.hero-why-text em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.08em;
}

.hero-support {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.75rem;
}

/* ── FIX 2 + 3: Actions — stacked, ghost clearly secondary ─── */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;          /* tighter gap — no dead air */
  align-items: flex-start;
  /* Ensure section below snaps cleanly */
  padding-bottom: 0;
}

/* ── HERO full variant ──────────────────────────────────────── */
.hero--full {
  padding-bottom: 4.5rem;
}

.hero--full .hero-content {
  max-width: 600px;
}

.hero--full .hero-headline {
  font-size: clamp(4.8rem, 22vw, 11rem);
}

/* ============================================================
   SECTION: PROBLEM
   ============================================================ */
.problem-section {
  background: var(--warm-white);
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beige-mid), transparent);
}

.recognition-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.recognition-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.6rem 1.6rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
  transition: border-color var(--duration-md) var(--ease-gentle),
              box-shadow var(--duration-md) var(--ease-gentle);
}

.recognition-item:hover {
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px var(--shadow-gold);
}

.recognition-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.65rem;
}

.recognition-text {
  font-family: var(--font-reading);
  font-size: clamp(1.02rem, 3vw, 1.18rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal-mid);
  line-height: 1.65;
}

.problem-closing {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  border-left: 2px solid var(--gold-light);
  background: linear-gradient(90deg, rgba(201,169,110,0.05), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ============================================================
   SECTION: TRANSFORMATION
   ============================================================ */
.transformation-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.transformation-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.transformation-section .label      { color: var(--gold-muted); }
.transformation-section .display-lg { color: var(--warm-white); }
.transformation-section .body-lg    { color: rgba(253,250,246,0.65); }

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.transformation-card {
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  transition: background var(--duration-md) var(--ease-gentle),
              border-color var(--duration-md) var(--ease-gentle);
}

.transformation-card:hover {
  background: rgba(201,169,110,0.06);
  border-color: rgba(201,169,110,0.3);
}

.transformation-card-icon  { font-size: 1.3rem; margin-bottom: 0.6rem; }
.transformation-card-title {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.transformation-card-body {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(253,250,246,0.55);
  line-height: 1.65;
}

.transformation-quote {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  text-align: center;
}

.transformation-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1.5;
}

/* ============================================================
   SECTION: HOW IT WORKS
   ============================================================ */
.howitworks-section { background: var(--cream); }

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 22px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-light), var(--beige-mid), transparent);
  z-index: 0;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid var(--gold-light);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
}

.step-body   { padding-top: 0.6rem; }
.step-title  {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.step-desc {
  font-family: var(--font-reading);
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--charcoal-soft);
  line-height: 1.8;
}

/* ============================================================
   SECTION: MEET ARIA
   ============================================================ */
.aria-section {
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
}

.aria-card {
  border-radius: var(--radius-xl);
  background: var(--warm-white);
  border: 1px solid var(--beige);
  overflow: hidden;
  box-shadow: 0 16px 56px var(--shadow-warm), 0 4px 16px var(--shadow-warm);
}

.aria-photo-area {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--beige);
}

.aria-photo-area .aria-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
}

.aria-photo-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, rgba(38,31,24,0.35), transparent);
  pointer-events: none;
}

.aria-badge {
  position: relative;
  z-index: 2;
  background: rgba(249,245,239,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 60px;
  padding: 0.4rem 1rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}

.aria-info         { padding: 2rem 1.5rem; }
.aria-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.aria-title {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1.2rem;
}
.aria-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.aria-trait {
  padding: 0.3rem 0.85rem;
  border-radius: 60px;
  background: var(--cream);
  border: 1px solid var(--beige);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--charcoal-soft);
  letter-spacing: 0.05em;
}

.aria-info .body-md {
  font-family: var(--font-reading);
  font-size: clamp(0.95rem, 2vw, 1.02rem);
  line-height: 1.85;
}

/* ============================================================
   SECTION: FOUNDING BETA
   ============================================================ */
.beta-section {
  background: linear-gradient(160deg, var(--cream-deep) 0%, var(--beige) 100%);
  position: relative;
  overflow: hidden;
}

.beta-section::after {
  content: '"';
  position: absolute;
  top: -0.2em;
  right: -0.05em;
  font-family: var(--font-display);
  font-size: 18rem;
  color: rgba(201,169,110,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.beta-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem;
  border: 1px solid var(--beige);
  box-shadow: 0 8px 40px var(--shadow-warm);
  position: relative;
  z-index: 1;
}

.beta-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.beta-currency {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--charcoal-soft);
}

.beta-price {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
}

.beta-period {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--charcoal-soft);
  text-transform: uppercase;
}

.beta-was {
  font-size: 0.8rem;
  color: var(--charcoal-soft);
  text-decoration: line-through;
  margin-left: 0.5rem;
  opacity: 0.6;
}

.beta-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}

.beta-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-family: var(--font-reading);
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--charcoal-mid);
  line-height: 1.65;
}

.beta-feature-check {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.beta-guarantee {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--beige);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--charcoal-soft);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.beta-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 60px;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.faq-section { background: var(--warm-white); }

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--beige);
  overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid var(--beige); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 400;
  color: var(--charcoal);
  transition: color var(--duration-sm) var(--ease-gentle);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--beige-mid);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--gold-muted);
  transition: transform var(--duration-md) var(--ease-silk),
              border-color var(--duration-md) var(--ease-gentle);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-md) var(--ease-silk);
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-family: var(--font-reading);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 400;
  color: var(--charcoal-soft);
  line-height: 1.85;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   SECTION: FINAL CTA
   ============================================================ */
.final-cta-section {
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,169,110,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 50% 100%, rgba(158,123,79,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-section .display-lg { color: var(--warm-white); position: relative; z-index: 1; }
.final-cta-section .body-lg    { color: rgba(253,250,246,0.6); position: relative; z-index: 1; }
.final-cta-section .label      { color: var(--gold-muted); position: relative; z-index: 1; }

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-white);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,250,246,0.4);
  transition: color var(--duration-sm) var(--ease-gentle);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(253,250,246,0.25);
  letter-spacing: 0.06em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--duration-lg) var(--ease-silk),
              transform var(--duration-lg) var(--ease-silk);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity var(--duration-lg) var(--ease-silk); }
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 320ms; }
.delay-4 { transition-delay: 440ms; }
.delay-5 { transition-delay: 560ms; }

/* ============================================================
   PORTAL STYLES
   ============================================================ */
body.portal-body { background: var(--cream); padding-top: 0; }

.portal-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(249,245,239,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--beige);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portal-logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.portal-logo span {
  display: block;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--gold-muted);
  font-family: var(--font-body);
}

.portal-layout {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 56px);
}

.portal-day-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: rgba(249,245,239,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--beige);
  padding: 0.5rem 0.75rem 1rem;
  display: flex;
  gap: 0.3rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portal-day-tabs::-webkit-scrollbar { display: none; }

.day-tab {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--duration-sm) var(--ease-gentle);
  min-width: 44px;
  background: none;
  border: none;
}

.day-tab:hover      { background: var(--beige); }
.day-tab.active     { background: var(--cream-deep); }

.day-tab-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1;
}

.day-tab.active .day-tab-num { color: var(--gold); }

.day-tab-label {
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  opacity: 0.6;
}

.day-tab.completed .day-tab-num { color: var(--bronze); position: relative; }
.day-tab.completed .day-tab-num::after {
  content: '✓';
  position: absolute;
  top: -4px;
  right: -8px;
  font-size: 0.55rem;
  font-family: var(--font-body);
  color: var(--gold);
}

.portal-progress-bar { height: 2px; background: var(--beige); position: relative; }
.portal-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transition: width var(--duration-md) var(--ease-silk);
}

.portal-content {
  flex: 1;
  padding: 1.75rem 1.5rem 8rem;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}

.day-panel { display: none; animation: dayFadeIn 0.4s var(--ease-silk); }
.day-panel.active { display: block; }

@keyframes dayFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.day-header {
  padding: 1.75rem 0 1.5rem;
  border-bottom: 1px solid var(--beige);
  margin-bottom: 2rem;
}

.day-number-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.5rem;
}

.day-title-text {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 2.8rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.12;
}

.day-subtitle {
  margin-top: 0.65rem;
  font-style: italic;
  color: var(--charcoal-soft);
  font-family: var(--font-reading);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 400;
  line-height: 1.6;
}

.portal-video-container {
  aspect-ratio: 9/16;
  max-height: 55vh;
  background: var(--beige);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.75rem;
  position: relative;
  box-shadow: 0 8px 32px var(--shadow-warm);
}

.portal-video-container iframe { width: 100%; height: 100%; border: none; }

.portal-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--beige) 0%, var(--gold-light) 50%, var(--beige-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.portal-video-placeholder-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(249,245,239,0.85);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--bronze);
  box-shadow: 0 4px 16px rgba(44,39,32,0.12);
  padding-left: 4px;
}

.portal-video-placeholder-text {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

.content-block { margin-bottom: 2.25rem; }

.content-block-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.content-block-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 1px solid var(--beige);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.content-block-label {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.content-block-body {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--beige);
}

.pocket-shift-text {
  font-family: var(--font-reading);
  font-size: clamp(1.05rem, 3.2vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal-mid);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.identity-statement {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4.5vw, 1.75rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.55;
  text-align: center;
  padding: 1.25rem 0.5rem;
  letter-spacing: 0.005em;
}

.identity-statement em { color: var(--gold); font-style: italic; }

.reflection-textarea {
  width: 100%;
  min-height: 140px;
  background: var(--warm-white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  font-family: var(--font-reading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal-text);
  line-height: 1.85;
  resize: vertical;
  outline: none;
  transition: border-color var(--duration-sm) var(--ease-gentle),
              box-shadow var(--duration-sm) var(--ease-gentle);
  letter-spacing: 0.01em;
}

.reflection-textarea::placeholder { font-style: italic; color: var(--charcoal-soft); opacity: 0.45; }
.reflection-textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.07);
}

.transcript-text {
  font-family: var(--font-reading);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  font-weight: 400;
  color: var(--charcoal-soft);
  line-height: 1.95;
  letter-spacing: 0.01em;
}

.transcript-text + .transcript-text { margin-top: 1.1em; }

.transcript-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  cursor: pointer;
  transition: color var(--duration-sm) var(--ease-gentle);
  margin-bottom: 0.85rem;
}

.transcript-toggle:hover { color: var(--gold); }

.transcript-content { max-height: 0; overflow: hidden; transition: max-height var(--duration-md) var(--ease-silk); }
.transcript-content.open { max-height: 600px; }

.complete-btn {
  width: 100%;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--duration-md) var(--ease-silk);
  box-shadow: 0 4px 20px var(--shadow-gold);
  margin-top: 0.5rem;
}

.complete-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 28px var(--shadow-gold); }
.complete-btn:disabled,
.complete-btn.done { background: var(--beige); color: var(--gold-muted); box-shadow: none; transform: none; cursor: default; }

.save-note-btn {
  margin-top: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 60px;
  background: transparent;
  border: 1px solid var(--beige-mid);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  cursor: pointer;
  transition: all var(--duration-sm) var(--ease-gentle);
}

.save-note-btn:hover { border-color: var(--gold-light); color: var(--gold); }

/* ============================================================
   THANK YOU / SUCCESS PAGES
   ============================================================ */
body.minimal-body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 2rem 1.5rem;
  text-align: center;
}

.minimal-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 3rem;
}

.minimal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--beige));
  border: 1px solid var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 2rem;
}

.minimal-card { max-width: 480px; width: 100%; }

/* ============================================================
   BREATH MOMENTS
   ============================================================ */
.breath-moment {
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--cream-deep);
  overflow: hidden;
}

.breath-moment--dark { background: var(--charcoal); }

.breath-line {
  flex: 1;
  height: 1px;
  max-width: 80px;
  background: linear-gradient(90deg, transparent, var(--beige-mid));
}

.breath-line--light { background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3)); }
.breath-line:last-child { background: linear-gradient(270deg, transparent, var(--beige-mid)); }
.breath-line--light:last-child { background: linear-gradient(270deg, transparent, rgba(201,169,110,0.3)); }

.breath-text {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal-soft);
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.breath-text--light { color: rgba(229,211,179,0.45); }

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
.philosophy-section {
  background: var(--warm-white);
  position: relative;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beige-mid), transparent);
}

.philosophy-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin: 2.5rem 0 3rem;
  padding: 0 0.25rem;
}

.philosophy-body .body-lg    { color: var(--charcoal-soft); }
.philosophy-body .body-lg em { font-style: italic; color: var(--charcoal-mid); }

.philosophy-pillars { display: flex; flex-direction: column; gap: 1.25rem; }

.philosophy-pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.6rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--beige);
  transition: border-color var(--duration-md) var(--ease-gentle);
}

.philosophy-pillar:hover { border-color: var(--gold-light); }

.pillar-mark {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 0.2rem;
  min-width: 20px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.pillar-body {
  font-family: var(--font-reading);
  font-size: clamp(0.9rem, 2vw, 0.97rem);
  font-weight: 400;
  color: var(--charcoal-soft);
  line-height: 1.8;
}

/* ============================================================
   PORTAL MICRO-MOMENTS
   ============================================================ */
.portal-pause { padding: 1.25rem 0 0.5rem; text-align: center; }

.portal-pause-text {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 400;
  color: var(--beige-mid);
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.portal-pause-text::before,
.portal-pause-text::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--beige-mid);
  flex-shrink: 0;
}

/* ============================================================
   PORTAL WELCOME BANNER
   ============================================================ */
.portal-welcome {
  background: linear-gradient(135deg, var(--cream-deep), var(--beige));
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--beige);
  text-align: center;
}

.portal-welcome-greeting {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.portal-welcome-body {
  font-family: var(--font-reading);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal-soft);
  line-height: 1.8;
  max-width: 38ch;
  margin: 0 auto;
}

/* ============================================================
   REFLECTION
   ============================================================ */
.reflection-prompt {
  font-family: var(--font-reading);
  font-size: clamp(0.95rem, 2vw, 1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--charcoal-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold-light);
}

/* ============================================================
   YOUTUBE OVERLAY
   ============================================================ */
.portal-video-wrapper { position: relative; border-radius: 24px; overflow: hidden; }

.yt-overlay-block {
  position: absolute;
  top: 0; right: 0;
  width: 72px; height: 72px;
  z-index: 10;
  background: var(--cream-deep);
  border-bottom-left-radius: 12px;
  pointer-events: all;
  cursor: default;
}

.yt-overlay-block-left {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 56px;
  z-index: 10;
  background: linear-gradient(to bottom, var(--cream-deep) 0%, transparent 100%);
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE — TABLET + DESKTOP
   ============================================================ */
@media (min-width: 768px) {
  .hero {
    padding-bottom: 7rem;
  }

  .hero--full {
    padding-bottom: 7rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .transformation-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .portal-layout { flex-direction: row; }

  .portal-day-tabs {
    position: sticky;
    top: 56px;
    bottom: auto;
    left: auto; right: auto;
    width: 80px;
    height: calc(100svh - 56px);
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5rem 0.5rem;
    border-top: none;
    border-right: 1px solid var(--beige);
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
  }

  .portal-content { padding-bottom: 3rem; }
  .sticky-cta     { display: none !important; }

  .beta-card {
    padding: 3rem 2.5rem;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */
@media (max-width: 480px) {

  /* ── FIX 1: hero-content pushed clear of nav (nav ~64px tall) */
  .hero-content {
    padding-top: 72px;     /* safe zone above eyebrow */
  }

  /* "Speak" — slightly tighter on small screens */
  .hero--full .hero-headline,
  .hero-headline {
    font-size: clamp(4.2rem, 20vw, 6rem);
    line-height: 0.88;
  }

  /* "1%" — vw-based so it fills width on small phones too */
  .hero-headline em {
    font-size: clamp(5.5rem, 36vw, 10rem);
    letter-spacing: 0.06em;
  }

  /* ── FIX 4: why-text — single-column, no orphan breaks */
  .hero-why-text {
    font-size: 0.92rem;
    line-height: 1.75;
    /* Ensure line breaks are phrase-conscious */
    word-break: keep-all;
  }

  /* ── FIX 2: No gap below CTAs — tighten hero bottom */
  .hero-actions {
    gap: 0.6rem;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  /* ── FIX 3: Ghost button subordinate visual weight */
  .btn-ghost {
    font-size: 0.7rem;
    padding: 0.75rem 1.6rem;
    opacity: 0.75;
  }

  .btn-ghost:hover { opacity: 1; }

  /* Body text */
  .body-lg { font-size: 1.05rem; line-height: 1.9; }
  .body-md { font-size: 0.98rem; line-height: 1.85; }

  .pocket-shift-text   { font-size: 1.08rem; line-height: 1.78; }
  .identity-statement  { font-size: 1.3rem; line-height: 1.6; padding: 1rem 0; }
  .reflection-textarea { font-size: 1rem; line-height: 1.85; min-height: 150px; }
  .transcript-text     { font-size: 0.98rem; line-height: 1.95; }
  .content-block       { margin-bottom: 2.5rem; }
  .content-block-body  { padding: 1.5rem 1.25rem; }
  .container           { padding: 0 1.25rem; }
  .portal-content      { padding: 1.5rem 1.25rem 9rem; }
  .recognition-item    { padding: 1.5rem 1.25rem; }
  .faq-answer-inner    { font-size: 0.97rem; line-height: 1.85; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in { opacity: 1; transform: none; transition: none; }
  .day-panel         { animation: none; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar        { width: 4px; }
::-webkit-scrollbar-track  { background: var(--cream); }
::-webkit-scrollbar-thumb  { background: var(--beige-mid); border-radius: 2px; }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: rgba(201,169,110,0.2); color: var(--charcoal); }
