/* ============================================================
   Monori marketing site
   Warm, candle-lit ("writing at 11pm"). Brand tokens mirror the app.
   ============================================================ */

:root {
  /* Palette (from the Monori app theme) */
  --void: #13100D;
  --surface: #221C16;
  --raised: #2E2520;
  --parchment: #F0E8DC;
  --ash: #9A8A78;
  --faint: #8E8170; /* lightened from app's #6B5E4F to clear WCAG AA (4.5:1) for small text */
  --ember: #C9713A;
  --ember-deep: #A85A2B;
  --candle: #E8C07A;
  --sage: #6FBE8C;
  --tan: #C7AE82;
  --clay: #CF6450;

  --border: rgba(240, 232, 220, 0.09);
  --border-strong: rgba(240, 232, 220, 0.16);
  --glass: rgba(34, 28, 22, 0.62);

  /* Type */
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1120px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --z-nav: 50;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--void);
  color: var(--parchment);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

::selection { background: rgba(201, 113, 58, 0.32); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ember); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 12px;
  z-index: 100; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--candle);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }

.section { padding: clamp(64px, 11vw, 130px) 0; }
.section--alt { background: linear-gradient(180deg, rgba(34,28,22,0.5), rgba(19,16,13,0)); }

.section__head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 68px); text-align: center; }
.section__title { font-size: clamp(2rem, 4.6vw, 3.2rem); }
.section__lead, .section__head p:not(.eyebrow) { color: var(--ash); margin-top: 16px; font-size: 1.05rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn--small { padding: 10px 18px; font-size: 0.92rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: linear-gradient(180deg, var(--ember), var(--ember-deep));
  color: #fff; box-shadow: 0 10px 30px -10px rgba(201, 113, 58, 0.6);
}
.btn--primary:hover { box-shadow: 0 14px 38px -10px rgba(201, 113, 58, 0.8); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--parchment); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--candle); background: rgba(240, 232, 220, 0.04); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(19, 16, 13, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.wordmark {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--serif); font-size: 1.5rem; color: var(--parchment);
}
.wordmark__img { width: 26px; height: 26px; border-radius: 7px; display: block; }
.footer .wordmark__img { width: 24px; height: 24px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a:not(.btn) { color: var(--ash); font-size: 0.95rem; font-weight: 500; transition: color 0.2s var(--ease); }
.nav__links a:not(.btn):hover { color: var(--parchment); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  cursor: pointer; padding: 8px; border-radius: 10px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--parchment); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(56px, 10vw, 110px) 0 clamp(60px, 9vw, 120px); overflow: hidden; }
.hero__glow {
  position: absolute; inset: auto -10% -55% -10%; height: 80%;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 113, 58, 0.28), rgba(232, 192, 122, 0.08) 38%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__title { font-size: clamp(2.6rem, 6.4vw, 4.6rem); letter-spacing: -0.02em; }
.hero__title em { color: var(--candle); }
.hero__sub {
  margin-top: 26px; max-width: 30em; color: var(--ash);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem); line-height: 1.62;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__note { margin-top: 24px; color: var(--faint); font-size: 0.9rem; display: flex; align-items: center; gap: 9px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 10px var(--sage); }

/* ---------- Phone mockup ---------- */
.hero__device { display: flex; justify-content: center; }
.phone {
  position: relative; width: min(300px, 78vw); aspect-ratio: 300 / 620;
  background: linear-gradient(165deg, #2a221b, #15110d);
  border-radius: 44px; padding: 14px;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(240, 232, 220, 0.08);
}
.phone__notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 22px; background: #0d0a08; border-radius: 0 0 14px 14px; z-index: 2;
}
.phone__screen {
  height: 100%; border-radius: 32px; background: radial-gradient(120% 60% at 50% 0%, #241d16, #15110d 70%);
  padding: 46px 18px 22px; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone__eyebrow { font-family: var(--serif); font-size: 0.95rem; color: var(--ash); margin-bottom: 14px; }
.phone__chat { margin-bottom: 8px; }
.phone__arrow { display: flex; justify-content: center; margin: 6px 0; opacity: 0.85; }

.bubble {
  border-radius: 16px 16px 16px 5px; padding: 12px 14px; font-size: 0.86rem; line-height: 1.5;
  background: rgba(240, 232, 220, 0.06); color: var(--parchment); border: 1px solid var(--border);
}
.bubble--you { background: rgba(201, 113, 58, 0.16); border-color: rgba(201, 113, 58, 0.28); border-radius: 16px 16px 5px 16px; }
.bubble.small { font-size: 0.82rem; }

.entry-card {
  margin-top: auto; background: var(--glass); border: 1px solid var(--border-strong);
  border-radius: 18px; padding: 15px; backdrop-filter: blur(6px);
}
.entry-card.flat { margin-top: 12px; }
.entry-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.entry-card__title { font-family: var(--serif); font-size: 1.05rem; color: var(--parchment); }
.entry-card__body { font-size: 0.85rem; line-height: 1.55; color: var(--ash); }
.mood-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; }
.mood-dot--positive { background: var(--sage); box-shadow: 0 0 8px rgba(111, 190, 140, 0.6); }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
}
.step__num { font-family: var(--serif); font-size: 1.5rem; color: var(--ember); display: block; margin-bottom: 16px; }
.step h3 { font-size: 1.5rem; margin-bottom: 10px; }
.step p { color: var(--ash); font-size: 1rem; }

/* ---------- Spotlights ---------- */
.spotlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding: clamp(36px, 6vw, 64px) 0;
}
.spotlight + .spotlight { border-top: 1px solid var(--border); }
.spotlight--rev .spotlight__text { order: 2; }
.spotlight__text h3 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 16px 0 16px; }
.spotlight__text > p { color: var(--ash); font-size: 1.06rem; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--candle); background: rgba(232, 192, 122, 0.1);
  border: 1px solid rgba(232, 192, 122, 0.22); border-radius: 999px; padding: 7px 13px;
}
.badge svg { color: var(--candle); }

.ticks { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.ticks li {
  position: relative; padding-left: 30px; color: var(--parchment); font-size: 1rem; line-height: 1.5;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px;
  background: rgba(111, 190, 140, 0.16); border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(111, 190, 140, 0.5);
}
.ticks li::after {
  content: ""; position: absolute; left: 6px; top: 10px; width: 6px; height: 4px;
  border-left: 1.6px solid var(--sage); border-bottom: 1.6px solid var(--sage); transform: rotate(-45deg);
}

.pill {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--candle); background: rgba(232, 192, 122, 0.14);
  border: 1px solid rgba(232, 192, 122, 0.3); border-radius: 999px; padding: 2px 9px; margin-left: 6px;
  vertical-align: middle;
}
.pill--free { color: var(--sage); background: rgba(111, 190, 140, 0.12); border-color: rgba(111, 190, 140, 0.3); }

/* Spotlight visuals */
.spotlight__visual { display: flex; justify-content: center; }
.glass-card {
  width: 100%; max-width: 360px; background: var(--glass); backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow);
}
.recap-title { font-family: var(--serif); font-size: 1.5rem; margin: 4px 0 10px; }
.recap-q { margin-top: 16px; font-family: var(--serif); font-style: italic; color: var(--candle); font-size: 1.05rem; }

.spark, .moodbars { display: flex; align-items: flex-end; gap: 6px; height: 56px; margin-top: 16px; }
.spark span { flex: 1; background: linear-gradient(180deg, var(--candle), var(--ember)); border-radius: 4px; opacity: 0.85; }
.moodbars span { flex: 1; background: var(--tan); border-radius: 4px; opacity: 0.9; }
.moodbars span:nth-child(3), .moodbars span:nth-child(7) { background: var(--sage); }

.rhythm { display: flex; align-items: baseline; gap: 12px; margin: 6px 0 14px; }
.rhythm__num { font-family: var(--serif); font-size: 3rem; color: var(--sage); line-height: 1; }
.rhythm__band { font-family: var(--serif); font-size: 1.15rem; color: var(--parchment); }
.rhythm__bar { height: 7px; background: rgba(240, 232, 220, 0.1); border-radius: 999px; overflow: hidden; }
.rhythm__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--tan), var(--sage)); border-radius: 999px; }

/* ---------- Feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), background-color 0.2s var(--ease);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--raised); }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 14px; background: rgba(201, 113, 58, 0.14); color: var(--ember); margin-bottom: 18px;
}
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--ash); font-size: 0.98rem; }

/* ---------- Feature quote / Care Rhythm ---------- */
.section--feature-quote { text-align: center; }
.quote-block { max-width: 800px; margin: 0 auto; }
.quote { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.quote__sub { margin-top: 24px; color: var(--ash); font-size: 1.12rem; max-width: 36em; margin-left: auto; margin-right: auto; }

/* ---------- Two-col panels ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; }
.panel__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 15px; background: rgba(232, 192, 122, 0.12); color: var(--candle); margin-bottom: 20px;
}
.panel h3 { font-size: 1.6rem; margin-bottom: 12px; }
.panel p { color: var(--ash); font-size: 1.02rem; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 0 auto; align-items: start; }
.plan {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 30px;
}
.plan--featured {
  border-color: rgba(201, 113, 58, 0.5);
  background: linear-gradient(180deg, rgba(201, 113, 58, 0.08), var(--surface));
  box-shadow: 0 24px 60px -30px rgba(201, 113, 58, 0.5);
}
.plan__badge {
  position: absolute; top: -13px; left: 30px; background: linear-gradient(180deg, var(--ember), var(--ember-deep));
  color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.plan__name { font-size: 1.8rem; }
.plan__price { font-family: var(--serif); font-size: 1.3rem; color: var(--candle); margin: 8px 0 4px; }
.plan__price span { color: var(--parchment); }
.plan__tag { color: var(--ash); font-size: 0.98rem; margin-bottom: 22px; }
.plan__list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 13px; }
.plan__list li { position: relative; padding-left: 28px; font-size: 0.98rem; line-height: 1.45; }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  border-radius: 50%; background: rgba(201, 113, 58, 0.18); box-shadow: inset 0 0 0 1px rgba(201, 113, 58, 0.5);
}
.plan__list li::after {
  content: ""; position: absolute; left: 5px; top: 10px; width: 6px; height: 4px;
  border-left: 1.6px solid var(--ember); border-bottom: 1.6px solid var(--ember); transform: rotate(-45deg);
}
.plan--featured .plan__list li::before { background: rgba(232, 192, 122, 0.2); box-shadow: inset 0 0 0 1px rgba(232, 192, 122, 0.55); }
.plan--featured .plan__list li::after { border-color: var(--candle); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 22px 24px; font-family: var(--serif); font-size: 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; flex: none; width: 11px; height: 11px; border-right: 2px solid var(--ember);
  border-bottom: 2px solid var(--ember); transform: rotate(45deg); transition: transform 0.25s var(--ease); margin-top: -4px;
}
.faq__item[open] summary::after { transform: rotate(225deg); margin-top: 2px; }
.faq__item p { color: var(--ash); padding: 0 24px 24px; font-size: 1rem; max-width: 60ch; }

/* ---------- CTA / waitlist ---------- */
.cta { position: relative; padding: clamp(72px, 12vw, 150px) 0; text-align: center; overflow: hidden; }
.cta__glow {
  position: absolute; inset: -40% -10% auto -10%; height: 120%;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 113, 58, 0.26), rgba(232, 192, 122, 0.06) 40%, transparent 72%);
  pointer-events: none;
}
.cta__inner { position: relative; max-width: 680px; }
.cta__title { font-size: clamp(2.3rem, 5.6vw, 4rem); }
.cta__sub { margin-top: 20px; color: var(--ash); font-size: 1.12rem; }
.waitlist {
  margin: 32px auto 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  max-width: 520px; position: relative;
}
.waitlist input {
  flex: 1 1 240px; min-width: 0; padding: 15px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border-strong); color: var(--parchment);
  font-family: var(--sans); font-size: 1rem;
}
.waitlist input::placeholder { color: var(--faint); }
.waitlist input:focus-visible { border-color: var(--ember); outline: none; box-shadow: 0 0 0 3px rgba(201, 113, 58, 0.25); }
.waitlist__msg { flex-basis: 100%; margin-top: 4px; font-size: 0.95rem; color: var(--sage); min-height: 1.2em; }
.waitlist__msg.is-error { color: var(--clay); }
.cta__fineprint { margin-top: 18px; color: var(--faint); font-size: 0.88rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 36px; background: var(--void); }
.footer__inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.footer__by { color: var(--ash); font-size: 0.92rem; margin-top: 14px; line-height: 1.5; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a { color: var(--ash); font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer__links a:hover { color: var(--parchment); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: baseline;
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--border);
}
.footer__bottom p { color: var(--faint); font-size: 0.84rem; }
.footer__safety { max-width: 46ch; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__device { order: 1; }
  .hero__sub, .hero__cta, .hero__note { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__note { justify-content: center; }
  .spotlight, .two-col, .plans { grid-template-columns: 1fr; }
  .spotlight__text { order: 2 !important; }
  .spotlight__visual { order: 1; }
  .steps { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: rgba(19, 16, 13, 0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); padding: 14px 24px 22px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a:not(.btn) { padding: 10px 0; }
  .nav__links .btn { margin-top: 8px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
  .footer__bottom { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   Polish pass (post-review): interactive feedback, candle-lit
   depth, and a11y tightening. Transitions here stay subordinate
   to the prefers-reduced-motion rule above (its !important wins).
   ============================================================ */

/* Card-like surfaces get the same hover feedback as .card */
.step, .panel, .glass-card, .plan, .card {
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease),
              background-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.step:hover, .panel:hover { border-color: var(--border-strong); transform: translateY(-3px); background: var(--raised); }
.glass-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow), 0 0 40px -16px rgba(232, 192, 122, 0.25); }
.card:hover { box-shadow: 0 0 36px -18px rgba(232, 192, 122, 0.22); } /* warm candle glow */
.plan:hover { border-color: var(--border-strong); box-shadow: 0 16px 40px -22px rgba(201, 113, 58, 0.4); }
.plan--featured:hover { box-shadow: 0 24px 60px -26px rgba(201, 113, 58, 0.6); }

/* Ghost button: clearer hover (border + a touch of glow) */
.btn--ghost:hover { background: rgba(240, 232, 220, 0.08); box-shadow: 0 0 26px -16px rgba(232, 192, 122, 0.35); }

/* Hamburger: ~48px touch target + hover affordance */
.nav__toggle { padding: 12px; gap: 7px; transition: background-color 0.2s var(--ease); }
.nav__toggle:hover { background: rgba(240, 232, 220, 0.08); }

/* FAQ rows signal clickability before opening */
.faq__item summary { transition: background-color 0.2s var(--ease); }
.faq__item summary:hover { background: rgba(240, 232, 220, 0.04); }

/* Waitlist input: smooth focus + readable placeholder. opacity:1 defeats the
   browser's default placeholder dimming that would otherwise drop contrast. */
.waitlist input { transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.waitlist input::placeholder { color: var(--ash); opacity: 1; }

/* Extra-small phones (iPhone SE / mini): tighten spacing & body text */
@media (max-width: 380px) {
  body { font-size: 15.5px; }
  .container { padding: 0 16px; }
  .btn { padding: 14px 22px; }
}
