/* ============================================================
   UNDER THE INFLUENCE — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;1,6..96,400;1,6..96,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --linen:      #F0E8DC;
  --charcoal:   #1C1C1A;
  --burgundy:   #7C1D34;
  --muted:      #6B6560;
  --gold:       #C9A96E;
  --card-bg:    #FFFFFF;
  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --text-xs:   11px; --text-sm:  13px; --text-base: 15px;
  --text-md:   17px; --text-lg:  20px; --text-xl:   24px;
  --text-2xl:  30px; --text-3xl: 38px; --text-4xl:  48px;
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px;
  --space-4: 16px; --space-5: 20px; --space-6: 24px;
  --space-8: 32px; --space-10: 40px; --space-12: 48px;
  --radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px;
  --radius-xl: 32px; --radius-full: 9999px;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --duration: 200ms;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box; margin: 0; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--charcoal);
  background: var(--linen);
  /* NO overflow:hidden or position:fixed — let the app shell handle it */
}
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── App Shell ──────────────────────────────────────────── */
#app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: var(--linen);
  overflow: hidden;
  position: relative;
}

/* Screens sit inside #app, take up remaining space above nav */
#screens {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0; /* critical for flex children */
}

.screen {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.screen::-webkit-scrollbar { display: none; }
.screen.active { opacity: 1; pointer-events: all; }

/* ── Top Bar ────────────────────────────────────────────── */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(var(--safe-top) + var(--space-3)) var(--space-5) var(--space-3);
  position: relative;
  z-index: 10;
}
.top-bar--dark { color: var(--linen); }
.top-bar--light { color: var(--charcoal); }

.top-bar__menu {
  width: 32px; height: 32px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px; padding: 4px;
}
.top-bar__menu span {
  display: block; height: 1.5px;
  background: currentColor; border-radius: 2px;
}
.top-bar__title {
  font-family: var(--font-body);
  font-size: var(--text-base); font-weight: 400;
}
.top-bar__date {
  font-family: var(--font-body);
  font-size: var(--text-base); font-weight: 400;
}
.top-bar__action {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.top-bar__action img { width: 28px; height: 28px; object-fit: contain; }

/* ── Bottom Nav ─────────────────────────────────────────── */
#nav {
  display: flex;
  align-items: stretch;
  background: var(--linen);
  border-top: 1px solid rgba(28,28,26,0.1);
  padding-bottom: var(--safe-bottom);
  flex-shrink: 0; /* CRITICAL — prevents nav from collapsing */
  z-index: 100;
}
.nav-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 3px;
  padding: var(--space-3) var(--space-2) var(--space-2);
  cursor: pointer;
  position: relative;
}
.nav-item img {
  width: 22px; height: 22px; object-fit: contain;
  opacity: 0.4;
  transition: opacity var(--duration) var(--ease);
}
.nav-item span {
  font-size: 10px; font-weight: 400;
  color: var(--muted); letter-spacing: 0.02em;
  transition: color var(--duration) var(--ease);
}
.nav-item.active img { opacity: 1; }
.nav-item.active span { color: var(--burgundy); font-weight: 500; }

/* ── Screen 1 — Today Hero ──────────────────────────────── */
#screen-today {
  display: flex;
  flex-direction: column;
}

.today-hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px var(--space-8) var(--space-5);
  min-height: 60vh;
  overflow: hidden;
  background: #3D0A18;
  transition: background 0.4s ease;
}

.today-hero__bg {
  position: absolute;
  inset: -5%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.today-hero__bg img {
  width: 110%; height: 110%;
  object-fit: contain;
  opacity: 0.15;
  filter: sepia(1) saturate(0.6) hue-rotate(5deg) brightness(1.1);
}

.today-hero__content {
  position: relative; z-index: 2; text-align: center;
}

.today-hero__quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 1.2;
  color: var(--linen);
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}

.today-hero__divider {
  display: flex; align-items: center; justify-content: center;
  margin: var(--space-3) 0;
}
.today-hero__divider img { width: 14px; height: 14px; object-fit: contain; }

.today-hero__secondary {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(240,232,220,0.75);
}

/* Date strip + CTA */
.today-dates {
  background: var(--linen);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: var(--space-5) var(--space-5) var(--space-4);
  flex-shrink: 0;
}
.today-dates__strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
}
.date-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px;
  cursor: pointer;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  min-width: 38px;
  transition: background var(--duration) var(--ease);
}
.date-item__day {
  font-size: 10px; font-weight: 400;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em;
}
.date-item__num { font-size: var(--text-md); color: var(--charcoal); }
.date-item.today { background: var(--burgundy); }
.date-item.today .date-item__day,
.date-item.today .date-item__num { color: var(--linen); }

.btn-explore {
  width: 100%;
  background: var(--burgundy);
  color: var(--linen);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  display: flex; align-items: center;
  justify-content: center; gap: var(--space-3);
}
.btn-explore img { width: 12px; height: 12px; filter: invert(1); }

/* ── Screen 2 — Expanded ────────────────────────────────── */
#screen-expanded { background: var(--linen); }

.section { padding: var(--space-5) var(--space-5) 0; }
.section:last-child { padding-bottom: var(--space-8); }

.section-label {
  font-size: var(--text-sm); font-weight: 500;
  color: var(--charcoal); letter-spacing: 0.01em;
  margin-bottom: var(--space-3);
  display: flex; align-items: center; gap: var(--space-2);
}
.section-label img { width: 16px; height: 16px; object-fit: contain; opacity: 0.55; }
.section-label__info {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid rgba(28,28,26,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--muted); margin-left: auto; cursor: pointer;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-3);
}
.card--planet {
  display: flex; align-items: flex-start; gap: var(--space-4);
}
.card__planet-icon { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; margin-top: 2px; }
.card__planet-content { flex: 1; }
.card__planet-text { font-size: var(--text-sm); color: var(--muted); line-height: 1.5; }
.card__expand {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(28,28,26,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); flex-shrink: 0;
}
.card--text .card__content { font-size: var(--text-sm); line-height: 1.6; color: var(--charcoal); }
.card--text .card__footer {
  display: flex; align-items: center; justify-content: flex-end;
  margin-top: var(--space-3);
}
.card__heart { width: 18px; height: 18px; object-fit: contain; opacity: 0.3; }

/* Days to watch */
.days-watch {
  background: var(--card-bg); border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5); margin-bottom: var(--space-3);
}
.days-watch__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-4);
}
.days-watch__title { font-size: var(--text-base); font-weight: 500; }
.days-watch__chevron { color: var(--muted); font-size: 18px; }
.days-watch__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-3); }
.days-watch__item { display: flex; flex-direction: column; gap: 3px; }
.days-watch__date { font-size: var(--text-sm); font-weight: 500; color: var(--burgundy); }
.days-watch__desc { font-size: var(--text-xs); color: var(--muted); line-height: 1.35; }

/* ── Screen 3 — Season ──────────────────────────────────── */
#screen-season { background: var(--linen); }

.season-hero-card {
  margin: var(--space-5);
  background: #3D0A18;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative; overflow: hidden;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.season-hero-card__planet {
  position: absolute; bottom: -10px; right: -10px;
  width: 150px; height: 150px; object-fit: contain; opacity: 0.85;
}
.season-hero-card__eyebrow {
  font-size: var(--text-xs); font-weight: 500;
  color: rgba(240,232,220,0.75); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: var(--space-3); position: relative; z-index: 2;
}
.season-hero-card__headline {
  font-family: var(--font-display);
  font-size: var(--text-xl); font-weight: 400;
  color: var(--linen); line-height: 1.2;
  margin-bottom: var(--space-3);
  position: relative; z-index: 2; max-width: 70%;
}
.season-hero-card__sub {
  font-size: var(--text-sm); font-weight: 300;
  color: rgba(240,232,220,0.7); line-height: 1.5;
  position: relative; z-index: 2; max-width: 65%;
}

.season-cycle { padding: var(--space-5); }
.season-cycle__title { font-size: var(--text-base); font-weight: 500; margin-bottom: 3px; }
.season-cycle__name { font-size: var(--text-sm); color: var(--muted); margin-bottom: var(--space-5); }

.timeline { position: relative; margin-bottom: var(--space-6); }
.timeline__track {
  height: 2px; background: rgba(28,28,26,0.12);
  border-radius: 2px; position: relative; margin: var(--space-4) 0;
}
.timeline__progress {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--charcoal); border-radius: 2px;
}
.timeline__dot {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--linen); border: 2px solid rgba(28,28,26,0.2);
}
.timeline__dot--start { left: 0; }
.timeline__dot--now { background: var(--burgundy); border-color: var(--burgundy); }
.timeline__dot--end { left: 100%; }
.timeline__labels { display: flex; justify-content: space-between; }
.timeline__label { display: flex; flex-direction: column; gap: 2px; }
.timeline__label span:first-child { font-size: var(--text-xs); font-weight: 500; }
.timeline__label span:last-child { font-size: var(--text-xs); color: var(--muted); }
.timeline__label--center { align-items: center; }
.timeline__label--right { align-items: flex-end; }

.season-card {
  background: var(--card-bg); border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5); margin-bottom: var(--space-3);
}
.season-card__title { font-size: var(--text-base); font-weight: 500; margin-bottom: var(--space-2); }
.season-card__text { font-size: var(--text-sm); color: var(--muted); line-height: 1.6; }
.season-card__list { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); }
.season-card__list li {
  font-size: var(--text-sm); color: var(--muted); line-height: 1.45;
  padding-left: var(--space-4); position: relative;
}
.season-card__list li::before { content: '·'; position: absolute; left: var(--space-2); color: var(--burgundy); }

/* ── Season screen — three-layer nudge + section headings ── */
.layer-nudge {
  margin: var(--space-5) var(--space-5) var(--space-2);
  background: rgba(124,29,52,0.06); border-radius: var(--radius-md);
  padding: var(--space-4);
}
.layer-nudge__label { font-size: var(--text-xs); font-weight: 500; color: var(--burgundy); letter-spacing: 0.08em; }
.layer-nudge__text { font-size: var(--text-sm); color: var(--charcoal); line-height: 1.5; margin-top: 4px; }
.layer-nudge__text a { color: var(--burgundy); font-weight: 500; cursor: pointer; text-decoration: none; }
.layer-heading {
  font-size: var(--text-xs); font-weight: 500; color: var(--muted);
  letter-spacing: 0.08em; padding: var(--space-6) var(--space-5) var(--space-2);
}
.season-card--sub { background: rgba(28,28,26,0.04); }

/* ── Screen 4 — Chart ───────────────────────────────────── */
#screen-chart { background: var(--linen); }
.chart-subtitle { text-align: center; font-size: var(--text-sm); color: var(--muted); padding: var(--space-2) 0 var(--space-4); }
.chart-wheel-container { padding: var(--space-2) var(--space-8) var(--space-4); }
.chart-wheel-container img { width: 100%; height: auto; }

.placement-list { padding: 0 var(--space-5); }
.placement-item {
  background: var(--card-bg); border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5); margin-bottom: var(--space-3);
  display: flex; align-items: center; gap: var(--space-4); cursor: pointer;
}
.placement-item__icon { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; }
.placement-item__content { flex: 1; }
.placement-item__title { font-size: var(--text-base); font-weight: 500; margin-bottom: 2px; }
.placement-item__desc { font-size: var(--text-sm); color: var(--muted); line-height: 1.4; }
.placement-item__chevron { color: var(--muted); font-size: 20px; }

.btn-chart-full {
  margin: var(--space-4) var(--space-5) var(--space-8);
  width: calc(100% - var(--space-10));
  background: var(--card-bg); border: 1px solid rgba(28,28,26,0.12);
  color: var(--charcoal); font-size: var(--text-sm);
  padding: var(--space-4); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}

/* ── Screen 5 — Learn ───────────────────────────────────── */
#screen-learn { background: var(--linen); }
.divider-star { display: flex; justify-content: center; padding: var(--space-2) 0 var(--space-3); }
.divider-star img { width: 12px; height: 12px; }

.learn-grid {
  padding: 0 var(--space-5);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.learn-tile {
  background: var(--card-bg); border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-4) var(--space-3);
  cursor: pointer; display: flex; flex-direction: column;
  gap: var(--space-2); position: relative; min-height: 130px;
}
.learn-tile__icon { width: 40px; height: 40px; object-fit: contain; }
.learn-tile__title { font-size: var(--text-base); font-weight: 500; color: var(--charcoal); line-height: 1.3; }
.learn-tile__desc { font-size: var(--text-xs); color: var(--muted); line-height: 1.4; }
.learn-tile__arrow {
  position: absolute; bottom: var(--space-3); right: var(--space-4);
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid rgba(28,28,26,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted);
}
.learn-tile--wide {
  grid-column: 1 / -1; flex-direction: row;
  align-items: center; min-height: auto; gap: var(--space-4);
}
.learn-tile--wide .learn-tile__content { flex: 1; }

/* ── Card expansion + save (Today expanded) ────────────── */
.card--expandable { cursor: pointer; }
.card__planet-extra {
  font-size: var(--text-sm); color: var(--charcoal); line-height: 1.6;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height var(--duration) var(--ease), opacity var(--duration) var(--ease), margin-top var(--duration) var(--ease);
}
.card--expandable.expanded .card__planet-extra {
  max-height: 400px; opacity: 1; margin-top: var(--space-3);
}
.card--expandable.expanded .card__expand { transform: rotate(90deg); }
.card__expand { transition: transform var(--duration) var(--ease); }
.card__heart-btn { display: flex; }
.card__heart-btn.saved .card__heart { opacity: 1; filter: invert(14%) sepia(54%) saturate(2500%) hue-rotate(324deg) brightness(0.9); }

/* ── This week strip (inside Today expanded) ───────────── */
.this-week-strip {
  display: flex; gap: var(--space-2); overflow-x: auto;
  padding-bottom: var(--space-2); margin-bottom: var(--space-3);
  scrollbar-width: none;
}
.this-week-strip::-webkit-scrollbar { display: none; }
.this-week-item {
  flex-shrink: 0; width: 108px;
  background: var(--card-bg); border-radius: var(--radius-md);
  padding: var(--space-3); cursor: pointer;
  border: 1px solid rgba(28,28,26,0.08);
}
.this-week-item.is-today { border-color: var(--burgundy); background: rgba(124,29,52,0.06); }
.this-week-item__day { font-size: var(--text-xs); color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.this-week-item__date { font-size: var(--text-base); font-weight: 500; margin-bottom: var(--space-2); }
.this-week-item__line { font-size: var(--text-xs); color: var(--muted); line-height: 1.4; }

/* ── Screen 6 — People Today ────────────────────────────── */
#screen-people { background: var(--linen); }
.people-sub { font-size: var(--text-sm); color: var(--muted); line-height: 1.5; padding: 0 var(--space-5) var(--space-4); }
.people-tabs {
  display: flex; gap: var(--space-2); padding: 0 var(--space-5) var(--space-4);
  overflow-x: auto; scrollbar-width: none;
}
.people-tabs::-webkit-scrollbar { display: none; }
.people-tab {
  flex-shrink: 0; padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full); font-size: var(--text-sm);
  background: var(--card-bg); color: var(--charcoal);
  border: 1px solid rgba(28,28,26,0.1);
}
.people-tab.active { background: var(--charcoal); color: var(--linen); border-color: var(--charcoal); }
.people-card {
  margin: 0 var(--space-5); background: var(--card-bg);
  border-radius: var(--radius-lg); padding: var(--space-5);
}
.people-card__title {
  font-family: var(--font-display); font-size: var(--text-xl);
  line-height: 1.3; margin-bottom: var(--space-5);
}
.people-row { padding: var(--space-3) 0; border-top: 1px solid rgba(28,28,26,0.08); }
.people-row:first-of-type { border-top: none; padding-top: 0; }
.people-row__label { font-size: var(--text-xs); color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.people-row__text { font-size: var(--text-sm); line-height: 1.55; color: var(--charcoal); }

/* ── Screen 7 — Plan ahead ──────────────────────────────── */
#screen-plan { background: var(--linen); }
.plan-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3);
  padding: 0 var(--space-5); margin-bottom: var(--space-2);
}
.plan-tile {
  background: var(--card-bg); border-radius: var(--radius-md);
  padding: var(--space-4); min-height: 76px;
  display: flex; align-items: center;
  font-size: var(--text-sm); font-weight: 500; color: var(--charcoal);
  border: 1px solid rgba(28,28,26,0.08);
}
.plan-tile.selected { background: var(--burgundy); color: var(--linen); border-color: var(--burgundy); }
.timeframe-tabs { display: flex; gap: var(--space-2); padding: 0 var(--space-5) var(--space-4); }
.timeframe-tab {
  flex: 1; padding: var(--space-3); text-align: center;
  border-radius: var(--radius-md); font-size: var(--text-sm);
  background: var(--card-bg); border: 1px solid rgba(28,28,26,0.1); color: var(--charcoal);
}
.timeframe-tab.selected { background: var(--charcoal); color: var(--linen); border-color: var(--charcoal); }
#find-days-btn:disabled { opacity: 0.4; }

/* ── Screen 8 — Timing result ───────────────────────────── */
#screen-timing { background: var(--linen); }
.timing-best-card {
  background: #3D0A18; border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.timing-best-card__date {
  font-family: var(--font-display); font-size: var(--text-2xl);
  color: var(--linen); margin-bottom: var(--space-3);
}
.timing-best-card__why { font-size: var(--text-sm); color: rgba(240,232,220,0.8); line-height: 1.6; }
.timing-others { display: flex; flex-direction: column; gap: var(--space-3); }
.timing-other-item {
  background: var(--card-bg); border-radius: var(--radius-md);
  padding: var(--space-4); display: flex; justify-content: space-between;
  align-items: baseline; gap: var(--space-3);
}
.timing-other-item__date { font-weight: 500; font-size: var(--text-sm); flex-shrink: 0; }
.timing-other-item__why { font-size: var(--text-xs); color: var(--muted); text-align: right; line-height: 1.4; }

/* ── Icon colour utilities ──────────────────────────────────
   Keep the existing icon set; recolour by function rather than
   swapping assets. Functional icons (nav, section labels) go
   fully monochrome charcoal so they never compete with content.
   Decorative-only icons (dividers, illustrated planets) keep a
   gold treatment, matching "gold for illustration only, never
   small text/UI" from the design-system doc. Tune the filter
   values against the real PNGs once assets are in the repo —
   these are calibrated for a dark-line-art source image. ───── */
.icon-mono {
  filter: brightness(0) saturate(100%);
  opacity: 0.7;
}
.icon-gold {
  filter: brightness(0) saturate(100%) invert(72%) sepia(24%) saturate(694%) hue-rotate(357deg) brightness(94%) contrast(88%);
}
.nav-item img { filter: brightness(0) saturate(100%); }
.section-label img { filter: brightness(0) saturate(100%); opacity: 0.55; }
.today-hero__divider img,
.divider-star img { filter: brightness(0) saturate(100%) invert(72%) sepia(24%) saturate(694%) hue-rotate(357deg) brightness(94%) contrast(88%); }

/* ── Today indicators (Energy / Communication / Connection) ─ */
.today-indicators {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3); margin-bottom: var(--space-5);
}
.today-indicator { text-align: center; }
.today-indicator__label {
  font-size: var(--text-xs); color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px;
}
.today-indicator__value { font-size: var(--text-sm); font-weight: 500; color: var(--charcoal); }

/* ── Evening check-in ────────────────────────────────────── */
.btn-explore--outline {
  background: transparent; color: var(--charcoal);
  border: 1px solid rgba(28,28,26,0.2);
}
.checkin-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3);
  padding: 0 var(--space-5); margin-bottom: var(--space-2);
}
.checkin-chip {
  background: var(--card-bg); border: 1px solid rgba(28,28,26,0.1);
  border-radius: var(--radius-md); padding: var(--space-4);
  text-align: center; font-size: var(--text-sm); color: var(--charcoal);
}
.checkin-chip.selected { background: var(--burgundy); color: var(--linen); border-color: var(--burgundy); }
.checkin-fit-row { display: flex; gap: var(--space-2); padding: 0 var(--space-5) var(--space-4); }
.checkin-fit-btn {
  flex: 1; padding: var(--space-3); text-align: center; font-size: var(--text-sm);
  background: var(--card-bg); border: 1px solid rgba(28,28,26,0.1); border-radius: var(--radius-md);
  color: var(--charcoal);
}
.checkin-fit-btn.selected { background: var(--charcoal); color: var(--linen); border-color: var(--charcoal); }

/* ── Utilities ──────────────────────────────────────────── */
.scroll-pad { height: var(--space-10); }
