/* ════════════════════════════════════════════════════════════════════════
   THE MORNING COMPANY - Landing styles
   Dark "dawn" base + sunrise gradient accents.
   Edit the tokens in :root to re-skin the whole page in seconds.
   ════════════════════════════════════════════════════════════════════════ */

:root {
  /* - Surfaces (deep night → dawn) - */
  --ink-900: #07090f;
  --ink-850: #0a0d16;
  --ink-800: #0d111c;
  --ink-700: #111626;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.045);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* - Text - */
  --text: #eef1f6;
  --text-dim: #9aa3b5;
  --text-dimmer: #626c80;

  /* - Sunrise palette - */
  --sun-gold: #ffc56e;
  --sun-amber: #ff9d4d;
  --sun-coral: #ff6a3d;
  --sun-violet: #7c5cff;
  --grad-sun: linear-gradient(135deg, #ffc56e 0%, #ff9d4d 45%, #ff6a3d 100%);
  --grad-sun-soft: linear-gradient(135deg, #ffd89e 0%, #ff8f5e 100%);
  --glow-warm: rgba(255, 122, 71, 0.45);

  /* - Layout - */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* - Type - */
  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--ink-900);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Ambient warm grain / vignette over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(124, 92, 255, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 0%, rgba(255, 122, 71, 0.06), transparent 55%);
}

main, .footer, .nav { position: relative; z-index: 1; }

/* ── Helpers ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(72px, 11vw, 140px); }

.grad-text {
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sun-amber);
  margin-bottom: 18px;
}

.section__head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.section__lead {
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-dim);
  max-width: 60ch;
}

.link-arrow {
  color: var(--sun-amber);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sun-coral);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.d-md { display: none; }
@media (min-width: 760px) { .d-md { display: inline; } }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  --btn-pad-y: 12px;
  --btn-pad-x: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--radius-pill);
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--lg { --btn-pad-y: 16px; --btn-pad-x: 30px; font-size: 1.02rem; }

.btn--primary {
  background: var(--grad-sun);
  color: #2a1206;
  box-shadow: 0 8px 30px -8px var(--glow-warm);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--glow-warm);
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--sun-amber);
  background: var(--surface-2);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--sun-gold);
  outline-offset: 3px;
}

/* ════════════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 9, 15, 0.72);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav__links { display: none; gap: 30px; }
.nav__links a {
  font-size: 0.94rem;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--border);
  align-items: center;
}
.nav__toggle span {
  width: 18px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s;
}
.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); }

.nav__mobile {
  display: grid;
  gap: 4px;
  padding: 0 var(--gutter);
  max-height: 0;
  overflow: hidden;
  background: rgba(7, 9, 15, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.nav__mobile.is-open {
  max-height: 380px;
  padding: 12px var(--gutter) 24px;
  border-bottom-color: var(--border);
}
.nav__mobile a {
  padding: 13px 4px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  font-size: 1.02rem;
}
.nav__mobile a.btn { margin-top: 14px; border: 1px solid transparent; color: #2a1206; justify-content: center; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__mobile { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 80px;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }

/* tech grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 78%);
}

/* rising sun orb */
.hero__sun {
  position: absolute;
  left: 50%;
  bottom: -28%;
  transform: translateX(-50%);
  width: min(760px, 120vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(255, 213, 158, 0.95) 0%,
      rgba(255, 122, 71, 0.55) 26%,
      rgba(255, 106, 61, 0.18) 46%,
      transparent 66%);
  filter: blur(6px);
  animation: sun-rise 1.6s var(--ease) both, sun-breathe 9s ease-in-out 1.6s infinite;
}

.hero__horizon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(to top, var(--ink-900) 8%, transparent);
}

@keyframes sun-rise {
  from { transform: translateX(-50%) translateY(80px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}
@keyframes sun-breathe {
  0%, 100% { filter: blur(6px); opacity: 0.95; }
  50%      { filter: blur(10px); opacity: 1; }
}

.hero__content { position: relative; z-index: 2; max-width: 880px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sun-amber);
  box-shadow: 0 0 12px 2px var(--glow-warm);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6.6vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
/* Keep the highlighted phrase on one line so the gradient never splits */
.hero__title .grad-text { white-space: nowrap; }

.hero__sub {
  margin-top: 26px;
  font-size: clamp(1.06rem, 1.9vw, 1.32rem);
  color: var(--text-dim);
  max-width: 60ch;
  line-height: 1.55;
}

.hero__cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__trust {
  margin-top: 26px;
  font-size: 0.95rem;
  color: var(--text-dimmer);
  max-width: 56ch;
}
.hero__trust strong { color: var(--text-dim); font-weight: 600; }
.hero__scarcity {
  display: inline-block;
  margin-left: 6px;
  color: var(--sun-amber);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--border-strong);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 9px;
  width: 4px; height: 8px;
  background: var(--sun-amber);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-cue 1.8s ease-in-out infinite;
}
@keyframes scroll-cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}

/* ════════════════════════════════════════════════════════════════════════
   STATS / SOCIAL PROOF
   ════════════════════════════════════════════════════════════════════════ */
.stats { padding-block: clamp(48px, 7vw, 80px); border-top: 1px solid var(--border); }
.stats__label {
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 26px;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 5vw, 56px);
  margin-bottom: clamp(44px, 6vw, 72px);
}
/* Real client marks: each brand keeps its own colour, a shared tile and
   type treatment holds the row together on the dark background. */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  color: var(--text-dim);
  white-space: nowrap;
}
.logo__mark {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.logo-ph {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--text-dimmer);
  opacity: 0.55;
  padding: 8px 14px;
  border: 1px dashed var(--border-strong);
  border-radius: 8px;
  transition: opacity 0.2s, color 0.2s;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat { background: var(--ink-850); padding: clamp(24px, 4vw, 40px); text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat__desc { margin-top: 12px; color: var(--text-dim); font-size: 0.95rem; }

@media (min-width: 760px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ════════════════════════════════════════════════════════════════════════
   PROBLEM
   ════════════════════════════════════════════════════════════════════════ */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.pain {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s;
}
.pain__icon { font-size: 1.7rem; display: block; margin-bottom: 16px; }
.pain h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; margin-bottom: 8px; }
.pain p { color: var(--text-dim); font-size: 0.96rem; }

.problem__turn {
  margin-top: 40px;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
}

/* ════════════════════════════════════════════════════════════════════════
   OFFERS
   ════════════════════════════════════════════════════════════════════════ */
.offers { border-top: 1px solid var(--border); }
.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}
.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface), transparent);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s;
}
.offer--feature {
  border-color: rgba(255, 157, 77, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 122, 71, 0.10), transparent 60%),
    var(--ink-850);
  box-shadow: 0 20px 60px -30px var(--glow-warm);
}

.offer__badge {
  position: absolute;
  top: -11px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a1206;
  background: var(--grad-sun);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.offer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.offer__tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.offer__time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sun-amber);
}
.offer__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.offer__desc { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 20px; }
.offer__list { display: grid; gap: 11px; margin-bottom: 26px; }
.offer__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.93rem;
  color: var(--text-dim);
}
.offer__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--grad-sun);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.offer__foot { margin-top: auto; }
.offer__best { display: block; font-size: 0.84rem; color: var(--text-dimmer); margin-bottom: 14px; }
.offer__cta { width: 100%; }

/* ════════════════════════════════════════════════════════════════════════
   PROCESS
   ════════════════════════════════════════════════════════════════════════ */
.process { border-top: 1px solid var(--border); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.step::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--border-strong);
  margin-bottom: 18px;
}
.step__day {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sun-amber);
  margin-bottom: 8px;
}
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.94rem; }

/* ════════════════════════════════════════════════════════════════════════
   WHY / FEATURES
   ════════════════════════════════════════════════════════════════════════ */
.why { border-top: 1px solid var(--border); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.feature__icon {
  font-size: 1.6rem;
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 157, 77, 0.16), rgba(124, 92, 255, 0.10));
  border: 1px solid var(--border);
  margin-bottom: 18px;
}
.feature h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; margin-bottom: 8px; }
.feature p { color: var(--text-dim); font-size: 0.95rem; }

/* ════════════════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════════════════════════════════════════ */
.compare { border-top: 1px solid var(--border); }
.compare__wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.compare__table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare__table th, .compare__table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.compare__table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dim);
  background: var(--ink-850);
}
.compare__table tbody th {
  font-weight: 500;
  color: var(--text-dim);
  background: var(--ink-850);
}
.compare__table td { color: var(--text-dim); }
.compare__table tr:last-child th,
.compare__table tr:last-child td { border-bottom: none; }
.compare__us { color: var(--text) !important; }
thead .compare__us {
  background: linear-gradient(180deg, rgba(255, 122, 71, 0.14), transparent) !important;
  color: var(--sun-gold) !important;
}
tbody .compare__us {
  background: rgba(255, 122, 71, 0.05) !important;
}
.compare__us strong { color: var(--sun-gold); font-weight: 600; }

/* ════════════════════════════════════════════════════════════════════════
   CASES
   ════════════════════════════════════════════════════════════════════════ */
.cases { border-top: 1px solid var(--border); }
.cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
/* Four projects sit as a 2x2 block rather than an orphaned 3 + 1 row */
@media (min-width: 720px) {
  .cases__grid { grid-template-columns: repeat(2, 1fr); }
}
.case {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.case__media {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  color: var(--text-dimmer);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, rgba(255, 157, 77, 0.10), rgba(124, 92, 255, 0.08));
  border-bottom: 1px solid var(--border);
}
.case__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  background: var(--grad-sun);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.case__body { padding: 24px; }
.case__tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sun-amber);
}
.case__body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin: 8px 0 8px; }
.case__body p { color: var(--text-dim); font-size: 0.93rem; }
.case__metric {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-dim);
}
.case__metric strong { font-family: var(--font-display); color: var(--sun-gold); font-size: 1.2rem; }

/* ════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════════════════ */
.quotes { border-top: 1px solid var(--border); }
.quotes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.quote {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.quote blockquote {
  font-size: 1.04rem;
  line-height: 1.55;
  color: var(--text);
}
.quote figcaption { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-sun-soft);
  flex: none;
  opacity: 0.85;
}
.quote__person { display: grid; line-height: 1.35; }
.quote__person strong { font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; }
.quote__person span { font-size: 0.85rem; color: var(--text-dimmer); }

/* ════════════════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════════════════ */
.pricing { border-top: 1px solid var(--border); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 20px;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.plan--feature {
  border-color: rgba(255, 157, 77, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 122, 71, 0.10), transparent 55%),
    var(--ink-850);
  box-shadow: 0 20px 60px -34px var(--glow-warm);
}
.plan__badge {
  position: absolute;
  top: -11px; left: 30px;
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #2a1206; background: var(--grad-sun);
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.plan__name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; margin-bottom: 12px; }
.plan__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.ph-num { color: var(--sun-amber); }
.plan__for { color: var(--text-dimmer); font-size: 0.9rem; margin-bottom: 22px; }
.plan__list { display: grid; gap: 10px; margin-bottom: 26px; }
.plan__list li { position: relative; padding-left: 22px; font-size: 0.92rem; color: var(--text-dim); }
.plan__list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--sun-amber); font-weight: 700;
}
.plan__cta { width: 100%; margin-top: auto; }

.pricing__note { margin-top: 32px; text-align: center; font-size: 1.05rem; color: var(--text-dim); }

/* ════════════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════════════ */
.faq { border-top: 1px solid var(--border); }
.faq__layout { display: grid; gap: clamp(32px, 5vw, 64px); }
@media (min-width: 920px) {
  .faq__layout { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
  .faq__intro { position: sticky; top: 100px; }
  .faq__intro .section__title { margin-bottom: 0; }
}

.faq__list { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.faq__item[open] { border-color: var(--border-strong); background: var(--surface-2); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.04rem;
  list-style: none;
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--sun-amber);
  transition: transform 0.3s var(--ease);
  flex: none;
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 24px 22px; color: var(--text-dim); font-size: 0.97rem; }
.faq__answer a { color: var(--sun-amber); }

/* ════════════════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════════════════ */
.cta {
  position: relative;
  border-top: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__sun {
  position: absolute;
  left: 50%; bottom: -60%;
  transform: translateX(-50%);
  width: min(900px, 130vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(255, 122, 71, 0.32) 0%,
    rgba(255, 106, 61, 0.10) 38%,
    transparent 62%);
  filter: blur(8px);
}
.cta__content { position: relative; z-index: 1; max-width: 720px; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.cta__sub {
  margin: 22px auto 0;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  color: var(--text-dim);
  max-width: 56ch;
}
.cta__form {
  margin: 38px auto 0;
  display: grid;
  gap: 12px;
  max-width: 460px;
}
.cta__form input {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s, background 0.2s;
}
.cta__form input::placeholder { color: var(--text-dimmer); }
.cta__form input:focus {
  outline: none;
  border-color: var(--sun-amber);
  background: var(--surface-2);
}
.cta__form .btn { width: 100%; margin-top: 4px; }

.cta__trust {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 0.9rem;
  color: var(--text-dimmer);
}
.cta__trust span:not(.hero__scarcity) { color: var(--text-dim); }

/* ════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border); padding-block: clamp(48px, 6vw, 72px) 0; }
.footer__inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer__inner { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
}
.footer__brand { max-width: 320px; }
.footer__tag { margin-top: 16px; color: var(--text-dim); font-size: 0.94rem; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 4px;
}
.footer__col a { color: var(--text-dim); font-size: 0.94rem; transition: color 0.2s; width: fit-content; }
.footer__cta { margin-top: 8px; color: #2a1206 !important; }
.footer__cta:hover { color: #2a1206 !important; }

.footer__bottom {
  margin-top: clamp(40px, 6vw, 64px);
  padding-block: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: var(--text-dimmer);
  font-size: 0.88rem;
}
.footer__legal a { transition: color 0.2s; }

/* ════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Stagger children that share a grid */
.problem__grid [data-reveal].is-visible,
.offers__grid [data-reveal].is-visible,
.steps [data-reveal].is-visible,
.why__grid [data-reveal].is-visible { transition-delay: var(--d, 0s); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__sun { animation: none; }
}
