/* ==========================================================
   MyGredient — Landing
   Palette: forest #1F4D3A · pineapple #E8B339 · cream #FAF6EC · ink #14130F
   ========================================================== */

:root {
  --forest: #1F4D3A;
  --forest-deep: #163524;
  --pineapple: #E8B339;
  --pineapple-soft: #F2D17F;
  --cream: #FAF6EC;
  --cream-warm: #F4ECD8;
  --paper: #FFFCF5;
  --ink: #14130F;
  --ink-soft: #4A4942;
  --line: rgba(20, 19, 15, 0.10);
  --line-strong: rgba(20, 19, 15, 0.22);
  --good: #4F8A55;
  --warn: #D9802B;
  --bad: #B7382B;

  --f-display: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --f-body: "Inter", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --container: 1240px;
  --gutter: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ----- Type ----- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pineapple);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}

h1, h2, h3 { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(48px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.025em; }
h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; }

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

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--forest); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: rgba(20,19,15,0.04); }
.btn-pineapple {
  background: var(--pineapple);
  color: var(--ink);
}
.btn-pineapple:hover { background: var(--pineapple-soft); }
.btn .arrow {
  width: 18px; height: 18px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 236, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(250, 246, 236, 0.92);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.brand-mark {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream-warm);
  display: grid; place-items: center;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 15px;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right .3s ease;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 18px; font-size: 14px; }

.menu-toggle { display: none; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--cream);
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 38px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }
.mobile-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 28px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--forest);
  position: relative;
}
.hero-eyebrow .pulse::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--forest);
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hero h1 {
  color: var(--ink);
}
.hero h1 .your {
  font-style: italic;
  color: var(--forest);
}
.hero-sub {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 28px 0 14px;
}
.hero-support {
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 520px;
  padding-left: 16px;
  border-left: 2px solid var(--pineapple);
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: var(--f-mono);
  letter-spacing: 0.04em;
}
.hero-meta .sep { width: 1px; height: 14px; background: var(--line-strong); }
.hero-meta .stars { color: var(--pineapple); letter-spacing: 1px; }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--forest);
  box-shadow:
    0 1px 0 rgba(255,255,255,.4) inset,
    0 30px 60px -20px rgba(20,19,15,0.25);
}
.hero-visual video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,19,15,0) 50%, rgba(20,19,15,0.45) 100%);
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--cream);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.hero-caption .live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(250,246,236,0.5);
  border-radius: 999px;
}
.hero-caption .live .d {
  width: 6px; height: 6px; border-radius: 50%; background: #ff5252;
  animation: blink 1.4s infinite;
}
@keyframes blink { 50% { opacity: .3; } }

.hero-side {
  position: absolute;
  right: -48px;
  bottom: 32px;
  width: 180px;
  transform: rotate(6deg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 50px -12px rgba(20,19,15,0.35);
  border: 6px solid var(--cream);
  display: none;
}
@media (min-width: 1100px) {
  .hero-side { display: block; }
}

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 38s linear infinite;
  white-space: nowrap;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  width: max-content;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track .pip { color: var(--pineapple); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about {
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-grid .lede h2 {
  margin-bottom: 12px;
}
.about-body p {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 60ch;
}
.about-body p.muted { color: var(--ink-soft); font-size: 18px; }
.about-pull {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.about-pull .stat {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  color: var(--forest);
  margin-bottom: 8px;
}
.about-pull .label {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.how {
  background: var(--ink);
  color: var(--cream);
  padding: 120px 0 140px;
  border-radius: 40px 40px 0 0;
}
.how .eyebrow { color: var(--pineapple); }
.how .eyebrow .dot { background: var(--pineapple); }
.how-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 80px;
}
.how-head h2 {
  max-width: 16ch;
}
.how-head .help {
  max-width: 380px;
  color: rgba(250,246,236,0.65);
  font-size: 16px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step {
  position: relative;
}
.step-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--forest-deep);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.06);
}
.step-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .9s ease;
}
.step:hover .step-frame img { transform: scale(1.06); }
.step-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  background: rgba(20,19,15,0.55);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(250,246,236,0.18);
  z-index: 2;
}
.step-final {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}
.step-final .score {
  font-family: var(--f-display);
  font-size: 96px;
  line-height: 1;
  color: var(--pineapple);
}
.step-final .out-of { color: rgba(250,246,236,0.5); font-size: 22px; }
.step-final .verdict {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 12px;
  border: 1px solid rgba(250,246,236,0.3);
  border-radius: 999px;
}
.step-final .meta {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(250,246,236,0.6);
  line-height: 1.5;
}

.step h3 {
  color: var(--cream);
  font-size: 22px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: rgba(250,246,236,0.62);
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================
   WHY MYGREDIENT
   ========================================================== */
.why {
  background: var(--cream);
  padding: 140px 0;
  position: relative;
}
.why-head {
  max-width: 760px;
  margin-bottom: 90px;
}
.why-head h2 { margin-top: 18px; }
.why-head h2 em { color: var(--forest); font-style: italic; }
.why-head p {
  margin-top: 28px;
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 56ch;
}
.why-rows {
  display: grid;
  gap: 0;
}
.why-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.1fr;
  gap: 50px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  transition: background .35s ease, padding .35s ease;
}
.why-row:last-child { border-bottom: 1px solid var(--line); }
.why-row:hover { background: var(--paper); }
.why-row .idx {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--pineapple);
  font-weight: 600;
}
.why-row h3 {
  font-size: clamp(26px, 2.8vw, 36px);
  color: var(--ink);
}
.why-row h3 em { color: var(--forest); font-style: italic; }
.why-row p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* ==========================================================
   APP SHOWCASE
   ========================================================== */
.showcase {
  background: var(--cream-warm);
  padding: 140px 0;
}
.showcase-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.showcase-head h2 em { color: var(--forest); font-style: italic; }
.showcase-head p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}
.show-card {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 36px 32px 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.show-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cream-warm);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  width: fit-content;
  margin-bottom: 18px;
}
.show-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.show-card h3 em { color: var(--forest); font-style: italic; }
.show-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 30px;
}
.show-card .phone {
  margin: 0 -12px -1px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  box-shadow: 0 -10px 30px -20px rgba(20,19,15,0.3);
  margin-top: auto;
}
.show-card .phone img {
  width: 100%;
  display: block;
}
.show-card.feature {
  background: var(--forest);
  color: var(--cream);
  border-color: transparent;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}
.show-card.feature .feature-top { display: flex; flex-direction: column; }
.show-card.feature .tag {
  background: rgba(250,246,236,0.1);
  color: var(--pineapple);
  border: 1px solid rgba(250,246,236,0.18);
}
.show-card.feature h3 { color: var(--cream); margin: 0; }
.show-card.feature h3 em { color: var(--pineapple); }
.show-card.feature .feature-foot {
  color: rgba(250,246,236,0.7);
  font-size: 15px;
  line-height: 1.55;
  margin: 20px 0 0;
}
.show-card.feature .promo {
  margin: auto -32px 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  padding-top: 24px;
}
.show-card.feature .promo img {
  width: 100%;
  display: block;
}

/* ==========================================================
   RESULTS — instantly understood
   ========================================================== */
.results {
  background: var(--paper);
  padding: 140px 0;
}
.results-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.results-head h2 em { color: var(--forest); font-style: italic; }
.results-head p {
  margin-top: 24px;
  font-size: 18px;
  color: var(--ink-soft);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.verdict-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 28px 24px 24px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.verdict-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(20,19,15,0.18); }
.verdict-card .face {
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-warm);
  margin-bottom: 22px;
  display: grid; place-items: center;
}
.verdict-card .face img { width: 100%; height: 100%; object-fit: cover; }
.verdict-card .score-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
  font-feature-settings: "tnum";
}
.verdict-card .score-pill .of { font-weight: 400; opacity: 0.65; font-size: 12px; }
.score-good  { background: #DDEBDD; color: #2E5E33; }
.score-okay  { background: #FCEAD0; color: #8A4F12; }
.score-poor  { background: #F8D9CB; color: #8B361E; }
.score-bad   { background: #E8B5AF; color: #6E1A12; }

.verdict-card .v-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.verdict-card .v-name {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
}
.verdict-card .v-brand {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.results-foot {
  margin-top: 60px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================
   FINAL CTA
   ========================================================== */
.cta {
  background: var(--forest);
  color: var(--cream);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: end;
}
.cta-copy h2 {
  font-size: clamp(48px, 6.5vw, 88px);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}
.cta-copy h2 em { color: var(--pineapple); font-style: italic; }
.cta-copy p {
  font-size: 19px;
  color: rgba(250,246,236,0.7);
  max-width: 46ch;
  margin: 28px 0 36px;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-actions .btn-primary { background: var(--pineapple); color: var(--ink); }
.cta-actions .btn-primary:hover { background: var(--pineapple-soft); }
.cta-actions .btn-ghost { color: var(--cream); border-color: rgba(250,246,236,0.3); }
.cta-actions .btn-ghost:hover { background: rgba(250,246,236,0.06); }

.cta-platforms {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,246,236,0.6);
}
.cta-platforms .item { display: flex; align-items: center; gap: 10px; }
.cta-platforms .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--pineapple);
}
.cta-platforms .soon-dot {
  width: 7px; height: 7px; border-radius: 50%; border: 1px solid rgba(250,246,236,0.5);
}

.cta-visual {
  position: relative;
  margin-bottom: -2px;
}
.cta-visual img {
  width: 100%;
  border-radius: 28px 28px 0 0;
  display: block;
  border: 1px solid rgba(250,246,236,0.1);
  border-bottom: 0;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,246,236,0.12);
}
.foot-brand .brand { color: var(--cream); }
.foot-brand .brand-mark { background: var(--cream); }
.foot-tag {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.2;
  margin-top: 24px;
  max-width: 16ch;
  color: var(--cream);
}
.foot-tag em { color: var(--pineapple); font-style: italic; }

.foot-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,246,236,0.5);
  margin: 0 0 18px;
  font-weight: 500;
}
.foot-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.foot-col a {
  color: var(--cream);
  font-size: 15px;
  transition: color .2s ease;
}
.foot-col a:hover { color: var(--pineapple); }

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(250,246,236,0.5);
}
.foot-bottom .legal { display: flex; gap: 24px; }
.foot-bottom .legal a:hover { color: var(--cream); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 960px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    border-radius: 10px;
    border: 1px solid var(--line-strong);
  }

  .hero { padding: 32px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 4/5; max-height: 560px; }

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-pull { grid-template-columns: 1fr; gap: 28px; }

  .how { padding: 80px 0 100px; border-radius: 28px 28px 0 0; }
  .how-head { flex-direction: column; align-items: start; gap: 24px; margin-bottom: 50px; }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 18px; }

  .why { padding: 80px 0; }
  .why-head { margin-bottom: 50px; }
  .why-row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .why-row .idx { margin-bottom: -4px; }

  .showcase { padding: 80px 0; }
  .showcase-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .showcase-grid { grid-template-columns: 1fr; }

  .results { padding: 80px 0; }
  .results-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .cta { padding: 80px 0 0; }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }

  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; gap: 16px; align-items: start; }
}

@media (max-width: 540px) {
  .how-steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  h1 { font-size: 52px; }
}
