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

:root {
  --bg:     #0c0d0f;
  --accent: #FC6262;
  --white:  #ffffff;
  --text:   #b8b8b8;
  --muted:  #8a8a8a;
  --border: #1e2024;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ── PARTICLES CANVAS ── */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ── FLOATING ORBS (ambient depth) ── */
.float-orb {
  position: fixed;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(46px);
}
.float-orb--1 {
  width: 280px; height: 280px; top: 10%; right: 7%;
  background: radial-gradient(circle, rgba(252,98,98,0.11), transparent 70%);
  animation: drift1 24s ease-in-out infinite;
}
.float-orb--2 {
  width: 220px; height: 220px; bottom: 16%; left: 5%;
  background: radial-gradient(circle, rgba(120,150,220,0.09), transparent 70%);
  animation: drift2 30s ease-in-out infinite;
}
.float-orb--3 {
  width: 170px; height: 170px; top: 52%; right: 24%;
  background: radial-gradient(circle, rgba(252,98,98,0.08), transparent 70%);
  animation: drift3 27s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-34px,42px)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(42px,-30px)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-26px,-38px)} }
@media (prefers-reduced-motion: reduce) {
  .float-orb { animation: none; }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7vw;
  background: linear-gradient(to bottom, rgba(12,13,15,0.95) 0%, rgba(12,13,15,0.85) 60%, rgba(12,13,15,0) 100%);
}
.nav-brand { display: flex; align-items: center; gap: 13px; }
.nav-logo { width: 26px; height: auto; filter: brightness(0) invert(1); opacity: 0.88; }
.nav-name {
  font-size: 12px; font-weight: 400; letter-spacing: 4px;
  text-transform: uppercase; color: var(--white); opacity: 0.85;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 11px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* ── HERO (home) ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 6vw;
  align-items: center;
  padding: 130px 7vw 80px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 400; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 26px;
}
.hero-headline {
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 300; color: var(--white);
  line-height: 1.22; letter-spacing: -0.5px;
  margin-bottom: 28px; max-width: 640px;
}
.hero-headline strong { font-weight: 600; color: var(--accent); }
.hero-sub {
  font-size: clamp(15px, 1.5vw, 16px);
  font-weight: 300; color: var(--text);
  line-height: 1.85; max-width: 510px; margin-bottom: 44px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--bg);
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 36px; border-radius: 4px;
  transition: opacity 0.2s; width: fit-content;
}
.hero-cta:hover { opacity: 0.85; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-cta--ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.hero-cta--ghost:hover { color: var(--white); border-color: var(--muted); opacity: 1; }

/* ── HERO PHOTO ── */
.hero-photo {
  position: relative; width: 100%; max-width: 340px;
  aspect-ratio: 4 / 5; margin-left: auto;
  border-radius: 10px; overflow: hidden; border: 1px solid var(--border);
  background:
    radial-gradient(120% 120% at 70% 0%, rgba(252,98,98,0.12), rgba(12,13,15,0) 55%),
    linear-gradient(160deg, #16181c, #0c0d0f);
  display: flex; align-items: center; justify-content: center;
}
.hero-photo::after {
  content: "TF"; font-size: 64px; font-weight: 200;
  letter-spacing: 4px; color: var(--muted);
}
.hero-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%; z-index: 1;
}

/* ── PAGE HEAD (dedicated pages) ── */
.page-head {
  position: relative; z-index: 1;
  padding: 156px 7vw 36px; max-width: 1140px;
}
.page-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.page-title {
  font-size: clamp(38px, 6.4vw, 72px); font-weight: 200;
  color: var(--white); letter-spacing: -2px; line-height: 1.04; margin-bottom: 24px;
}
.page-title strong { color: var(--accent); font-weight: 300; }
.page-intro {
  font-size: clamp(16px, 1.7vw, 19px); font-weight: 300;
  color: var(--text); line-height: 1.7; max-width: 640px;
}

/* ── SECTIONS ── */
.section {
  position: relative; z-index: 1;
  padding: 80px 7vw; max-width: 1140px;
}
.section--bordered { border-top: 1px solid var(--border); }
.section-eyebrow {
  font-size: 12px; font-weight: 400; letter-spacing: 4px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 44px;
}

/* ── LENS ── */
.lens-statement {
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 200;
  color: var(--white); line-height: 1.45; max-width: 880px; letter-spacing: -0.3px;
}
.lens-statement strong { color: var(--accent); font-weight: 300; }

/* ── JOURNEY (timeline) ── */
.case {
  display: grid; grid-template-columns: 210px 1fr; gap: 48px;
  padding: 52px 0; border-top: 1px solid var(--border);
}
.case:first-of-type { border-top: none; padding-top: 8px; }
.case:last-child { border-bottom: 1px solid var(--border); }
.case-meta { padding-top: 4px; }
.case-company {
  font-size: 10px; font-weight: 400; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.case-year { font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.case-role {
  font-size: 11px; color: var(--text); letter-spacing: 0.5px;
  margin-top: 10px; line-height: 1.5;
}
.case-lesson {
  font-size: 11px; font-weight: 400; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.case-headline {
  font-size: clamp(17px, 2vw, 21px); font-weight: 300;
  color: var(--white); line-height: 1.4; margin-bottom: 18px; max-width: 580px;
}
.case-text {
  font-size: 15px; font-weight: 300; color: var(--text);
  line-height: 1.85; max-width: 560px; margin-bottom: 18px;
}
.case-steps { margin: 6px 0 22px; max-width: 580px; }
.step {
  display: grid; grid-template-columns: 96px 1fr; gap: 18px;
  padding: 15px 0; border-top: 1px solid var(--border);
}
.step:first-child { border-top: none; }
.step-tag {
  font-size: 11px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); padding-top: 3px;
}
.step-text { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.65; }
.step-text b { color: var(--white); font-weight: 400; }
.case-highlight {
  display: flex; align-items: baseline; gap: 18px;
  margin: 24px 0 16px; padding: 18px 22px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(252,98,98,0.07), rgba(252,98,98,0));
  border-radius: 0 6px 6px 0;
}
.case-highlight-num {
  font-size: clamp(38px, 5.5vw, 56px); font-weight: 200;
  color: var(--white); line-height: 1; letter-spacing: -1.5px; white-space: nowrap;
}
.case-highlight-num span { color: var(--accent); font-weight: 300; }
.case-highlight-label { font-size: 13px; font-weight: 300; color: var(--text); line-height: 1.5; }
.case-highlight-label em {
  display: block; font-style: normal; font-size: 11px;
  letter-spacing: 1px; color: var(--accent); margin-top: 4px;
}
.case-result { font-size: 12px; font-weight: 400; letter-spacing: 1px; color: var(--muted); }
.case-result span { color: var(--accent); }

/* ── CAPABILITIES / LENSES GRID ── */
.caps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.caps--4 { grid-template-columns: repeat(2, 1fr); }
.cap { background: var(--bg); padding: 32px 30px; transition: background 0.2s; }
.cap:hover { background: #101216; }
.cap-num { font-size: 11px; font-weight: 400; letter-spacing: 2px; color: var(--accent); margin-bottom: 16px; }
.cap-title { font-size: 16px; font-weight: 400; color: var(--white); line-height: 1.4; margin-bottom: 12px; }
.cap-text { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.7; }

/* ── BUILD ── */
.build-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.build-lead { font-size: clamp(18px, 2vw, 23px); font-weight: 300; color: var(--white); line-height: 1.5; }
.build-lead strong { color: var(--accent); font-weight: 400; }
.build-note { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.8; margin-top: 22px; max-width: 440px; }
.build-note b { color: var(--white); font-weight: 400; }
.build-text { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.8; }
.build-text p { margin-bottom: 24px; }
.build-text p:last-child { margin-bottom: 0; }
.build-text b { color: var(--white); font-weight: 600; font-size: 15px; letter-spacing: 0.3px; }

/* ── NOTES / WRITING ── */
.note-item { padding: 44px 0; border-top: 1px solid var(--border); max-width: 720px; }
.note-item:first-of-type { border-top: none; padding-top: 4px; }
.note-kicker { font-size: 11px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.note-title { font-size: clamp(20px, 2.4vw, 27px); font-weight: 300; color: var(--white); line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 22px; }
.note-body { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.85; }
.note-body p { margin-bottom: 16px; }
.note-body p:last-child { margin-bottom: 0; }
.note-body strong { color: var(--white); font-weight: 400; }
.note-figure { margin: 32px 0; max-width: 620px; }
.note-figure svg { width: 100%; height: auto; display: block; }

/* ── CREDENTIALS STRIP ── */
.creds {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 15px; font-weight: 300; letter-spacing: 0.5px; color: var(--muted); line-height: 2;
}
.creds b { color: var(--text); font-weight: 400; }
.creds .dot { color: var(--accent); margin: 0 10px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.9; }
.about-text p { margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }
.about-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.about-stat-value { font-size: 46px; font-weight: 200; color: var(--white); letter-spacing: -1.5px; line-height: 1; }
.about-stat-value span { color: var(--accent); font-weight: 300; }
.about-stat-label { font-size: 11px; font-weight: 300; color: var(--muted); letter-spacing: 0.5px; margin-top: 8px; line-height: 1.5; }

/* ── LEADERSHIP ── */
.lead-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 64px; align-items: center; }
.lead-photo { width: 100%; aspect-ratio: 3 / 4; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.lead-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(0.25) contrast(1.02); }
.lead-point { padding: 20px 0; border-top: 1px solid var(--border); }
.lead-point:first-child { border-top: none; padding-top: 0; }
.lead-point-num { font-size: 40px; font-weight: 200; color: var(--white); letter-spacing: -1.5px; line-height: 1; }
.lead-point-num span { color: var(--accent); font-weight: 300; }
.lead-point-text { font-size: 15px; color: var(--text); line-height: 1.65; margin-top: 8px; max-width: 440px; }

/* ── CERTS ── */
.certs-grid { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; margin-bottom: 8px; }
.certs-grid img { height: 82px; width: auto; opacity: 0.82; transition: opacity 0.2s, transform 0.2s; }
.certs-grid img:hover { opacity: 1; transform: translateY(-3px); }

/* ── PRINCIPLES ── */
.principles-list { max-width: 840px; }
.principle {
  display: grid; grid-template-columns: 56px 1fr; gap: 26px;
  padding: 26px 0; border-top: 1px solid var(--border);
}
.principle:first-child { border-top: none; padding-top: 4px; }
.principle-num { font-size: 24px; font-weight: 200; color: var(--accent); line-height: 1.2; letter-spacing: -1px; }
.principle-body h3 { font-size: 17px; font-weight: 400; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.principle-body p { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.7; }

/* ── CERTS BLOCK (with background) ── */
.certs-block { margin-top: 64px; padding-top: 44px; border-top: 1px solid var(--border); }
.certs-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
}

/* ── CREDO (in my words) ── */
.credo-list { display: grid; gap: 0; max-width: 900px; }
.credo-item {
  padding: 32px 0; border-top: 1px solid var(--border);
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 200;
  color: var(--white); line-height: 1.4; letter-spacing: -0.3px;
}
.credo-item:first-child { border-top: none; padding-top: 0; }
.credo-item b { color: var(--accent); font-weight: 300; }

/* ── CONTACT ── */
.contact { position: relative; z-index: 1; padding: 96px 7vw; border-top: 1px solid var(--border); max-width: 1140px; }
.contact-line {
  font-size: clamp(22px, 3.2vw, 34px); font-weight: 200; color: var(--white);
  line-height: 1.4; max-width: 720px; margin-bottom: 44px;
}
.contact-links { display: flex; gap: 36px; flex-wrap: wrap; }
.contact-link {
  font-size: 13px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); border-bottom: 1px solid rgba(252,98,98,0.3);
  padding-bottom: 4px; transition: border-color 0.2s;
}
.contact-link:hover { border-color: var(--accent); }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1; padding: 36px 7vw;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap; font-size: 11px; color: var(--muted); letter-spacing: 1px;
}
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); letter-spacing: 1px; transition: color 0.2s; }
.foot-links a:hover { color: var(--accent); }

/* ── END-TO-END ARC ── */
.arc { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 0; margin-bottom: 26px; }
.arc span { font-size: clamp(16px, 2vw, 22px); font-weight: 300; color: var(--white); }
.arc span:not(:last-child)::after { content: "→"; color: var(--accent); margin: 0 18px; font-weight: 300; }
.arc-note { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.75; max-width: 660px; }

/* ── PILLARS (the system) ── */
.pillar { padding: 30px 0; border-top: 1px solid var(--border); max-width: 880px; }
.pillar:first-child { border-top: none; padding-top: 4px; }
.pillar-title { font-size: clamp(18px, 2.2vw, 23px); font-weight: 400; color: var(--white); margin-bottom: 10px; letter-spacing: -0.2px; }
.pillar-title b { color: var(--accent); font-weight: 400; }
.pillar-text { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.75; }

/* ── PRINCIPLES (one-liners) ── */
.principle-line {
  padding: 22px 0; border-top: 1px solid var(--border);
  font-size: clamp(18px, 2.2vw, 25px); font-weight: 300;
  color: var(--white); line-height: 1.4; letter-spacing: -0.2px; max-width: 880px;
}
.principle-line:first-child { border-top: none; padding-top: 0; }
.principle-line b { color: var(--accent); font-weight: 300; }

/* ── METRICS (number beside label) ── */
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 56px; max-width: 840px; margin-top: 44px; }
.metric { display: flex; align-items: baseline; gap: 18px; }
.metric-num {
  font-size: 46px; font-weight: 200; color: var(--white);
  letter-spacing: -1.5px; line-height: 1; white-space: nowrap;
}
.metric-num span { color: var(--accent); font-weight: 300; }
.metric-label { font-size: 15px; color: var(--text); line-height: 1.4; }
.metrics-note { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.8; max-width: 660px; margin-top: 44px; }
.metrics-note b { color: var(--white); font-weight: 400; }

/* ── PORTFOLIO LIST (products & initiatives) ── */
.pf-group + .pf-group { margin-top: 54px; }
.pf-sub {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.pf-row { padding: 20px 0; border-top: 1px solid var(--border); }
.pf-row:first-of-type { border-top: none; }
.pf-row-top {
  display: flex; justify-content: space-between; gap: 24px;
  align-items: baseline; flex-wrap: wrap; margin-bottom: 6px;
}
.pf-name { font-size: 16px; font-weight: 400; color: var(--white); }
.pf-metric { font-size: 13px; color: var(--accent); white-space: nowrap; letter-spacing: 0.5px; }
.pf-desc { font-size: 14px; font-weight: 300; color: var(--text); line-height: 1.6; max-width: 760px; }
.pf-more { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; padding-top: 18px; }
.pf-more b { color: var(--text); font-weight: 400; }
.more-link {
  font-size: 14px; letter-spacing: 1px; color: var(--accent);
  border-bottom: 1px solid rgba(252,98,98,0.3); padding-bottom: 3px;
  transition: border-color 0.2s;
}
.more-link:hover { border-color: var(--accent); }

/* ── DRAFT PLACEHOLDERS (to fill / proof-read) ── */
.draft-note { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); border: 1px dashed var(--border); border-radius: 5px; padding: 2px 8px; margin-left: 10px; }
.draft-row { padding: 16px 0; border-top: 1px dashed var(--border); max-width: 760px; }
.draft-row:first-child { border-top: none; }
.draft-title { font-size: 16px; font-weight: 400; color: var(--white); }
.draft-todo { font-size: 13px; font-weight: 300; color: var(--muted); font-style: italic; margin-top: 4px; line-height: 1.5; }

/* ── COOKIE NOTICE ── */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; padding: 16px 7vw;
  background: rgba(14,15,18,0.97); border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text); line-height: 1.5;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.cookie-bar a { color: var(--accent); border-bottom: 1px solid rgba(252,98,98,0.3); }
.cookie-actions { display: flex; gap: 12px; align-items: center; }
.cookie-bar button {
  font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; color: var(--bg);
  background: var(--accent); border: 1px solid var(--accent); border-radius: 4px;
  padding: 10px 26px; cursor: pointer; transition: opacity 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap;
}
.cookie-bar button:hover { opacity: 0.85; }
.cookie-bar button.ghost { background: transparent; color: var(--text); border-color: var(--border); }
.cookie-bar button.ghost:hover { color: var(--white); border-color: var(--muted); opacity: 1; }

/* ── LEGAL PAGE ── */
.legal { max-width: 760px; }
.legal h2 { font-size: 18px; font-weight: 400; color: var(--white); margin: 40px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.85; margin-bottom: 14px; }
.legal a { color: var(--accent); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .caps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 16px 22px; }
  .nav-name { display: none; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 10px; letter-spacing: 1.5px; }
  .hero { grid-template-columns: 1fr; gap: 44px; padding: 110px 24px 64px; }
  .hero-photo { max-width: 240px; margin: 0; order: -1; }
  .page-head { padding: 120px 24px 28px; }
  .section { padding: 56px 24px; }
  .contact { padding: 64px 24px; }
  .case { grid-template-columns: 1fr; gap: 18px; padding: 40px 0; }
  .caps { grid-template-columns: 1fr; }
  .build-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .case-highlight { flex-direction: column; gap: 8px; }
  .lead-grid { grid-template-columns: 1fr; gap: 36px; }
  .lead-photo { max-width: 320px; }
  .certs-grid { gap: 22px; }
  .certs-grid img { height: 60px; }
  .metrics { grid-template-columns: 1fr; }
  footer { padding: 28px 24px; }
}
