/* ==========================================================================
   Looksmaxxing — marketing site
   Design language mirrors the app: "Modern Dark (Cinema Mobile)" with the
   brand's neon-green accent (#2BE583), ambient glow, glassmorphism and
   expo-out motion.
   ========================================================================== */

:root {
  /* Brand palette (pulled 1:1 from the app's LooksmaxTheme) */
  --bg-top: #0e0f13;
  --bg-bottom: #060607;
  --accent: #2be583;
  --accent-press: #22c46e;
  --accent-glow: rgba(43, 229, 131, .38);
  --blue: #5bc8ff;
  --orange: #ffb43c;
  --purple: #c075ff;
  --gold: #ffd46e;

  --surface: rgba(255, 255, 255, .04);
  --surface-2: rgba(255, 255, 255, .06);
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .16);

  --text: #f4f5f7;
  --text-muted: #9ba1ac;
  --text-dim: #6b7280;

  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 40px);
  --ease: cubic-bezier(.16, 1, .3, 1);

  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-bottom);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Fixed atmospheric backdrop: base gradient + drifting green ambient blobs */
.bg-wrap { position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom) 60%); }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .16; will-change: transform; }
.blob.a { width: 46vw; height: 46vw; left: -12vw; top: -8vw; background: var(--accent); animation: drift1 22s var(--ease) infinite alternate; }
.blob.b { width: 40vw; height: 40vw; right: -14vw; top: 22vh; background: var(--blue); opacity: .1; animation: drift2 26s var(--ease) infinite alternate; }
.blob.c { width: 38vw; height: 38vw; left: 20vw; bottom: -18vw; background: var(--accent); opacity: .09; animation: drift1 30s var(--ease) infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate3d(8vw, 6vh, 0) scale(1.15); } }
@keyframes drift2 { to { transform: translate3d(-7vw, -5vh, 0) scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -.01em; }
p { color: var(--text-muted); }
a { color: inherit; text-decoration: none; }

.accent { color: var(--accent); }
.grad-text {
  background: linear-gradient(120deg, var(--accent), #7dffb8 55%, var(--blue));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; padding: clamp(64px, 10vw, 120px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent);
  padding: 7px 14px; border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  background: rgba(43, 229, 131, .06);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 20px 0 14px; }
.section-head p { font-size: 1.08rem; }
.lead { font-size: 1.15rem; color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease); }
.btn:active { transform: scale(.97); }
.btn-primary { color: #04140b; background: var(--accent); box-shadow: 0 0 0 rgba(43,229,131,0), 0 10px 30px -8px var(--accent-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 34px var(--accent-glow), 0 14px 40px -10px var(--accent-glow); background: #34ef8d; }
.btn-ghost { color: var(--text); background: var(--surface); border-color: var(--border-strong); backdrop-filter: blur(10px); }
.btn-ghost:hover { transform: translateY(-2px); background: var(--surface-2); border-color: var(--accent); }

/* App Store badge button */
.badge-store { display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px 12px 20px;
  background: #fff; color: #000; border-radius: 15px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.badge-store:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -14px rgba(255,255,255,.35); }
.badge-store svg { width: 26px; height: 26px; }
.badge-store .bs-sub { font-size: .66rem; line-height: 1; opacity: .7; letter-spacing: .02em; }
.badge-store .bs-main { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; line-height: 1.05; }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(8, 9, 12, .72); backdrop-filter: blur(18px) saturate(140%); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.brand img { width: 34px; height: 34px; filter: drop-shadow(0 0 10px var(--accent-glow)); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a.link { color: var(--text-muted); font-size: .95rem; font-weight: 500; transition: color .2s; }
.nav-links a.link:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(120px, 16vw, 180px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero h1 { margin: 22px 0 22px; }
.hero .lead { max-width: 30ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 34px 0 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: var(--text-dim); font-size: .9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Phone mockup ---------- */
.phone { position: relative; width: min(320px, 78vw); margin-inline: auto;
  aspect-ratio: 1320 / 2868; border-radius: 46px; padding: 12px;
  background: linear-gradient(160deg, #202127, #0c0d10);
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.85), 0 0 60px -20px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.09);
}
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #000; border-radius: 999px; z-index: 3; border: 1px solid rgba(255,255,255,.06); }
/* Real screenshots already include the status bar / Dynamic Island — drop the faux notch. */
.phone.shot::before { display: none; }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: #050506; }
.phone-screen video, .phone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-phone { position: relative; }
.hero-phone .glow-ring { position: absolute; inset: -8% -8% -8% -8%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 62%); filter: blur(20px); opacity: .8; }

/* Floating glass stat chip near the hero phone */
.float-chip { position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-sm); background: rgba(14,16,20,.72);
  border: 1px solid var(--border-strong); backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.7); }
.float-chip .fc-ring { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: conic-gradient(var(--accent) 78%, rgba(255,255,255,.1) 0); }
.float-chip .fc-ring i { width: 28px; height: 28px; border-radius: 50%; background: #0e1014; display: grid; place-items: center;
  font-style: normal; font-family: var(--font-display); font-weight: 700; font-size: .8rem; color: var(--accent); }
.float-chip .fc-t { font-size: .72rem; color: var(--text-dim); }
.float-chip .fc-v { font-family: var(--font-display); font-weight: 600; font-size: .92rem; }
.float-chip.one { top: 12%; left: -6%; }
.float-chip.two { bottom: 14%; right: -8%; }

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat-strip .stat { background: rgba(10,11,14,.6); padding: 26px 20px; text-align: center; }
.stat-strip .stat b { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text); }
.stat-strip .stat span { font-size: .85rem; color: var(--text-dim); }

/* ---------- Card grid (features) ---------- */
.grid { display: grid; gap: 20px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card { position: relative; padding: 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease); }
.card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); }
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); background: var(--surface-2); }
.card .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(43,229,131,.1); border: 1px solid rgba(43,229,131,.22); color: var(--accent); }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card.tint-blue .ic { background: rgba(91,200,255,.1); border-color: rgba(91,200,255,.22); color: var(--blue); }
.card.tint-orange .ic { background: rgba(255,180,60,.1); border-color: rgba(255,180,60,.22); color: var(--orange); }
.card.tint-purple .ic { background: rgba(192,117,255,.1); border-color: rgba(192,117,255,.22); color: var(--purple); }
.card.tint-gold .ic { background: rgba(255,212,110,.1); border-color: rgba(255,212,110,.22); color: var(--gold); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.step .num { font-family: var(--font-display); font-weight: 700; font-size: 1rem; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: var(--accent); border: 1px solid rgba(43,229,131,.3); background: rgba(43,229,131,.08); margin-bottom: 18px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: .95rem; }

/* ---------- Showcase (alternating rows) ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.showcase + .showcase { margin-top: clamp(60px, 9vw, 110px); }
.showcase.flip .sc-media { order: 2; }
.sc-copy .eyebrow { margin-bottom: 20px; }
.sc-copy h2 { margin-bottom: 16px; }
.sc-list { list-style: none; margin-top: 22px; display: grid; gap: 13px; }
.sc-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-muted); }
.sc-list li svg { flex: none; width: 22px; height: 22px; color: var(--accent); margin-top: 1px; }

/* ---------- App-screen recreations (inside phone) ---------- */
.appui { position: absolute; inset: 0; padding: 44px 16px 18px; display: flex; flex-direction: column; gap: 12px;
  background: linear-gradient(180deg, #0e0f13, #060607); color: var(--text); }
.appui .au-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.appui .au-sub { font-size: .72rem; color: var(--text-dim); margin-top: -6px; }
.au-card { background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 16px; padding: 14px; }
.au-ring { width: 118px; height: 118px; border-radius: 50%; margin: 4px auto; display: grid; place-items: center;
  background: conic-gradient(var(--accent) calc(var(--v, 78) * 1%), rgba(255,255,255,.08) 0); }
.au-ring i { width: 96px; height: 96px; border-radius: 50%; background: #0b0c10; display: grid; place-items: center; flex-direction: column; font-style: normal; }
.au-ring b { font-family: var(--font-display); font-size: 1.7rem; color: var(--accent); text-shadow: 0 0 14px var(--accent-glow); line-height: 1; }
.au-ring span { font-size: .6rem; color: var(--text-dim); }
.au-metric { display: grid; grid-template-columns: 20px 1fr auto; gap: 10px; align-items: center; margin: 9px 0; }
.au-metric .ai { width: 20px; height: 20px; opacity: .85; filter: invert(1); }
.au-metric .an { font-size: .74rem; color: var(--text-muted); }
.au-metric .av { font-family: var(--font-display); font-weight: 700; font-size: .74rem; }
.au-bar { grid-column: 1 / -1; height: 5px; border-radius: 999px; background: rgba(255,255,255,.09); overflow: hidden; margin-top: -3px; }
.au-bar i { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), #7dffb8); }
.au-task { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .78rem; }
.au-task:last-child { border-bottom: 0; }
.au-check { flex: none; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid rgba(255,255,255,.25); }
.au-task.done .au-check { background: var(--accent); border-color: var(--accent); color: #04140b; }
.au-task.done .au-tt { color: var(--text-dim); text-decoration: line-through; }
.au-chipline { display: flex; gap: 8px; }
.au-chip { flex: 1; text-align: center; padding: 9px 4px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid var(--border); }
.au-chip b { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--accent); }
.au-chip span { font-size: .58rem; color: var(--text-dim); }

/* ---------- Metrics grid ---------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.metric-chip { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  padding: 26px 16px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border);
  transition: transform .35s var(--ease), border-color .35s var(--ease); }
.metric-chip:hover { transform: translateY(-4px); border-color: var(--accent); }
.metric-chip .mi { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(43,229,131,.09); border: 1px solid rgba(43,229,131,.2); }
/* brightness(0) makes the line-art a solid black silhouette (keeping alpha),
   then invert(1) flips it to crisp pure white — far more legible than a plain
   invert, which leaves thin anti-aliased strokes a faint grey. */
.metric-chip .mi img { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.metric-chip span { font-family: var(--font-display); font-weight: 600; font-size: .92rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--text);
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; padding: 24px 40px 24px 0; position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--accent); transition: transform .3s var(--ease); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding-bottom: 24px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; padding: clamp(50px, 8vw, 84px) var(--gutter);
  border-radius: 28px; border: 1px solid var(--border-strong); overflow: hidden;
  background: radial-gradient(120% 140% at 50% 0%, rgba(43,229,131,.14), transparent 60%), var(--surface); }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 520px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer .brand { margin-bottom: 16px; }
.footer-col h4 { font-family: var(--font-display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-muted); font-size: .95rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-about p { font-size: .95rem; max-width: 34ch; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: .88rem; }

/* ---------- Legal / prose pages ---------- */
.page-head { padding-top: clamp(130px, 16vw, 170px); padding-bottom: clamp(30px, 5vw, 48px); }
.page-head .eyebrow { margin-bottom: 18px; }
.page-head h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.page-head .updated { color: var(--text-dim); margin-top: 14px; font-size: .92rem; }
.prose { max-width: 780px; margin-inline: auto; padding-bottom: 90px; }
.prose h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.12rem; margin: 28px 0 10px; color: var(--text); }
.prose p, .prose li { color: var(--text-muted); font-size: 1rem; margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }
.prose .callout { padding: 20px 22px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--accent); margin: 24px 0; }
.prose .callout p:last-child { margin-bottom: 0; }

/* Support cards */
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 10px 0 46px; }
.support-card { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.support-card .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(43,229,131,.1); color: var(--accent); border: 1px solid rgba(43,229,131,.22); }
.support-card .ic svg { width: 24px; height: 24px; }
.support-card h3 { margin-bottom: 8px; }
.support-card p { font-size: .95rem; margin-bottom: 14px; }
.support-card a.inline { color: var(--accent); font-weight: 600; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { max-width: none; margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-phone { margin-top: 20px; }
  .showcase { grid-template-columns: 1fr; }
  .showcase.flip .sc-media { order: 0; }
  .sc-media { max-width: 340px; margin-inline: auto; }
  .grid.cols-3, .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-chip.one { left: 2%; } .float-chip.two { right: 2%; }
}
@media (max-width: 640px) {
  .nav-links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(8,9,12,.96); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border);
    padding: 12px var(--gutter) 22px; transform: translateY(-120%); transition: transform .4s var(--ease); }
  .nav-links.open { transform: none; }
  .nav-links a.link { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-links .nav-cta { margin-top: 14px; }
  .nav-toggle { display: block; }
  .nav-desktop-cta { display: none; }
  .grid.cols-3, .grid.cols-2, .steps, .metrics, .stat-strip, .support-grid { grid-template-columns: 1fr; }
  .stat-strip .stat { padding: 20px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
