/* ===== Intermezzo — Landing Page ===== */
@import url('fonts/fonts.css');

:root {
  --olive: #2E3650;
  --sage: #5C6584;
  --moss: #8A93B2;
  --moss-light: #AAB2CC;
  --forest: #4E5A86;
  --forest-dark: #3E4A72;
  --terra: #C08A86;
  --terra-light: #D2A39E;
  --terra-deep: #A86F6B;
  --stone: #CDCAD6;
  --soft-line: #C6C9D8;
  --cream: #FBF8F3;
  --cream-warm: #F1EEF1;

  --card-bg: rgba(255, 255, 255, 0.55);
  --card-strong: rgba(255, 255, 255, 0.72);
  --card-border: rgba(255, 255, 255, 0.55);
  --hairline: rgba(46, 54, 80, 0.10);

  --serif: 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--olive);
  background: #E7E4EC;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* ===== Ambient breathing background ===== */
.bg-base {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #F1EEF2 0%, #E3E5EF 38%, #D2D6E8 68%, #E9DEDB 100%);
}
.bg-breath {
  position: fixed;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 30%, rgba(251, 248, 243, 0.6) 0%, rgba(227, 229, 239, 0) 55%);
  opacity: 0.6;
}
@media (prefers-reduced-motion: no-preference) {
  .bg-breath { animation: breathe 11s var(--ease-out) infinite; }
}
@keyframes breathe {
  0%, 100% { transform: scale(1);    opacity: 0.45; }
  50%      { transform: scale(1.16); opacity: 0.85; }
}

/* Faint notation glyph drifting in the page margins */
.page-glyph {
  position: absolute;
  color: var(--moss);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

::selection { background: rgba(192, 138, 134, 0.28); }

/* ===== Layout primitives ===== */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
section { position: relative; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--moss);
}

h2.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0.3px;
  color: var(--olive);
}
.section-lead {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  color: var(--sage);
  max-width: 60ch;
}

.glass {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  box-shadow: 0 2px 20px rgba(46, 54, 80, 0.06);
}

/* ===== Fermata divider ===== */
.fermata-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
}
.fermata-rule .line {
  width: clamp(48px, 12vw, 120px);
  height: 1px;
  background: var(--soft-line);
}
.fermata-rule svg { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .fermata-rule .glyph { animation: fermataBreathe 7s ease-in-out infinite; transform-origin: center; }
}
@keyframes fermataBreathe {
  0%, 100% { transform: scale(0.94); opacity: 0.78; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.nav.scrolled {
  background: rgba(241, 238, 242, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 1px 5px rgba(46, 54, 80, 0.14);
}
.brand .name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: 0.5px;
  color: var(--olive);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--olive); }

/* ===== Buttons ===== */
.btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  padding: 13px 26px;
  box-shadow: 0 4px 16px rgba(62, 74, 114, 0.22);
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(62, 74, 114, 0.28); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--olive);
  padding: 13px 24px;
  border: 1px solid var(--card-border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.78); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn .chrome-dot { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== Coming-soon badge & disabled CTA ===== */
.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 7px 15px 7px 13px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--card-border);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--terra-deep);
}
.soon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .soon-dot { animation: soonPulse 2.6s var(--ease-out) infinite; }
}
@keyframes soonPulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(192, 138, 134, 0.45); }
  50%      { opacity: 0.7; box-shadow: 0 0 0 5px rgba(192, 138, 134, 0); }
}
.btn.is-soon {
  cursor: default;
  background: var(--forest);
  opacity: 0.92;
}
.btn.is-soon:hover { transform: none; background: var(--forest); box-shadow: 0 4px 16px rgba(62, 74, 114, 0.22); }

/* ===== Hero ===== */
.hero {
  padding: clamp(56px, 9vh, 104px) 0 clamp(40px, 6vh, 72px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: 0.3px;
  color: var(--olive);
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
}
.hero .lead {
  font-size: clamp(16.5px, 1.6vw, 19px);
  line-height: 1.66;
  color: var(--sage);
  margin-top: 26px;
  max-width: 46ch;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--moss);
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--moss-light); }
.hero-meta b { color: var(--sage); font-weight: 600; }

/* ===== Popup mock (hero visual) ===== */
.popup-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 138, 134, 0.28) 0%, rgba(192, 138, 134, 0) 70%);
  filter: blur(10px);
  z-index: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .popup-card { animation: floaty 9s ease-in-out infinite; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-0.4deg); }
}

.popup-card {
  position: relative;
  z-index: 1;
  width: 360px;
  max-width: 100%;
  border-radius: 22px;
  background: linear-gradient(135deg, #F4F1F5 0%, #E6E8F0 42%, #D7DAEA 72%, #ECE2DF 100%);
  box-shadow: 0 30px 70px -24px rgba(46, 54, 80, 0.42), 0 2px 8px rgba(46, 54, 80, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
}
.pp-head { padding: 22px 22px 8px; }
.pp-brand { display: flex; align-items: center; gap: 9px; }
.pp-brand .pmark { width: 22px; height: 22px; }
.pp-title {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--olive);
}
.pp-tag { font-size: 12.5px; color: var(--sage); margin-top: 3px; }
.pp-stats { display: flex; gap: 8px; margin-top: 14px; }
.pp-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px; font-weight: 500; color: var(--olive);
  white-space: nowrap;
}
.pp-pill svg { flex-shrink: 0; }
.pp-pill svg { color: var(--moss); }
.pp-body { padding: 6px 14px 16px; }
.pp-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 13px 15px;
  margin-bottom: 9px;
  box-shadow: 0 2px 12px rgba(46, 54, 80, 0.05);
}
.pp-row { display: flex; align-items: center; justify-content: space-between; }
.pp-label { font-family: var(--serif); font-size: 16px; color: var(--olive); }
.pp-sub { font-size: 11.5px; color: var(--sage); margin-top: 2px; }
.pp-switch {
  width: 44px; height: 26px; border-radius: 26px;
  background: var(--forest); position: relative; flex-shrink: 0;
}
.pp-switch::after {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; top: 3px; left: 21px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.pp-interval {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(46, 54, 80, 0.06);
  border-radius: 10px; padding: 3px; margin-top: 11px;
}
.pp-interval span {
  text-align: center; padding: 8px 4px; font-size: 12.5px; font-weight: 500;
  color: var(--sage); border-radius: 8px;
}
.pp-interval span.on {
  background: rgba(255,255,255,0.85); color: var(--forest);
  box-shadow: 0 1px 4px rgba(46, 54, 80, 0.08);
}
.pp-cta {
  width: 100%; padding: 13px; border-radius: 50px;
  background: var(--forest); color: var(--cream);
  font-family: var(--sans); font-size: 14.5px; font-weight: 500;
  text-align: center; letter-spacing: 0.2px;
}
.pp-foot {
  text-align: center; font-size: 10.5px; color: var(--sage);
  opacity: 0.6; padding: 2px 0 16px;
}
.pp-divider {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin: 2px 0 10px;
}
.pp-divider .l { width: 50px; height: 1px; background: var(--soft-line); }

/* ===== Section rhythm ===== */
.band { padding: clamp(64px, 9vh, 120px) 0; }
.band-head { max-width: 720px; }
.band-head .eyebrow { margin-bottom: 16px; display: block; }
.band-head h2 { margin-bottom: 18px; }

/* ===== Why / metaphor ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.why-card {
  border-radius: 24px;
  padding: clamp(32px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}
.why-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.32;
  color: var(--olive);
}
.why-quote .accent { color: var(--terra-deep); font-style: normal; }
.why-attr {
  margin-top: 22px;
  font-size: 13.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 500;
}
.why-body p { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7; color: var(--sage); }
.why-body p + p { margin-top: 18px; }
.why-glyphs {
  position: absolute;
  right: -20px; bottom: -30px;
  opacity: 0.08;
  color: var(--forest);
}

/* ===== Features ===== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}
.feat {
  border-radius: 18px;
  padding: 28px 26px 30px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.feat:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -18px rgba(46, 54, 80, 0.32); }
.feat-ico {
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(78, 90, 134, 0.10);
  display: flex; align-items: center; justify-content: center;
  color: var(--forest);
  margin-bottom: 18px;
}
.feat.warm .feat-ico { background: rgba(192, 138, 134, 0.16); color: var(--terra-deep); }
.feat h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--olive);
  margin-bottom: 9px;
  letter-spacing: 0.2px;
}
.feat p { font-size: 14.5px; line-height: 1.6; color: var(--sage); }

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 26px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--terra-deep);
}
.step .step-line {
  height: 1px;
  background: var(--soft-line);
  margin: 14px 0 18px;
  position: relative;
}
.step .step-line::after {
  content: "";
  position: absolute;
  left: 0; top: -2px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--terra);
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 21px;
  color: var(--olive);
  margin-bottom: 8px;
}
.step p { font-size: 14px; line-height: 1.6; color: var(--sage); }

/* ===== Interlude preview (overlay mock) ===== */
.interlude {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 60px);
  background: linear-gradient(135deg, #F1EEF2 0%, #E3E5EF 40%, #D6DAEA 70%, #EADFDC 100%);
  box-shadow: 0 30px 80px -36px rgba(46, 54, 80, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.interlude-head { text-align: center; margin-bottom: 36px; }
.interlude-head .title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
  color: var(--olive);
}
.interlude-head .sub { font-size: 16px; color: var(--sage); margin-top: 12px; }
.interlude-head .ex-label {
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--moss); margin-top: 26px;
}
/* Break panel — faithful to the in-app reminder screen */
.ex-panel {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(46, 54, 80, 0.08);
  display: grid;
  grid-template-columns: 6fr 4fr;
  min-height: 300px;
}
.ex-media {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #E6E4EE 0%, #DADEEC 100%);
}
.ex-media::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 50%, rgba(138,147,178,0.16) 0%, rgba(192,138,134,0.10) 45%, transparent 75%);
  pointer-events: none;
}
.ex-play {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  color: var(--forest);
}
.ex-vlabel {
  position: absolute; left: 18px; bottom: 16px; z-index: 1;
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--sage); opacity: 0.5;
}
.ex-content { padding: clamp(22px, 3vh, 34px) 36px; display: flex; flex-direction: column; }
.ex-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.2;
  color: var(--olive);
}
.ex-underline { width: 40px; height: 2px; background: var(--moss); border-radius: 1px; margin: 10px 0 14px; }
.ex-desc { font-size: 14.5px; line-height: 1.6; color: var(--sage); }
.ex-timer {
  margin-top: clamp(18px, 3vh, 32px);
  padding-top: 22px;
  border-top: 1px solid rgba(138, 147, 178, 0.25);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.ex-ring { position: relative; width: 72px; height: 72px; flex-shrink: 0; }
.ex-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ex-ring .rbg { fill: none; stroke: #dcdce6; stroke-width: 3; }
.ex-ring .rprog { fill: none; stroke: var(--moss); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 527.79; stroke-dashoffset: 348; }
.ex-time {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 22px; font-weight: 500; color: var(--olive);
  font-variant-numeric: tabular-nums;
}
.ex-btns { display: flex; align-items: center; gap: 12px; }
.ex-reroll {
  display: inline-flex; align-items: center; gap: 7px;
  height: 36px; padding: 0 18px 0 14px; border-radius: 50px;
  border: 1px solid var(--soft-line); background: rgba(255,255,255,0.55);
  color: var(--sage); font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
}
.ex-reroll .rg { font-size: 16px; line-height: 1; color: var(--moss); }
.ex-start {
  display: inline-flex; align-items: center;
  height: 36px; padding: 0 26px; border-radius: 50px;
  background: var(--forest); color: var(--cream);
  font-size: 13px; font-weight: 500;
  box-shadow: 0 4px 14px rgba(46, 54, 80, 0.20);
}
.ex-dots { display: flex; gap: 10px; justify-content: center; margin-top: 26px; }
.ex-dots .d { width: 8px; height: 8px; border-radius: 50%; background: var(--stone); }
.ex-dots .d.active { background: var(--forest); }
.ex-actions { display: flex; gap: 16px; justify-content: center; margin-top: 24px; }
.ex-skip {
  padding: 13px 34px; border-radius: 50px;
  background: transparent; border: 1.5px solid var(--terra); color: var(--sage);
  font-size: 15px; font-weight: 500;
}
.ex-done {
  padding: 13px 42px; border-radius: 50px;
  background: var(--forest); border: none; color: var(--cream);
  font-size: 15px; font-weight: 500;
}

/* ===== Stretches / areas ===== */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}
.area-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--card-border);
  transition: transform 0.2s var(--ease-out), background 0.2s;
}
.area-chip:hover { transform: translateY(-3px); background: rgba(255,255,255,0.72); }
.area-chip .ac-name { font-family: var(--serif); font-size: 21px; color: var(--olive); line-height: 1; }
.area-chip .ac-n { font-size: 12px; color: var(--moss); letter-spacing: 0.3px; }

.stretch-aside {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.saside {
  border-radius: 18px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.saside .big {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1;
  color: var(--forest);
}
.saside .lbl { font-size: 14px; color: var(--sage); line-height: 1.5; }
.saside.terra .big { color: var(--terra-deep); }

/* ===== FAQ ===== */
.faq-grid { margin-top: 48px; display: grid; gap: 12px; max-width: 860px; }
.faq {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--card-border);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--olive);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q-mark {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--soft-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  transition: transform 0.3s var(--ease-out), background 0.2s, color 0.2s;
  font-size: 18px; line-height: 1;
}
.faq[open] summary .q-mark { transform: rotate(45deg); background: var(--forest); color: var(--cream); border-color: var(--forest); }
.faq .faq-body {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.66;
  color: var(--sage);
  max-width: 64ch;
}

/* ===== Closing CTA ===== */
.closing {
  text-align: center;
  padding: clamp(72px, 11vh, 140px) 0;
}
.closing .emblem { margin-bottom: 28px; }
.closing h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  color: var(--olive);
}
.closing h2 em { font-style: italic; color: var(--forest); }
.closing p { font-size: 18px; color: var(--sage); margin: 22px auto 38px; max-width: 50ch; line-height: 1.6; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 40px 0 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer .brand .name { font-size: 20px; }
.footer-note { font-size: 13px; color: var(--moss); font-style: italic; font-family: var(--serif); }
.footer-links { display: flex; gap: 26px; }
.footer-links a { font-size: 13.5px; color: var(--sage); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--olive); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .bg-breath, .popup-card, .fermata-rule .glyph { animation: none !important; }
}

/* ===== Popup mind-moments mini control ===== */
.pp-interval.three { grid-template-columns: repeat(3, 1fr); }

/* ===== Split highlight (alternating feature narratives) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.split-body .eyebrow { display: block; margin-bottom: 16px; }
.split-body h2 { margin-bottom: 20px; }
.split-body p { font-size: clamp(16px, 1.5vw, 18px); line-height: 1.7; color: var(--sage); }
.split-body p + p { margin-top: 16px; }
.split-list { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.split-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; line-height: 1.5; color: var(--olive); }
.split-list .tick {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(78, 90, 134, 0.10); color: var(--forest);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.split.warm .split-list .tick { background: rgba(192, 138, 134, 0.16); color: var(--terra-deep); }
.split-list b { font-weight: 600; }

/* ===== Mind-moment mock cards ===== */
.mind-examples { display: flex; flex-direction: column; gap: 16px; }
.mind-card {
  border-radius: 22px;
  padding: clamp(26px, 3vw, 34px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(192,138,134,0.16) 0%, rgba(192,138,134,0) 52%),
    var(--card-strong);
}
.mind-card.ground {
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(138,147,178,0.20) 0%, rgba(138,147,178,0) 52%),
    var(--card-strong);
}
.mind-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terra-deep); margin-bottom: 16px; display: flex; align-items: center; gap: 9px;
}
.mind-eyebrow .dotm { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); }
.mind-eyebrow.moss { color: var(--moss); }
.mind-eyebrow.moss .dotm { background: var(--moss); }
.ground-senses { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.sense {
  padding: 9px 16px; border-radius: 50px;
  background: rgba(255,255,255,0.6); border: 1px solid var(--card-border);
  font-size: 13px; font-weight: 500; color: var(--sage); letter-spacing: 0.2px;
}
.mind-prompt {
  font-family: var(--serif);
  font-weight: 300; font-style: italic;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.38;
  color: var(--olive);
}
/* Savoring input + Keep it (matches the in-app mind moment) */
.savoring-row { display: flex; gap: 10px; margin-top: 24px; }
.savoring-input {
  flex: 1; min-width: 0;
  font-family: var(--sans); font-size: 14px; color: var(--olive);
  background: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(138,147,178,0.35);
  border-radius: 12px; padding: 11px 14px;
}
.savoring-input::placeholder { color: var(--moss); }
.mind-keep {
  font-family: var(--sans); font-size: 14px; font-weight: 500; white-space: nowrap;
  background: var(--forest); color: var(--cream);
  border: none; border-radius: 12px; padding: 11px 18px;
}
.mood-q { font-size: 13.5px; color: var(--sage); margin: 26px 0 13px; }
.mood-scale { display: flex; gap: 16px; align-items: center; }
.mood-dot {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--moss); background: rgba(255,255,255,0.5);
}
.mood-dot.sel { background: var(--forest); border-color: var(--forest); box-shadow: 0 0 0 4px rgba(78,90,134,0.18); }
.mood-ends { display: flex; justify-content: space-between; margin-top: 9px; max-width: 220px; font-size: 11.5px; color: var(--sage); }
.mind-foot { margin-top: 16px; font-size: 12.5px; color: var(--moss); letter-spacing: 0.3px; }

/* ===== Definition card (the meaning of “intermezzo”) ===== */
.def-word {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4vw, 48px); line-height: 1;
  color: var(--olive); letter-spacing: 0.3px;
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.def-pos { font-family: var(--sans); font-style: italic; font-size: 15px; color: var(--moss); letter-spacing: 0.2px; }
.def-pron { font-family: var(--sans); font-size: 15px; color: var(--sage); margin-top: 10px; letter-spacing: 0.4px; }
.def-rule { width: 46px; height: 1px; background: var(--soft-line); margin: 22px 0; }
.def-text {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.1vw, 26px); line-height: 1.42; color: var(--olive);
}
.def-text .accent { font-style: normal; color: var(--terra-deep); }

/* ===== Stretch-together chat mock ===== */
.chat-card {
  border-radius: 22px;
  padding: 26px 26px 24px;
  background: var(--card-strong);
  border: 1px solid var(--card-border);
  box-shadow: 0 12px 40px -20px rgba(46,54,80,0.4);
}
.chat-head {
  display: flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.4px; color: var(--moss);
  text-transform: uppercase; margin-bottom: 18px;
}
.chat-head .ch-line { flex: 1; height: 1px; background: var(--soft-line); }
.chat-msg { display: flex; gap: 13px; align-items: flex-start; }
.chat-msg + .chat-msg { margin-top: 16px; }
.chat-av {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px; color: var(--cream);
}
.chat-av.a { background: var(--forest); }
.chat-av.b { background: var(--terra-deep); }
.chat-av.c { background: var(--moss); }
.chat-body { flex: 1; min-width: 0; }
.chat-name { font-size: 13.5px; font-weight: 600; color: var(--olive); }
.chat-name span { font-weight: 400; color: var(--moss); font-size: 11.5px; margin-left: 7px; letter-spacing: 0.2px; }
.chat-text { font-size: 14px; line-height: 1.5; color: var(--sage); margin-top: 3px; }
.chat-text .glyph-inline { color: var(--forest); }

/* ===== Reach / anywhere notification mock ===== */
.notif {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: 16px;
  background: var(--card-strong);
  border: 1px solid var(--card-border);
  box-shadow: 0 14px 40px -18px rgba(46,54,80,0.42);
  max-width: 380px;
}
.notif-ico {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 9px;
  background: linear-gradient(150deg, #F4F1F5 0%, #E3E5EF 60%, #E4DEE6 100%);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
}
.notif-body { flex: 1; min-width: 0; }
.notif-title { font-size: 13.5px; font-weight: 600; color: var(--olive); }
.notif-sub { font-size: 12.5px; color: var(--sage); margin-top: 2px; line-height: 1.45; }
.notif-actions { display: flex; gap: 8px; margin-top: 12px; }
.notif-btn {
  font-size: 12px; font-weight: 500; padding: 7px 14px; border-radius: 8px;
  background: var(--forest); color: var(--cream);
}
.notif-btn.ghost { background: rgba(46,54,80,0.06); color: var(--sage); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .popup-stage { order: -1; }
  .why-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-visual { order: -1; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .stretch-aside { grid-template-columns: 1fr; }
  .ex-panel { grid-template-columns: 1fr; }
  .ex-media { min-height: 200px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
}
