/* Fanserve.net — Figma-harmonized: warm paper + terracotta (not purple “AI fintech” default) */
:root {
  /* Brand: ~60% terracotta on accents; 30% ink; 10% neutrals / lines */
  --paper: oklch(0.99 0.01 80);
  --wash: oklch(0.97 0.02 75);
  --sand: oklch(0.95 0.02 70);
  --ink: oklch(0.28 0.04 280);
  --ink-dim: color-mix(in oklch, var(--ink) 56%, var(--paper));
  --brand: oklch(0.45 0.12 32);
  --brand-deep: oklch(0.35 0.1 30);
  --brand-2: color-mix(in oklch, var(--brand) 78%, var(--ink));
  --brand-mid: color-mix(in oklch, var(--brand) 50%, #fff 50%);
  --line: color-mix(in oklch, var(--ink) 10%, var(--brand) 6%, var(--paper) 0%);
  --r: 1rem;
  --r2: 1.2rem;
  --max: 70rem;
  /* Forum (Denis Masharov) + clean sans */
  --serif: "Forum", "Times New Roman", "Palatino Linotype", "Georgia", serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --e: cubic-bezier(0.22, 0.7, 0.25, 1);
  /* Spacing scale: tight in groups, generous between sections */
  --s-1: clamp(0.45rem, 0.3rem + 0.4vw, 0.65rem);
  --s-2: clamp(0.75rem, 0.5rem + 0.75vw, 1.1rem);
  --s-3: clamp(1.15rem, 0.75rem + 1.1vw, 1.75rem);
  --s-4: clamp(1.6rem, 0.9rem + 1.5vw, 2.4rem);
  --s-5: clamp(2.25rem, 1.2rem + 2.1vw, 3.5rem);
  /* Shadow scale */
  --shadow-1: 0 1px 0 color-mix(in oklch, #000 8%, transparent);
  --shadow-2: 0 12px 32px -18px color-mix(in oklch, #000 22%, var(--brand) 8%, transparent);
  --shadow-3: 0 20px 48px -20px color-mix(in oklch, #000 28%, var(--brand) 12%, transparent);
  color-scheme: only light;
}

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

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}

a {
  color: var(--brand-2);
  text-underline-offset: 0.2em;
}
a:hover {
  color: var(--brand-deep);
}
a:focus-visible {
  outline: 2px solid var(--brand-mid);
  outline-offset: 3px;
  border-radius: 2px;
}

.h1,
.h2,
.h3,
.brand {
  text-wrap: balance;
}

.p {
  text-wrap: pretty;
}

/* Hidden sprite container */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.img-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}
.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

/* —— Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklch, var(--paper) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header__in {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--s-2) 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.brand:hover {
  color: var(--brand-deep);
}
.brand span {
  font-size: 0.92em;
  opacity: 0.7;
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.2rem;
}
.nav a {
  text-decoration: none;
  color: var(--ink-dim);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 0.65rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color 0.2s var(--e), background 0.2s var(--e);
}
.nav a:hover {
  color: var(--ink);
  background: var(--sand);
}
.nav a[aria-current="true"] {
  color: var(--brand-deep);
  background: color-mix(in oklch, var(--brand) 8%, var(--paper));
  border-color: var(--line);
  box-shadow: inset 0 -2px 0 color-mix(in oklch, var(--brand) 50%, transparent);
}
.nav a:focus-visible {
  outline: 2px solid var(--brand-mid);
  outline-offset: 2px;
}
.nav a:focus:not(:focus-visible) {
  outline: none;
}

.nav-toggle {
  display: none;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  min-height: 44px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s var(--e);
}
.nav-toggle:hover {
  background: var(--sand);
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--brand-mid);
  outline-offset: 2px;
}

@media (max-width: 40rem) {
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    width: 100%;
  }
  .nav.is-open {
    display: block;
  }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.4rem;
  }
  .nav a {
    width: 100%;
  }
}

/* —— Common */
.section {
  padding: var(--s-5) 1.35rem;
  scroll-margin-top: 4.75rem;
}
.section--essentials {
  background: var(--wash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: var(--s-4);
  padding-bottom: var(--s-4);
}
.section__in {
  max-width: var(--max);
  margin: 0 auto;
}
.h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 1.1rem + 2.4vw, 2.9rem);
  line-height: 1.12;
  font-weight: 400;
  margin: 0 0 var(--s-2);
  letter-spacing: 0.01em;
  color: var(--ink);
  font-synthesis: none;
}
.h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 0.9rem + 1.1vw, 1.9rem);
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 var(--s-1);
  color: var(--ink);
  font-synthesis: none;
}
.h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.2rem;
  color: var(--ink);
  font-family: var(--sans);
}
.eyebrow {
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-2);
  margin: 0 0 0.5rem;
}
.lead {
  color: var(--ink-dim);
  font-size: 1.04rem;
  line-height: 1.55;
  max-width: 32rem;
  margin: 0 0 var(--s-3);
}
.muted {
  color: var(--ink-dim);
  margin: 0;
  font-size: 0.97rem;
}
.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-1) var(--s-2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 99px;
  border: 1.5px solid transparent;
  transition: background 0.2s var(--e), color 0.2s var(--e), border-color 0.2s var(--e), transform 0.12s var(--e);
  cursor: pointer;
}
.btn:active {
  transform: scale(0.99);
}
.btn--fill {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-1);
}
.btn--fill:hover {
  background: var(--brand-deep);
  color: #fff;
}
.btn--fill:focus-visible {
  outline: 2px solid var(--brand-mid);
  outline-offset: 2px;
}
.btn--line {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--line:hover {
  background: var(--sand);
  border-color: color-mix(in oklch, var(--brand) 22%, var(--line));
}

/* —— Hero */
.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-top: var(--s-4);
  padding-bottom: var(--s-5);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  column-gap: clamp(1.75rem, 1rem + 3.5vw, 3.25rem);
  row-gap: var(--s-5);
  min-height: min(62vh, 30rem);
  padding: var(--s-1) 0 0;
}
@media (min-width: 60rem) {
  .hero__text {
    padding-top: var(--s-3);
    padding-right: var(--s-2);
    max-width: 36.5rem;
  }
  .hero__grid {
    align-items: center;
  }
}
@media (max-width: 60rem) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero__text {
    max-width: 40rem;
  }
}
.hero__text .eyebrow {
  margin-bottom: var(--s-2);
}
.hero__visual {
  position: relative;
  min-height: 19rem;
  margin-top: 0;
  padding: var(--s-2) 0;
  isolation: isolate;
}
.hero__blob {
  position: absolute;
  inset: 5% 4% 7% 12%;
  z-index: 0;
  border-radius: 2.2rem 2.2rem 2.8rem 1.2rem;
  background: color-mix(in oklch, var(--brand) 8%, var(--paper));
  background: linear-gradient(
    160deg,
    color-mix(in oklch, var(--brand) 11%, var(--paper)) 0%,
    color-mix(in oklch, var(--brand) 4%, var(--paper)) 55%,
    color-mix(in oklch, var(--sand) 50%, var(--paper)) 100%
  );
  transform: rotate(-2.5deg);
}
@media (min-width: 60rem) {
  .hero__visual {
    min-height: 25rem;
    padding: var(--s-3) 0.25rem;
  }
  .hero__blob {
    inset: 4% 3% 6% 8%;
  }
}
.hero__photo {
  position: relative;
  z-index: 1;
  max-width: 12.5rem;
  min-height: 9.5rem;
  margin: 0.75rem auto 0.5rem 8%;
  border-radius: 1.2rem;
  aspect-ratio: 3 / 3.35;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid color-mix(in oklch, var(--ink) 6%, var(--paper));
  background: linear-gradient(
    150deg,
    color-mix(in oklch, var(--brand) 14%, var(--paper)) 0%,
    color-mix(in oklch, var(--sand) 45%, var(--paper)) 100%
  );
}
.phone-wrap {
  position: relative;
  z-index: 2;
  max-width: 7.4rem;
  margin: 0.35rem 6% 0 auto;
  transform: rotate(7deg) translateX(0.1rem);
}
@media (max-width: 60rem) {
  .phone-wrap {
    max-width: 5.75rem;
    position: absolute;
    right: 0.4rem;
    top: 0.75rem;
    margin: 0;
  }
  .hero__photo {
    max-width: 10.5rem;
    margin: 0.5rem 0 0.75rem 0.25rem;
  }
  .hero__blob {
    inset: 0 2% 4% 2%;
  }
}
.phone {
  position: relative;
  aspect-ratio: 9.5 / 19.5;
  width: 100%;
  background: color-mix(in oklch, #1a1a1a 12%, var(--ink) 0%);
  border-radius: 1.35rem;
  border: 1px solid color-mix(in oklch, var(--ink) 20%, #fff);
  box-shadow: 0 18px 50px -22px color-mix(in oklch, #000 35%, transparent);
  transition: transform 0.35s var(--e);
}
@media (hover: hover) and (pointer: fine) {
  .hero__visual:hover .phone {
    transform: translateY(-2px) rotate(5.5deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .phone {
    transition: none;
  }
  @media (hover: hover) and (pointer: fine) {
    .hero__visual:hover .phone {
      transform: none;
    }
  }
}
.phone::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 50%;
  width: 28%;
  height: 0.18rem;
  background: #1f1f1f;
  border-radius: 1px;
  transform: translateX(-50%);
  opacity: 0.5;
}
.phone__in {
  position: absolute;
  inset: 0.4rem 0.35rem;
  display: flex;
  flex-direction: column;
  background: #ebe3da;
  border-radius: 1.05rem;
  overflow: hidden;
  z-index: 0;
}
/* Vector screen — sub-pixel CSS was reading as a blank white panel; SVG always paints */
.phone__screen {
  display: block;
  flex: 1;
  min-height: 2.4rem;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.phone__grip {
  flex-shrink: 0;
  display: block;
  margin: 0.15rem auto 0.2rem;
  width: 22%;
  min-height: 0.15rem;
  height: 0.2rem;
  background: color-mix(in oklch, var(--ink) 28%, #a8a29e);
  border-radius: 2px;
  opacity: 0.5;
}
.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.35rem;
  box-shadow: inset 0 0 0 1px color-mix(in oklch, #fff 8%, transparent);
  pointer-events: none;
}

/* Bento */
.band {
  background: var(--sand);
  border-block: 1px solid var(--line);
  padding-top: var(--s-5);
  padding-bottom: var(--s-4);
}
.bento__head {
  text-align: left;
  max-width: 38ch;
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--line);
}
.bento__kicker {
  margin: var(--s-1) 0 0;
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 34rem;
}
.bento {
  display: grid;
  gap: var(--s-2);
  grid-template-columns: 1.4fr 0.6fr;
  grid-template-areas:
    "a b"
    "a c"
    "d d";
  align-items: stretch;
}
@media (min-width: 52rem) {
  .bento {
    grid-template-columns: 1.1fr 0.55fr 0.8fr 0.7fr;
    grid-template-areas: "a a mid c" "a a mid c";
  }
  .bento__mid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-2);
    grid-area: mid;
    min-width: 0;
    align-self: stretch;
  }
  .bento__mid .tile--b {
    flex: 0 0 auto;
    flex-shrink: 0;
  }
  .bento__mid .tile--d {
    flex: 1 0 auto;
    flex-shrink: 0;
  }
  .tile--c {
    min-height: 0;
  }
}
@media (max-width: 51.99rem) {
  .bento__mid {
    display: contents;
  }
  .tile--b {
    grid-area: b;
  }
  .tile--d {
    grid-area: d;
  }
}
@media (max-width: 51.99rem) and (min-width: 32rem) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a b" "a c" "d d";
  }
}
@media (max-width: 31.99rem) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d";
  }
  /* display: contents makes DOM order a, b, d, c; restore a → b → c → d */
  .tile--c {
    order: 2;
  }
  .tile--d {
    order: 3;
  }
}
@media (min-width: 32rem) {
  .tile--c,
  .tile--d {
    order: unset;
  }
}

.tile {
  border-radius: var(--r2);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tile--a {
  grid-area: a;
  padding: 0;
}
.tile--a .tile__img {
  aspect-ratio: 16/10.5;
  min-height: 7.5rem;
  overflow: hidden;
}
.tile--b {
  padding: var(--s-3) 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--brand-deep);
  color: #fff5f0;
  border-color: color-mix(in oklch, var(--brand-deep) 60%, #000 15%);
  box-shadow: var(--shadow-2);
}
.tile--b .stat {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 400;
  font-family: var(--serif);
  margin: 0 0 0.35rem;
  letter-spacing: 0.04em;
  color: #fff;
  font-synthesis: none;
}
.tile--b .stat__sub {
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
  color: color-mix(in oklch, #fff 85%, #fff0 0%);
  max-width: 10rem;
}
.tile--c {
  grid-area: c;
  padding: 0;
}
.tile--c .tile__img {
  aspect-ratio: 5/3.1;
  min-height: 6.5rem;
  overflow: hidden;
}
/* Left accent: a thick border-left on rounded + overflow created a curved/segmented artifact. Solid stripe via gradient. */
.tile--d {
  --tile-d-surface: color-mix(in oklch, var(--paper) 97%, var(--brand) 3%);
  position: relative;
  justify-content: flex-start;
  gap: var(--s-2);
  /* TRBL — five values was invalid, so padding was ignored in most browsers */
  padding: var(--s-3) 1.25rem 1.2rem 1.35rem;
  background: linear-gradient(
    90deg,
    color-mix(in oklch, var(--brand) 70%, var(--paper)) 0 3px,
    var(--tile-d-surface) 3px
  );
}
@media (min-width: 32rem) {
  .tile--d {
    padding: var(--s-3) 1.35rem 1.25rem 1.5rem;
  }
}
@media (min-width: 52rem) {
  .tile--c .tile__img {
    min-height: 0;
    flex: 1;
  }
  .tile--c {
    min-height: 100%;
  }
}
.tile__label {
  margin: 0;
  padding: 0.7rem 0.95rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.tile--d .muted {
  line-height: 1.5;
  max-width: 46ch;
}
.tile--d .h3 {
  line-height: 1.3;
  max-width: 28ch;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-1) 0.4rem;
  margin-top: var(--s-1);
}
.chip {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  background: color-mix(in oklch, var(--sand) 88%, var(--brand) 6%);
  border: 1px solid var(--line);
  color: var(--ink-dim);
}

/* Essentials */
.strip {
  margin-bottom: var(--s-3);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
}
.strip__note {
  font-size: 0.9rem;
  color: var(--ink-dim);
  margin: 0.15rem 0 0;
  max-width: 36rem;
  line-height: 1.5;
}
.ess {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  box-shadow: var(--shadow-1);
  padding: 0.2rem 0.2rem 0.4rem 0.5rem;
}
.ess__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0.2rem 0.25rem 0.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-1) var(--s-2);
}
@media (max-width: 40rem) {
  .ess__list {
    grid-template-columns: 1fr;
  }
}
.ess__item {
  display: flex;
  gap: var(--s-2);
  padding: 0.75rem 0.5rem 0.75rem 0.4rem;
  border-radius: 10px;
  min-height: 2.5rem;
  align-items: flex-start;
  transition: background 0.2s var(--e);
}
.ess__item:hover {
  background: color-mix(in oklch, var(--sand) 80%, var(--paper));
}
.ess__ic {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 0.05rem;
}
.ess__item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-dim);
  line-height: 1.4;
  max-width: 32ch;
}

/* People strip */
.people {
  padding: 0 0 0.25rem;
  margin-top: var(--s-1);
}
.people__in {
  max-width: var(--max);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  column-gap: var(--s-5);
  row-gap: var(--s-3);
  align-items: center;
}
@media (max-width: 44rem) {
  .people__in {
    grid-template-columns: 1fr;
  }
}
.people__figure {
  border-radius: var(--r2);
  overflow: hidden;
  min-height: 8rem;
  max-height: 20rem;
  border: 1px solid var(--line);
  aspect-ratio: 3/1.4;
  box-shadow: var(--shadow-2);
}
@media (max-width: 44rem) {
  .people__figure {
    max-height: 12rem;
    aspect-ratio: 16/9;
  }
}
.people__tagline {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 0.9rem + 1.1vw, 1.75rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
  max-width: 20ch;
}
@media (max-width: 44rem) {
  .people__tagline {
    padding: 0.75rem 0 0;
    max-width: 100%;
  }
}

/* CTA */
.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-3) var(--s-4);
  background: var(--brand-deep);
  color: #fff5f0;
  padding: var(--s-3) 1.35rem 1.3rem 1.35rem;
  border-radius: var(--r2);
  border: 1px solid color-mix(in oklch, #000 25%, var(--brand-deep) 0%);
  box-shadow: var(--shadow-3);
}
.cta .h2 {
  color: #fff;
  margin: 0 0 var(--s-1);
}
.cta a {
  color: #ffe8e0;
}
.cta a:hover {
  color: #fff;
}
.cta a:focus-visible {
  outline: 2px solid #ffcdbf;
  outline-offset: 2px;
  border-radius: 2px;
}
.cta__text {
  max-width: 34rem;
  color: color-mix(in oklch, #fff5f0 90%, #0000 0%);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  opacity: 0.95;
}
.cta__box {
  background: color-mix(in oklch, #000 20%, var(--brand-deep) 0%);
  border-radius: 0.85rem;
  padding: var(--s-2) var(--s-2) 0.9rem 1.05rem;
  min-width: min(100%, 22rem);
  border: 1px solid color-mix(in oklch, #fff 14%, transparent);
}
.mailto {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  margin-bottom: 0.3rem;
  word-break: break-all;
}
.mailto:hover {
  text-decoration: underline;
}
.cta__box .small {
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.8;
  color: color-mix(in oklch, #fff 80%, #0000 0%);
}
.cta a.mailto {
  color: #fff;
}

/* Footer */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: var(--s-3) 0.5rem var(--s-4);
}
.footer__in {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  color: var(--ink-dim);
  font-size: 0.85rem;
}
.foot-small {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--ink-dim);
  opacity: 0.9;
  max-width: 44rem;
}

/* Hero text balance */
@media (min-width: 60rem) {
  .hero__text {
    padding-top: 0.25rem;
  }
}
