/* Visionaire Enterprise — Royal Gold
   Production site styles
   ===================================== */

:root {
  /* Royal gold palette */
  --gold-d: #7a5d1c;
  --gold-m: #b58f3a;
  --gold-l: #d8b55f;
  --gold-x: #ecd185;
  --gold-foil: linear-gradient(135deg, #7a5d1c 0%, #d8b55f 30%, #ecd185 50%, #d8b55f 70%, #7a5d1c 100%);
  --gold-solid: linear-gradient(135deg, #d8b55f, #b58f3a);

  /* Neutrals */
  --ink: #050403;
  --ink-1: #0c0a08;
  --ink-2: #14110d;
  --ink-3: #1e1a15;
  --ink-4: #2a241d;
  --line: rgba(181, 143, 58, 0.16);
  --line-strong: rgba(181, 143, 58, 0.32);
  --text: #e9e3d5;
  --text-dim: #b8b0a0;
  --muted: #8f867a;
  --green: #7ba882;
  --red: #8a4a4a;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--ink); color: var(--text);
  font-family: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 300; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 300; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

.eyebrow {
  font-size: 10.5px; color: var(--gold-m);
  letter-spacing: 0.22em; text-transform: uppercase;
  font-family: 'Inter Tight', sans-serif; font-weight: 500;
}
.cap {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.18em; text-transform: uppercase;
  font-family: 'Inter Tight', sans-serif;
}

.gold-foil {
  background-image: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Grain overlay */
.grain::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.35; mix-blend-mode: overlay; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Utility bar */
.util {
  padding: 8px 32px; font-size: 10.5px; color: var(--muted);
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 20px;
  border-bottom: 1px solid var(--line); position: relative; z-index: 2;
}
.util .accent { color: var(--gold-m); }

/* Nav */
.nav {
  padding: 18px 32px; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10;
  background: rgba(5,4,3,0.85); backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}
.nav-logo { display: inline-flex; align-items: center; gap: 12px; }
.nav-logo-word {
  font-family: 'Inter Tight', sans-serif; letter-spacing: 0.22em; font-size: 11px;
  font-weight: 500; text-transform: uppercase; color: var(--text);
}
.nav-logo-word span { opacity: 0.55; margin-left: 0.6em; }
.nav-links { display: flex; gap: 28px; font-size: 13px; color: var(--muted); }
.nav-links a { transition: color .15s; position: relative; padding-bottom: 4px; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--gold-solid);
}
.nav-actions { display: flex; gap: 14px; align-items: center; }
.nav-actions a.sign { font-size: 13px; color: var(--muted); }
.nav-actions a.sign:hover { color: var(--text); }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px;
  color: var(--text); letter-spacing: 0.02em; font-variant-numeric: tabular-nums;
  transition: color .15s;
}
.nav-phone svg { color: var(--gold-m); }
.nav-phone:hover { color: var(--gold-l); }
@media (max-width: 960px) { .nav-phone span { display: none; } }

/* Trust strip */
.trust-strip {
  padding: 36px 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--ink-1); position: relative;
}
.trust-strip .row {
  max-width: 1280px; margin: 0 auto; display: grid;
  grid-template-columns: auto repeat(4, 1fr); gap: 32px; align-items: center;
}
.trust-strip .label {
  font-size: 10.5px; color: var(--gold-m); letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 500;
}
.trust-strip .item {
  display: flex; align-items: center; gap: 10px; font-size: 12.5px;
  color: var(--text-dim); letter-spacing: 0.02em;
}
.trust-strip .item svg { color: var(--gold-m); flex-shrink: 0; }
.trust-strip .item strong { color: var(--text); font-weight: 500; }
@media (max-width: 960px) {
  .trust-strip .row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-strip .label { grid-column: 1 / -1; text-align: center; margin-bottom: 4px; }
}
@media (max-width: 600px) { .trust-strip .row { grid-template-columns: 1fr; } }

/* Case study card */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 960px) { .case-grid { grid-template-columns: 1fr; } }
.case {
  background: linear-gradient(160deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden; position: relative;
}
.case .top-bar { height: 2px; background: var(--gold-foil); }
.case-body { padding: 36px; }
.case-num {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 14px;
  color: var(--gold-m); letter-spacing: 0.1em;
}
.case h3 { font-size: 30px; margin: 10px 0 24px; font-weight: 400; letter-spacing: -0.015em; }
.score-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  margin-bottom: 24px;
}
.score-cell { background: var(--ink); padding: 14px 12px; }
.score-cell .bureau {
  font-size: 10px; color: var(--muted); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 8px;
}
.score-cell .from {
  font-family: 'JetBrains Mono', monospace; color: var(--red);
  font-size: 15px; text-decoration: line-through; opacity: .7;
}
.score-cell .to {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 400;
  background-image: var(--gold-foil); -webkit-background-clip: text;
  background-clip: text; color: transparent; line-height: 1.1; margin-top: 4px;
}
.score-cell .delta { font-size: 11px; color: var(--green); margin-top: 4px; }
.case-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.case-stat .k { font-size: 10.5px; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
.case-stat .v { font-family: 'Fraunces', serif; font-size: 22px; color: var(--gold-l); }
.case .why {
  padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--text-dim); line-height: 1.6;
}
.case .why strong { color: var(--text); font-weight: 500; }

/* Founder card */
.founder-grid {
  display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start;
}
@media (max-width: 760px) { .founder-grid { grid-template-columns: 1fr; gap: 32px; } }
.founder-photo {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.founder-photo img { width: 100%; display: block; }
.founder-photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(181,143,58,.25);
  border-radius: 6px;
}
.founder-name {
  font-family: 'Fraunces', serif; font-size: 42px; font-weight: 300;
  letter-spacing: -0.02em; margin: 0;
}
.founder-title {
  font-size: 11px; color: var(--gold-m); letter-spacing: 0.2em;
  text-transform: uppercase; margin: 8px 0 24px;
}

/* Pill / legal */
.legal-check {
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
  font-size: 12px; color: var(--text-dim); line-height: 1.5;
  padding: 12px; background: var(--ink-1); border: 1px solid var(--line); border-radius: 4px;
  margin-top: 20px;
}
.legal-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--gold-m); }

/* Buttons */
.btn-gold {
  padding: 12px 20px; background: var(--gold-solid); color: var(--ink);
  border: none; border-radius: 2px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  box-shadow: 0 1px 0 var(--gold-l) inset, 0 10px 30px rgba(181,143,58,0.25);
  transition: transform .15s, box-shadow .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 1px 0 var(--gold-l) inset, 0 14px 40px rgba(181,143,58,0.35); }
.btn-gold.lg { padding: 16px 28px; font-size: 13px; }
.btn-gold.xl { padding: 20px 40px; font-size: 13px; letter-spacing: 0.22em; box-shadow: 0 1px 0 var(--gold-l) inset, 0 30px 80px rgba(181,143,58,0.35); }

.btn-ghost {
  padding: 12px 20px; background: transparent; color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 2px; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  transition: border-color .15s, color .15s;
}
.btn-ghost:hover { border-color: var(--gold-m); color: var(--gold-l); }
.btn-ghost.lg { padding: 16px 24px; font-size: 13px; }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; color: var(--text);
  padding: 8px; cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Hero generic */
.hero {
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -100px; width: 700px; height: 700px;
  border-radius: 50%; background: radial-gradient(circle, rgba(181,143,58,0.18), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
  mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; }

/* Status chip */
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
  border: 1px solid var(--line-strong); border-radius: 999px; font-size: 12px;
  color: var(--gold-m); margin-bottom: 28px;
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* Hero headline */
h1.hero-title {
  font-size: 76px; line-height: 0.98; letter-spacing: -0.025em; margin: 0;
}
h1.hero-title em { font-style: italic; }

/* Dashboard card (hero right / reusable) */
.dash {
  background: linear-gradient(145deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: 6px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(181,143,58,0.06) inset;
}
.dash .bar { height: 2px; background: var(--gold-foil); }
.dash .bar.faint { opacity: 0.5; }
.dash-body { padding: 24px; }
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash-card { background: var(--ink); border-radius: 4px; padding: 20px; border: 1px solid var(--line); margin-bottom: 12px; }

/* Metrics ribbon */
.metrics {
  padding: 28px 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.metrics .cell { padding: 0 24px; border-left: 1px solid var(--line); }
.metrics .cell:first-child { border-left: none; }
.metrics .big {
  font-family: 'Fraunces', serif; font-size: 36px; font-weight: 300; line-height: 1;
  font-variant-numeric: tabular-nums; background-image: var(--gold-foil);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.metrics .small {
  font-size: 12px; color: var(--muted); margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* Section */
section.block { padding: 100px 0; position: relative; }
section.block.tight { padding: 80px 0; }
section.block .header { max-width: 720px; margin-bottom: 60px; }
section.block h2 {
  font-size: 56px; font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; margin: 0;
}
section.block h2 em { font-style: italic; color: var(--gold-m); }

/* 4-col method / 2-col tracks grid w/ gold lines */
.grid-divided { display: grid; gap: 1px; background: var(--line); }
.grid-divided > * { background: var(--ink-1); padding: 32px; }

/* Method card */
.method .num {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 300;
  color: var(--gold-m); font-style: italic;
}
.method .time {
  font-size: 10.5px; color: var(--gold-l); letter-spacing: 0.14em;
  text-transform: uppercase; font-family: 'JetBrains Mono', monospace;
  padding: 4px 8px; border: 1px solid var(--line);
}

/* Tracks */
.track h3 { font-size: 42px; letter-spacing: -0.015em; margin: 14px 0 18px; }
.track .price {
  font-family: 'Fraunces', serif; font-style: italic; color: var(--gold-l); font-size: 17px;
}
.track ul { list-style: none; padding: 0; margin: 24px 0; }
.track ul li {
  display: grid; grid-template-columns: 32px 1fr; gap: 8px;
  padding: 10px 0; border-top: 1px dashed var(--line); font-size: 13px;
}
.track ul li:first-child { border-top: 1px solid var(--line); padding-top: 16px; }
.track ul li span { color: var(--gold-m); font-family: 'JetBrains Mono', monospace; font-size: 11px; }

/* CTA section */
.cta-final {
  padding: 140px 0 120px; position: relative; overflow: hidden; text-align: center;
  border-top: 1px solid var(--line);
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(181,143,58,0.22), transparent 60%);
  pointer-events: none;
}
.cta-final .inner { position: relative; z-index: 1; }
.cta-final h2 {
  font-size: 96px; line-height: 0.95; letter-spacing: -0.03em; margin: 0 0 28px;
}
.cta-final p {
  font-size: 17px; color: var(--text-dim); max-width: 560px;
  margin: 0 auto 40px; line-height: 1.6;
}

/* Footer */
footer {
  padding: 48px 32px 32px; border-top: 1px solid var(--line);
  background: var(--ink); position: relative;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  max-width: 1280px; margin: 0 auto 40px;
}
.foot-grid h4 {
  font-family: 'Inter Tight', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-m);
  margin: 0 0 14px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid ul li { padding: 4px 0; font-size: 13px; color: var(--text-dim); }
.foot-grid ul li a:hover { color: var(--gold-l); }
.foot-grid p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.foot-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; font-size: 11px;
  color: var(--muted); letter-spacing: 0.08em;
}

/* Page hero (subpages) */
.page-hero {
  padding: 100px 0 80px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: ''; position: absolute; top: -200px; left: -200px; width: 700px; height: 700px;
  border-radius: 50%; background: radial-gradient(circle, rgba(181,143,58,0.14), transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: 88px; line-height: 0.98; letter-spacing: -0.03em; margin: 20px 0 24px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-m); }
.page-hero p {
  max-width: 640px; font-size: 18px; color: var(--text-dim); line-height: 1.6;
}

/* Form */
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.form-progress { display: flex; gap: 6px; margin-bottom: 32px; }
.form-progress > div {
  flex: 1; height: 3px; background: var(--line); border-radius: 2px; transition: background .25s;
}
.form-progress > div.done { background: var(--gold-solid); }

.form-step h2 { font-size: 44px; margin-bottom: 12px; }
.form-step .sub { color: var(--text-dim); margin-bottom: 32px; font-size: 15px; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.opt {
  background: var(--ink-1); border: 1px solid var(--line); border-radius: 4px;
  padding: 18px; cursor: pointer; text-align: left; color: var(--text);
  transition: all .15s; font-family: inherit;
}
.opt:hover { border-color: var(--gold-m); }
.opt.selected { border-color: var(--gold-m); background: var(--ink-2); box-shadow: 0 0 0 1px var(--gold-m) inset; }
.opt .t { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.opt .d { font-size: 12px; color: var(--muted); }

.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%; background: var(--ink-1); border: 1px solid var(--line); border-radius: 4px;
  padding: 14px 16px; color: var(--text); font-family: inherit; font-size: 14px;
  transition: border-color .15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-m);
}
.field textarea { min-height: 100px; resize: vertical; }

.form-actions {
  display: flex; justify-content: space-between; align-items: center; margin-top: 32px;
}
.form-back {
  background: none; border: none; color: var(--muted); font-size: 13px; cursor: pointer;
  font-family: inherit; padding: 8px 0;
}
.form-back:hover { color: var(--text); }

.form-success {
  text-align: center; padding: 48px 0;
}
.form-success .check {
  width: 72px; height: 72px; border-radius: 999px; margin: 0 auto 24px;
  background: var(--gold-solid); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(181,143,58,0.4);
}
.form-success h2 { font-size: 52px; margin-bottom: 12px; }
.form-success p { color: var(--text-dim); margin-bottom: 8px; }

/* Testimonial */
.testimonial {
  padding: 120px 0; border-top: 1px solid var(--line);
  position: relative;
}
.testimonial .q {
  font-size: 180px; line-height: 0.6; font-family: 'Fraunces', serif; font-weight: 300;
  background-image: var(--gold-foil); -webkit-background-clip: text; background-clip: text;
  color: transparent; opacity: 0.35; position: absolute; top: 80px; left: 32px;
}
.testimonial blockquote {
  position: relative; max-width: 900px; margin: 0 auto; padding-left: 100px; font-style: normal;
}
.testimonial blockquote p {
  font-family: 'Fraunces', serif; font-size: 40px; line-height: 1.25; font-weight: 300;
  letter-spacing: -0.01em; margin: 0;
}
.testimonial cite {
  display: flex; align-items: center; gap: 16px; margin-top: 32px; font-style: normal;
}
.testimonial .avatar {
  width: 48px; height: 48px; border-radius: 999px; background: var(--gold-solid);
  border: 1px solid var(--gold-l);
}
.testimonial .name { font-size: 14px; font-weight: 500; }
.testimonial .meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Responsive */
@media (max-width: 960px) {
  .wrap, .nav, .util, .metrics, footer { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 56px 0 40px; }
  h1.hero-title { font-size: 44px; }
  .page-hero h1 { font-size: 48px; }
  section.block h2 { font-size: 36px; }
  .cta-final h2 { font-size: 56px; }
  .testimonial blockquote p { font-size: 24px; }
  .testimonial blockquote { padding-left: 0; }
  .testimonial .q { font-size: 100px; top: 60px; }

  .hero-grid, .tracks-grid, .hero-dash-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metrics .cell:nth-child(3) { border-left: none; grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 24px; margin-top: 24px; }
  .grid-4, .method-grid { grid-template-columns: 1fr 1fr !important; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .nav-links { display: none; position: fixed; top: 60px; left: 0; right: 0; flex-direction: column;
    background: var(--ink-1); padding: 24px; gap: 20px; border-bottom: 1px solid var(--line); z-index: 20; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-actions a.sign { display: none; }
  .util { font-size: 9px; letter-spacing: 0.12em; }
  .util span:first-child { display: none; }

  .opt-grid { grid-template-columns: 1fr; }
  .form-step h2 { font-size: 28px; }

  /* Sticky mobile CTA */
  .mobile-cta {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 20;
    background: rgba(5,4,3,0.95); backdrop-filter: blur(18px);
    border-top: 1px solid var(--gold-m); padding: 12px 16px;
  }
  .mobile-cta .btn-gold { width: 100%; justify-content: center; }
  body { padding-bottom: 72px; }
}
@media (max-width: 600px) {
  .grid-4, .method-grid { grid-template-columns: 1fr !important; }
  .metrics { grid-template-columns: 1fr; }
  .metrics .cell { border-left: none; padding: 16px 0; border-top: 1px solid var(--line); }
  .metrics .cell:first-child { border-top: none; padding-top: 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-final h2 { font-size: 40px; }
}
.mobile-cta { display: none; }
