/* ============================================================
   SMA — Senior Marketing Agent landing page
   Single-file design system. JetBrains Mono. No frameworks.
   ============================================================ */

/* ---- Design tokens ----------------------------------------- */

:root {
  /* Palette — locked. SPEC.md §4 */
  --paper:        #F5EFE3;
  --paper-dark:   #EAE2D0;
  --ink:          #1A1410;
  --ink-soft:     #3D2E20;
  --orange:       #E8602D;
  --orange-deep:  #C04A1E;
  --brown:        #8B5A3C;
  --brown-deep:   #5C3B23;
  --magnifier:    #4A4A4A;

  /* Typography scale */
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular',
               'Menlo', 'Consolas', monospace;
  --fs-hero:    clamp(2.5rem, 4.2vw, 5rem);
  --fs-section: clamp(1.75rem, 3vw, 2.5rem);
  --fs-body:    1.0625rem;
  --fs-body-lg: 1.125rem;
  --fs-small:   0.9375rem;
  --fs-micro:   0.75rem;

  --lh-tight:   1.05;
  --lh-snug:    1.2;
  --lh-body:    1.6;
  --lh-loose:   1.75;

  /* Spacing */
  --space-section: clamp(4rem, 10vw, 8rem);
  --space-block:   clamp(2rem, 5vw, 4rem);
  --max-width:     1100px;
  --gutter:        clamp(1.25rem, 4vw, 2rem);

  /* Motion */
  --ease-overshoot:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-snap:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- Reset ------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

img.pixel,
.pixel img,
img[src$=".png"] {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

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

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: var(--lh-tight); letter-spacing: -0.01em; }

::selection { background: var(--ink); color: var(--paper); }

code {
  font-family: var(--font-mono);
  font-size: 0.95em;
  padding: 0.1em 0.35em;
  background: var(--paper-dark);
  color: var(--ink);
  border: 1px solid rgba(26, 20, 16, 0.15);
}

.section--ink code {
  background: rgba(245, 239, 227, 0.1);
  color: var(--paper);
  border-color: rgba(245, 239, 227, 0.2);
}

/* ---- Layout primitives ------------------------------------- */

.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: 20px;
}

@media (min-width: 640px) {
  .container { padding-inline: 32px; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 64px; }
}

.section {
  padding-block: var(--space-section);
}

.section--paper      { background: var(--paper); }
.section--paper-dark { background: var(--paper-dark); }
.section--ink {
  background: var(--ink);
  color: var(--paper);
}
.section--ink h1, .section--ink h2 { color: var(--paper); }
.section--ink .section-label { color: var(--orange); }

.section-label {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

.section-headline {
  font-size: var(--fs-section);
  font-weight: 700;
  line-height: var(--lh-snug);
  margin-bottom: 1.5rem;
  max-width: 40ch;
}

.section-body {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  max-width: 70ch;
}

.section--ink .section-body { color: var(--paper-dark); }

/* Section header with icon marker */
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section-marker {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  margin-top: -4px; /* optical alignment with label baseline */
}

@media (min-width: 720px) {
  .section-marker { width: 64px; height: 64px; }
}

/* Section divider — 1px ink rule with centered icon */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding-block: clamp(2rem, 5vw, 3.5rem);
  max-width: none;
  margin-inline: 0;
  padding-inline: 20px;
}

@media (min-width: 640px) {
  .divider { padding-inline: 32px; }
}

@media (min-width: 1024px) {
  .divider { padding-inline: 64px; }
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

.divider img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

/* ---- Top bar ----------------------------------------------- */

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 20px;
}

@media (min-width: 640px) {
  .topbar { padding: 24px 32px; }
}

@media (min-width: 1024px) {
  .topbar { padding: 24px 64px; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.brand__logo {
  width: auto;
  height: 28px;
  color: var(--ink);
}

.brand__wordmark {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-small);
  font-weight: 500;
}

.lang-toggle a {
  color: var(--ink-soft);
  padding: 0.25rem 0.375rem;
  transition: color 0.15s var(--ease-snap);
}

.lang-toggle a:hover { color: var(--ink); }
.lang-toggle a.is-active { color: var(--ink); font-weight: 700; }
.lang-toggle .sep { color: var(--ink-soft); opacity: 0.5; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  position: relative;
  transition: transform 0.12s var(--ease-snap),
              box-shadow 0.12s var(--ease-snap),
              background 0.15s var(--ease-snap);
  box-shadow: 4px 4px 0 0 var(--ink);
}

.btn:hover,
.btn:focus-visible {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 0 var(--ink);
  outline: none;
}

.btn:active {
  transform: translate(4px, 4px) scale(0.97);
  box-shadow: 0 0 0 0 var(--ink);
  transition-duration: 80ms;
}

.btn--large:active {
  transform: translate(6px, 6px) scale(0.97);
}

.section--ink .btn--buy:active {
  box-shadow: 0 0 0 0 var(--paper);
}

.btn--buy {
  background: var(--orange);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 0 var(--ink);
}

.btn--buy:hover,
.btn--buy:focus-visible {
  background: var(--orange-deep);
}

.btn--large {
  padding: 1.25rem 2.25rem;
  font-size: var(--fs-body-lg);
  box-shadow: 6px 6px 0 0 var(--ink);
}

.btn--large:hover,
.btn--large:focus-visible {
  transform: translate(6px, 6px);
}

/* Inverted-section button: paper shadow on ink bg */
.section--ink .btn--buy {
  box-shadow: 6px 6px 0 0 var(--paper);
  border-color: var(--paper);
}
.section--ink .btn--buy:hover,
.section--ink .btn--buy:focus-visible {
  box-shadow: 0 0 0 0 var(--paper);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: var(--fs-body);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.15s var(--ease-snap),
              border-color 0.15s var(--ease-snap);
}

.btn-link:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.section--ink .btn-link { color: var(--paper-dark); }
.section--ink .btn-link:hover { color: var(--paper); border-bottom-color: var(--paper); }

/* ---- Hero -------------------------------------------------- */

.hero {
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-block: clamp(3rem, 8vw, 6rem);
  padding-inline: 20px;
}

@media (min-width: 640px) {
  .hero { padding-inline: 32px; }
}

@media (min-width: 1024px) {
  .hero { padding-inline: 64px; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.hero__headline {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
  max-width: none;
}

@media (min-width: 900px) {
  .hero__headline { margin-bottom: 96px; }
}

.hero__headline span {
  display: block;
}

.hero__headline .hl-1 { color: var(--ink); }
.hero__headline .hl-2 { color: var(--ink-soft); }
.hero__headline .hl-3 { color: var(--orange); }

.hero__subhead {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  line-height: var(--lh-body);
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero__subhead strong {
  color: var(--ink);
  font-weight: 700;
}

.hero__closer {
  display: block;
  margin-top: 0.6em;
  font-size: 0.95em;
  font-weight: 700;
  color: var(--orange-deep);
}

.hero__price {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.hero__price strong {
  color: var(--orange);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero__trust {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  max-width: 50ch;
  line-height: var(--lh-body);
}

.hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
}

.hero__art img {
  width: 100%;
  max-width: 560px;
  height: auto;
}

@media (max-width: 899px) {
  .hero__art { order: 2; }
  .hero__art img { max-width: 240px; }
}

/* ---- Page-load reveal animations --------------------------- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pixelPop {
  0%   { opacity: 0; transform: scale(0.4); }
  100% { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-snap) forwards;
}

.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.13s; }
.reveal-3 { animation-delay: 0.21s; }
.reveal-4 { animation-delay: 0.29s; }
.reveal-5 { animation-delay: 0.37s; }
.reveal-6 { animation-delay: 0.45s; }

.pixel-pop {
  opacity: 0;
  transform: scale(0.4);
  animation: pixelPop 0.7s var(--ease-overshoot) 0.3s forwards;
  transform-origin: center center;
}

/* Scroll-triggered reveals (Emil's stagger pattern) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms var(--ease-out-strong),
              transform 450ms var(--ease-out-strong);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .pixel-pop, .reveal-on-scroll {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ---- Negation section -------------------------------------- */

.negation__block + .negation__block {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--ink);
  border-color: rgba(26, 20, 16, 0.15);
}

.negation__body {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-loose);
  max-width: 65ch;
}

/* ---- Capabilities list ------------------------------------- */

.capabilities {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1rem;
}

.capability {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26, 20, 16, 0.15);
}

.capability:last-child { border-bottom: none; }

.capability__num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}

.capability__name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.capability__desc {
  color: var(--ink-soft);
  line-height: var(--lh-body);
  max-width: 60ch;
}

@media (max-width: 559px) {
  .capability {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* ---- Terminal blocks (artifact wall) ----------------------- */

.terminals {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.terminal {
  background: var(--ink);
  border: 1px solid rgba(245, 239, 227, 0.18);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--paper);
  overflow: hidden;
  box-shadow: 6px 6px 0 0 var(--orange-deep);
}

.terminal__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid rgba(245, 239, 227, 0.18);
}

.terminal__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brown);
}
.terminal__dot:nth-child(1) { background: var(--orange); }
.terminal__dot:nth-child(2) { background: var(--brown); }
.terminal__dot:nth-child(3) { background: var(--paper-dark); }

.terminal__body {
  padding: 1.25rem 1.5rem 1.5rem;
  overflow-x: auto;
  white-space: pre;
}

.terminal__body .prompt {
  color: var(--orange);
  font-weight: 500;
}

.terminal__body .accent {
  color: var(--orange);
  font-weight: 500;
}

.terminal__body .dim {
  color: rgba(245, 239, 227, 0.55);
}

@keyframes blink {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.terminal__cursor {
  display: inline-block;
  width: 0.5em;
  background: var(--paper);
  animation: blink 1s steps(1) infinite;
  margin-left: 2px;
  color: var(--paper);
}

/* Section header inside the inverted artifact wall */
.section--ink .capability__name { color: var(--paper); }
.section--ink .capability__desc { color: var(--paper-dark); }

/* ---- Methodology credits ----------------------------------- */

.credits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(26, 20, 16, 0.2);
  max-width: 1100px;
}

@media (min-width: 720px) {
  .credits { grid-template-columns: repeat(3, 1fr); }
}

.credit__name {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.credit__body {
  color: var(--ink-soft);
  line-height: var(--lh-body);
}

/* ---- Bundle file tree -------------------------------------- */

.tree {
  margin-top: 2rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--paper);
  border: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  line-height: 1.8;
  white-space: pre;
  overflow-x: auto;
  color: var(--ink);
}

.tree .accent { color: var(--orange); font-weight: 500; }
.tree .dim    { color: var(--ink-soft); }
.tree .total {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(26, 20, 16, 0.3);
  color: var(--orange);
  font-weight: 700;
  white-space: pre-wrap;
}

/* ---- Install steps ----------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1100px;
}

@media (min-width: 760px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

.step {
  border: 1px solid var(--ink);
  padding: 1.5rem 1.75rem;
  background: var(--paper);
  position: relative;
  box-shadow: 4px 4px 0 0 var(--ink);
}

.step__num {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step__num img {
  width: 24px;
  height: 24px;
}

.step__title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.step__body {
  color: var(--ink-soft);
  font-size: var(--fs-small);
  line-height: var(--lh-body);
}

.steps-foot {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: var(--fs-body);
  max-width: 60ch;
  margin-inline: auto;
}

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

.founder-note {
  max-width: 720px;
  font-size: var(--fs-body-lg);
  line-height: 1.65;
  color: var(--ink);
}

.founder-note p {
  margin-bottom: 1.25em;
}

.founder-note p:last-child {
  margin-bottom: 0;
}

.founder-note strong {
  color: var(--ink);
  font-weight: 700;
}

.founder-note .meta {
  color: var(--ink-soft);
}

.founder-note__sig {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.founder-note__sig .who {
  color: var(--orange);
}

.founder-note__sig .where {
  color: var(--ink-soft);
  font-weight: 500;
}

/* ---- Pricing (inverted) ------------------------------------ */

.pricing__anchor-headline {
  font-size: clamp(1.4rem, 2.4vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 2rem;
  max-width: 32ch;
}

.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: var(--fs-body);
  max-width: 920px;
}

.pricing__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(245, 239, 227, 0.18);
  color: var(--paper-dark);
}

.pricing__row .label {
  flex: 1 1 auto;
  min-width: 12ch;
}

.pricing__row .amount {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--paper);
  margin-left: auto;
  text-align: right;
}

.pricing__reveal {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--paper);
}

.pricing__reveal-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.pricing__reveal-sub {
  font-size: var(--fs-body-lg);
  color: var(--orange);
  margin-bottom: 1.75rem;
}

.pricing__body {
  font-size: var(--fs-body-lg);
  color: var(--paper-dark);
  line-height: var(--lh-body);
  max-width: 65ch;
  margin-bottom: 1.5rem;
}

.pricing__cta-wrap {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.pricing__fineprint {
  font-size: var(--fs-small);
  color: var(--paper-dark);
  opacity: 0.75;
  max-width: 55ch;
  line-height: var(--lh-body);
}

/* ---- FAQ --------------------------------------------------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(26, 20, 16, 0.2);
}

.faq-list .reveal-on-scroll:nth-child(1) { --reveal-delay: 0ms; }
.faq-list .reveal-on-scroll:nth-child(2) { --reveal-delay: 30ms; }
.faq-list .reveal-on-scroll:nth-child(3) { --reveal-delay: 60ms; }
.faq-list .reveal-on-scroll:nth-child(4) { --reveal-delay: 90ms; }
.faq-list .reveal-on-scroll:nth-child(5) { --reveal-delay: 120ms; }
.faq-list .reveal-on-scroll:nth-child(6) { --reveal-delay: 150ms; }
.faq-list .reveal-on-scroll:nth-child(7) { --reveal-delay: 180ms; }
.faq-list .reveal-on-scroll:nth-child(8) { --reveal-delay: 210ms; }

.faq-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(26, 20, 16, 0.2);
}

.faq-item__q {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  letter-spacing: 0.005em;
}

.faq-item__q::before {
  content: "Q. ";
  color: var(--orange);
  font-weight: 700;
}

.faq-item__a {
  color: var(--ink-soft);
  line-height: var(--lh-body);
  max-width: 75ch;
}

.faq-item__a::before {
  content: "A. ";
  color: var(--orange);
  font-weight: 700;
}

/* ---- Urgency band ------------------------------------------ */

.urgency-band {
  max-width: 560px;
  margin: 2.5rem auto 0;
  padding: 1.25rem 1.5rem 1.4rem;
  background: var(--paper-dark);
  border-left: 6px solid var(--orange);
  text-align: left;
}

.urgency-band__label {
  display: block;
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.urgency-band__deadline {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin: 0 0 0.25rem;
}

.urgency-band__prices {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}

.urgency-band__prices .now {
  color: var(--orange);
}

.urgency-band__prices .later {
  color: var(--ink-soft);
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 0.5em;
}

/* ---- Final CTA --------------------------------------------- */

.final-cta {
  text-align: center;
  padding-block: var(--space-section);
}

.final-cta__pre {
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.final-cta__headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  max-width: 22ch;
  margin-inline: auto;
}

.final-cta__body {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  line-height: var(--lh-body);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
}

.final-cta__art {
  width: 180px;
  height: auto;
  margin: 2rem auto;
}

.final-cta__micro {
  margin-top: 1.5rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: var(--lh-body);
}

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

.footer {
  border-top: 1px solid var(--ink);
  padding: 2.5rem 20px;
  max-width: none;
  margin-inline: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
}

@media (min-width: 640px) {
  .footer { padding: 2.5rem 32px; }
}

@media (min-width: 1024px) {
  .footer { padding: 2.5rem 64px; }
}

@media (min-width: 720px) {
  .footer {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 2rem;
  }
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer__logo {
  width: auto;
  height: 40px;
  flex-shrink: 0;
  color: var(--orange);
}

.footer__byline {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.6;
}

.footer__byline a {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.footer__legal {
  text-align: left;
  line-height: var(--lh-body);
  max-width: 40ch;
}

@media (min-width: 720px) {
  .footer__legal { text-align: right; max-width: 32ch; }
}

/* ---- Utility ----------------------------------------------- */

.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;
}

.text-orange { color: var(--orange); }
.text-soft   { color: var(--ink-soft); }
