/* ─────────────────────────────────────────────────────────────────────────────
   Fulcrum — marketing site stylesheet.

   Hand-rolled (no Tailwind build step), speaking the same design language as
   the rest of the Renkara marketing estate (packed.renkara.com is the closest
   sibling): HSL-triplet custom properties, a `.dark` class on <html>, one
   --brand scale every component reads through, and a card helper. Fulcrum's
   product accent is Indigo per the Renkara brand guidelines; everything else
   inherits the shared navy/slate scale.

   Contrast: every pairing below clears WCAG 2.1 AA (4.5:1 body, 3:1 large
   text and UI) on BOTH themes. The indigo scale is split for that reason:
   --brand is decorative, --brand-text is the AA-safe text/fill color on the
   page and card grounds, --brand-on-tint is the AA-safe color on the tint.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --background: 210 33% 98%;        /* Cloud White */
  --foreground: 217 48% 20%;        /* Renkara Navy */
  --card: 0 0% 100%;
  --card-foreground: 217 48% 20%;
  --muted: 210 20% 95%;
  --muted-foreground: 216 14% 30%;
  --border: 214 32% 91%;            /* Mist */
  --navy: 217 48% 20%;
  --blue: 207 55% 40%;              /* Renkara Blue */

  /* Indigo brand scale (#4F46E5 family) */
  --brand: 243 75% 59%;             /* indigo-600 — decorative, large text, fills with white text (6.3:1) */
  --brand-text: 243 75% 59%;        /* AA on white and on the card (6.3:1) */
  --brand-strong: 244 55% 41%;      /* indigo-800 — hover fills */
  --brand-on-tint: 244 55% 41%;     /* indigo-800 on the tint (7:1) */
  --brand-tint: 226 100% 94%;       /* #E0E7FF */

  --accent: var(--brand-text);
  --radius: 0.625rem;
  --shell-max: 1200px;
}

.dark {
  --background: 222 47% 11%;        /* Ink */
  --foreground: 210 33% 95%;
  --card: 220 28% 16%;
  --card-foreground: 210 33% 95%;
  --muted: 220 22% 21%;
  --muted-foreground: 216 14% 74%;
  --border: 220 18% 27%;
  --navy: 210 33% 95%;

  /* Lifted so indigo-as-text clears 4.5:1 on the dark card (indigo-400/300). */
  --brand: 234 89% 74%;
  --brand-text: 232 92% 79%;
  --brand-strong: 243 75% 59%;
  --brand-on-tint: 232 92% 82%;
  --brand-tint: 240 32% 20%;
}

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: hsl(var(--accent)); }
code, .mono { font-family: 'Fira Code', ui-monospace, SFMono-Regular, Menlo, monospace; }

.shell { max-width: var(--shell-max); margin: 0 auto; padding: 0 1.25rem; }

/* Solid indigo fills carry white text at 6.3:1 in both themes. */
.on-brand { background: hsl(243 75% 59%); color: #fff; }

/* ── Header ──────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.site-header .shell { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  text-decoration: none;
}

.brand img { width: 28px; height: 28px; border-radius: 7px; object-fit: contain; }
.brand .brand-word span { color: hsl(var(--brand-text)); }

.site-nav { display: none; align-items: center; gap: 0.25rem; }

.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.site-nav a:hover, .site-nav a[aria-current="page"] { color: hsl(var(--brand-text)); background: hsl(var(--muted)); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.icon-btn {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: background 0.15s ease;
}

.icon-btn:hover { background: hsl(var(--muted)); }
.icon-btn svg { width: 1.125rem; height: 1.125rem; }

.icon-sun { display: none; }
.dark .icon-sun { display: block; }
.dark .icon-moon { display: none; }

#menu-btn { display: inline-flex; }

#mobile-menu { display: none; border-top: 1px solid hsl(var(--border)); background: hsl(var(--background)); }
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  padding: 0.75rem 0.5rem;
  min-height: 2.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  text-decoration: none;
  border-radius: 6px;
}
#mobile-menu a:hover { background: hsl(var(--muted)); }
#mobile-menu .shell { padding-top: 0.5rem; padding-bottom: 0.75rem; }
#mobile-menu .mobile-cta { margin-top: 0.5rem; color: #fff; text-align: center; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.6875rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1rem; height: 1rem; }

.btn-primary { background: hsl(243 75% 59%); color: #fff; }
.btn-primary:hover { background: hsl(244 55% 41%); }

.btn-ghost { background: hsl(var(--card)); color: hsl(var(--foreground)); border-color: hsl(var(--border)); }
.btn-ghost:hover { background: hsl(var(--muted)); }

.btn-sm { min-height: 2.375rem; padding: 0.5rem 1rem; font-size: 0.875rem; }

/* ── Photographic hero ───────────────────────────────────────────────────── */
/* One photograph, a dark scrim, light type: the ground behind the copy is
   the image in both themes, so this block is deliberately theme-independent.
   The foot fades into the page background so the photo blends into either
   theme. */

.hero-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: hsl(222 47% 11%);
  color: #fff;
}

.hero-photo .hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-photo .hero-media picture, .hero-photo .hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-photo .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(to right, hsl(222 47% 8% / 0.90) 0%, hsl(222 47% 8% / 0.72) 45%, hsl(222 47% 8% / 0.30) 80%, hsl(222 47% 8% / 0.20) 100%),
    linear-gradient(to bottom, hsl(222 47% 8% / 0.35) 0%, transparent 40%, hsl(var(--background)) 100%);
}

.hero-inner { position: relative; padding: 5rem 0 5rem; min-height: 32rem; display: flex; align-items: center; }
.hero-inner.tall { min-height: 40rem; }
.hero-copy { max-width: 38rem; }

.hero-photo .eyebrow {
  border-color: rgb(255 255 255 / 0.25);
  background: rgb(255 255 255 / 0.10);
  color: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(6px);
}

.hero-photo h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.125rem;
  color: #fff;
}

.hero-photo h1 em { font-style: normal; color: hsl(232 92% 82%); }

.hero-photo .hero-sub { font-size: 1.125rem; line-height: 1.65; color: rgb(255 255 255 / 0.84); margin-bottom: 2rem; }
.hero-photo .hero-fine { margin-top: 1.25rem; font-size: 0.8125rem; color: rgb(255 255 255 / 0.70); }
.hero-photo .btn-ghost { background: rgb(255 255 255 / 0.10); color: #fff; border-color: rgb(255 255 255 / 0.40); }
.hero-photo .btn-ghost:hover { background: rgb(255 255 255 / 0.18); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--brand-text) / 0.30);
  background: hsl(var(--brand-tint));
  color: hsl(var(--brand-on-tint));
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ── Sections ────────────────────────────────────────────────────────────── */

section, [id] { scroll-margin-top: 5rem; }

.band { padding: 4.5rem 0; }
.band-alt { background: hsl(var(--muted) / 0.45); border-block: 1px solid hsl(var(--border)); }

.section-head { max-width: 46rem; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: hsl(var(--brand-text)); margin-bottom: 0.75rem; }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.75rem; }
.section-head p { color: hsl(var(--muted-foreground)); font-size: 1.0625rem; }

.card { background: hsl(var(--card)); color: hsl(var(--card-foreground)); border: 1px solid hsl(var(--border)); border-radius: var(--radius); }

.lead { font-size: 1.125rem; line-height: 1.7; color: hsl(var(--muted-foreground)); max-width: 44rem; }
.prose p + p { margin-top: 1rem; }
.prose h3 { font-size: 1.25rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.prose ul { padding-left: 1.25rem; margin-top: 0.75rem; }
.prose li + li { margin-top: 0.375rem; }
.prose code { font-size: 0.875em; padding: 0.1em 0.4em; border-radius: 4px; background: hsl(var(--muted)); }

/* ── Stat strip ──────────────────────────────────────────────────────────── */

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat .value { display: block; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -0.03em; color: hsl(var(--brand-text)); line-height: 1.1; }
.stat .label { display: block; margin-top: 0.5rem; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: hsl(var(--muted-foreground)); }

/* ── Feature / metric cards ──────────────────────────────────────────────── */

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }

.feature { padding: 1.5rem; transition: transform 0.15s ease, box-shadow 0.15s ease; display: flex; flex-direction: column; }
.feature:hover { transform: translateY(-2px); box-shadow: 0 6px 18px hsl(var(--navy) / 0.10); }
.dark .feature:hover { box-shadow: 0 6px 18px rgb(0 0 0 / 0.40); }
.feature .num { font-family: 'Fira Code', ui-monospace, monospace; font-size: 0.8125rem; color: hsl(var(--brand-text)); margin-bottom: 0.75rem; }
.feature h3, .feature h4 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }
.feature p { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }
.feature .formula { margin: 0.875rem 0 0.75rem; padding: 0.75rem 0.875rem; border-radius: 8px; background: hsl(var(--muted)); font-family: 'Fira Code', ui-monospace, monospace; font-size: 0.875rem; color: hsl(var(--foreground)); overflow-x: auto; }
.feature ul { list-style: none; margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.375rem; }
.feature li { display: flex; gap: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.feature li::before { content: '\2713'; color: hsl(var(--brand-text)); font-weight: 800; flex-shrink: 0; }

.group-head { margin-bottom: 1.25rem; }
.group-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: hsl(var(--brand-text)); margin-bottom: 0.25rem; }
.group-name { font-size: 1.25rem; font-weight: 700; }
.feature-group + .feature-group { margin-top: 3rem; }

/* ── Product frames (screenshots) ────────────────────────────────────────── */

.frame { border-radius: 12px; overflow: hidden; border: 1px solid hsl(var(--border)); background: hsl(var(--card)); box-shadow: 0 20px 50px hsl(var(--navy) / 0.14); }
.dark .frame { box-shadow: 0 20px 50px rgb(0 0 0 / 0.5); }
.frame img { width: 100%; height: auto; display: block; }
.frame-caption { margin-top: 0.75rem; font-size: 0.8125rem; color: hsl(var(--muted-foreground)); text-align: center; }

.split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.split > * { min-width: 0; }   /* a <pre> or long word must never widen the grid past the viewport */
.code { max-width: 100%; }
.split .copy h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 0.875rem; }
.split .copy p { color: hsl(var(--muted-foreground)); font-size: 1.0625rem; }
.split .copy ul { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.split .copy li { display: flex; gap: 0.625rem; font-size: 0.9375rem; }
.split .copy li::before { content: '\2713'; color: hsl(var(--brand-text)); font-weight: 800; }

/* ── Steps ───────────────────────────────────────────────────────────────── */

.steps { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.step { text-align: center; }
.step-num { width: 3rem; height: 3rem; margin: 0 auto 1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.0625rem; font-weight: 700; }
.step h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); }

/* ── Code samples ────────────────────────────────────────────────────────── */

.code {
  margin: 0;
  padding: 1rem 1.125rem;
  border-radius: 10px;
  background: hsl(222 47% 11%);
  color: hsl(210 33% 92%);
  font-family: 'Fira Code', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8125rem;
  line-height: 1.6;
  overflow-x: auto;
  border: 1px solid hsl(220 18% 27%);
}
.code .c { color: hsl(216 14% 62%); }
.code .k { color: hsl(232 92% 82%); }
.code-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: hsl(var(--muted-foreground)); margin-bottom: 0.5rem; }

/* ── Chips ───────────────────────────────────────────────────────────────── */

.chips { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; max-width: 52rem; margin: 0 auto; }
.chip { display: inline-flex; align-items: center; gap: 0.5rem; min-height: 2.5rem; padding: 0.5rem 1.125rem; border-radius: 9999px; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); font-size: 0.875rem; font-weight: 500; }

/* ── Pricing ─────────────────────────────────────────────────────────────── */

.price-card { padding: 2rem; display: flex; flex-direction: column; }
.price-card.featured { border-color: hsl(var(--brand-text) / 0.5); box-shadow: 0 10px 30px hsl(var(--navy) / 0.10); }
.dark .price-card.featured { box-shadow: 0 10px 30px rgb(0 0 0 / 0.45); }
.price-card .tier { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: hsl(var(--brand-text)); }
.price-card h3 { font-size: 1.5rem; font-weight: 800; margin-top: 0.5rem; }
.price-card .price { margin-top: 1rem; font-size: 2.5rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-card .price small { font-size: 0.9375rem; font-weight: 500; letter-spacing: 0; color: hsl(var(--muted-foreground)); }
.price-card .blurb { margin-top: 0.875rem; color: hsl(var(--muted-foreground)); font-size: 0.9375rem; }
.price-card ul { list-style: none; margin: 1.25rem 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.price-card li { display: flex; gap: 0.625rem; font-size: 0.9375rem; }
.price-card li::before { content: '\2713'; color: hsl(var(--brand-text)); font-weight: 800; flex-shrink: 0; }
.price-card .btn { margin-top: auto; }
.price-card .fine { margin-top: 0.875rem; font-size: 0.8125rem; color: hsl(var(--muted-foreground)); }

.terms { display: grid; grid-template-columns: 1fr; gap: 0; }
.terms .row { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid hsl(var(--border)); }
.terms .row:last-child { border-bottom: 0; }
.terms dt { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); }
.terms dd { font-size: 0.9375rem; font-weight: 600; text-align: right; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */

.faq { display: flex; flex-direction: column; gap: 0.75rem; max-width: 52rem; margin: 0 auto; }
.faq details { padding: 1.25rem 1.5rem; }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: hsl(var(--brand-text)); font-size: 1.25rem; transition: transform 0.15s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 0.875rem; color: hsl(var(--muted-foreground)); font-size: 0.9375rem; line-height: 1.65; }

/* ── CTA band ────────────────────────────────────────────────────────────── */

.cta { padding: 4.5rem 0; background: linear-gradient(135deg, hsl(217 48% 20%) 0%, hsl(243 60% 34%) 100%); color: #fff; text-align: center; }
.dark .cta { background: linear-gradient(135deg, hsl(217 48% 14%) 0%, hsl(243 60% 26%) 100%); }
.cta h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.875rem; }
.cta p { max-width: 36rem; margin: 0 auto 2rem; color: rgb(255 255 255 / 0.86); }
.cta .btn-primary { background: #fff; color: hsl(217 48% 20%); }
.cta .btn-primary:hover { background: rgb(255 255 255 / 0.9); }
.cta .btn-ghost { background: rgb(255 255 255 / 0.10); color: #fff; border-color: rgb(255 255 255 / 0.35); }
.cta .btn-ghost:hover { background: rgb(255 255 255 / 0.18); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.cta .fine { margin-top: 1.25rem; font-size: 0.8125rem; color: rgb(255 255 255 / 0.72); }

/* ── Footer ──────────────────────────────────────────────────────────────── */

.site-footer { border-top: 1px solid hsl(var(--border)); background: hsl(var(--muted) / 0.45); padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 0.875rem; max-width: 22rem; }
.footer-col h3 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.875rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { font-size: 0.875rem; color: hsl(var(--muted-foreground)); text-decoration: none; }
.footer-col a:hover { color: hsl(var(--brand-text)); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid hsl(var(--border)); display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between; font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

/* ── A11y helpers ────────────────────────────────────────────────────────── */

a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 2px solid hsl(var(--brand-text)); outline-offset: 2px; border-radius: 4px; }

.skip-link { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip-link:focus-visible { position: fixed; top: 12px; left: 12px; width: auto; height: auto; padding: 8px 16px; background: hsl(243 75% 59%); color: #fff; border-radius: 4px; font-weight: 600; z-index: 9999; clip: auto; clip-path: none; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .btn:hover, .feature:hover { transform: none; }
}

/* ── Breakpoints ─────────────────────────────────────────────────────────── */

@media (max-width: 559px) { .header-cta { display: none; } }
@media (min-width: 560px) { #mobile-menu .mobile-cta { display: none; } }

@media (min-width: 640px) {
  .shell { padding: 0 1.5rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  #menu-btn { display: none; }
  #mobile-menu { display: none !important; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .hero-inner { padding: 7rem 0 6.5rem; }
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split.flip .copy { order: 2; }
}
