/* =========================================================
   Speak Up Stack quiz — clean rebuild
   Palette: warm cream / oxblood wine / champagne / blush
   ========================================================= */

:root {
  --cream:      #F1E7D0;
  --cream-lift: #F9F1DE;
  --ink:        #1C1512;
  --ink-soft:   #7A6B5C;
  --wine:       #A5253F;
  --wine-lift:  #C42B4A;
  --wine-deep:  #4A0F1D;
  --honey:      #C89358;
  --honey-lift: #D9A66C;
  --blush:      #E9BEB6;
  --blush-deep: #D89A90;
  --rule:        rgba(28, 21, 18, 0.14);
  --rule-strong: rgba(28, 21, 18, 0.28);

  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans:  "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

a { color: inherit; text-decoration: none; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--cream);
  overflow-x: clip;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--cream-lift) 0%, var(--cream) 480px);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: clip;
}

::selection { background: var(--wine); color: var(--cream-lift); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wine-deep);
  padding-top: env(safe-area-inset-top, 0px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--honey) 0%, var(--honey) 34%,
    var(--blush-deep) 34%, var(--blush-deep) 67%,
    var(--wine) 67%, var(--wine) 100%);
}

.site-header-inner {
  max-width: 38rem;
  margin: 0 auto;
  padding: 0.85rem max(1.25rem, env(safe-area-inset-right)) 0.85rem max(1.25rem, env(safe-area-inset-left));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.mark-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--cream-lift);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.mark-bar { color: var(--honey); font-size: 1rem; line-height: 1; }

.mark-role {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
  white-space: nowrap;
}

.social-nav { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--cream);
  transition: color 0.18s ease, transform 0.18s ease;
}

.social-icon svg { width: 1.15rem; height: 1.15rem; display: block; }
.social-icon:hover { color: var(--honey); transform: translateY(-1px); }

@media (max-width: 34rem) {
  .site-mark { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
  .mark-bar { display: none; }
  .mark-name { font-size: 1.05rem; }
  .mark-role { font-size: 0.6rem; }
  .social-icon { width: 1.9rem; height: 1.9rem; }
  .social-icon svg { width: 1rem; height: 1rem; }
}

/* ---------- Shell + screens ---------- */

.shell {
  max-width: 38rem;
  margin: 0 auto;
  padding: 2.5rem max(1.25rem, env(safe-area-inset-right)) 3rem max(1.25rem, env(safe-area-inset-left));
}

@media (min-width: 40rem) {
  .shell { padding: 4rem 1.5rem; }
}

.screen[hidden] { display: none; }
.screen { animation: rise 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(0.6rem); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Shared type ---------- */

.marker {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 1.75rem;
  font-weight: 500;
}

.marker-hero { margin-bottom: 1rem; }

.hero {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0 0 2rem;
  color: var(--ink);
  overflow-wrap: break-word;
}

.hero em {
  font-style: italic;
  color: var(--wine);
  position: relative;
  display: inline-block;
}

.hero-sm {
  font-size: clamp(2.25rem, 8.5vw, 3.75rem);
  color: var(--wine);
  line-height: 1;
  margin: 0 0 1.5rem;
  overflow-wrap: break-word;
}

.lede {
  font-size: 1.1875rem;
  line-height: 1.55;
  margin: 0 0 2.25rem;
}

.lede em {
  font-family: var(--serif);
  font-size: 1.3em;
  font-style: italic;
  color: var(--wine);
  line-height: 1;
}

/* Hand-drawn underline */
.underline-hand { position: relative; display: inline-block; }
.underline-hand::after {
  content: "";
  position: absolute;
  left: -0.04em; right: -0.04em; bottom: -0.14em;
  height: 0.32em;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M4 9 Q 40 4, 80 7 T 160 6 Q 180 5, 196 8' stroke='%23C89358' stroke-width='2.4' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}

.hl {
  background: linear-gradient(180deg, transparent 62%, rgba(216,154,144,0.38) 62%, rgba(216,154,144,0.38) 94%, transparent 94%);
  padding: 0 0.12em;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  min-height: 3rem;
  padding: 1.05rem 1.75rem;
  border: none;
  border-radius: 0;
  background: var(--wine);
  color: var(--cream-lift);
  cursor: pointer;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 1px 0 0 rgba(165, 37, 63, 0.4);
}

.btn:hover {
  background: var(--wine-lift);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(165, 37, 63, 0.4);
}

.btn:hover .btn-arrow { transform: translateX(3px); }
.btn:active { transform: translateY(0); }
.btn-arrow { display: inline-block; transition: transform 0.2s ease; }
.btn-lg { font-size: 1rem; padding: 1.25rem 2rem; }
.btn-full { display: flex; width: 100%; }

.btn-honey {
  background: var(--honey);
  color: var(--ink);
  box-shadow: 0 1px 0 0 rgba(200, 147, 88, 0.5);
}
.btn-honey:hover { background: var(--honey-lift); box-shadow: 0 10px 24px -6px rgba(200, 147, 88, 0.55); }

.link {
  display: inline-block;
  min-height: 2.75rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  background: none;
  border: none;
  padding: 0.85rem 0.25rem;
  margin-top: 1.5rem;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--rule-strong);
  text-underline-offset: 0.32em;
  touch-action: manipulation;
  transition: color 0.16s ease;
}
.link:hover { color: var(--wine); }
.link-center { display: block; margin: 1.5rem auto 0; }

:focus-visible { outline: 2px solid var(--honey); outline-offset: 3px; }

/* ---------- Intro ---------- */

.screen-intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - 9rem);
  padding: clamp(1rem, 3vh, 2.5rem) 0;
}

.masthead {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 clamp(1rem, 3.5vh, 3rem);
}

.mast-line { flex: 1; height: 1px; background: var(--rule-strong); }

.mast-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.screen-intro .hero {
  font-size: clamp(2.5rem, 8.5vh + 1.4vw, 6rem);
  margin-bottom: clamp(1rem, 3vh, 2.25rem);
}

.screen-intro .lede {
  font-size: clamp(1rem, 2.2vh + 0.4vw, 1.375rem);
  max-width: 32rem;
  margin: 0 auto clamp(1.25rem, 3.5vh, 2.5rem);
}

.screen-intro .btn-hero { font-size: 1.0625rem; padding: 1.25rem 2rem; }

.meta-pills {
  list-style: none;
  padding: 0;
  margin: clamp(0.85rem, 2.2vh, 1.5rem) 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.meta-pills li { display: inline-flex; align-items: center; gap: 0.45rem; }
.pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--honey); }

/* Staggered entrance */
@media (prefers-reduced-motion: no-preference) {
  .screen-intro > * { opacity: 0; animation: fadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .screen-intro .masthead   { animation-delay: 0.10s; }
  .screen-intro .hero       { animation-delay: 0.30s; }
  .screen-intro .lede       { animation-delay: 0.60s; }
  .screen-intro .btn-hero   { animation-delay: 0.85s; }
  .screen-intro .meta-pills { animation-delay: 1.05s; }
  .underline-hand::after {
    clip-path: inset(0 100% 0 0);
    animation: drawUnderline 1s cubic-bezier(0.65, 0, 0.35, 1) 0.95s both;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); filter: blur(3px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

@keyframes drawUnderline {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

/* ---------- Quiz ---------- */

.screen-quiz {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 8rem);
}

.progress-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.progress-dots { display: flex; gap: 0.375rem; flex: 1; min-width: 60%; }

.progress-dot { flex: 1; height: 3px; background: var(--rule); transition: background-color 0.4s ease; }
.progress-dot.filled { background: var(--wine); }
.progress-dot.current { background: var(--honey); }

.counter {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
  white-space: nowrap;
  font-weight: 500;
}

.question-frame {
  background: var(--cream-lift);
  border-top: 4px solid var(--wine);
  padding: clamp(1rem, 2.5vh, 1.75rem) 1.25rem clamp(0.25rem, 1vh, 0.5rem);
  margin: 0 0 1rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  animation: gentleRise 0.5s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.question-frame::before {
  content: "";
  position: absolute;
  top: -4px; right: 0;
  width: 30%; height: 4px;
  background: var(--blush-deep);
}

@media (min-width: 40rem) {
  .question-frame { padding-left: 2rem; padding-right: 2rem; }
}

@keyframes gentleRise {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.question-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(28, 21, 18, 0.08);
  margin-bottom: clamp(0.65rem, 1.8vh, 1.15rem);
}

.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blush-deep); flex-shrink: 0; }
.badge-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); font-weight: 500; }

.question {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 3.4vh + 1.2vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(0.75rem, 2vh, 1.5rem);
}

.options { display: flex; flex-direction: column; }

.option {
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.55vh + 0.35vw, 1.0625rem);
  line-height: 1.4;
  text-align: left;
  color: var(--ink);
  background: none;
  border: none;
  border-top: 1px solid rgba(28, 21, 18, 0.08);
  padding: clamp(0.7rem, 1.7vh, 1.2rem) 0 clamp(0.7rem, 1.7vh, 1.2rem) 1.4rem;
  cursor: pointer;
  position: relative;
  touch-action: manipulation;
  transition: color 0.2s ease, padding-left 0.2s ease, background-color 0.2s ease;
}

.option:first-child { border-top: none; }

.option::before {
  content: "\2192";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--honey);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.options:not(.no-hover) .option:hover,
.option:active {
  color: var(--wine);
  padding-left: 1.85rem;
  background: linear-gradient(90deg, rgba(200, 147, 88, 0.09), transparent 65%);
}

.options:not(.no-hover) .option:hover::before,
.option:active::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0.35rem);
}

.option.selected {
  color: var(--cream-lift) !important;
  background: var(--wine) !important;
  padding-left: 2.2rem !important;
}

.option.selected::before {
  content: "\2713" !important;
  opacity: 1 !important;
  color: var(--honey) !important;
  font-weight: 600;
  left: 0.15rem;
  transform: translateY(-50%) translateX(0.6rem) !important;
}

.option:disabled { cursor: default; }
.option:disabled:not(.selected) { opacity: 0.28; transition: opacity 0.35s ease; }

.quiz-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.quiz-reassure {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin: 0;
  font-style: italic;
  text-align: right;
}

/* ---------- Gate ---------- */

.screen-gate {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 9rem);
  padding: clamp(0.5rem, 2vh, 1.5rem) 0;
}

.screen-gate .hero-sm {
  font-size: clamp(1.85rem, 4.5vh + 1vw, 3.25rem);
  margin-bottom: clamp(0.85rem, 2.5vh, 1.5rem);
}

.gate-card {
  background: var(--cream-lift);
  padding: clamp(1.15rem, 3vh, 2.25rem) 1.4rem clamp(1rem, 2.5vh, 1.75rem);
  position: relative;
  border-top: 3px solid var(--honey);
}

@media (min-width: 40rem) {
  .gate-card { padding-left: 2rem; padding-right: 2rem; }
}

.marker-honey { color: var(--honey); }

.gate-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 3vh + 0.9vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(0.5rem, 1.4vh, 0.85rem);
}

.gate-title em { font-style: italic; color: var(--wine); }

.gate-sub {
  font-size: clamp(0.875rem, 1.6vh + 0.25vw, 1rem);
  margin: 0 0 clamp(0.9rem, 2.4vh, 1.6rem);
  line-height: 1.5;
}

.form { margin: 0 0 clamp(0.75rem, 1.8vh, 1.15rem); }

.form-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.65rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  background: none;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  padding: 0.5rem 0 0.65rem;
  margin-bottom: clamp(0.85rem, 2vh, 1.35rem);
  outline: none;
  transition: border-bottom-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--ink-soft); opacity: 0.55; font-style: italic; }
.form-input:focus { border-bottom-color: var(--wine); }

.reassure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin: 0;
  text-align: center;
}

.reassure-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--honey); flex-shrink: 0; }

/* ---------- Result ---------- */

.teaser { font-size: 1.1875rem; line-height: 1.55; margin: 0 0 1.75rem; }

.card {
  padding: 1.75rem 1.5rem 1.85rem;
  margin-top: 2rem;
  position: relative;
}

@media (min-width: 40rem) { .card { padding: 2rem 2rem 2.15rem; } }

.card-tactic {
  background: linear-gradient(180deg, rgba(233,190,182,0.55), rgba(233,190,182,0.22));
  border-top: 5px solid var(--blush-deep);
  box-shadow: inset 0 0 0 1px rgba(216,154,144,0.35), 0 4px 20px -8px rgba(216,154,144,0.35);
}
.card-tactic .card-title { color: var(--wine); }

.card-gap {
  background: rgba(28, 21, 18, 0.035);
  border-top: 3px dashed var(--ink-soft);
  margin-top: 1.5rem;
}
.card-gap .card-title, .card-gap .block-body { color: var(--ink-soft); }
.card-gap .card-badge { background: rgba(28,21,18,0.05); border-color: rgba(28,21,18,0.08); }

.card-founder {
  background: var(--cream-lift);
  border-top: 4px solid var(--honey);
  margin-top: 2rem;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(28, 21, 18, 0.08);
  margin-bottom: 1.15rem;
}

.badge-dot-ink { background: var(--ink-soft); }
.badge-dot-honey { background: var(--honey); }

.card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.9rem;
}

.card-title-muted { color: var(--ink-soft); }
.block-body { margin: 0; font-size: 1.0625rem; line-height: 1.6; }

/* Result entrance */
@media (prefers-reduced-motion: no-preference) {
  .screen-result .marker-hero,
  .screen-result .hero-sm,
  .screen-result .teaser,
  .screen-result .card-tactic,
  .screen-result .card-gap,
  .screen-result .offer,
  .screen-result .card-founder,
  .screen-result .link-center {
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .screen-result .marker-hero  { animation-delay: 0.05s; }
  .screen-result .hero-sm      { animation-delay: 0.15s; }
  .screen-result .teaser       { animation-delay: 0.30s; }
  .screen-result .card-tactic  { animation-delay: 0.45s; }
  .screen-result .card-gap     { animation-delay: 0.60s; }
  .screen-result .offer        { animation-delay: 0.75s; }
  .screen-result .card-founder { animation-delay: 1.05s; }
  .screen-result .link-center  { animation-delay: 1.20s; }
}

/* ---------- Offer ---------- */

.offer {
  background: var(--wine-deep);
  color: var(--cream-lift);
  margin: 3.5rem -1.25rem 0;
  padding: 2.75rem 1.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 6px solid var(--honey);
}

@media (min-width: 40rem) {
  .offer { margin-left: -3rem; margin-right: -3rem; padding: 4rem 3.5rem 3.25rem; }
}

.offer-inner { position: relative; max-width: 32rem; margin: 0 auto; }

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  background: rgba(200, 147, 88, 0.15);
  border: 1px solid rgba(200, 147, 88, 0.4);
  margin-bottom: 1.5rem;
}

.offer-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--honey); animation: pulse 2.4s ease-in-out infinite; }
.offer-badge-text { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--honey); font-weight: 500; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

.offer-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 8.5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0 0 1.15rem;
  color: var(--cream-lift);
}

.offer-title em { font-style: italic; color: var(--honey); }

.offer-kicker-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--honey);
  margin: 0 0 1.5rem;
}

.offer-body { font-size: 1.0625rem; line-height: 1.55; color: var(--cream); opacity: 0.88; margin: 0 0 1.75rem; }

.offer-divider { display: flex; align-items: center; gap: 0.8rem; margin: 1.75rem 0; }
.offer-divider span:not(.divider-dot) { flex: 1; height: 1px; background: rgba(241, 231, 208, 0.2); }
.divider-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--honey); flex-shrink: 0; }

.offer-list { list-style: none; padding: 0; margin: 0; }
.offer-list li {
  display: flex;
  gap: 1.15rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(241, 231, 208, 0.15);
  align-items: flex-start;
}
.offer-list li:first-child { border-top: none; }

.offer-num { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.14em; color: var(--honey); padding-top: 0.4rem; font-weight: 500; flex-shrink: 0; }
.offer-name { display: block; font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--cream-lift); line-height: 1; margin-bottom: 0.5rem; }
.offer-desc { display: block; font-size: 0.9375rem; line-height: 1.55; color: var(--cream); opacity: 0.85; }
.offer-desc em { font-family: var(--serif); font-style: italic; color: var(--blush); font-size: 1.15em; }

.offer-price { text-align: center; margin: 0.5rem 0 1.75rem; }
.price-tag { display: inline-flex; align-items: baseline; justify-content: center; gap: 1rem; margin: 0 0 0.85rem; }
.price-was { font-family: var(--serif); font-size: 1.35rem; color: var(--cream); opacity: 0.55; text-decoration: line-through; text-decoration-color: var(--blush); }
.price-now { font-family: var(--serif); font-size: clamp(3rem, 11vw, 3.75rem); line-height: 1; color: var(--honey); letter-spacing: -0.02em; font-style: italic; }
.price-note { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blush); margin: 0; font-weight: 500; }
.price-note-mark { width: 5px; height: 5px; border-radius: 50%; background: var(--blush); animation: pulse 2.4s ease-in-out infinite; }

.offer-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.85;
  padding: 1rem 1.15rem;
  background: rgba(0, 0, 0, 0.22);
  border-left: 2px solid var(--honey);
}

.guarantee-mark { color: var(--honey); font-weight: 500; flex-shrink: 0; padding-top: 0.05rem; }

/* ---------- Founder ---------- */

.founder-body { font-size: 1rem; line-height: 1.6; margin: 0; }

/* ---------- Footer ---------- */

.foot {
  max-width: 38rem;
  margin: 0 auto;
  padding: 2rem max(1.25rem, env(safe-area-inset-right)) calc(2.5rem + env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-left));
  text-align: center;
  border-top: 1px solid var(--rule);
}

.foot p { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin: 0; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .option:hover { padding-left: 1.4rem; background: none; }
  .btn:hover, .btn:hover .btn-arrow { transform: none; }
}
