/* =========================================================================
   ArtiMind — Landing page styles
   Premium · athletic · minimalist · dark theme
   Palette: emerald + graphite · minimal-geometry background
   Built for constructors (Weblium / Wix / Webflow) — plain, portable CSS
   ========================================================================= */

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

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces — graphite */
  --bg:        #0C0E10;
  --bg-elev:   #0F1214;
  --surface:   #15191C;
  --surface-2: #1B2024;
  --line:      rgba(255,255,255,0.07);
  --line-2:    rgba(255,255,255,0.13);
  --hair:      rgba(255,255,255,0.045);   /* top highlight on cards */

  /* Text */
  --text:   #EEF1F0;
  --text-2: #A6AEAC;
  --text-3: #6C7571;

  /* Brand accents — premium emerald */
  --accent:      #17D992;
  --accent-deep: #0FB57A;
  --accent-soft: rgba(23,217,146,0.13);
  --accent-2:    #35E0BE;                 /* mint-teal — method / secondary */
  --danger:      #F2555F;                 /* refined coral-red — pain */
  --danger-soft: rgba(242,85,95,0.11);

  /* Geometry */
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 22px;
  --maxw: 1180px;

  /* Elevation (soft, layered) */
  --shadow-card: 0 1px 0 var(--hair) inset, 0 26px 60px -44px rgba(0,0,0,0.85);
  --shadow-lift: 0 1px 0 var(--hair) inset, 0 34px 70px -40px rgba(0,0,0,0.9);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--text);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;

  /* Minimal-geometry background: faint technical grid over graphite */
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(255,255,255,0.020) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.020) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: center top;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
section[id] { scroll-margin-top: 88px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; }
.section { padding: 100px 0; position: relative; }
.section--tight { padding: 74px 0; }

/* Soft separation between stacked dark sections (no hard rules) */
.section + .section::before,
.method::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  opacity: .7;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 20px; height: 1px;
  background: currentColor;
  opacity: .7;
  display: inline-block;
}

.section-head { max-width: 800px; margin-bottom: 54px; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  margin: 20px 0 22px;
}
.section-head p { color: var(--text-2); font-size: clamp(16px, 1.6vw, 19px); }

.accent { color: var(--accent); }
.accent-2 { color: var(--accent-2); }
.hl-danger { color: var(--danger); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease);
  text-align: center;
}
.btn svg { flex: none; }
.btn--cta {
  background: var(--accent);
  color: #08110D;
  font-size: 18px;
  padding: 20px 34px;
  box-shadow: 0 12px 40px -16px rgba(23,217,146,0.75), 0 1px 0 rgba(255,255,255,0.25) inset;
}
.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 54px -16px rgba(23,217,146,0.9), 0 1px 0 rgba(255,255,255,0.3) inset;
  background: #22e79d;
}
.btn--cta:active { transform: translateY(0); }
.btn--lg { font-size: 19px; padding: 22px 40px; }
.btn--sm { font-size: 14px; padding: 12px 20px; }
.btn--ghost {
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border: 1px solid var(--line-2);
  font-weight: 700;
  padding: 12px 22px;
  font-size: 15px;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.bolt { color: #08110D; }

.cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-note svg { flex: none; color: var(--accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12,14,16,0.72);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent);
  display: grid; place-items: center;
  color: #08110D;
  box-shadow: 0 6px 18px -8px rgba(23,217,146,0.7);
}
.brand b { color: var(--accent); font-weight: 800; }
.header-cta { display: inline-flex; align-items: center; gap: 14px; }
.header-nav { display: flex; gap: 28px; }
.header-nav a { color: var(--text-2); font-size: 15px; font-weight: 500; transition: color .2s; }
.header-nav a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 80px 0 66px; overflow: hidden; }
.hero::before { /* soft ambient glow */
  content: "";
  position: absolute; inset: -25% -10% auto -10%;
  height: 560px;
  background: radial-gradient(58% 100% at 72% 0%, rgba(23,217,146,0.16), transparent 60%),
              radial-gradient(50% 80% at 8% 15%, rgba(53,224,190,0.10), transparent 60%);
  pointer-events: none;
}
.hero::after { /* minimal-geometry diagonal accent lines */
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(118deg, transparent 0 58px, rgba(23,217,146,0.045) 58px 59px);
  -webkit-mask-image: radial-gradient(70% 80% at 75% 25%, #000, transparent 78%);
          mask-image: radial-gradient(70% 80% at 75% 25%, #000, transparent 78%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  margin: 24px 0 24px;
  letter-spacing: -0.03em;
}
.hero h1 .lead { display: block; }
.hero h1 .sub-line { display: block; font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; color: var(--text-2); margin-top: 16px; letter-spacing: -0.02em; line-height: 1.2; }
.hero-sub { font-size: clamp(16px, 1.7vw, 19px); color: var(--text-2); margin-bottom: 32px; max-width: 560px; }
.hero-cta-row { display: flex; flex-direction: column; align-items: flex-start; }

.hero-trust { margin-top: 36px; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 10px; color: var(--text-2); font-size: 14px; font-weight: 600; }
.hero-trust .t svg { color: var(--accent); flex: none; }

/* ---------- Photo placeholders ---------- */
.ph {
  position: relative;
  border-radius: var(--r-lg);
  background:
    linear-gradient(160deg, rgba(23,217,146,0.07), rgba(53,224,190,0.02) 45%),
    var(--surface);
  border: 1px solid var(--line-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-card);
}
.ph::after { /* soft viewfinder frame */
  content: "";
  position: absolute; inset: 16px;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 14px;
  pointer-events: none;
}
.ph-badge {
  position: absolute; top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(12,14,16,0.66);
  border: 1px solid var(--line-2);
  color: var(--text-2);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 12px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.ph-badge svg { color: var(--accent); flex: none; }
.ph-caption {
  position: relative; z-index: 2;
  padding: 22px;
  background: linear-gradient(to top, rgba(12,14,16,0.86), transparent);
}
.ph-caption .lbl {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 11px; color: var(--accent); font-weight: 600;
}
.ph-caption p { font-size: 13px; color: var(--text-2); margin-top: 6px; line-height: 1.5; }
.hero-photo { aspect-ratio: 4 / 5; min-height: 440px; }

/* ---------- Pain grid (block 2) ---------- */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 26px 30px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.pain-card::before { /* soft top tint on hover */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--danger-soft), transparent 55%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.pain-card:hover {
  border-color: rgba(242,85,95,0.4);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift), 0 24px 60px -34px rgba(242,85,95,0.4);
}
.pain-card:hover::before { opacity: 1; }
.pain-num {
  position: relative; z-index: 1;
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 15px; color: var(--danger);
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 11px;
  background: var(--danger-soft);
  border: 1px solid rgba(242,85,95,0.28);
  margin-bottom: 20px;
}
.pain-card h3 { position: relative; z-index: 1; font-size: 20px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.01em; }
.pain-card .sym { position: relative; z-index: 1; color: var(--text-2); font-size: 15px; line-height: 1.62; }
.pain-card .sym b { color: var(--text); font-weight: 700; }

.pain-verdict {
  grid-column: 1 / -1;
  margin-top: 10px;
  background:
    radial-gradient(120% 160% at 100% 0%, rgba(23,217,146,0.08), transparent 55%),
    linear-gradient(120deg, rgba(242,85,95,0.09), transparent 60%),
    var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 34px 36px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}
.pain-verdict .ico { flex: none; color: var(--accent); margin-top: 2px; }
.pain-verdict p { font-size: clamp(17px, 2vw, 21px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.5; }
.pain-verdict p .accent { color: var(--accent); }

/* ---------- Method timeline (block 3) ---------- */
.method { background: var(--bg-elev); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px 34px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--line-2); }
.step-ico {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(23,217,146,0.26);
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 22px;
}
.step-tag {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.step h3 { font-size: 21px; margin: 8px 0 14px; }
.step p { color: var(--text-2); font-size: 15px; line-height: 1.62; }
.step p b { color: var(--text); font-weight: 700; }
.step-conn {
  position: absolute; top: 60px; right: -24px; width: 24px;
  color: var(--line-2); z-index: 2;
  display: grid; place-items: center;
}
.step:last-child .step-conn { display: none; }

/* ---------- MVP teaser (block 4) ---------- */
.mvp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvp-card {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 28px 32px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.mvp-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.mvp-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-soft);
  border: 1px solid rgba(23,217,146,0.28);
  color: var(--accent);
  font-size: 12px; font-weight: 700;
  padding: 7px 13px; border-radius: 999px;
  margin-bottom: 22px;
}
.mvp-badge svg { flex: none; }
.mvp-card h3 { font-size: 22px; margin-bottom: 18px; letter-spacing: -0.01em; }
.mvp-card h3 .q { color: var(--accent); }
.mvp-row { display: flex; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); }
.mvp-row:first-of-type { border-top: none; }
.mvp-row .k {
  flex: none; width: 116px;
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.12em; color: var(--text-3);
  font-weight: 600; padding-top: 3px;
}
.mvp-row .v { color: var(--text-2); font-size: 15px; }
.mvp-row .v b { color: var(--text); font-weight: 700; }

/* ---------- Author (block 5) ---------- */
.author-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: start; }
.author-media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.author-main { grid-column: 1 / -1; aspect-ratio: 16 / 11; min-height: 300px; }
.author-mini { aspect-ratio: 1 / 1; min-height: 120px; }
.author-mini .ph-caption { padding: 13px; }
.author-mini .ph-caption p { font-size: 11.5px; }
.author-mini::after { inset: 9px; }

.author-copy .section-head { margin-bottom: 30px; }
.stats { display: flex; flex-direction: column; gap: 16px; margin: 8px 0 36px; }
.stat {
  display: flex; gap: 22px; align-items: baseline;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  border-radius: 4px var(--r) var(--r) 4px;
  padding: 22px 26px;
  box-shadow: var(--shadow-card);
}
.stat .num {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 42px; line-height: 1; color: var(--accent);
  flex: none; min-width: 96px;
}
.stat .desc { color: var(--text-2); font-size: 15px; line-height: 1.55; }
.stat .desc b { color: var(--text); font-weight: 700; }

.quote {
  position: relative;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 36px 32px;
  box-shadow: var(--shadow-card);
}
.quote::before {
  content: "\201C";
  position: absolute; top: 6px; left: 24px;
  font-family: Georgia, serif;
  font-size: 88px; line-height: 1; color: var(--accent);
  opacity: 0.45;
}
.quote p { font-size: 17px; color: var(--text); line-height: 1.7; position: relative; }
.quote p + p { margin-top: 16px; }
.quote .who { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.quote .who .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.quote .who span { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; color: var(--text-3); font-weight: 600; }

/* ---------- Final CTA (block 6) ---------- */
.final { position: relative; overflow: hidden; }
.final-panel {
  position: relative;
  background: linear-gradient(150deg, #171b1e 0%, #0d1012 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 72px 40px 76px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.final-panel::before { /* ambient glow from bottom */
  content: "";
  position: absolute; inset: auto -10% -60% -10%; height: 400px;
  background: radial-gradient(50% 100% at 50% 100%, rgba(23,217,146,0.2), transparent 65%);
  pointer-events: none;
}
.final-panel::after { /* minimal-geometry concentric arcs */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 128%, transparent 30%, rgba(23,217,146,0.07) 30.2% 30.5%, transparent 31%),
    radial-gradient(circle at 50% 128%, transparent 44%, rgba(23,217,146,0.05) 44.2% 44.5%, transparent 45%),
    radial-gradient(circle at 50% 128%, transparent 58%, rgba(23,217,146,0.035) 58.2% 58.5%, transparent 59%);
  pointer-events: none;
}
.final-panel h2 { font-size: clamp(30px, 4.6vw, 54px); max-width: 760px; margin: 6px auto 20px; position: relative; z-index: 1; }
.final-panel p { color: var(--text-2); font-size: clamp(16px, 1.8vw, 20px); max-width: 620px; margin: 0 auto 34px; position: relative; z-index: 1; }
.final-panel .btn { position: relative; z-index: 1; }
.final-panel .cta-note { justify-content: center; position: relative; z-index: 1; }

/* ---------- Footer (block 7) ---------- */
.site-footer {
  background: #090B0C;
  border-top: 1px solid var(--line);
  padding: 58px 0 42px;
  font-size: 13.5px;
  color: var(--text-3);
}
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 36px; }
.footer-brand { max-width: 380px; }
.footer-brand .brand { font-size: 18px; margin-bottom: 14px; }
.footer-brand p { color: var(--text-3); line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links .h {
  font-family: 'Oswald', sans-serif; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 12px; color: var(--text-2); font-weight: 600; margin-bottom: 4px;
}
.footer-links a { color: var(--text-2); transition: color .2s; }
.footer-links a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  line-height: 1.7;
  color: var(--text-3);
}
.footer-legal .ph-note { color: #575f5b; }
.footer-legal a { color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--accent); }

/* ---------- Legal subpages ---------- */
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 60px 24px 90px; position: relative; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); font-weight: 600; font-size: 14px; margin-bottom: 30px; }
.legal-back:hover { color: var(--accent); }
.legal-wrap h1 { font-size: clamp(30px, 5vw, 46px); margin-bottom: 12px; }
.legal-meta { color: var(--text-3); font-size: 14px; margin-bottom: 40px; }
.legal-note {
  background: var(--accent-soft);
  border: 1px solid rgba(23,217,146,0.22);
  border-radius: var(--r);
  padding: 16px 20px;
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 40px;
  display: flex; gap: 12px; align-items: flex-start;
}
.legal-note svg { color: var(--accent); flex: none; margin-top: 2px; }
.legal-wrap h2 { font-size: 22px; margin: 40px 0 14px; padding-top: 4px; }
.legal-wrap h3 { font-size: 17px; margin: 26px 0 10px; font-weight: 700; }
.legal-wrap p { color: var(--text-2); margin-bottom: 14px; font-size: 15.5px; }
.legal-wrap ul { color: var(--text-2); margin: 0 0 16px; padding-left: 22px; font-size: 15.5px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap strong { color: var(--text); font-weight: 700; }
.ph-fill { color: var(--accent); background: var(--accent-soft); padding: 1px 6px; border-radius: 5px; font-weight: 600; }

/* ---------- Scroll reveal (progressive enhancement) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { max-width: 460px; }
  .author-grid { grid-template-columns: 1fr; gap: 36px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step-conn { display: none !important; }
  .mvp-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
}
@media (max-width: 620px) {
  .section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .pain-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px; }
  .btn--cta { width: 100%; padding: 18px 22px; font-size: 16px; }
  .hero-cta-row { align-items: stretch; }
  .footer-top { flex-direction: column; gap: 28px; }
  .stat { flex-direction: column; gap: 6px; }
  .stat .num { font-size: 36px; }
  .header-cta .btn--sm { display: none; }
  .final-panel { padding: 52px 22px 58px; }
  body { background-size: 56px 56px; }
}
