/* =========================================================
   RECALL — Editorial Premium
   Plain CSS. Mobile-first. Respects prefers-reduced-motion.
   ========================================================= */

:root {
  --bg:        #141210;
  --bg-2:      #1a1714;
  --bg-3:      #211c18;
  --card:      #1c1814;
  --line:      rgba(240, 235, 224, 0.10);
  --line-soft: rgba(240, 235, 224, 0.06);

  --text:      #f0ebe0;
  --muted:     #a89e90;
  --muted-2:   #7e766b;

  --accent:    #cf7445;
  --accent-2:  #c1693f;
  --accent-ink:#1a1714;
  --accent-glow: rgba(207, 116, 69, 0.35);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "Space Mono", "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1140px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --radius: 18px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--accent-ink);
  padding: 0.6rem 1rem; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 18ch;
}
.section__title .muted { color: var(--muted); }

.section__lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  max-width: 56ch;
  margin-top: 1.4rem;
}

.accent-italic {
  font-style: italic;
  color: var(--accent);
}
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), border-color 0.35s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 8px 24px -12px var(--accent-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 16px 40px -14px var(--accent-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px -18px var(--accent-glow);
}
.btn--small { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn--block { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 1rem var(--pad);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav.scrolled {
  background: rgba(20, 18, 16, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-right: auto;
}
.wordmark__accent { color: var(--accent); }
.wordmark--footer { font-size: 1.6rem; }

.nav__links { display: none; gap: 2rem; }
.nav__links a {
  font-size: 0.9rem; color: var(--muted);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(7rem, 16vw, 10rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, var(--bg-2), transparent 60%),
    var(--bg);
}
.hero__inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad);
  display: grid; gap: clamp(3rem, 8vw, 5rem);
  align-items: center;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero__lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2.4vw, 1.3rem);
  max-width: 46ch;
  margin-bottom: 2.2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__actions--center { justify-content: center; }
.hero__note {
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}

/* ---------- Glowing orbs ---------- */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px);
  pointer-events: none; z-index: 0;
  opacity: 0.55;
}
.orb--1 {
  width: 42vw; height: 42vw; max-width: 520px; max-height: 520px;
  top: -8%; right: -6%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 68%);
  animation: drift 18s ease-in-out infinite;
}
.orb--2 {
  width: 30vw; height: 30vw; max-width: 360px; max-height: 360px;
  bottom: -14%; left: -8%;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  opacity: 0.3;
  animation: drift 22s ease-in-out infinite reverse;
}
.orb--3 {
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: 0.22;
  animation: pulse 12s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-4%, 5%) scale(1.08); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.16; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.28; transform: translate(-50%, -50%) scale(1.12); }
}

/* =========================================================
   PHONE MOCKUP + ANIMATION
   ========================================================= */
.hero__phone {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.phone {
  position: relative;
  width: min(290px, 78vw);
  aspect-ratio: 9 / 19;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(160deg, #2c2620, #14110e);
  box-shadow:
    0 0 0 1px rgba(240,235,224,0.06),
    0 40px 80px -30px rgba(0,0,0,0.9),
    0 0 60px -20px var(--accent-glow);
}
.phone__notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 24px; border-radius: 0 0 14px 14px;
  background: #0c0a08; z-index: 5;
}
.phone__screen {
  position: relative; height: 100%; width: 100%;
  border-radius: 32px; overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, #241f1a, #15120f 70%);
}

/* Each scene is stacked; the animation reveals one at a time */
.scene {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 54px 20px 28px;
  opacity: 0;
}

/* ---- Stage 1: incoming call ---- */
.scene--call {
  align-items: center; justify-content: center; text-align: center; gap: 0.4rem;
  animation: sceneCall 12s var(--ease) infinite;
}
.call__status {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
}
.call__avatar {
  width: 78px; height: 78px; border-radius: 50%;
  margin: 0.6rem auto 0.4rem;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, var(--accent), var(--accent-2));
  color: var(--accent-ink); font-weight: 700; font-size: 1.1rem;
  font-family: var(--mono);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: ring 1.6s ease-out infinite;
}
.call__number { font-family: var(--serif); font-size: 1.35rem; }
.call__sub { font-size: 0.8rem; color: var(--muted); }
.call__actions { display: flex; gap: 2.4rem; margin-top: 1.6rem; }
.call__btn { width: 50px; height: 50px; border-radius: 50%; position: relative; }
.call__btn--decline { background: #c0392b; }
.call__btn--accept  { background: #2c9c4a; }
.call__btn::before {
  content: "📞"; position: absolute; inset: 0;
  display: grid; place-items: center; font-size: 1.2rem;
}
.call__btn--decline::before { transform: rotate(135deg); }
@keyframes ring {
  0%   { box-shadow: 0 0 0 0 var(--accent-glow); }
  70%  { box-shadow: 0 0 0 18px rgba(207,116,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(207,116,69,0); }
}

/* ---- Stage 2: missed banner ---- */
.scene--missed {
  align-items: center; justify-content: flex-start; padding-top: 70px;
  animation: sceneMissed 12s var(--ease) infinite;
}
.missed__banner {
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(192, 57, 43, 0.14);
  border: 1px solid rgba(192, 57, 43, 0.4);
  color: #f3c7c0;
  padding: 0.7rem 1rem; border-radius: 14px;
  font-size: 0.82rem; font-weight: 500;
}
.missed__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #e74c3c;
  box-shadow: 0 0 10px #e74c3c;
}

/* ---- Stage 3: SMS ---- */
.scene--sms {
  padding: 54px 14px 22px;
  animation: sceneSms 12s var(--ease) infinite;
}
.sms__header {
  display: flex; align-items: center; gap: 0.4rem;
  padding-bottom: 0.7rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.sms__back { color: var(--accent); font-size: 1.3rem; line-height: 1; }
.sms__name { font-size: 0.9rem; font-weight: 600; }
.sms__body { display: flex; flex-direction: column; gap: 0.7rem; margin-top: auto; }

.bubble {
  position: relative;
  max-width: 84%;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  font-size: 0.86rem; line-height: 1.45;
}
.bubble--out {
  align-self: flex-end;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  color: #fff;
  border-bottom-right-radius: 5px;
  animation: bubbleIn 12s var(--ease) infinite;
}
.bubble__text {
  display: inline-block;
  opacity: 0;
  animation: textIn 12s steps(1) infinite;
}
.typing {
  display: inline-flex; gap: 4px; align-items: center; height: 1rem;
  animation: typingOut 12s steps(1) infinite;
}
.typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.85);
  animation: blink 1.2s ease-in-out infinite;
}
.typing i:nth-child(2) { animation-delay: 0.2s; }
.typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1;   transform: translateY(-3px); }
}
.sms__meta {
  align-self: flex-end;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0;
  animation: metaIn 12s steps(1) infinite;
}
.sms__meta span { color: var(--accent); }

.phone__caption {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted-2);
}

/* ----- Master 12s loop: scene visibility windows -----
   call   : 0–28%   missed : 30–42%   sms : 44–96% (hold)            */
@keyframes sceneCall {
  0%   { opacity: 0; transform: scale(0.98); }
  4%   { opacity: 1; transform: scale(1); }
  26%  { opacity: 1; transform: scale(1); }
  30%  { opacity: 0; transform: scale(0.98); }
  100% { opacity: 0; }
}
@keyframes sceneMissed {
  0%, 30% { opacity: 0; transform: translateY(8px); }
  34%     { opacity: 1; transform: translateY(0); }
  42%     { opacity: 1; transform: translateY(0); }
  46%     { opacity: 0; transform: translateY(-8px); }
  100%    { opacity: 0; }
}
@keyframes sceneSms {
  0%, 44% { opacity: 0; transform: translateY(10px); }
  49%     { opacity: 1; transform: translateY(0); }
  96%     { opacity: 1; transform: translateY(0); }
  100%    { opacity: 0; transform: translateY(0); }
}
/* bubble pops in just after sms scene appears */
@keyframes bubbleIn {
  0%, 49% { opacity: 0; transform: translateY(14px) scale(0.9); }
  54%     { opacity: 1; transform: translateY(0) scale(1); }
  96%     { opacity: 1; transform: translateY(0) scale(1); }
  100%    { opacity: 0; }
}
/* typing dots show 54–66%, then hide */
@keyframes typingOut {
  0%, 53%  { opacity: 0; width: 0; }
  54%      { opacity: 1; width: auto; }
  66%      { opacity: 1; width: auto; }
  67%, 100%{ opacity: 0; width: 0; }
}
/* text reveals 67% onward */
@keyframes textIn {
  0%, 66%  { opacity: 0; }
  67%, 100%{ opacity: 1; }
}
/* "texted back in 4s" confirmation appears near the end */
@keyframes metaIn {
  0%, 80%  { opacity: 0; }
  84%, 100%{ opacity: 1; }
}

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section { padding: clamp(4.5rem, 11vw, 8rem) 0; position: relative; }

.hairline-v { width: 1px; align-self: stretch; background: var(--line); }

/* ---- Problem stats ---- */
.problem { border-top: 1px solid var(--line-soft); }
.stat-row {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: flex; flex-direction: column; gap: 2rem;
}
.stat { display: flex; flex-direction: column; gap: 0.5rem; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 9vw, 4rem);
  line-height: 1; color: var(--accent);
  font-weight: 500;
}
.stat__label { color: var(--muted); font-size: 0.95rem; max-width: 22ch; }
@media (min-width: 760px) {
  .stat-row { flex-direction: row; align-items: stretch; gap: clamp(2rem, 5vw, 4rem); }
  .stat { flex: 1; }
}

/* ---- How it works ---- */
.steps {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  display: grid; gap: 1.25rem;
}
@media (min-width: 680px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px){ .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.9rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.step::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% -20%, var(--accent-glow), transparent 60%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(207,116,69,0.4);
  box-shadow: 0 24px 50px -30px rgba(0,0,0,0.8);
}
.step:hover::before { opacity: 0.5; }
.step__num {
  position: relative;
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--accent); display: block; margin-bottom: 1.1rem;
}
.step__title { position: relative; font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin-bottom: 0.6rem; }
.step__text { position: relative; color: var(--muted); font-size: 0.95rem; }

/* ---- Who it's for ---- */
.who { border-top: 1px solid var(--line-soft); }
.pills { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: clamp(2.5rem, 6vw, 3.5rem); }
.pill {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(240,235,224,0.02);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
              color 0.3s var(--ease), background 0.3s var(--ease);
}
.pill:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(207,116,69,0.08);
}

/* ---- Trust ---- */
.trust { border-top: 1px solid var(--line-soft); background: var(--bg-2); }
.trust__grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 820px) { .trust__grid { grid-template-columns: repeat(3, 1fr); } }
.trust__item {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}
.trust__title { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 0.5rem; }
.trust__text { color: var(--muted); font-size: 0.95rem; }

/* ---- Pricing ---- */
.pricing { border-top: 1px solid var(--line-soft); }
.price-card {
  position: relative;
  margin-top: clamp(3rem, 7vw, 4rem);
  max-width: 460px;
  background: linear-gradient(180deg, var(--bg-3), var(--card));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 2.75rem);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207,116,69,0.45);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.9);
}
.price-card__glow {
  position: absolute; top: -40%; right: -30%;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.price-card__name {
  position: relative;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.price-card__amount {
  position: relative;
  display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap;
  margin: 1rem 0 0.3rem;
}
.price-card__from { font-size: 0.9rem; color: var(--muted); }
.price-card__num {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3.2rem, 12vw, 4.2rem); line-height: 1; color: var(--text);
}
.price-card__per { color: var(--muted); font-size: 1rem; }
.price-card__band { position: relative; color: var(--accent); font-size: 0.9rem; margin-bottom: 1.6rem; }
.price-card__list {
  position: relative;
  display: grid; gap: 0.8rem; margin-bottom: 1.8rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.price-card__list li {
  position: relative; padding-left: 1.8rem; color: var(--text); font-size: 0.96rem;
}
.price-card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 9px; height: 5px; border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent); transform: rotate(-45deg);
}
.price-card__note {
  position: relative;
  margin-top: 1.2rem; color: var(--muted-2); font-size: 0.82rem;
}

/* ---- Roadmap timeline ---- */
.roadmap { border-top: 1px solid var(--line-soft); background: var(--bg-2); }
.timeline {
  margin-top: clamp(3rem, 7vw, 4.5rem);
  position: relative;
  padding-left: 1.75rem;
}
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px;
  width: 1px; background: linear-gradient(var(--accent), var(--line) 40%);
}
.tl { position: relative; padding: 0 0 2.4rem 1.5rem; }
.tl:last-child { padding-bottom: 0; }
.tl__dot {
  position: absolute; left: calc(-1.75rem + 1px); top: 4px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--accent);
}
.tl:first-child .tl__dot { background: var(--accent); box-shadow: 0 0 14px var(--accent-glow); }
.tl__tag {
  display: inline-block;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.5rem;
}
.tl__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.25rem, 3.5vw, 1.6rem); margin-bottom: 0.4rem; }
.tl__text { color: var(--muted); max-width: 52ch; }

@media (min-width: 760px) {
  .timeline { padding-left: 0; margin-left: 2rem; }
  .timeline::before { left: 5px; }
  .tl { padding-left: 2.5rem; }
  .tl__dot { left: 0; }
}

/* ---- Final CTA ---- */
.cta {
  position: relative; overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(80% 120% at 50% 0%, var(--bg-3), var(--bg) 70%);
}
.cta__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta__inner .eyebrow,
.cta__inner .section__lead { text-align: center; }
.cta__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.1rem, 6vw, 3.6rem); line-height: 1.06;
  letter-spacing: -0.015em; max-width: 16ch;
}
.cta .section__lead { margin-bottom: 2.2rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 4.5rem) 0 2.5rem;
  background: var(--bg);
}
.footer__inner {
  display: flex; flex-direction: column; gap: 2rem;
  justify-content: space-between;
}
.footer__addr { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; }
.footer__meta { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__mail {
  color: var(--accent); font-size: 1.05rem;
  border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease);
  width: max-content;
}
.footer__mail:hover { border-bottom-color: var(--accent); }
.footer__est { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); }
.footer__fine {
  max-width: var(--maxw); margin: 2.5rem auto 0; padding-inline: var(--pad);
  color: var(--muted-2); font-size: 0.82rem;
  border-top: 1px solid var(--line-soft); padding-top: 1.5rem;
}
@media (min-width: 700px) {
  .footer__inner { flex-direction: row; align-items: flex-end; }
  .footer__meta { align-items: flex-end; text-align: right; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* stagger children where they share a parent grid */
.steps .step:nth-child(2) { transition-delay: 0.08s; }
.steps .step:nth-child(3) { transition-delay: 0.16s; }
.steps .step:nth-child(4) { transition-delay: 0.24s; }
.timeline .tl:nth-child(2) { transition-delay: 0.08s; }
.timeline .tl:nth-child(3) { transition-delay: 0.16s; }
.timeline .tl:nth-child(4) { transition-delay: 0.24s; }
.stat-row .stat:nth-child(3) { transition-delay: 0.08s; }
.stat-row .stat:nth-child(5) { transition-delay: 0.16s; }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .orb { display: none; }

  /* Show the resolved end-state of the phone story (SMS replied) */
  .scene--call, .scene--missed { opacity: 0; }
  .scene--sms { opacity: 1; }
  .bubble--out { opacity: 1; transform: none; }
  .bubble__text { opacity: 1; }
  .typing { display: none; }
  .sms__meta { opacity: 1; }
}
