/* Poise onboarding — prototype chrome & choreography styles.
   All brand values come from the DS tokens; this file only adds
   prototype-level keyframes and interaction states. */

html, body { margin: 0; height: 100%; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body { background: #121114; overflow: hidden; }
#root { height: 100%; }

/* ---- Reviewer stage (outside the phone) ---- */
.onb-stage { height: 100vh; overflow: auto; }

/* ---- Mobile web export: the phone fills the viewport, no chrome ---- */
.onb-mobile-stage { position: fixed; inset: 0; height: 100vh; height: 100dvh; overflow: hidden; overscroll-behavior: none; background: var(--bg-canvas); }

/* Lets a screen's content scroll past a real (short) mobile viewport
   instead of clipping - e.g. the paywall - without showing a scrollbar,
   so it still reads as the app rather than a web page. */
.onb-scroll-y { overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
.onb-scroll-y::-webkit-scrollbar { display: none; }
.onb-note { font-family: var(--font-sans); font-size: 12px; color: #6E6C70; letter-spacing: 0.02em; text-align: center; max-width: 560px; line-height: 1.55; padding: 0 16px; }
.onb-note b { color: #97959B; font-weight: 600; }

/* Desktop-only escape hatch back to the landing page. Rendered only by the
   desktop branch of App - mobile never mounts it. */
.onb-home-link {
  position: fixed; top: 16px; left: 16px; z-index: 99;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(2, 0, 3, 0.85); border: 1px solid rgba(233, 231, 234, 0.12);
  font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
  color: #97959B; text-decoration: none;
  transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.onb-home-link:hover { color: #BDEECD; border-color: rgba(189, 238, 205, 0.35); }
.onb-home-link:focus-visible { outline: 2px solid #BDEECD; outline-offset: 2px; }

/* ---- Reduced choreography (Tweaks: motion off) ---- */
body.no-motion *, body.no-motion *::before, body.no-motion *::after {
  animation-duration: 0.001ms !important;
  animation-delay: 0ms !important;
  transition-duration: 0.001ms !important;
}

/* ---- Screen entrance: the quiet default grammar ---- */
.onb-screen-enter { animation: onbRise 380ms var(--ease-out) both; }
.onb-screen-enter.from-black { animation: onbFade 650ms var(--ease-out) both; }
/* pointer-events stay off until the element has fully arrived (flips at ~99.5%),
   so CTAs and skip links can't be tapped while still invisible/animating in. */
@keyframes onbRise { from { opacity: 0; transform: translateY(12px); pointer-events: none; } 99% { pointer-events: none; } to { opacity: 1; transform: none; pointer-events: auto; } }
.rise { opacity: 0; pointer-events: none; animation: onbRise 460ms var(--ease-out) forwards; }
.fade { opacity: 0; pointer-events: none; animation: onbFade 600ms var(--ease-out) forwards; }

/* ---- Prewarm: S1 mounts beneath the splash so its film is loaded and
   rolling before the reveal. Entrance rises hold at frame 0 (paused, not
   reset) and resume the moment the prewarm class drops at handoff. ---- */
.onb-prewarm .rise, .onb-prewarm .fade { animation-play-state: paused; }
@keyframes onbFade { from { pointer-events: none; } 99% { pointer-events: none; } to { opacity: 1; pointer-events: auto; } }

/* ---- S2c nudge demo: pulse rings around the AirPod ---- */
@keyframes podPulse { from { transform: scale(0.4); opacity: 0.9; } to { transform: scale(2.6); opacity: 0; } }
.pod-pulse { transform-box: fill-box; transform-origin: center; animation: podPulse 700ms var(--ease-out) both; }

/* ---- S2c posture graph: "With Poise" vs "Without Poise" over time ---- */
.gA { margin: 18px 0 4px; padding: 4px 4px 0; }
.gA .chart-row { position: relative; display: flex; align-items: stretch; }
.gA svg { display: block; width: 100%; height: 96px; flex: 1; min-width: 0; margin-left: 16px; }
.gA .y-axis-label { position: absolute; left: 0; top: 44.44%; transform: translateY(-50%); width: 16px; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 300ms ease-out; }
.gA.play .y-axis-label { opacity: 1; }
.gA .y-axis-label > span { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; color: var(--text-secondary); white-space: nowrap; transform: rotate(-90deg); }
.gA .y-axis-label > span span { transform: none; display: inline; }
.gA .line-labels { flex: none; width: 84px; position: relative; }
.gA .line-label { position: absolute; left: 6px; transform: translateY(-50%); font-size: 10px; font-weight: 600; white-space: nowrap; opacity: 0; transition: opacity 400ms ease-out; }
.gA .line-label.grey { color: var(--text-secondary); top: 69.1%; }
.gA .line-label.mint { color: var(--mint); top: 13.6%; }
.gA .x-axis-row { display: flex; gap: 2px; margin-top: 2px; }
.gA .x-axis-spacer { flex: none; width: 16px; }
.gA .x-axis-spacer-right { flex: none; width: 84px; }
.gA .x-axis-label { flex: 1; text-align: center; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; color: var(--text-secondary); opacity: 0; transition: opacity 300ms ease-out 200ms; }
.gA.play .x-axis-label { opacity: 1; }
.gA .axisline { stroke: var(--border-strong); stroke-width: 1.5; }
.gA .axis-y { stroke-dasharray: 112; stroke-dashoffset: 112; }
.gA.play .axis-y { animation: gaAxisY 350ms ease-out forwards; }
@keyframes gaAxisY { to { stroke-dashoffset: 0; } }
.gA .axis-x { stroke-dasharray: 280; stroke-dashoffset: 280; }
.gA.play .axis-x { animation: gaAxisX 350ms ease-out 200ms forwards; }
@keyframes gaAxisX { to { stroke-dashoffset: 0; } }
.gA .greyline { stroke: var(--text-secondary); stroke-width: 1.5; opacity: 0.7; stroke-dasharray: 262; stroke-dashoffset: 262; }
.gA.play .greyline { animation: gaDrawGrey 2000ms cubic-bezier(.3,.7,.35,1) 600ms forwards; }
@keyframes gaDrawGrey { to { stroke-dashoffset: 0; } }
.gA .linepath { stroke-dasharray: 272; stroke-dashoffset: 272; }
.gA.play .linepath { animation: gaDraw 2000ms cubic-bezier(.3,.7,.35,1) 600ms forwards; }
@keyframes gaDraw { to { stroke-dashoffset: 0; } }
.gA .dot { display: none; }
.gA .ring { opacity: 0; transform-origin: center; transform-box: fill-box; }
.gA.play .ring { animation: gaRing 700ms var(--ease-out) 2600ms forwards; }
@keyframes gaRing { from { opacity: 0.8; transform: scale(0.4); } to { opacity: 0; transform: scale(2.4); } }
.gA.play .line-label.grey { transition-delay: 2600ms; opacity: 1; }
.gA.play .line-label.mint { transition-delay: 2600ms; opacity: 1; }
/* Quarter note beside the ear: silent-phone cue that a sound played. Plays once with the pulse. */
@keyframes podNote {
  0% { opacity: 0; transform: translateY(26px) scale(0.7); }
  18% { opacity: 1; transform: translateY(0) scale(1); }
  62% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-60px) scale(1); }
}
.pod-note { transform-box: fill-box; transform-origin: center; animation: podNote 1100ms var(--ease-out) both; }
.pod-pulse.p2 { animation-delay: 220ms; }

/* ---- Option cards (the one selection grammar, used 5 times) ----
   No radio indicators: selection reads through the surface itself, matching
   the app's card language (hairline border, surface lift, mint only as the
   selected accent). ---- */
.opt-card { display: flex; align-items: center; justify-content: center; width: 100%; text-align: center; padding: 16px 18px; border-radius: var(--radius-card); background: var(--surface-card); border: 1px solid var(--border-hairline); color: var(--text-primary); font: 500 17px/1.35 'SF Pro Text', sans-serif; cursor: pointer; transition: background var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out); }
.opt-card:active { transform: scale(0.97); }
.opt-card.disabled { opacity: 0.32; pointer-events: none; }
.opt-card.sel { border-color: rgba(189, 238, 205, 0.55); background: rgba(189, 238, 205, 0.10); color: var(--mint); opacity: 1; animation: optBreathe 460ms var(--ease-out); }
/* gentle breathe on select: a soft settle, not a bounce */
@keyframes optBreathe { 0% { transform: scale(1); } 35% { transform: scale(0.972); } 75% { transform: scale(1.01); } 100% { transform: scale(1); } }
.haptic-tick { animation: hapticTick 340ms var(--ease-out); }
@keyframes hapticTick { 0% { transform: scale(1); } 30% { transform: scale(0.974); } 65% { transform: scale(1.006); } 100% { transform: scale(1); } }

/* ---- iOS system alert ---- */
.ios-alert-dim { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); display: flex; align-items: center; justify-content: center; z-index: 40; animation: onbFade 200ms ease-out both; }
.ios-alert { width: 270px; border-radius: 14px; background: rgba(48, 47, 50, 0.92); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); overflow: hidden; font-family: var(--font-sans); text-align: center; animation: alertPop 240ms var(--ease-out) both; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5); }
@keyframes alertPop { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1); } }
.ios-alert-title { font-size: 16px; font-weight: 600; color: #fff; padding: 18px 16px 4px; line-height: 1.25; }
.ios-alert-msg { font-size: 13px; color: rgba(255, 255, 255, 0.92); padding: 0 16px 16px; line-height: 1.35; }
.ios-alert-row { display: flex; border-top: 0.5px solid rgba(255, 255, 255, 0.18); }
.ios-alert-btn { flex: 1; padding: 12px 4px; font-size: 17px; color: #0A84FF; background: none; border: none; cursor: pointer; font-family: inherit; }
.ios-alert-btn + .ios-alert-btn { border-left: 0.5px solid rgba(255, 255, 255, 0.18); }
.ios-alert-btn.bold { font-weight: 600; }
.ios-alert-btn:active { background: rgba(255, 255, 255, 0.07); }

/* ---- S11a incompatible: centered modal ---- */
/* Frozen S11 background (no entrance re-animation) */
.onb-frozen, .onb-frozen * { animation: none !important; }
.onb-frozen .rise { opacity: 1 !important; pointer-events: auto !important; }
@keyframes modalPop { from { opacity: 0; transform: scale(0.96) translateY(8px); } to { opacity: 1; transform: none; } }
.incompat-card { animation: modalPop 240ms var(--ease-out) both; }
.incompat-modal {
  position: absolute;
  inset: 0;
  z-index: 51;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: rgba(2,0,3,0.45);
  animation: onbFade 200ms ease-out both;
}
.incompat-modal > div {
  position: relative;
  width: 100%;
  background: var(--surface-elevated);
  border: 1px solid var(--border-hairline);
  border-radius: 20px;
  padding: 24px 20px 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}
.sheet-dim { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); z-index: 50; animation: onbFade 240ms ease-out both; }
.bottom-sheet { position: absolute; left: 0; right: 0; bottom: 0; z-index: 51; border-radius: 20px 20px 0 0; background: var(--surface-elevated); border-top: 1px solid var(--border-strong); padding: 12px 24px 36px; animation: sheetUp 360ms var(--ease-out) both; box-shadow: var(--shadow-sheet); }
@keyframes sheetUp { from { transform: translateY(100%); } to { transform: none; } }
.sheet-grabber { width: 38px; height: 5px; border-radius: 3px; background: var(--border-strong); margin: 0 auto 18px; }

/* ---- Strike-through (price anchor) ---- */
.strike { position: relative; display: inline-block; }
.strike::after { content: ''; position: absolute; left: -2px; top: 54%; height: 1.5px; width: 0; background: var(--gray-400); animation: strikeIn 480ms var(--ease-out) forwards; animation-delay: var(--strike-delay, 500ms); }
@keyframes strikeIn { to { width: calc(100% + 4px); } }

/* ---- S18a committed: 5-day streak dots, day 1 lit, day 5 = goal ---- */
.streak-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--surface-elevated); border: 1.5px solid rgba(233, 231, 234, 0.5); box-sizing: border-box; }
.streak-dot-active { background: var(--text-primary); border: none; box-shadow: 0 0 22px rgba(189, 238, 205, 0.55); }
.streak-dot-active.streak-pop { animation: streakPop 850ms var(--ease-out) both; }
@keyframes streakPop { 0% { transform: scale(0.5); opacity: 0; box-shadow: none; } 60% { transform: scale(1.45); box-shadow: var(--glow-mint); } 100% { transform: scale(1); opacity: 1; } }
/* Day 5: the goal. Dashed mint ring, unfilled until earned */
.streak-goal { width: 30px; height: 30px; border-radius: 50%; box-sizing: border-box; border: 1.5px dashed var(--mint); display: flex; align-items: center; justify-content: center; color: var(--mint); flex-shrink: 0; }
.streak-num { font: 600 12px var(--font-sans); transition: color 300ms var(--ease-out); }

/* ---- Hold-to-commit ---- */
.hold-shake { animation: holdShake 80ms linear infinite; }
@keyframes holdShake { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(var(--amp, 0.5px), calc(var(--amp, 0.5px) * -1)); } 50% { transform: translate(calc(var(--amp, 0.5px) * -1), var(--amp, 0.5px)); } 75% { transform: translate(var(--amp, 0.5px), var(--amp, 0.5px)); } }
@keyframes successBurst { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(2.1); opacity: 0; } }

/* ---- Ambient / signature bits ---- */
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.logo-breathe { animation: breathe 4.6s ease-in-out infinite; }
@keyframes pulseRing { 0% { transform: scale(0.85); opacity: 0.55; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes toastUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes pulseRingStay { 0% { transform: scale(0.88); opacity: 0.6; } 55% { transform: scale(1.55); opacity: 0; } 100% { transform: scale(1); opacity: 0.85; } }
@keyframes nudgeFlash { 0% { opacity: 0; } 18% { opacity: 1; } 100% { opacity: 0; } }
@keyframes monitorDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes scanSweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.spin-slow { animation: scanSweep 1.4s linear infinite; }

/* ---- S11 AirPods compatibility check: live search cues ----
   Activity indicators, not decorative loops: they pulse only while the screen
   is actively scanning and stop when it resolves to a verdict. ---- */
@keyframes airpodsScan { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.965); } }
.airpods-scan { animation: airpodsScan 1.45s ease-in-out infinite; transform-origin: center; }
@keyframes searchTextPulse { 0%, 100% { color: var(--text-secondary); } 50% { color: var(--mint); } }
.search-status { display: inline-flex; align-items: center; gap: 9px; font: 500 15px var(--font-sans); animation: searchTextPulse 1.45s ease-in-out -0.725s infinite; }
@keyframes glassNudge { 0%, 70%, 100% { transform: rotate(0deg); } 80% { transform: rotate(-18deg); } 90% { transform: rotate(12deg); } }
.search-status svg { flex: none; animation: glassNudge 2.4s ease-in-out infinite; transform-origin: 11px 11px; }
.status-warn { display: inline-flex; align-items: center; gap: 9px; font: 600 15px var(--font-sans); color: var(--status-warn); }
.status-warn svg { flex: none; }
.status-ok { display: inline-flex; align-items: center; gap: 9px; font: 600 15px var(--font-sans); color: var(--mint); }
.status-ok svg { flex: none; }

/* ---- S0 splash: trace → pause(400ms) → rise, wordmark synced ---- */
.splash-edge { stroke-dasharray: 100; stroke-dashoffset: 100; animation: splashEdgeDraw 1300ms cubic-bezier(0.45, 0, 0.25, 1) 200ms forwards, splashEdgeFade 600ms ease-out 2450ms forwards; }
@keyframes splashEdgeDraw { to { stroke-dashoffset: 0; } }
@keyframes splashEdgeFade { to { opacity: 0; } }
.splash-fill { clip-path: inset(100% 0 0 0); animation: splashFillRise 900ms cubic-bezier(0.45, 0, 0.25, 1) 1900ms forwards; }
@keyframes splashFillRise { to { clip-path: inset(-10% 0 0 0); } }
.splash-word { opacity: 0; transform: translateX(-50%) translateY(14px); animation: splashWordRise 900ms cubic-bezier(0.45, 0, 0.25, 1) 1900ms forwards; }
@keyframes splashWordRise { to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .splash-edge { animation: none; stroke-dashoffset: 0; opacity: 0; }
  .splash-fill { animation: none; clip-path: none; }
  .splash-word { animation: none; opacity: 1; transform: translateX(-50%); }
}

/* ---- S1 welcome (film) ---- */
.film-zoom { animation: filmZoom 18s ease-in-out infinite alternate; }
@keyframes filmZoom { from { transform: scale(1); } to { transform: scale(1.07); } }
/* Film headline: variable SF Pro at natural width — editorial weight, not the compressed
   display cut (which reads cheap over footage). */
.film-headline {
  font-family: 'SF Pro', 'SF Pro Text', -apple-system, sans-serif;
  font-weight: 650; font-stretch: 100%;
  font-size: 44px; line-height: 1.08; letter-spacing: -0.021em;
  color: var(--text-primary); text-wrap: balance;
}

/* ---- Drawn underline (S2 resolve) ---- */
.underline-draw { position: relative; display: inline-block; }
.underline-draw::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 1px; background: var(--cyan-soft); transform: scaleX(0); transform-origin: left; }
.underline-draw.on::after { animation: drawLine 520ms var(--ease-out) 200ms forwards; }
@keyframes drawLine { to { transform: scaleX(1); } }

/* ---- Carousel ---- */
.carousel-track { display: flex; transition: transform 420ms var(--ease-out); }
.car-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gray-700); transition: background var(--duration-base) var(--ease-out); }
.car-dot.on { background: var(--mint); }

/* ---- S14 showcase: horizontal "day with Poise" walkthrough ---- */
.day-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.day-track::-webkit-scrollbar { display: none; }
.day-pane { flex: 0 0 100%; scroll-snap-align: center; box-sizing: border-box; }
.day-fade { position: absolute; top: 0; right: 0; width: 40px; bottom: 0; pointer-events: none; background: linear-gradient(90deg, transparent, var(--bg-canvas)); transition: opacity 300ms var(--ease-out); }
.day-next { position: absolute; right: 2px; bottom: 10px; width: 34px; height: 34px; border-radius: 50%; background: var(--surface-elevated); border: 1px solid var(--border-hairline); display: flex; align-items: center; justify-content: center; color: var(--mint); cursor: pointer; transition: opacity 250ms var(--ease-out), transform 150ms var(--ease-out); }
.day-next:active { transform: scale(0.94); }
.day-next.done { opacity: 0; pointer-events: none; }
.day-next.peek { animation: dayNextPeek 900ms var(--ease-out) 1; }
@keyframes dayNextPeek { 0%, 100% { transform: translateX(0); } 35% { transform: translateX(4px); } 60% { transform: translateX(-1px); } }
.day-prev { position: absolute; left: 2px; bottom: 10px; width: 34px; height: 34px; border-radius: 50%; background: var(--surface-elevated); border: 1px solid var(--border-hairline); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); cursor: pointer; opacity: 0; transition: opacity 250ms var(--ease-out), transform 150ms var(--ease-out); pointer-events: none; }
.day-prev:active { transform: scale(0.94); }
.day-prev.shown { opacity: 1; pointer-events: auto; }

/* ---- Plan cards (paywall) ---- */
.plan-card { width: 100%; text-align: left; border-radius: var(--radius-card); padding: 16px; background: var(--surface-card); border: 1.5px solid var(--border-hairline); cursor: pointer; font-family: var(--font-sans); color: var(--text-primary); transition: border-color var(--duration-fast) var(--ease-out), background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out); }
.plan-card:active { transform: scale(0.98); }
.plan-card.sel { border-color: var(--mint); background: rgba(189, 238, 205, 0.07); }

/* ---- S20 Paywall (port of PoisePaywallView.swift) ---- */
.pw-glow { position: absolute; top: 0; left: 0; right: 0; height: 300px; pointer-events: none; z-index: 0; background: radial-gradient(120% 90% at 50% -8%, rgba(189, 238, 205, 0.16), transparent 68%); }
.pw-back { width: 34px; height: 34px; border-radius: 50%; background: none; border: none; display: flex; align-items: center; justify-content: center; color: var(--text-secondary); cursor: pointer; transition: transform 120ms var(--ease-out); }
.pw-back:active { transform: scale(0.94); }

.pw-plan { width: 100%; text-align: left; padding: 0; border-radius: 16px; background: var(--surface-card); border: 1.5px solid var(--surface-elevated); cursor: pointer; font-family: var(--font-sans); color: var(--text-primary); overflow: hidden; transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out), box-shadow 200ms var(--ease-out); }
.pw-plan.sel { border-color: var(--mint); background: #14201a; box-shadow: 0 6px 22px rgba(189, 238, 205, 0.15); }
.pw-plan.pump { animation: pwPump 340ms var(--ease-out); }
@keyframes pwPump { 0% { transform: scale(1); } 24% { transform: scale(0.94); } 100% { transform: scale(1); } }
.pw-band { text-align: center; font: 600 10px var(--font-sans); letter-spacing: 1.2px; color: var(--mint); padding: 5px 0; background: linear-gradient(180deg, rgba(189, 238, 205, 0.18), rgba(189, 238, 205, 0.06)); }
.pw-plan-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 18px; }
.pw-save { font: 800 10px var(--font-sans); letter-spacing: 0.3px; color: var(--mint); padding: 2px 7px; background: rgba(189, 238, 205, 0.14); border-radius: 6px; }

/* Exit-intent sheet (port of PoiseTrialExitView) — a partial sheet that rises
   over the dimmed paywall (never full-screen). */
.pw-exit-sheet { position: absolute; left: 0; right: 0; bottom: 0; height: 100%; z-index: 60; background: var(--bg-canvas); border-radius: 28px 28px 0 0; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 -14px 44px rgba(0, 0, 0, 0.55); animation: sheetUp 400ms var(--ease-out) both; }
.pw-exit-glow { position: absolute; top: 0; left: 0; right: 0; height: 300px; pointer-events: none; z-index: 0; background: radial-gradient(120% 90% at 50% -6%, rgba(189, 238, 205, 0.22), transparent 66%); }
.pw-offer-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 16px 22px; background: #14201a; border: 1.5px solid var(--mint); border-radius: 20px; box-shadow: 0 10px 34px rgba(189, 238, 205, 0.18); }
.pw-offer-badge { font: 800 13px var(--font-sans); letter-spacing: 0.5px; color: var(--text-on-accent); background: var(--mint); padding: 5px 14px; border-radius: 9px; }

/* ---- Ghost text buttons ---- */
.ghost-link { background: none; border: none; color: var(--text-secondary); font: 500 15px var(--font-sans); cursor: pointer; padding: 10px; transition: color var(--duration-fast) var(--ease-out); }
.ghost-link:hover { color: var(--text-primary); }

input.poise-input { width: 100%; box-sizing: border-box; background: var(--surface-elevated); border: 1px solid var(--border-strong); border-radius: var(--radius-card); color: var(--text-primary); font: 400 17px var(--font-sans); padding: 13px 14px; outline: none; }
input.poise-input:focus { border-color: rgba(189, 238, 205, 0.45); }

/* ---- S14a/b scheduled sessions: day chips, rows, wheel picker ---- */
.day-chip { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0; background: var(--surface-elevated); border: 1px solid var(--border-hairline); color: var(--text-secondary); font: 600 15px 'SF Pro Text', sans-serif; cursor: pointer; transition: background var(--duration-fast) var(--ease-out), border-color var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out); }
.day-chip:active { transform: scale(0.94); }
.day-chip.sel { background: rgba(189, 238, 205, 0.14); border-color: rgba(189, 238, 205, 0.55); color: var(--mint); }

.sched-row { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; padding: 14px 0; cursor: pointer; }
.sched-chip { background: var(--surface-elevated); border-radius: 8px; padding: 7px 12px; font: 400 17px 'SF Pro Text', sans-serif; color: var(--text-primary); font-variant-numeric: tabular-nums; transition: color var(--duration-fast) var(--ease-out); }
.sched-chip.open { color: var(--mint); }

.wheel-col { position: relative; z-index: 1; overflow-y: scroll; scroll-snap-type: y mandatory; scrollbar-width: none; -ms-overflow-style: none; overscroll-behavior: contain; -webkit-mask-image: linear-gradient(180deg, transparent 2%, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.95) 42%, #000 50%, rgba(0, 0, 0, 0.95) 58%, rgba(0, 0, 0, 0.25) 80%, transparent 98%); mask-image: linear-gradient(180deg, transparent 2%, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.95) 42%, #000 50%, rgba(0, 0, 0, 0.95) 58%, rgba(0, 0, 0, 0.25) 80%, transparent 98%); }
.wheel-col::-webkit-scrollbar { display: none; }
.wheel-item { display: flex; align-items: center; justify-content: center; width: 100%; scroll-snap-align: center; background: none; border: none; padding: 0; font: 400 20px 'SF Pro Text', sans-serif; color: var(--text-primary); font-variant-numeric: tabular-nums; cursor: pointer; user-select: none; -webkit-user-select: none; }
