/* ==========================================================================
   MIGROVA SOLUTIONS — Stylesheet
   Design tokens derived from the Migrova mark: two ascending strokes forming
   an "M" — a navy stroke and a gold stroke, meeting at a peak. That ascent
   (steady progress, reaching a summit) is the signature motif of this site:
   it recurs as section dividers, hover underlines, and the hero graphic.
   ========================================================================== */

/* -------------------------------- Tokens -------------------------------- */
:root {
  /* Colour — pulled from the logo, extended into a working palette */
  --navy-950: #0a1830;
  --navy-900: #0f2044;
  --navy-800: #16294f;
  --navy-700: #1f3660;
  --navy-500: #3a537f;
  --navy-200: #c7d0e0;
  --gold-600: #b3872f;
  --gold-500: #cf9f3f;
  --gold-400: #d9b25c;
  --gold-300: #e8c983;
  --gold-100: #f5e8c8;
  --paper: #f7f5f0;
  --paper-raised: #ffffff;
  --ink: #14171f;
  --slate: #58616f;
  --slate-light: #8891a0;
  --line: #e2e1db;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* Type */
  --font-display: "Newsreader", "Iowan Old Style", "Georgia", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;

  /* Layout */
  --container: 1180px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 1px 2px rgba(15, 32, 68, 0.04), 0 12px 28px -12px rgba(15, 32, 68, 0.14);
  --shadow-raised: 0 4px 10px rgba(15, 32, 68, 0.06), 0 24px 48px -16px rgba(15, 32, 68, 0.22);
}

/* -------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
svg { display: block; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 3px;
}

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

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ------------------------------ Typography -------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy-950);
  letter-spacing: -0.01em;
  line-height: 1.14;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 500;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold-500);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--slate); font-size: 17px; margin-top: 16px; }

.lede { font-size: 19px; color: var(--slate); max-width: 60ch; }

/* --------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 10px 24px -10px rgba(207, 159, 63, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(207, 159, 63, 0.6); }

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

.btn-outline-dark {
  border-color: var(--line);
  color: var(--navy-900);
}
.btn-outline-dark:hover { border-color: var(--navy-900); background: var(--navy-900); color: #fff; }

.btn-block { width: 100%; justify-content: center; }

/* --------------------------------- Header --------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -18px rgba(15, 32, 68, 0.25);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy-950);
}
.brand .mark { width: 34px; height: 30px; }
.brand .word { letter-spacing: 0.02em; }
.brand .word span { color: var(--gold-600); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--gold-500);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--navy-950); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-actions { display: flex; align-items: center; gap: 26px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-950);
  position: relative;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-links { position: fixed; inset: 84px 0 0 0; background: var(--paper); flex-direction: column; align-items: flex-start; padding: 32px; gap: 6px; transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); overflow-y: auto; }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav-actions .btn-outline-dark { display: none; }
  .nav-toggle { display: flex; }
}

/* --------------------------------- Hero ------------------------------------ */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 82% -10%, #17325f 0%, var(--navy-900) 46%, var(--navy-950) 100%);
  color: #fff;
  overflow: hidden;
  padding: 120px 0 140px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 26px;
}
.hero-eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold-400); }
.hero h1 {
  color: #fff;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.08;
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede { color: rgba(255,255,255,0.72); margin-top: 24px; font-size: 18px; }
.hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-proof {
  margin-top: 56px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-proof div strong { display: block; font-family: var(--font-display); font-size: 26px; color: #fff; }
.hero-proof div span { font-size: 13px; color: rgba(255,255,255,0.55); }

.hero-art { position: relative; }
.ascent-graphic { width: 100%; height: auto; }
.ascent-line { stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw 1.8s var(--ease) forwards; }
.ascent-line.delay { animation-delay: 0.3s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.ascent-dot { opacity: 0; animation: fadein 0.6s var(--ease) forwards; }
@keyframes fadein { to { opacity: 1; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 96px 0 80px; text-align: left; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto 24px; }
}

/* ---------------------------- Section dividers ----------------------------- */
.ascent-divider { display: block; width: 100%; height: 46px; margin: 0 auto; opacity: 0.55; }
.ascent-divider path { stroke: var(--gold-500); }

section { padding: 108px 0; }
.section-alt { background: var(--paper-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-navy { background: var(--navy-950); color: #fff; }
.section-navy .section-head h2 { color: #fff; }
.section-navy .section-head p { color: rgba(255,255,255,0.62); }
.section-navy .eyebrow { color: var(--gold-300); }

@media (max-width: 640px) { section { padding: 76px 0; } }

/* ------------------------------- Intro block ------------------------------- */
.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.intro-copy p { color: var(--slate); font-size: 17px; margin-top: 18px; }
.intro-figures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.intro-figures div { background: var(--paper-raised); padding: 28px 24px; }
.intro-figures strong { display: block; font-family: var(--font-display); font-size: 30px; color: var(--navy-950); }
.intro-figures span { font-size: 13.5px; color: var(--slate); }

@media (max-width: 900px) { .intro { grid-template-columns: 1fr; } }

/* --------------------------------- Cards ----------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-raised); border-color: transparent; }

.card-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  margin-bottom: 22px;
}
.card-icon svg { width: 24px; height: 24px; stroke: var(--gold-300); }

.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 15px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--navy-900);
  border-bottom: 1px solid var(--gold-500); padding-bottom: 2px;
}
.card-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.card-link:hover svg { transform: translateX(3px); }

/* Why-choose icon list */
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-100); display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--gold-600); }
.feature-item h3 { font-size: 17px; margin-bottom: 6px; }
.feature-item p { color: var(--slate); font-size: 14.5px; }

/* Industry tiles */
.industry-tile {
  position: relative;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  background: var(--navy-950);
  color: #fff;
  overflow: hidden;
  min-height: 132px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.4s var(--ease);
}
.industry-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(207,159,63,0.28), transparent 60%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.industry-tile:hover { transform: translateY(-4px); }
.industry-tile:hover::before { opacity: 1; }
.industry-tile svg { width: 24px; height: 24px; stroke: var(--gold-300); margin-bottom: 14px; }
.industry-tile span { font-weight: 600; font-size: 15px; position: relative; }

/* ------------------------------ Process timeline ---------------------------- */
.process-rail { position: relative; }
.process-rail::before {
  content: "";
  position: absolute; left: 27px; top: 8px; bottom: 8px; width: 1px;
  background: var(--line);
}
.process-step { position: relative; display: flex; gap: 26px; padding-bottom: 48px; }
.process-step:last-child { padding-bottom: 0; }
.process-num {
  position: relative; z-index: 1;
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper-raised); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 15px; color: var(--gold-600); font-weight: 600;
}
.process-body h3 { font-size: 19px; margin-bottom: 8px; }
.process-body p { color: var(--slate); font-size: 15px; max-width: 54ch; }

/* --------------------------------- Stats ----------------------------------- */
.stats-band {
  background: var(--navy-950);
  color: #fff;
  padding: 78px 0;
  position: relative;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat strong {
  display: block; font-family: var(--font-display); font-size: clamp(32px, 4vw, 46px);
  color: var(--gold-300);
}
.stat span { font-size: 13.5px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.stats-note { text-align: center; font-size: 12.5px; color: rgba(255,255,255,0.35); margin-top: 40px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; } }

/* ------------------------------ Testimonials -------------------------------- */
.testimonial {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; gap: 20px;
}
.testimonial .quote-mark { font-family: var(--font-display); font-size: 44px; color: var(--gold-400); line-height: 0.6; }
.testimonial p.body { color: var(--navy-800); font-size: 15.5px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-500));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300); font-family: var(--font-display); font-size: 15px;
}
.testimonial-person strong { display: block; font-size: 14px; }
.testimonial-person span { font-size: 12.5px; color: var(--slate); }
.testimonial-tag {
  align-self: flex-start; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate-light); border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 10px; margin-top: -6px;
}

/* --------------------------------- FAQ -------------------------------------- */
.faq-list { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; text-align: left; padding: 24px 4px; font-size: 16.5px; font-weight: 600;
  color: var(--navy-950);
}
.faq-q svg { width: 18px; height: 18px; stroke: var(--gold-600); flex-shrink: 0; transition: transform 0.35s var(--ease); }
.faq-item[data-open="true"] .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease);
}
.faq-a p { padding: 0 4px 24px; color: var(--slate); font-size: 15px; max-width: 68ch; }

/* --------------------------------- CTA band --------------------------------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-950) 60%);
  color: #fff; border-radius: var(--radius-lg); padding: 64px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,0.65); margin-top: 10px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* --------------------------------- Forms ------------------------------------ */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--navy-900); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px;
  background: var(--paper-raised); font-size: 15px; color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(207,159,63,0.14); outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field .req { color: var(--gold-600); }
.form-note { font-size: 13px; color: var(--slate-light); margin-top: 6px; }
.form-status { font-size: 14px; margin-top: 14px; display: none; }
.form-status.visible { display: block; }
.form-status.success { color: #1f7a4d; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.contact-panel {
  background: var(--navy-950); color: #fff; border-radius: var(--radius-lg); padding: 40px 34px;
}
.contact-panel h3 { color: #fff; font-size: 20px; margin-bottom: 22px; }
.contact-row { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-row .icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .icon svg { width: 18px; height: 18px; stroke: var(--gold-300); }
.contact-row strong { display: block; font-size: 14px; margin-bottom: 3px; }
.contact-row span, .contact-row a { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.form-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

/* --------------------------------- Footer ------------------------------------ */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.6); padding: 84px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 60px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 18px; font-size: 14px; max-width: 32ch; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center; transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); }
.footer-social svg { width: 16px; height: 16px; stroke: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; font-size: 13px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold-300); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* --------------------------------- Page hero (inner pages) -------------------- */
.page-hero {
  background: var(--navy-950); color: #fff; padding: 96px 0 74px; position: relative; overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero h1 { color: #fff; font-size: clamp(32px, 4.4vw, 48px); max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,0.66); margin-top: 18px; max-width: 60ch; font-size: 17px; }
.page-hero-line { position: absolute; right: -60px; bottom: -40px; width: 340px; opacity: 0.14; }

/* --------------------------------- Reveal-on-scroll ---------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* --------------------------------- Legal / content pages ---------------------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 24px; margin-top: 44px; margin-bottom: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--slate); margin-bottom: 16px; font-size: 15.5px; }
.prose ul { margin-bottom: 16px; }
.prose ul li { color: var(--slate); font-size: 15.5px; padding-left: 22px; position: relative; margin-bottom: 8px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }
.prose .updated { font-family: var(--font-mono); font-size: 12.5px; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 30px; }

/* --------------------------------- About page specifics ----------------------- */
.value-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .value-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-row { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split-art { background: var(--navy-950); border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: center; }

/* Utility */
.mt-0 { margin-top: 0 !important; }
.center { text-align: center; }
