/* ==========================================================================
   99SA Ventures — Global Stylesheet
   Dark editorial system. One continuous surface.
   No shadows. No gradients. No dividers between sections.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* One surface for the whole site */
  --bg: #15161a;

  /* Type — three steps, nothing in between */
  --fg: #f6f4f0;
  --body: #b4b2ac;
  --muted: #8f8d86;

  /* Hairlines — component structure only, never section seams */
  --line: #2d2e34;
  --line-2: #43444b;

  /* Accent — one hue, two steps: rest and pressed.
     Sourced from the logo mark (#0C64ED). */
  --accent: #0c64ed;
  --accent-2: #0a4fbe;

  --wrap: 1180px;
  --nav-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;

  color-scheme: dark;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.03; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.4rem; line-height: 1.22; }

h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--fg);
  margin: 0 0 .5em;
}

p { margin: 0 0 1.15em; }

ul { margin: 0 0 1.15em; padding-left: 1.15em; }
li { margin-bottom: .4em; }

strong { color: var(--fg); font-weight: 600; }

/* ---------- Links ----------
   Structural links (nav, cards, footer) stay quiet.
   Links inside body copy are underlined so they read as links. */
a {
  color: var(--fg);
  text-decoration: none;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
a:hover { color: var(--accent); }
a:active { color: var(--accent-2); }

p a {
  color: var(--fg);
  border-bottom: 1px solid var(--line-2);
}
p a:hover { color: var(--accent); border-bottom-color: var(--accent); }
p a:active { color: var(--accent-2); border-bottom-color: var(--accent-2); }

/* One focus treatment for every interactive element */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection { background: var(--accent); color: var(--bg); }

/* ---------- Layout ----------
   Sections share one background and never carry a dividing border. */
.wrap { width: min(100% - 56px, var(--wrap)); margin-inline: auto; }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

/* Legacy surface modifiers are intentionally inert — the site is one surface */
.section--alt,
.section--ink { background: transparent; }

.center { text-align: center; }
.narrow { max-width: 780px; }
.center.narrow { margin-inline: auto; }
.lead { font-size: 1.2rem; line-height: 1.62; color: var(--body); }

.grid { display: grid; gap: 0; }
.grid--2 { grid-template-columns: repeat(2, 1fr); gap: 72px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Eyebrow label ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--line-2);
  flex: none;
}
.center .eyebrow { justify-content: center; }

/* ---------- Buttons ----------
   Two ranks only. Both resolve to the accent on hover, so every
   button answers a press the same way.
   rest → hover (accent) → active (accent pressed) → focus (ring) → disabled */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .12s var(--ease);
}

/* Primary — solid, high commitment */
.btn--primary,
.btn--light {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn--primary:hover,
.btn--light:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.btn--primary:active,
.btn--light:active {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--bg);
}

/* Secondary — outlined, clearly subordinate */
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: transparent;
}
.btn--ghost:active {
  color: var(--accent-2);
  border-color: var(--accent-2);
}

/* Shared states */
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn[disabled],
.btn[aria-disabled="true"] {
  opacity: .4;
  pointer-events: none;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.center .btn-row { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 1.24rem;
  letter-spacing: -.01em;
  color: var(--fg);
}
.brand:hover { color: var(--fg); }
.brand__logo {
  height: 30px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links li { margin: 0; }
.nav__links a {
  position: relative;
  display: block;
  padding: 4px 0;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--body);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-active { color: var(--fg); }
.nav__links a.is-active::after { transform: scaleX(1); }

.nav__cta { margin-left: 6px; }
.nav__cta a { padding: 12px 24px; font-size: .72rem; }
.nav__cta a::after { display: none; }
/* The nav link colours must not win over the button's own fill */
.nav__links .nav__cta a,
.nav__links .nav__cta a:hover,
.nav__links .nav__cta a:active { color: var(--bg); }

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-2);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--fg);
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 128px 0 104px; }
.hero h1 { max-width: 16ch; }
.hero .lead { max-width: 56ch; margin-top: 30px; }
.hero--sub { padding: 104px 0 84px; }
.hero--sub h1 { max-width: 20ch; font-size: clamp(2.3rem, 4.6vw, 3.7rem); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 76px;
  border-top: 1px solid var(--line);
}
.hero__stats > div {
  padding: 34px 30px 0 0;
  border-right: 1px solid var(--line);
}
.hero__stats > div:last-child { border-right: 0; }
.hero__stats > div + div { padding-left: 30px; }

.stat__num {
  font-family: var(--display);
  font-size: 2.7rem;
  line-height: 1;
  color: var(--fg);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.stat__label {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Cards: hairline editorial blocks ---------- */
.card {
  position: relative;
  padding: 30px 48px 38px 0;
  border-top: 1px solid var(--line);
  background: transparent;
  transition: border-color .35s var(--ease);
}
.card p:last-child { margin-bottom: 0; }

/* Only cards that represent something clickable react to the pointer */
.card.company:hover,
.card.post:hover,
.card.person:hover { border-top-color: var(--accent); }

/* Boxed variants, for callouts that need containment */
.card--panel,
.card--ink {
  border: 1px solid var(--line);
  padding: 40px;
}

.card__icon {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 24px;
}

.card__num {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--muted);
  margin-bottom: 18px;
}
.card--ink .card__num { color: var(--accent); }

/* ---------- Portfolio ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 44px;
}
.filter {
  position: relative;
  padding: 4px 0;
  border: 0;
  background: none;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color .25s var(--ease);
}
.filter::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--fg);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.filter:hover { color: var(--accent); }
.filter.is-active { color: var(--fg); }
.filter.is-active::after { transform: scaleX(1); transform-origin: left; }

.company { display: flex; flex-direction: column; }
/* Linked company cards: the title is the accessible link, stretched to make
   the whole card a click target. Filtering/reveal still key off the article. */
.company__link { color: var(--fg); }
.company__link:hover { color: var(--accent); }
.company__link::after {
  content: "";
  position: absolute;
  inset: 0;
}
.company__logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--fg);
  margin-bottom: 24px;
  transition: border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.card.company:hover .company__logo {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}
/* SVG icon logos sit inside the same bordered box; the fill is the accent, so
   on hover the box fills accent and the mark reads as a knockout. */
.company__logo--img { padding: 8px; }
.company__logo--img img { width: 100%; height: 100%; display: block; }
.card.company:hover .company__logo--img { background: var(--bg); border-color: var(--accent); }
.company__logo--hero {
  width: 64px; height: 64px; padding: 10px;
  margin-bottom: 22px;
}
.company__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: auto;
  padding-top: 22px;
}
.tag {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.tag--stage { color: var(--accent); }

.is-hidden { display: none !important; }
.empty-note { color: var(--muted); }

/* ---------- Team ---------- */
.person__avatar {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  font-family: var(--display);
  font-size: 1.28rem;
  color: var(--fg);
  margin-bottom: 26px;
  transition: border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.card.person:hover .person__avatar {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg);
}
.person__role {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: -4px 0 16px;
}
.person p { font-size: .96rem; }

.role-list { list-style: none; padding: 0; margin: 26px 0 0; }
.role-list li {
  padding: 20px 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.role-list li:first-child { border-top: 0; padding-top: 0; }
.role-list li:last-child { padding-bottom: 0; }
.role-list span {
  display: block;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- Insights ---------- */
.post { display: flex; flex-direction: column; height: 100%; }
.post__date {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.post h3 { margin-bottom: .45em; }
.post p { font-size: .97rem; }
.post__more {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg);
}
.post__more:hover { color: var(--accent); }
.post__more:active { color: var(--accent-2); }

.post--feature {
  border-top-width: 2px;
  border-top-color: var(--fg);
  padding-right: 60px;
}
.post--feature h3 { font-size: 2.1rem; max-width: 18ch; }
.post--feature .post__date { color: var(--accent); }

/* ---------- Timeline ---------- */
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li {
  position: relative;
  padding: 0 0 46px 40px;
  border-left: 1px solid var(--line);
  margin: 0;
}
.timeline li:last-child { padding-bottom: 0; border-left-color: transparent; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -3.5px;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--fg);
}
.timeline h4 { margin-bottom: .35em; }
.timeline p { margin-bottom: 0; font-size: .96rem; }
.timeline .year {
  display: block;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ---------- Quote ---------- */
.quote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -.01em;
  color: var(--fg);
  margin: 0 0 34px;
}
.quote__by {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.quote__by strong { color: var(--fg); font-weight: 500; }

/* ---------- Accordion ---------- */
.accordion { border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  background: none;
  border: 0;
  font-family: var(--display);
  font-size: 1.22rem;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
  transition: color .25s var(--ease);
}
.accordion__btn:hover { color: var(--accent); }
.accordion__btn[aria-expanded="true"] { color: var(--fg); }
.accordion__btn::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform .3s var(--ease);
}
.accordion__btn[aria-expanded="true"]::after { transform: translateY(2px) rotate(225deg); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.accordion__panel > div { padding: 0 90px 28px 0; }
.accordion__panel p:last-child { margin-bottom: 0; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 26px; }
.field { position: relative; display: grid; gap: 9px; }
.field label {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--fg);
  transition: border-color .25s var(--ease);
}
.field select { appearance: none; cursor: pointer; padding-right: 26px; }
.field select option { color: #15161a; background: #ffffff; }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder { color: #6d6b65; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: var(--accent); }

/* Caret for the appearance-stripped selects */
.field--select::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 42px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
  transform: rotate(45deg);
  pointer-events: none;
}

.error {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .1em;
  color: var(--accent);
  min-height: 1em;
}

.form-note {
  padding: 20px 0 0;
  border-top: 1px solid var(--fg);
  font-size: .95rem;
  color: var(--fg);
}

.form-fine {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* ---------- Contact details ---------- */
.contact-item { padding: 22px 0; border-top: 1px solid var(--line); }
.contact-item:first-of-type { border-top: 0; padding-top: 0; }
.contact-item:last-child { padding-bottom: 0; }
.contact-item h4 { margin-bottom: .2em; }
.contact-item p { margin: 0; font-size: .96rem; }

/* ---------- Closing statement ---------- */
.cta-band {
  padding: 56px 0;
  text-align: center;
}
.cta-band h2 { max-width: 20ch; margin-inline: auto; }
.cta-band p { max-width: 54ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 88px 0 34px;
  font-size: .92rem;
}
.site-footer h4 {
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.site-footer a { color: var(--body); }
.site-footer a:hover { color: var(--fg); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 12px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 56px; }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { max-width: 32ch; color: var(--muted); }
.footer__bottom {
  margin-top: 72px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  background: var(--bg);
  color: var(--fg);
  font-size: .9rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  z-index: 50;
}
.to-top.is-visible { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.to-top:active { background: var(--accent-2); border-color: var(--accent-2); }

/* ---------- Utilities ---------- */
.mt-lg { margin-top: 64px; }
.mt-md { margin-top: 46px; }
.mt-sm { margin-top: 26px; }
.span-2 { grid-column: span 2; }
.items-center { align-items: center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { gap: 52px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .post--feature { padding-right: 34px; }
  .post--feature h3 { font-size: 1.7rem; }
  .card--panel, .card--ink { padding: 32px; }
}

@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 28px 26px;
    background: var(--bg);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { border-top: 1px solid var(--line); }
  .nav__links a { padding: 16px 0; font-size: .95rem; }
  .nav__links a::after { display: none; }
  .nav__cta { margin: 22px 0 0; border-top: 0; }
  .nav__cta a { display: block; text-align: center; padding: 15px 24px; font-size: .78rem; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; gap: 0; }
  .grid--2 { gap: 56px; }
  .span-2 { grid-column: span 1; }

  .section { padding: 68px 0; }
  .section--tight { padding: 48px 0; }
  .hero { padding: 92px 0 78px; }
  .hero--sub { padding: 76px 0 66px; }

  .hero__stats { grid-template-columns: repeat(2, 1fr); margin-top: 62px; }
  .hero__stats > div,
  .hero__stats > div + div {
    padding: 26px 20px 26px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero__stats > div:nth-child(2n) { border-right: 0; padding-left: 20px; }
  .hero__stats > div:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0; }

  .card { padding-right: 0; }
  .post--feature { padding-right: 0; }
  .post--feature h3 { font-size: 1.6rem; }
  .cta-band { padding: 40px 0; }
  .accordion__panel > div { padding-right: 0; }
  .wrap { width: min(100% - 40px, var(--wrap)); }
  .mt-lg { margin-top: 48px; }
  .mt-md { margin-top: 34px; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stats > div,
  .hero__stats > div + div,
  .hero__stats > div:nth-child(2n) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .card--panel, .card--ink { padding: 28px 22px; }
}
