/* =========================================================
   MyHarness — design system
   ========================================================= */

:root {
  /* Brand palette */
  --ink:        #0b1020;   /* near-black navy            */
  --ink-2:      #111a32;   /* slightly lighter navy      */
  --slate:      #1c2944;
  --line:       rgba(148, 163, 184, 0.16);
  --line-2:     rgba(148, 163, 184, 0.28);

  --paper:      #ffffff;
  --paper-2:    #f6f8fc;
  --paper-3:    #eef2f9;

  --text:       #0e1730;
  --muted:      #54607a;
  --muted-2:    #7c879c;
  --invert:     #e7ecf6;
  --invert-mut: #9aa6c0;

  /* Accents */
  --teal:       #16b8a6;
  --teal-deep:  #0e9486;
  --indigo:     #5b6bff;
  --amber:      #f4a738;

  --grad: linear-gradient(120deg, #16b8a6 0%, #5b6bff 100%);
  --grad-soft: linear-gradient(120deg, rgba(22,184,166,.14), rgba(91,107,255,.14));

  /* Geometry */
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  26px;
  --maxw:       1120px;
  --gut:        clamp(20px, 5vw, 48px);

  --shadow-sm:  0 1px 2px rgba(11,16,32,.06), 0 2px 8px rgba(11,16,32,.05);
  --shadow:     0 6px 24px rgba(11,16,32,.08), 0 2px 8px rgba(11,16,32,.05);
  --shadow-lg:  0 24px 60px rgba(11,16,32,.16);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--grad); border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 16px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.text-grad {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.18rem; letter-spacing: -.02em; }
.brand .logo { width: 34px; height: 34px; flex: none; }
.brand b { font-weight: 800; }
.brand span { color: var(--teal-deep); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px; color: var(--muted);
  font-size: .95rem; font-weight: 500; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--paper-3); }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* language switch */
.lang {
  display: inline-flex; align-items: center; padding: 3px; gap: 2px;
  border: 1px solid var(--line-2); border-radius: 999px; background: var(--paper);
}
.lang a {
  font-size: .8rem; font-weight: 600; letter-spacing: .02em; color: var(--muted-2);
  padding: 4px 11px; border-radius: 999px; transition: .2s;
}
.lang a.active { background: var(--ink); color: #fff; }
.lang a:not(.active):hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 1px solid transparent; transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #000; box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line-2); color: var(--text); background: var(--paper); }
.btn-ghost:hover { border-color: var(--muted-2); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line-2);
  background: var(--paper); align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(40px, 7vw, 72px); }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 78% 8%, rgba(22,184,166,.14), transparent 60%),
    radial-gradient(55% 45% at 12% 22%, rgba(91,107,255,.12), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(80% 60% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, #000 30%, transparent 80%);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 6px 14px 6px 8px;
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 999px;
  font-size: .82rem; color: var(--muted); box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(22,184,166,.18); }

.hero h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); letter-spacing: -.035em; }
.hero h1 .text-grad { display: inline; }
.hero-lede { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); margin: 22px 0 30px; max-width: 36ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { margin-top: 22px; font-size: .9rem; color: var(--muted-2); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--teal-deep); flex: none; }

/* hero visual: agent wiring card */
.hero-visual { position: relative; }
.wire-card {
  background: linear-gradient(180deg, var(--ink) 0%, #0c1428 100%);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-lg); color: var(--invert);
  position: relative; overflow: hidden;
}
.wire-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 80% 0%, rgba(22,184,166,.2), transparent 55%);
}
.wc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; position: relative; }
.wc-dots { display: flex; gap: 6px; }
.wc-dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.18); }
.wc-dots i:first-child { background: #ff5f57; } .wc-dots i:nth-child(2){ background:#febc2e; } .wc-dots i:nth-child(3){ background:#28c840; }
.wc-title { margin-left: 8px; font-family: var(--mono); font-size: .76rem; color: var(--invert-mut); }

.flow { display: grid; gap: 12px; position: relative; }
.flow-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; }
.node {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 12px 13px; display: flex; align-items: center; gap: 10px;
}
.node .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: none; background: rgba(255,255,255,.07); }
.node .ic svg { width: 17px; height: 17px; }
.node small { display: block; color: var(--invert-mut); font-size: .72rem; }
.node strong { font-size: .9rem; font-weight: 600; }
.node.accent { background: rgba(22,184,166,.12); border-color: rgba(22,184,166,.4); }
.node.accent .ic { background: var(--grad); color: #04201d; }
.node.indigo .ic { color: #b9c0ff; }
.node.teal .ic { color: #8ff0e4; }
.node.amber .ic { color: #ffd699; }

.connector { display: grid; place-items: center; color: rgba(255,255,255,.35); }
.connector svg { width: 20px; height: 20px; }
.tool-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.chip {
  font-family: var(--mono); font-size: .72rem; color: var(--invert-mut);
  border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 4px 10px;
  background: rgba(255,255,255,.03);
}
.chip b { color: #8ff0e4; font-weight: 600; }
.pulse-line {
  height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent);
  border-radius: 2px; margin: 2px 0; opacity: .7; animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .25; } 50% { opacity: .85; } }

/* logo strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.trust .container { display: flex; align-items: center; gap: clamp(20px,4vw,44px); flex-wrap: wrap; justify-content: center; padding-block: 22px; }
.trust p { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.trust .stack { display: flex; gap: clamp(16px,3vw,38px); flex-wrap: wrap; align-items: center; }
.trust .stack span { font-weight: 600; color: var(--muted); font-size: .98rem; opacity: .8; }

/* =========================================================
   Generic card grids
   ========================================================= */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card .ic-badge {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--teal-deep); margin-bottom: 18px;
}
.card .ic-badge svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: .98rem; }
.card .num { font-family: var(--mono); font-size: .8rem; color: var(--muted-2); margin-bottom: 14px; }

/* =========================================================
   Approach (timeline / steps)
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { position: relative; padding: 0 22px; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 20px; right: -2px; width: 4px; height: 4px; border-radius: 50%;
  background: var(--line-2); box-shadow: -14px 0 var(--line-2), -28px 0 var(--line-2);
}
.step .n {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--ink); color: #fff; font-weight: 700; margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }

/* =========================================================
   Case study (the wine importer example)
   ========================================================= */
.case { background: var(--ink); color: var(--invert); position: relative; overflow: hidden; }
.case::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 40% at 85% 10%, rgba(244,167,56,.12), transparent 60%),
    radial-gradient(50% 50% at 8% 90%, rgba(22,184,166,.14), transparent 60%);
}
.case .container { position: relative; }
.case .eyebrow { color: var(--amber); }
.case .eyebrow::before { background: var(--amber); }
.case-head { max-width: 760px; margin-bottom: 48px; }
.case-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 14px 0 16px; color: #fff; }
.case-head p { color: var(--invert-mut); font-size: 1.1rem; }
.case-tag {
  display: inline-block; font-family: var(--mono); font-size: .78rem; color: var(--amber);
  border: 1px solid rgba(244,167,56,.35); border-radius: 999px; padding: 4px 12px; margin-bottom: 8px;
}

.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.panel {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 26px;
}
.panel h3 { color: #fff; font-size: 1.15rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.panel h3 svg { width: 20px; height: 20px; color: var(--teal); }
.panel.problem h3 svg { color: var(--amber); }
.panel ul { display: grid; gap: 12px; }
.panel li { display: flex; gap: 11px; color: var(--invert-mut); font-size: .98rem; }
.panel li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--teal); }
.panel.problem li svg { color: var(--amber); }

/* chat demo */
.demo {
  margin-top: 38px; background: #0a1124; border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.demo-bar { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.demo-bar .wc-dots i { width: 10px; height: 10px; }
.demo-bar span { margin-left: 8px; font-family: var(--mono); font-size: .76rem; color: var(--invert-mut); }
.demo-body { padding: 22px clamp(18px, 3vw, 30px); display: grid; gap: 16px; }
.msg { display: flex; gap: 12px; max-width: 88%; }
.msg .av { width: 32px; height: 32px; border-radius: 9px; flex: none; display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.msg.user { margin-left: auto; flex-direction: row-reverse; text-align: right; }
.msg.user .av { background: rgba(255,255,255,.1); color: #fff; }
.msg.ai .av { background: var(--grad); color: #04201d; }
.bubble { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 12px 15px; font-size: .96rem; color: var(--invert); }
.msg.user .bubble { background: rgba(91,107,255,.16); border-color: rgba(91,107,255,.3); }
.bubble .tool-call {
  font-family: var(--mono); font-size: .8rem; color: #8ff0e4; margin: 8px 0 4px;
  display: flex; align-items: center; gap: 7px; padding: 7px 10px; background: rgba(22,184,166,.08);
  border: 1px solid rgba(22,184,166,.2); border-radius: 8px;
}
.bubble .tool-call svg { width: 14px; height: 14px; flex: none; }
.bubble small { color: var(--invert-mut); }

/* =========================================================
   Services
   ========================================================= */
.svc-card .ic-badge { background: var(--ink); color: #fff; }
.svc-list { margin-top: 16px; display: grid; gap: 9px; }
.svc-list li { display: flex; gap: 9px; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.svc-list li svg { width: 16px; height: 16px; color: var(--teal-deep); flex: none; margin-top: 4px; }

/* =========================================================
   Founders
   ========================================================= */
.founders { background: var(--paper-2); }
.founder {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  transition: box-shadow .25s, transform .25s;
}
.founder:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.avatar {
  position: relative; overflow: hidden;
  width: 96px; height: 96px; border-radius: 22px; flex: none; display: grid; place-items: center;
  font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -.02em; box-shadow: var(--shadow);
}
.avatar.cj { background: linear-gradient(135deg, #16b8a6, #0e9486); }
.avatar.dl { background: linear-gradient(135deg, #5b6bff, #3b48d6); }
/* Photo covers the initials when present; if the file is missing it removes
   itself (see onerror in markup) and the gradient + initials show through. */
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder h3 { font-size: 1.35rem; }
.founder .role { color: var(--teal-deep); font-weight: 600; font-size: .92rem; margin: 3px 0 14px; }
.founder p { color: var(--muted); font-size: .96rem; margin-bottom: 14px; }
.fct { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.fct span {
  font-size: .8rem; font-weight: 500; color: var(--text); background: var(--paper-3);
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px;
}
.flinks { display: flex; gap: 14px; }
.flinks a { font-size: .88rem; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; transition: color .2s; }
.flinks a:hover { color: var(--teal-deep); }
.flinks svg { width: 15px; height: 15px; }

/* stat band */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 42px; }
.stat { text-align: center; padding: 22px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.stat .v { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.03em; }
.stat .l { font-size: .86rem; color: var(--muted); margin-top: 4px; }

/* =========================================================
   CTA
   ========================================================= */
.cta-band { padding-block: clamp(56px, 8vw, 96px); }
.cta-box {
  background: var(--ink); border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 68px);
  text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(22,184,166,.22), transparent 60%),
              radial-gradient(50% 60% at 90% 100%, rgba(91,107,255,.22), transparent 60%);
}
.cta-box > * { position: relative; }
.cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-box p { color: var(--invert-mut); font-size: 1.1rem; max-width: 50ch; margin: 0 auto 28px; }
.cta-box .btn-primary { background: #fff; color: var(--ink); }
.cta-box .btn-primary:hover { background: var(--paper-3); }
.cta-box .btn-ghost { background: transparent; border-color: rgba(255,255,255,.25); color: #fff; }
.cta-box .btn-ghost:hover { border-color: rgba(255,255,255,.6); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: var(--invert-mut); padding-block: 56px 30px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-brand { display: flex; align-items: center; gap: 11px; color: #fff; font-weight: 700; font-size: 1.15rem; margin-bottom: 14px; }
.foot-brand .logo { width: 32px; height: 32px; }
.site-footer p { font-size: .94rem; max-width: 38ch; }
.foot-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a { display: block; padding: 5px 0; font-size: .95rem; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-bot { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; flex-wrap: wrap; font-size: .86rem; }
.foot-bot a:hover { color: #fff; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Mobile nav drawer
   ========================================================= */
.mobile-menu {
  display: none; position: fixed; inset: 72px 0 auto 0; z-index: 49;
  background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 16px var(--gut) 26px;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 13px 4px; font-weight: 600; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { width: 100%; margin-top: 16px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; }
  .hero-lede { max-width: 48ch; }
  .case-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px 22px; }
  .step:not(:last-child)::after { display: none; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 720px) {
  .nav-links, .nav .btn { display: none; }
  .nav-toggle { display: inline-grid; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .avatar { width: 64px; height: 64px; border-radius: 18px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot-top { grid-template-columns: 1fr; }
}
