/* Hummingbird — coordinator landing page.
   Mobile-first (canvas v3); desktop treatments layered on at >=900px (canvas v2). */

:root {
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --teal: #007A85;
  --teal-bright: #00ABB1;
  --mint: #b7e4c7;
  --cta-gradient: linear-gradient(135deg, #00ABB1 0%, #00939a 55%, #007f85 100%);

  --ink: #060D0E;
  --ink-raised: rgba(255, 255, 255, 0.04);
  --ink-raised-hi: rgba(255, 255, 255, 0.055);
  --hairline: rgba(255, 255, 255, 0.07);
  --hairline-teal: rgba(0, 171, 177, 0.18);

  --fg: #F4FAF9;
  --fg-body: #9DB2B0;
  --fg-dim: #8FA3A2;
  --fg-faint: #7E9291;
  --fg-faintest: #6F8281;

  --dim-physical: #FF6F61;
  --dim-nutrition: #FF9800;
  --dim-mind: #FFD700;
  --dim-sleep: #4A9EEA;
  --dim-social: #B15AD6;

  --col: 560px;
  --pad: 20px;
  --transition: 0.3s ease;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: #E9F1F0;
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* Only pages carrying the sticky mobile CTA bar need room reserved for it. */
body.has-cta-bar { padding-bottom: 84px; }

a { color: #7FD8D5; text-decoration: none; }
a:hover { color: var(--mint); }
/* height:auto is required alongside the width/height attributes, or the attribute
   height wins as a presentational hint and images render at full intrinsic height. */
img { max-width: 100%; height: auto; }
::selection { background: rgba(0, 171, 177, 0.35); }

@keyframes hbBreathe { 0%, 100% { transform: scale(1); opacity: .55 } 50% { transform: scale(1.08); opacity: .8 } }
@keyframes hbDrift   { 0%, 100% { transform: translateY(0) }         50% { transform: translateY(-10px) } }

/* ── Shared primitives ─────────────────────────────────────── */

.col {
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 14px;
}
.eyebrow.is-quiet { color: var(--fg-faint); }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 0;
}
h1 { font-size: clamp(2.15rem, 9.5vw, 3rem); line-height: 1.06; letter-spacing: -0.035em; text-wrap: balance; margin-bottom: 18px; }
h2 { font-size: clamp(1.7rem, 7.4vw, 2.3rem); line-height: 1.1; margin-bottom: 16px; }
h3 { font-size: 1.28rem; line-height: 1.18; letter-spacing: -0.028em; }

.lede  { color: var(--fg-body); line-height: 1.68; font-size: 15px; margin: 0; }
.muted { color: var(--fg-dim);  line-height: 1.68; font-size: 15px; margin: 0; }

section { padding-top: 70px; }

/* Reveal-on-scroll. Elements start visible so the page still reads with JS off. */
[data-reveal] { transition: opacity 660ms cubic-bezier(.22,.8,.2,1), transform 660ms cubic-bezier(.22,.8,.2,1); }

/* Horizontal rails bleed to the viewport edge but align to the column. */
.rail {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-left: max(var(--pad), calc((100% - var(--col)) / 2 + var(--pad)));
  padding-right: max(var(--pad), calc((100% - var(--col)) / 2 + var(--pad)));
  /* Without this, snapping aligns cards to the raw edge and swallows the inset. */
  scroll-padding-left: max(var(--pad), calc((100% - var(--col)) / 2 + var(--pad)));
}
.rail::-webkit-scrollbar { display: none; }

.card {
  border-radius: 26px;
  background: var(--ink-raised);
  border: 1px solid var(--hairline);
  overflow: hidden;
}

/* ── Buttons ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--cta-gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 28px rgba(0, 171, 177, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 36px rgba(0, 171, 177, 0.26); }
.btn:active { transform: translateY(-1px); }
.btn--wide { display: flex; width: 100%; }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: 13.5px; }
.btn--bar { min-height: 46px; padding: 0 22px; font-size: 14.5px; font-weight: 800; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Scroll progress + header ──────────────────────────────── */

.progress-track {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 60;
  background: rgba(255, 255, 255, 0.06);
}
.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #007A85, #00ABB1 60%, #b7e4c7);
}

.site-header {
  position: fixed;
  top: 2px;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 13, 14, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
}
.brand:hover { color: var(--fg); }
.brand img { height: 28px; width: auto; }

.header-nav { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  font-size: 17px;
  cursor: pointer;
  transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.1); }

/* Slide-out drawer keeps the rest of the site reachable from this page. */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 84vw);
  z-index: 9998;
  padding: 22px 24px;
  overflow-y: auto;
  background: #0A1416;
  border-left: 1px solid var(--hairline);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.22,.8,.2,1);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.nav-drawer a {
  display: block;
  padding: 12px 4px;
  font-size: 15px;
  color: #D6E4E3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-drawer a:hover { color: var(--mint); }
.nav-drawer .drawer-section {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 22px 0 6px;
}
.close-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 0 10px auto;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  font-size: 22px;
  cursor: pointer;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(3, 8, 9, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ── Hero ──────────────────────────────────────────────────── */

.hero { position: relative; padding: 88px 0 44px; overflow: hidden; }
.hero .glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,171,177,0.28), rgba(0,171,177,0) 68%);
  filter: blur(18px);
  pointer-events: none;
  animation: hbBreathe 15s ease-in-out infinite;
}
.hero .col { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 18px; }
.hero .lede { font-size: 1.02rem; line-height: 1.62; margin-bottom: 26px; }
.hero-secondary { display: none; }

.store-badges { display: flex; gap: 10px; margin-top: 16px; }
.store-badge {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}
.store-badge .mark { flex: none; width: 20px; height: 20px; border-radius: 6px; border: 1px dashed rgba(255,255,255,0.35); }
.store-badge .lines { line-height: 1.15; }
.store-badge .kicker { display: block; font-size: 8px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-faint); }
.store-badge .name { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: #E9F1F0; }

.hero-art { position: relative; z-index: 2; margin-top: 34px; }
.hero-art .frame {
  position: relative;
  height: min(66vh, 420px);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0, 171, 177, 0.22);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 16px 44px rgba(0,122,133,0.2);
}
.hero-art .inset {
  position: absolute;
  right: -6px;
  bottom: -30px;
  width: 118px;
  border-radius: 20px;
  padding: 5px;
  background: linear-gradient(160deg, #2a3839, #0c1415);
  box-shadow: 0 22px 44px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.09);
  animation: hbDrift 9s ease-in-out infinite;
}
.hero-art .inset img { display: block; width: 100%; border-radius: 16px; }
.hero-art .pill {
  position: absolute;
  left: 12px;
  bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(6, 13, 14, 0.84);
  border: 1px solid rgba(0, 171, 177, 0.3);
  backdrop-filter: blur(10px);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--mint);
}

/* Portrait placeholders — swap for real coordinator photography. */
.portrait {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(0,171,177,0.16), rgba(0,171,177,0) 70%),
    linear-gradient(160deg, #162224, #0A1214);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--fg-faint);
}
.portrait .icon { font-size: 22px; opacity: 0.5; }
.portrait span { font-size: 12px; line-height: 1.5; max-width: 24ch; }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── Premise ───────────────────────────────────────────────── */

.premise { padding-top: 78px; }
.premise .statement {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 6vw, 1.9rem);
  line-height: 1.26;
  letter-spacing: -0.028em;
  color: var(--fg);
  margin: 0;
}
.premise .statement em { font-style: normal; color: var(--fg-faint); }

/* ── Coordinator ───────────────────────────────────────────── */

.coordinator-card { margin-top: 28px; border: 1px solid rgba(0, 171, 177, 0.16); background: rgba(255,255,255,0.035); }
.coordinator-card .photo { position: relative; height: 300px; }
.coordinator-card .body { padding: 22px 20px 24px; }
.coordinator-card .name { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; color: var(--fg); line-height: 1.1; }
.coordinator-card .role { font-size: 12.5px; color: var(--teal-bright); margin-top: 7px; }

.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 4px; }
.tags span {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  color: #C9DCDB;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.huis { display: flex; flex-direction: column; margin: 22px 0 0; padding: 0; list-style: none; }
.huis dl { margin: 0; }
.huis li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 4px; border-bottom: 1px solid var(--hairline); }
.huis li:last-child { border-bottom: 0; }
.huis .letter {
  flex: none;
  width: 26px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(0, 171, 177, 0.85);
  line-height: 1;
}
.huis dt { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--fg); line-height: 1.5; }
.huis dd { margin: 4px 0 0; font-size: 14px; color: var(--fg-dim); line-height: 1.5; }

/* ── Your week ─────────────────────────────────────────────── */

.week { padding-top: 80px; }
.week .intro { padding-bottom: 26px; }
.week .intro em { font-style: normal; color: #C9DCDB; }
.week-rail { gap: 14px; scroll-snap-type: x mandatory; padding-top: 4px; padding-bottom: 20px; }
.week-card {
  flex: none;
  width: min(84vw, 320px);
  scroll-snap-align: center;
  border-radius: 26px;
  overflow: hidden;
  background: var(--ink-raised);
  border: 1px solid var(--hairline);
  transition: transform 150ms cubic-bezier(.4,0,.2,1);
}
.week-card:active { transform: scale(0.99); }
.week-card.is-lead { border-color: var(--hairline-teal); }
.week-card .head { padding: 20px 20px 18px; }
.week-card .day {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.week-card h3 { margin: 10px 0; }
.week-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--fg-dim); }
.week-card .shot { height: 210px; overflow: hidden; display: flex; justify-content: center; }
.week-card .shot .device {
  width: 138px;
  border-radius: 22px 22px 0 0;
  padding: 6px 6px 0;
  background: linear-gradient(160deg, #2a3839, #0c1415);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.week-card .shot img { display: block; width: 100%; border-radius: 17px 17px 0 0; }

.live-card {
  margin: 0 16px 16px;
  border-radius: 20px;
  padding: 18px;
  background: var(--cta-gradient);
  box-shadow: 0 12px 26px rgba(0, 171, 177, 0.22);
}
.live-card .kicker { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.live-card .title { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: #fff; margin-top: 6px; }
.live-card .sub { font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 4px; }

.dots { display: flex; justify-content: center; gap: 4px; padding: 0 var(--pad); }
.dots button {
  width: 34px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transition: transform 150ms;
}
.dots button:active { transform: scale(0.94); }
.dots i { display: block; width: 26px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.18); transition: background 250ms; }
.dots button[aria-current="true"] i { background: var(--teal-bright); }

/* Desktop-only sticky week panel (canvas v2) */
.week-sticky { display: none; }

/* ── Two screens ───────────────────────────────────────────── */

.segmented {
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
}
.segmented button {
  flex: 1;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--fg-dim);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 250ms, color 250ms;
}
.segmented button[aria-selected="true"] { background: rgba(0, 171, 177, 0.18); color: #E4F3F2; }
.segmented button[aria-selected="true"][data-screen="hers"] { background: var(--cta-gradient); color: #fff; }

.screen-stage { display: flex; justify-content: center; margin-top: 26px; }
.screen-frame {
  width: min(72vw, 262px);
  border-radius: 36px;
  padding: 8px;
  background: linear-gradient(160deg, #2a3839, #0c1415);
  box-shadow: 0 34px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  transition: background 300ms, box-shadow 300ms;
}
.screen-frame.is-hers {
  background: linear-gradient(160deg, #00575e, #0c1415);
  box-shadow: 0 34px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,171,177,0.3);
}
.screen-frame img { display: block; width: 100%; border-radius: 29px; }
.screen-caption { text-align: center; font-size: 13.5px; color: var(--fg-dim); margin: 18px auto 0; max-width: 34ch; }

/* Desktop-only side-by-side comparison (canvas v2) */
.screens-pair { display: none; }

/* ── Five dimensions ───────────────────────────────────────── */

.dimensions { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 26px; }
.dimension { border-radius: 20px; padding: 18px; }
.dimension .name { font-family: var(--font-heading); font-weight: 700; font-size: 14.5px; }
.dimension p { margin: 8px 0 0; font-size: 13px; line-height: 1.55; color: var(--fg-body); }
.dimension.is-physical  { background: rgba(255,111,97,0.07);  border: 1px solid rgba(255,111,97,0.22); }
.dimension.is-nutrition { background: rgba(255,152,0,0.07);   border: 1px solid rgba(255,152,0,0.22); }
.dimension.is-mind      { background: rgba(255,215,0,0.06);   border: 1px solid rgba(255,215,0,0.2); }
.dimension.is-sleep     { background: rgba(74,158,234,0.07);  border: 1px solid rgba(74,158,234,0.22); }
.dimension.is-social    { background: rgba(177,90,214,0.07);  border: 1px solid rgba(177,90,214,0.22); }
.dimension.is-physical  .name { color: var(--dim-physical); }
.dimension.is-nutrition .name { color: var(--dim-nutrition); }
.dimension.is-mind      .name { color: var(--dim-mind); }
.dimension.is-sleep     .name { color: var(--dim-sleep); }
.dimension.is-social    .name { color: var(--dim-social); }

/* ── Onboarding (canvas v1) ────────────────────────────────── */

.steps { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 26px; }
.step { border-radius: 24px; padding: 24px; background: rgba(255,255,255,0.035); border: 1px solid var(--hairline); }
.step.is-last { border-color: rgba(0, 171, 177, 0.22); }
.step .letter { font-family: var(--font-heading); font-weight: 800; font-size: 2.2rem; color: rgba(0,171,177,0.8); letter-spacing: -0.03em; line-height: 1; }
.step .title { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--fg); margin: 14px 0 8px; }
.step p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--fg-dim); }

/* ── The app rail ──────────────────────────────────────────── */

.app-rail { gap: 16px; scroll-snap-type: x proximity; padding-top: 4px; padding-bottom: 18px; }
.app-item { flex: none; width: 158px; scroll-snap-align: center; }
.app-item .device {
  border-radius: 24px;
  padding: 6px;
  background: linear-gradient(160deg, #232f30, #0c1415);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07);
}
.app-item .device img { display: block; width: 100%; border-radius: 19px; }
.app-item .label { font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: #E9F1F0; margin-top: 12px; }
.app-item .note { font-size: 11.5px; color: var(--fg-faint); margin-top: 3px; }

/* ── Nudges (canvas v1) ────────────────────────────────────── */

.nudges { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.nudge {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: 20px;
  padding: 17px 20px;
  background: var(--ink-raised-hi);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.nudge.is-faded { opacity: 0.72; background: rgba(255,255,255,0.03); }
.nudge .avatar { flex: none; width: 34px; height: 34px; border-radius: 10px; background: rgba(0,171,177,0.18); border: 1px solid rgba(0,171,177,0.3); }
.nudge .body { flex: 1; }
.nudge .from { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 13.5px; color: var(--fg); }
.nudge .text { display: block; font-size: 13px; color: var(--fg-body); margin-top: 3px; line-height: 1.5; }
.nudge time { flex: none; font-size: 11px; color: var(--fg-faintest); }

/* ── Photo band ────────────────────────────────────────────── */

.photo-band { position: relative; margin: 56px 0; height: min(64vh, 440px); overflow: hidden; padding-top: 0; }
.photo-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: saturate(0.92) brightness(0.62); }
.photo-band .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,13,14,0.5) 0%, rgba(6,13,14,0.35) 40%, rgba(6,13,14,0.95) 100%); }
.photo-band .col {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 28px;
}
.photo-band .statement {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 6.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 0;
}
.photo-band .footnote { margin: 16px 0 0; color: #B4C6C4; line-height: 1.65; font-size: 14px; }

/* ── Partner coordinators ──────────────────────────────────── */

.coordinators { padding-top: 24px; }
.coordinators .intro { padding-bottom: 24px; }
.coordinator-rail { gap: 16px; scroll-snap-type: x mandatory; padding-top: 4px; padding-bottom: 20px; }
.coordinator-tile {
  flex: none;
  width: min(76vw, 268px);
  scroll-snap-align: center;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
  transition: transform 150ms cubic-bezier(.4,0,.2,1);
}
.coordinator-tile:active { transform: scale(0.99); }
.coordinator-tile .photo { position: relative; height: 250px; }
.coordinator-tile .body { padding: 20px; }
.coordinator-tile .name { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: var(--fg); }
.coordinator-tile .spec { font-size: 12px; color: var(--teal-bright); margin-top: 5px; }
.coordinator-tile p { margin: 11px 0 0; font-size: 13px; line-height: 1.55; color: var(--fg-dim); }
.partner-line { font-size: 13.5px; color: var(--fg-dim); line-height: 1.6; padding-top: 6px; }
.partner-line a { font-family: var(--font-heading); font-weight: 700; }

/* ── Apply ─────────────────────────────────────────────────── */

.apply { position: relative; padding: 80px 0 60px; overflow: hidden; }
.apply .glow {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 680px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,171,177,0.22), rgba(0,171,177,0) 68%);
  filter: blur(22px);
  pointer-events: none;
}
.apply .col { position: relative; z-index: 2; }
.apply h2 { font-size: clamp(1.85rem, 8vw, 2.6rem); line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 16px; }
.apply .lede { margin-bottom: 26px; }
.apply .privacy { margin: 20px 0 0; font-size: 12px; line-height: 1.6; color: var(--fg-faintest); }

/* ── Footer ────────────────────────────────────────────────── */

.site-footer { border-top: 1px solid var(--hairline); padding: 32px 0; }
.site-footer .col { display: flex; flex-direction: column; gap: 14px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13px; }
.footer-nav a { color: var(--fg-dim); }
.footer-nav a:hover { color: var(--mint); }
.site-footer .copyright { font-size: 12px; color: var(--fg-faintest); }

/* ── Sticky bottom CTA bar ─────────────────────────────────── */

.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease;
  backdrop-filter: blur(14px);
  background: rgba(6, 13, 14, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0 16px;
}
.bottom-bar.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.bottom-bar .col { display: flex; align-items: center; gap: 14px; }
.bottom-bar .bar-plan { flex: 1; line-height: 1.3; }
.bottom-bar .bar-plan .name { font-family: var(--font-heading); font-weight: 700; font-size: 13.5px; color: var(--fg); margin: 0; }
.bottom-bar .bar-plan .note { font-size: 11.5px; color: var(--fg-faint); margin: 0; }

/* ── Interior page hero ────────────────────────────────────── */

.page-hero { padding: 108px 0 8px; position: relative; overflow: hidden; }
.page-hero .glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,171,177,0.22), rgba(0,171,177,0) 68%);
  filter: blur(20px);
  pointer-events: none;
}
.page-hero .col { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 8.5vw, 3.1rem); }
.page-hero .lede { font-size: 1.02rem; }

/* ── Pricing ───────────────────────────────────────────────── */

.pricing { padding-top: 34px; padding-bottom: 40px; }
.plans {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}
.plans.is-multi { max-width: none; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.plan {
  position: relative;
  border-radius: var(--radius, 26px);
  border: 1px solid var(--hairline);
  border-top: 6px solid var(--teal);
  background: rgba(255, 255, 255, 0.04);
  padding: 32px 26px 28px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5); }
.plan.is-popular {
  padding-top: 40px;
  border-color: rgba(0, 171, 177, 0.2);
  border-top-color: #ffbf00;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,191,0,1), rgba(255,160,0,1));
  border: 1px solid rgba(255, 191, 0, 0.6);
  color: #704200;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(255, 191, 0, 0.35);
  transition: transform var(--transition);
}
.plan.is-popular:hover .popular-badge { transform: translateX(-50%) translateY(-2px); }

.plan .name { font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; color: var(--fg); margin: 0 0 6px; }
.plan .subtitle { margin: 0; color: var(--fg-dim); font-size: 15px; }
.plan .price { display: flex; align-items: baseline; gap: 7px; margin: 20px 0 4px; }
.plan .amount { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; color: var(--fg); line-height: 1; }
.plan .period { color: var(--fg-dim); font-size: 15px; font-weight: 500; }

.plan .features { list-style: none; padding: 0; margin: 24px 0 22px; }
.plan .features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 13px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-body);
}
.plan .features li::before { content: "✓"; flex: none; color: var(--teal-bright); font-weight: 900; }

.plan .scarcity {
  margin: 0 0 18px;
  padding: 10px 14px;
  border-radius: var(--radius-2xs, 10px);
  background: rgba(0, 171, 177, 0.09);
  border: 1px solid rgba(0, 171, 177, 0.2);
  color: #B7E0DE;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}

.pricing-note { margin: 26px auto 0; max-width: 46ch; text-align: center; font-size: 13px; line-height: 1.65; color: var(--fg-faintest); }

/* ── Interior prose (legal, long-form) ─────────────────────── */

.content-wrapper {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 104px var(--pad) 40px;
}
.content-header { padding-bottom: 10px; border-bottom: 1px solid var(--hairline); margin-bottom: 30px; }
.content-header h1 { font-size: clamp(2rem, 8vw, 2.8rem); margin-bottom: 10px; }
.content-header p { margin: 0 0 20px; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-faint); }

.content-section { margin-bottom: 34px; }
.content-section h2 {
  font-size: clamp(1.25rem, 4.4vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.content-section h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #D6E4E3;
  letter-spacing: -0.01em;
  margin: 20px 0 8px;
}
.content-section p { margin: 0 0 14px; color: var(--fg-body); line-height: 1.72; font-size: 15px; }
.content-section ul { margin: 0 0 16px; padding-left: 20px; color: var(--fg-body); }
.content-section li { margin-bottom: 8px; line-height: 1.65; font-size: 15px; }
.content-section a { text-decoration: underline; text-underline-offset: 2px; }
.content-section .disclaimer {
  padding: 13px 16px;
  border-radius: var(--radius-xs, 12px);
  background: rgba(180, 35, 24, 0.12);
  border: 1px solid rgba(254, 205, 202, 0.28);
  color: #FFC9C4;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

/* ── Panel card (about, contact, precare) ──────────────────── */

.panel-card {
  border-radius: 26px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
  margin-bottom: 18px;
}
.panel-card h2 { font-size: clamp(1.4rem, 5.4vw, 1.8rem); margin-bottom: 12px; }
.panel-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-card p { margin: 0 0 12px; color: var(--fg-body); line-height: 1.7; font-size: 15px; }
.panel-card p:last-child { margin-bottom: 0; }
.panel-card ul { margin: 0; padding-left: 18px; color: var(--fg-dim); }
.panel-card li { margin-bottom: 7px; font-size: 14px; line-height: 1.6; }

.card-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 18px; }

.cta-card {
  border-radius: 26px;
  padding: 32px 24px;
  text-align: center;
  background: rgba(0, 171, 177, 0.07);
  border: 1px solid rgba(0, 171, 177, 0.22);
  margin-top: 26px;
}
.cta-card h2 { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 10px; }
.cta-card p { margin: 0 0 22px; color: var(--fg-body); line-height: 1.7; font-size: 15px; }

.quote {
  margin: 26px 0 0;
  padding: 24px;
  border-radius: 22px;
  background: rgba(0, 171, 177, 0.06);
  border-left: 3px solid var(--teal-bright);
  color: #C9DCDB;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.05rem, 4vw, 1.3rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

/* ── Feature showcase (features page) ──────────────────────── */

.showcase { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: center; margin: 0 0 34px; }
.showcase .shot { display: flex; justify-content: center; }
.showcase .device {
  width: min(62vw, 230px);
  border-radius: 30px;
  padding: 7px;
  background: linear-gradient(160deg, #2a3839, #0c1415);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.showcase .device img { display: block; width: 100%; border-radius: 24px; }
.showcase h3 { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.2rem, 5vw, 1.5rem); letter-spacing: -0.025em; color: var(--fg); margin: 0 0 12px; }
.showcase p { margin: 0; color: var(--fg-body); line-height: 1.7; font-size: 15px; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.feature-box {
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
  transition: transform var(--transition), border-color var(--transition);
}
.feature-box:hover { transform: translateY(-5px); border-color: var(--hairline-teal); }
.feature-box .icon { font-size: 22px; line-height: 1; }
.feature-box .title { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--fg); margin: 13px 0 7px; }
.feature-box p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--fg-dim); }

/* Placeholder frame for screens we do not have artwork for yet. */
.shot-placeholder {
  width: min(62vw, 230px);
  aspect-ratio: 600 / 1304;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px;
  text-align: center;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(0,171,177,0.14), rgba(0,171,177,0) 70%),
    linear-gradient(160deg, #162224, #0A1214);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  color: var(--fg-faint);
}
.shot-placeholder .icon { font-size: 20px; opacity: 0.5; }
.shot-placeholder span { font-size: 12px; line-height: 1.5; max-width: 20ch; }

/* ── Forms ─────────────────────────────────────────────────── */

.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 18px; }

.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: #D6E4E3;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 50px;
  padding: 13px 15px;
  border-radius: var(--radius-sm, 14px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.field input::placeholder, .field textarea::placeholder { color: #6F8281; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-bright);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px var(--focus-ring, rgba(0, 171, 177, 0.14));
}
/* Native select needs an explicit dark popup on some platforms. */
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #8FA3A2 50%), linear-gradient(135deg, #8FA3A2 50%, transparent 50%); background-position: calc(100% - 19px) 22px, calc(100% - 14px) 22px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field select option { background: #0A1416; color: var(--fg); }

.notice {
  padding: 15px 18px;
  border-radius: var(--radius-sm, 14px);
  margin-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.6;
}
.notice.is-success { background: rgba(2, 122, 72, 0.14); border: 1px solid rgba(171, 239, 198, 0.3); color: #B9EDCF; }
.notice.is-error { background: rgba(180, 35, 24, 0.14); border: 1px solid rgba(254, 205, 202, 0.3); color: #FFC9C4; }
.notice strong { color: inherit; }

/* register.php toggles these class names from its own script — keep them in sync
   with .notice above rather than changing that working JS. */
.feedback {
  display: none;
  padding: 15px 18px;
  border-radius: var(--radius-sm, 14px);
  margin-bottom: 20px;
  font-size: 14.5px;
  line-height: 1.6;
}
.feedback.success { background: rgba(2, 122, 72, 0.14); border: 1px solid rgba(171, 239, 198, 0.3); color: #B9EDCF; }
.feedback.error { background: rgba(180, 35, 24, 0.14); border: 1px solid rgba(254, 205, 202, 0.3); color: #FFC9C4; }

.legal-note { margin: 18px 0 0; font-size: 12.5px; line-height: 1.65; color: var(--fg-faintest); text-align: center; }
.login-link { margin: 22px 0 0; font-size: 13.5px; color: var(--fg-dim); text-align: center; }

.form-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 6px; }
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #C9DCDB;
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.06); color: var(--fg); box-shadow: none; }

.form-layout { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: start; }
.form-aside h3 { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--fg); margin: 0 0 12px; }
.form-aside ul { margin: 0 0 18px; padding-left: 18px; color: var(--fg-dim); }
.form-aside li { margin-bottom: 9px; font-size: 14px; line-height: 1.6; }
.form-aside .mini {
  padding: 13px 15px;
  border-radius: var(--radius-xs, 12px);
  background: rgba(0, 171, 177, 0.07);
  border: 1px solid rgba(0, 171, 177, 0.18);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--fg-dim);
}
.form-aside .mini strong { color: #C9DCDB; }

/* ── Auth (account sign-in) ────────────────────────────────── */

.auth-shell {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  overflow: hidden;
}
.auth-shell .glow {
  position: absolute;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,171,177,0.22), rgba(0,171,177,0) 68%);
  filter: blur(20px);
  pointer-events: none;
}

.auth-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  border-radius: 26px;
  padding: 36px 28px 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--hairline-teal);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.auth-card .brand-mark { display: flex; justify-content: center; margin-bottom: 20px; }
.auth-card .brand-mark .brand { font-size: 19px; }
.auth-card .brand-mark img { height: 34px; width: auto; }
.auth-card h1 { font-size: 1.5rem; line-height: 1.2; text-align: center; margin-bottom: 8px; }
.auth-card .sub { text-align: center; color: var(--fg-dim); font-size: 14px; margin: 0 0 24px; }
.auth-card .field + .field { margin-top: 16px; }
.auth-card .btn { width: 100%; margin-top: 24px; }
.auth-card .foot {
  text-align: center;
  margin: 22px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-faint);
}
.auth-back { position: relative; z-index: 2; text-align: center; margin: 18px 0 0; font-size: 13px; }

/* ── Desktop (canvas v2 treatments) ────────────────────────── */

@media (min-width: 900px) {
  :root { --col: 1200px; --pad: 28px; }

  body.has-cta-bar { padding-bottom: 0; }
  section { padding-top: 120px; }

  .page-hero { padding: 150px 0 12px; text-align: center; }
  .page-hero .col { max-width: 900px; }
  .page-hero h1 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); }
  .page-hero .lede { font-size: 1.15rem; max-width: 62ch; margin: 0 auto; }

  .pricing { padding-top: 44px; padding-bottom: 90px; }

  h1 { font-size: clamp(2.5rem, 4.4vw, 4rem); line-height: 1.04; }
  h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); }
  .lede, .muted { font-size: 1rem; line-height: 1.7; }
  .eyebrow { font-size: 11px; margin-bottom: 18px; }

  .site-header .inner { padding-top: 14px; padding-bottom: 14px; }
  .brand { font-size: 19px; }
  .brand img { height: 32px; }
  .header-nav { display: flex; align-items: center; gap: 26px; font-size: 13.5px; }
  .header-nav a { color: var(--fg-dim); }
  .header-nav a:hover { color: var(--mint); }
  .bottom-bar { display: none; }

  /* Hero: two columns, portrait beside the copy. */
  .hero { padding: 150px 0 80px; }
  .hero .glow { top: -200px; left: 12%; width: 760px; height: 760px; }
  .hero .col {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
    align-items: center;
  }
  .hero .lede { font-size: 1.15rem; line-height: 1.65; margin-bottom: 36px; max-width: 34ch; }
  .hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .hero-cta .btn--wide { display: inline-flex; width: auto; }
  .hero-secondary { display: inline; font-size: 14px; color: var(--fg-dim); }
  .store-badges { margin-top: 34px; }
  .store-badge { flex: 0 1 auto; min-height: 0; padding: 10px 16px; border-radius: 10px; }

  .hero-art { margin-top: 0; display: flex; justify-content: center; }
  .hero-art .stack { position: relative; width: 400px; max-width: 100%; }
  .hero-art .frame { height: 520px; border-radius: 28px; box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 20px 60px rgba(0,122,133,0.22); }
  .hero-art .inset { left: -34px; right: auto; bottom: -46px; width: 172px; border-radius: 26px; padding: 7px; }
  .hero-art .inset img { border-radius: 20px; }
  .hero-art .pill { left: auto; right: -16px; bottom: -30px; padding: 11px 16px; font-size: 12.5px; }

  .premise { padding-top: 130px; }
  .premise .col { max-width: 940px; text-align: center; }
  .premise .statement { font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.24; }
  .premise .muted { max-width: 48ch; margin: 28px auto 0; }

  /* Coordinator: portrait beside the credentials. */
  .coordinator .intro { max-width: 640px; margin-bottom: 52px; }
  .coordinator-card {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 36px;
    align-items: stretch;
    border-radius: 28px;
    padding: 28px;
    margin-top: 0;
  }
  .coordinator-card .photo { height: auto; min-height: 380px; border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
  .coordinator-card .body { display: flex; flex-direction: column; justify-content: center; padding: 8px 6px 8px 0; }
  .coordinator-card .name { font-size: 1.9rem; }
  .coordinator-card .role { font-size: 13.5px; }
  .huis { margin-top: 20px; gap: 16px; }
  .huis li { padding: 0; border-bottom: 0; }

  /* Week: scroll-driven sticky panel replaces the swipe rail. */
  .week-rail, .dots { display: none; }
  .week .intro { padding-bottom: 0; }
  .week-sticky {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) clamp(340px, 34vw, 420px);
    gap: clamp(32px, 4vw, 64px);
    align-items: start;
    margin-top: 30px;
  }
  .chapters { display: flex; flex-direction: column; }
  .chapter { min-height: 80vh; display: flex; flex-direction: column; justify-content: center; padding: 36px 0; }
  .chapter .day { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 16px; }
  .chapter h3 { font-size: clamp(1.7rem, 2.9vw, 2.4rem); line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 18px; }
  .chapter p { font-size: 1.05rem; line-height: 1.7; color: var(--fg-body); max-width: 40ch; margin: 0; }

  .panel-sticky { position: sticky; top: 96px; align-self: start; display: flex; justify-content: center; }
  .panel-sticky .glow {
    position: absolute;
    top: 30px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,171,177,0.18), rgba(0,171,177,0) 70%);
    filter: blur(10px);
    pointer-events: none;
  }
  .panel {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--ink-raised);
    border: 1px solid var(--hairline-teal);
    box-shadow: 0 40px 90px rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
  }
  .panel-head { display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-bottom: 1px solid var(--hairline); }
  .panel-head .avatar { flex: none; width: 46px; height: 46px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(0,171,177,0.35); position: relative; }
  .panel-head .avatar .portrait { padding: 0; border-radius: 50%; }
  .panel-head .avatar .portrait span { display: none; }
  .panel-head .who { flex: 1; min-width: 0; line-height: 1.35; }
  .panel-head .name { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--fg); }
  .panel-head .role { display: block; font-size: 11.5px; color: var(--teal-bright); }
  .panel-head .week-no { font-size: 11px; color: var(--fg-faint); }

  .panel-viewport { overflow: hidden; position: relative; }
  .panel-strip { transition: transform 700ms cubic-bezier(.22,.8,.2,1); }
  .panel-slide { padding: 22px; box-sizing: border-box; display: flex; flex-direction: column; overflow: hidden; }
  .panel-slide .kicker { font-family: var(--font-heading); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-faint); }
  .panel-slide .title { font-family: var(--font-heading); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.025em; color: var(--fg); margin: 10px 0 14px; line-height: 1.2; }
  .panel-slide p { margin: 0 0 18px; font-size: 13.5px; line-height: 1.6; color: var(--fg-dim); }
  .panel-slide .live-card { margin: auto 0 0; }
  .panel-slide .included { margin-top: 14px; font-size: 12px; color: var(--fg-faintest); }
  .panel-shot { flex: 1; min-height: 0; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
  .panel-shot .device {
    width: 158px;
    height: 100%;
    min-height: 190px;
    box-sizing: border-box;
    border-radius: 24px;
    padding: 6px;
    background: linear-gradient(160deg, #2a3839, #0c1415);
    box-shadow: 0 20px 44px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  }
  .panel-shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 19px; }

  /* Two screens: side by side, no toggle. */
  .segmented, .screen-stage, .screen-caption { display: none; }
  .two-screens .intro { max-width: 620px; margin-bottom: 56px; }
  .screens-pair { display: grid; grid-template-columns: repeat(2, minmax(240px, 340px)); gap: 48px; justify-content: center; }
  .screens-pair figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }
  .screens-pair .device { width: 100%; max-width: 300px; border-radius: 38px; padding: 9px; background: linear-gradient(160deg, #2a3839, #0c1415); box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08); }
  .screens-pair .device.is-hers { background: linear-gradient(160deg, #00575e, #0c1415); box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,171,177,0.3), 0 24px 60px rgba(0,171,177,0.18); }
  .screens-pair .device img { display: block; width: 100%; border-radius: 30px; }
  .screens-pair figcaption { text-align: center; }
  .screens-pair .label { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--fg); }
  .screens-pair .note { font-size: 13px; color: var(--fg-dim); margin-top: 5px; }
  .screens-pair .is-hers + figcaption .note { color: var(--teal-bright); }

  .method .intro { max-width: 620px; margin-bottom: 44px; }
  .dimensions { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-top: 0; }
  .dimension { border-radius: 22px; padding: 22px; }
  .dimension .name { font-size: 15px; }
  .dimension p { font-size: 13px; line-height: 1.6; margin-top: 10px; }

  .onboarding .intro { max-width: 620px; margin-bottom: 56px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 0; }
  .step { padding: 26px; }
  .step .letter { font-size: 2.4rem; }
  .step .title { font-size: 17px; margin: 16px 0 8px; }

  .app-section .intro { max-width: 560px; }
  .app-rail { gap: 22px; scroll-snap-type: x mandatory; padding-top: 6px; padding-bottom: 22px; margin-top: 36px; }
  .app-item { width: 206px; scroll-snap-align: start; }
  .app-item .device { border-radius: 28px; padding: 7px; box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.07); }
  .app-item .device img { border-radius: 22px; }
  .app-item .label { font-size: 13.5px; margin-top: 14px; }
  .app-item .note { font-size: 12px; margin-top: 4px; }

  .nudges-section .col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
  .nudges { margin-top: 0; }

  .photo-band { margin: 80px 0; height: 520px; }
  .photo-band > img { object-position: center 30%; filter: saturate(0.92) brightness(0.66); }
  .photo-band .scrim { background: linear-gradient(90deg, rgba(6,13,14,0.94) 0%, rgba(6,13,14,0.7) 44%, rgba(6,13,14,0.22) 100%); }
  .photo-band .col { justify-content: center; padding-bottom: 0; }
  .photo-band .statement { max-width: 24ch; font-size: clamp(1.6rem, 2.8vw, 2.4rem); line-height: 1.22; }
  .photo-band .footnote { max-width: 42ch; margin-top: 22px; font-size: 1rem; line-height: 1.7; }

  .coordinators { padding-top: 40px; }
  .coordinators .intro { max-width: 660px; padding-bottom: 0; }
  .coordinator-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    overflow: visible;
    max-width: var(--col);
    margin: 52px auto 0;
    padding: 0 var(--pad);
  }
  .coordinator-tile { width: auto; border-radius: 26px; }
  .coordinator-tile .photo { height: 300px; }
  .coordinator-tile .body { padding: 24px; }
  .coordinator-tile .name { font-size: 17px; }
  .coordinator-tile .spec { font-size: 12.5px; margin-top: 6px; }
  .coordinator-tile p { font-size: 13.5px; line-height: 1.6; margin-top: 13px; }
  .partner-line { margin-top: 34px; padding-top: 0; }

  .apply { padding: 130px 0 100px; text-align: center; }
  .apply .glow { top: 20px; width: 800px; height: 540px; }
  .apply h2 { font-size: clamp(2.1rem, 3.8vw, 3.3rem); line-height: 1.06; max-width: 22ch; margin: 0 auto 22px; }
  .apply .lede { max-width: 48ch; margin: 0 auto 38px; }
  .apply .btn--wide { display: inline-flex; width: auto; }
  .apply .store-badges { justify-content: center; margin-top: 32px; }
  .apply .privacy { max-width: 44ch; margin: 26px auto 0; }

  .site-footer { padding: 44px 0; }
  .site-footer .col { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
  .footer-nav { font-size: 12.5px; }

  /* Interior pages */
  .content-wrapper { padding: 150px var(--pad) 70px; }
  .content-header { margin-bottom: 40px; }
  .content-section { margin-bottom: 42px; }
  .content-section p, .content-section li { font-size: 16px; }

  .panel-card { padding: 34px 32px; margin-bottom: 22px; }
  .card-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-bottom: 22px; }
  .cta-card { padding: 48px 40px; margin-top: 34px; }
  .quote { margin-top: 34px; padding: 30px 34px; }

  .showcase { grid-template-columns: 0.85fr 1.15fr; gap: 48px; margin-bottom: 56px; }
  .showcase.is-flipped .shot { order: 2; }
  .showcase .device { width: 260px; }
  .shot-placeholder { width: 260px; }
  .showcase p { font-size: 16px; }
  .features-grid { gap: 22px; }
  .feature-box { padding: 26px; }

  /* Forms */
  .form-layout { grid-template-columns: 1.55fr 1fr; gap: 26px; }
  .form-grid.is-two { grid-template-columns: 1fr 1fr; gap: 18px; }
  .form-actions { flex-direction: row; align-items: center; }
  .form-actions .btn { width: auto; }
}

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