/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- Tokens ---- */
:root {
  --ink: 20 15% 7%;
  --ink-2: 24 10% 10%;
  --char: 24 8% 12%;
  --cream: 40 30% 90%;
  --cream-dim: 40 8% 70%;
  --ochre: 32 55% 65%;
  --terra: 14 55% 31%;

  --background: var(--ink);
  --foreground: var(--cream);
  --primary: var(--ochre);
  --secondary: var(--terra);
  --muted-fg: var(--cream-dim);
  --border: 40 30% 90%;

  --font-display: 'Oswald', 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --gutter: clamp(20px, 4.2vw, 56px);
  --max: 1440px;
  --radius: 0.875rem;
}

* { box-sizing: border-box; }

html, body, #root {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  margin: 0;
}
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: hsl(var(--ochre) / 0.3); color: hsl(var(--cream)); }

.font-display { font-family: var(--font-display); letter-spacing: -0.005em; }
.font-mono { font-family: var(--font-mono); }

/* ---- Layout ---- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--cream) / 0.55);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: hsl(var(--ochre));
  display: inline-block;
}

.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: hsl(var(--cream) / 0.4);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.lede {
  font-size: clamp(16px, 1.2vw, 19px);
  color: hsl(var(--cream) / 0.72);
  max-width: 56ch;
  line-height: 1.55;
}

/* ---- Liquid Glass ---- */
.liquid-glass {
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.10) 22%,
    rgba(255,255,255,0)   45%, rgba(255,255,255,0)   55%,
    rgba(255,255,255,0.10) 78%, rgba(255,255,255,0.35) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.liquid-glass-strong {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18), inset 0 1px 1px rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.18) 22%,
    rgba(255,255,255,0)   45%, rgba(255,255,255,0)   55%,
    rgba(255,255,255,0.18) 78%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: hsl(var(--ochre)); color: hsl(var(--ink)); }
.btn-primary:hover { background: hsl(var(--ochre) / 0.92); }
.btn-glass { color: hsl(var(--cream)); }
.btn-glass:hover { background: rgba(255,255,255,0.04); }
.btn-solid { background: hsl(var(--cream)); color: hsl(var(--ink)); }
.btn-ghost { color: hsl(var(--cream) / 0.7); background: transparent; }
.btn-ghost:hover { color: hsl(var(--cream)); }

/* ---- Noise + grid ---- */
.noise::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.6; mix-blend-mode: overlay; pointer-events: none;
}

.blueprint-grid {
  background-image:
    linear-gradient(hsl(var(--cream) / 0.04) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--cream) / 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ---- Marquee ---- */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.marquee-mask {
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* ---- Fade up ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translate3d(0, 18px, 0); filter: blur(6px); }
  to { opacity: 1; transform: translate3d(0,0,0); filter: blur(0); }
}
.reveal {
  opacity: 0;
}
.reveal.in {
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ---- Accordion ---- */
.acc-item {
  border-top: 1px solid hsl(var(--cream) / 0.1);
}
.acc-item:last-child { border-bottom: 1px solid hsl(var(--cream) / 0.1); }
.acc-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: transparent;
  border: none;
  color: hsl(var(--cream));
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}
.acc-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.22,1,0.36,1);
}
.acc-content-inner {
  padding: 0 0 28px 0;
  color: hsl(var(--cream) / 0.7);
  max-width: 70ch;
  line-height: 1.65;
  font-size: 16px;
}
.acc-item[data-open="true"] .acc-icon {
  transform: rotate(45deg);
}
.acc-icon {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 300;
  color: hsl(var(--ochre));
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  flex-shrink: 0;
}

/* ---- Image placeholder ---- */
.img-ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      hsl(var(--cream) / 0.04) 0px, hsl(var(--cream) / 0.04) 1px,
      transparent 1px, transparent 14px),
    hsl(var(--char));
  border: 1px solid hsl(var(--cream) / 0.08);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--cream) / 0.45);
  overflow: hidden;
}
.img-ph .corner {
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid hsl(var(--cream) / 0.25);
}
.img-ph .corner.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.img-ph .corner.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.img-ph .corner.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.img-ph .corner.br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

/* ---- Stat ---- */
.stat-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 6.5vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: hsl(var(--cream));
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--cream) / 0.55);
  max-width: 22ch;
}

/* ---- Hero canvas frame ---- */
.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: hsl(var(--ink));
}
.hero-scene-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Hero scroll-track height — controlled by media queries below */
.hero-scroll {
  position: relative;
  height: 700vh;
}

/* ---- Spec corners decoration ---- */
.spec-frame {
  position: relative;
}
.spec-frame > .spec-corner {
  position: absolute;
  width: 14px; height: 14px;
  border-color: hsl(var(--ochre) / 0.7);
  border-style: solid;
}
.spec-frame > .spec-corner.tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.spec-frame > .spec-corner.tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.spec-frame > .spec-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.spec-frame > .spec-corner.br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }

/* ---- Utility ---- */
.text-cream { color: hsl(var(--cream)); }
.text-cream-dim { color: hsl(var(--cream) / 0.65); }
.text-ochre { color: hsl(var(--ochre)); }
.text-terra { color: hsl(var(--terra)); }
.bg-ink { background: hsl(var(--ink)); }
.bg-char { background: hsl(var(--char)); }
.bg-cream { background: hsl(var(--cream)); color: hsl(var(--ink)); }
.bg-ochre { background: hsl(var(--ochre)); color: hsl(var(--ink)); }
.bg-terra { background: hsl(var(--terra)); color: hsl(var(--cream)); }

.divider-h { height: 1px; background: hsl(var(--cream) / 0.1); }

/* ---- Pricing card glow ---- */
.featured-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at center, hsl(var(--ochre) / 0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   ====            RESPONSIVE GRID UTILITIES               ====
   ============================================================
   Defaults below are DESKTOP. Mobile/tablet overrides live in
   the @media blocks at the bottom of this file. Mantém todas as
   referências a CSS vars (--ink, --ochre, etc) — paleta segue
   sendo trocável via TweaksPanel em runtime.
   ============================================================ */

/* Two-column section header (eyebrow+title | lede) */
.grid-section-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: flex-end;
}

/* Generic editorial 1fr / 1.4fr two-column block (FAQ, NotFor) */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: flex-start;
}

/* Stats split: video | numbers */
.grid-stats-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

/* Inner stats 2x2 grid */
.grid-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 64px;
}

/* Services bento (8-col on desktop) */
.grid-bento {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  margin-top: 64px;
}

/* Bento card spans — desktop (driven by data-span) */
.bento-card[data-span="5"] { grid-column: span 5; }
.bento-card[data-span="4"] { grid-column: span 4; }
.bento-card[data-span="3"] { grid-column: span 3; }

/* Porque 2-col editorial grid */
.grid-porque {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid hsl(var(--cream) / 0.1);
}

/* Process 3-col timeline */
.grid-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  position: relative;
}
.grid-process .process-line {
  position: absolute;
  top: 24px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, hsl(var(--ochre) / 0.4) 12%, hsl(var(--ochre) / 0.4) 88%, transparent 100%);
  pointer-events: none;
}

/* Pricing 3-col + anchor headline 2-col */
.grid-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
}
.grid-pricing-anchor {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 56px;
  padding: 32px 36px;
  background: hsl(20 15% 9%);
  border: 1px solid hsl(var(--cream) / 0.08);
  border-radius: 14px;
}
.pricing-card--featured {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -30px hsl(var(--ochre) / 0.2);
}

/* Testimonials: 2 big quotes + row of 4 small */
.grid-quotes-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 72px;
}
.grid-quotes-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 18px;
}

/* Footer top row: brand | nav links */
.grid-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 36px;
}

/* CTA proof row — flex with auto-collapsing dots */
.cta-proof {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid hsl(var(--cream) / 0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--cream) / 0.5);
}

/* Sticky column inside .grid-2col (FAQ + NotFor LEFT side) */
.grid-2col-sticky {
  position: sticky;
  top: 120px;
}

/* Porque cell internal 2-col (label | content) */
.porque-cell {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 48px 36px 48px 0;
}
.porque-cell--right { padding-left: 36px; padding-right: 0; }
.porque-cell--bordered-r { border-right: 1px solid hsl(var(--cream) / 0.1); }
.porque-cell--bordered-b { border-bottom: 1px solid hsl(var(--cream) / 0.1); }

/* Stat cell internal layout (border lines) */
.stat-cell {
  padding: 36px 24px 36px 0;
  border-top: 1px solid hsl(var(--cream) / 0.1);
}
.stat-cell--right { padding-left: 24px; padding-right: 0; }
.stat-cell--bordered-r { border-right: 1px solid hsl(var(--cream) / 0.1); }
.stat-cell--bordered-b { border-bottom: 1px solid hsl(var(--cream) / 0.1); }

/* NotFor list item internal: marker | copy */
.notfor-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid hsl(var(--cream) / 0.1);
}

/* Hero CTAs row */
.hero-cta-row {
  margin-top: 28px;
  display: flex;
  gap: 28px;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hero-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Final CTA buttons row */
.cta-final-buttons {
  margin-top: 48px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* small util to hide on mobile (kept for backwards compat) */
@media (max-width: 720px) {
  .hide-sm { display: none !important; }
}
@media (min-width: 721px) {
  .show-sm { display: none !important; }
}

/* ============================================================
   ====              MOBILE-FIRST BREAKPOINTS              ====
   ============================================================
   Tablet:  ≤1023px   — 2-column grids reduce / soften
   Mobile:  ≤767px    — most grids collapse to 1col, hero shortens
   Small:   ≤479px    — type scales down, padding tightens
   ============================================================ */

/* ---- Tablet (≤ 1023px) ---- */
@media (max-width: 1023px) {

  /* Section headers — stack title and lede */
  .grid-section-header {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: flex-start;
  }
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  /* Sticky disabled when stacked — sits as a normal block above the list */
  .grid-2col-sticky {
    position: static;
    top: auto;
  }

  /* Stats split → stack (numbers above video) */
  .grid-stats-split {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  /* Bento — 4 columns at tablet */
  .grid-bento {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .bento-card[data-span="5"],
  .bento-card[data-span="4"] { grid-column: span 4; }
  .bento-card[data-span="3"] { grid-column: span 2; }

  /* Process — 2 columns, ditch the connecting line (it’s misleading once wrapped) */
  .grid-process {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }
  .grid-process .process-line { display: none; }

  /* Pricing — 1 column at tablet (better than 2/3 hybrid) */
  .grid-pricing {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* Featured no longer lifted (looks weird in stack) — keep ochre border + glow */
  .pricing-card--featured {
    transform: none;
  }

  /* Anchor headline above pricing — stack label above text */
  .grid-pricing-anchor {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 22px;
  }

  /* Testimonials: big quotes 1 col, small quotes 2 col */
  .grid-quotes-2 {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 56px;
  }
  .grid-quotes-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Footer — stack brand + links */
  .grid-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767px) {

  /* Hero scroll track shorter — 300vh keeps the construction phases readable
     without being exhausting. The sticky stage stays 100vh / 100svh. */
  .hero-scroll { height: 300vh; }
  .hero-stage { height: 100svh; }

  /* Tap targets — 44px minimum. Padding bumped slightly. */
  .btn {
    min-height: 44px;
    padding: 12px 22px;
  }

  /* Hero CTA row — stack lede above buttons; buttons grow naturally */
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero-cta-buttons { width: 100%; }
  .hero-cta-buttons .btn { flex: 1 1 auto; justify-content: center; }

  /* Bento — 1 column */
  .grid-bento {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 48px;
  }
  .bento-card[data-span="5"],
  .bento-card[data-span="4"],
  .bento-card[data-span="3"] {
    grid-column: span 1;
  }

  /* Stats — keep 2 col but tighten paddings; remove right border on second col
     (no longer aligns with a sibling) */
  .grid-stats {
    margin-top: 48px;
  }
  .stat-cell {
    padding: 24px 16px 24px 0;
  }
  .stat-cell--right { padding-left: 16px; }

  /* Porque — collapse to 1 col, drop vertical divider */
  .grid-porque {
    grid-template-columns: 1fr;
  }
  .porque-cell,
  .porque-cell--right {
    padding: 32px 0;
    border-right: none !important;
    border-bottom: 1px solid hsl(var(--cream) / 0.1);
  }
  .porque-cell:last-child {
    border-bottom: none;
  }

  /* Process — 1 column */
  .grid-process {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 56px;
  }

  /* Section padding — tighten top/bottom */
  section[id="sistema"],
  section[id="porque"],
  section[id="processo"],
  section[id="investimento"],
  section[id="depoimentos"],
  section[id="naoepara"],
  section[id="faq"] {
    padding-top: 80px !important;
    padding-bottom: 72px !important;
  }
  section[id="cta"] {
    padding-top: 96px !important;
    padding-bottom: 88px !important;
  }

  /* CTA proof row — smaller gaps, 1 col on tiny */
  .cta-proof {
    gap: 18px 36px;
    margin-top: 48px;
    padding-top: 28px;
    font-size: 10px;
  }

  /* CTA final buttons — full width stack */
  .cta-final-buttons {
    flex-direction: column;
    align-items: stretch;
    margin-top: 36px;
  }
  .cta-final-buttons .btn { justify-content: center; }

  /* Display headlines — clamp tighter so 84px ceiling never fires */
  .h-display {
    font-size: clamp(34px, 9vw, 56px) !important;
  }

  /* NotFor item — shrink the X marker so 2-col internal still fits */
  .notfor-item { gap: 18px; padding: 24px 0; }

  /* Accordion trigger — bigger tap target */
  .acc-trigger { padding: 22px 0; gap: 16px; }

  /* Hero overlays — tighter type & no overlap with edges */
  .hero-stage .h-display {
    font-size: clamp(30px, 8vw, 44px) !important;
  }
}

/* ---- Small mobile (≤ 479px) ---- */
@media (max-width: 479px) {

  /* Quotes small grid — single column on tiny phones */
  .grid-quotes-4 {
    grid-template-columns: 1fr;
  }

  /* Pricing card padding tightened */
  .grid-pricing { gap: 14px; }

  /* Reduce bento card padding */
  .bento-card {
    padding: 24px 22px 22px !important;
    min-height: auto !important;
  }

  /* Lede sizing */
  .lede { font-size: 15px; }

  /* Eyebrows + section nums on a single line should wrap cleanly */
  .eyebrow { gap: 8px; }
}

/* ---- Tablet+ floor — make sure desktop bento width stays correct ---- */
@media (min-width: 1024px) {
  .grid-bento { gap: 18px; }
}
