/* ==========================================================================
   MANOMATIC — AI ואוטומציה לעסקים קטנים
   Light, soft ground with a single deep-teal accent and soft-edged cards,
   data panels in the hero. Every color is painted explicitly so the page
   holds on any host background.
   Type — Miriam Libre Bold (display) / Rubik (body) / Miriam Mono Bold (data)
   ========================================================================== */

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

:root {
  /* ground — soft, light, faintly cool */
  --bg:        #F6F9FC;
  --surface:   #FFFFFF;
  --surface-2: #EFF4FA;
  --surface-3: #E6EEF7;
  --border:    #E2EAF3;
  --border-hi: #C9D8E7;

  /* ink */
  --text:   #16202E;
  --text-2: #4E5D72;
  --muted:  #6B7A90;

  /* brand — one teal, deep enough to carry white button text (5.2:1)
     and to be legible as link text on the ground (4.9:1) */
  --accent:     #0B7A6B;
  --accent-hi:  #09675B;
  --accent-dim: rgba(15, 158, 138, .10);
  --on-accent:  #FFFFFF;
  --blue:       #4A7FD4;

  /* chart marks — validated for CVD separation on a light surface */
  --c1: #1B9E8A;
  --c2: #4A7FD4;
  --c3: #B07D24;
  --c4: #C96BA0;

  --shadow: 0 1px 2px rgba(22, 32, 46, .05), 0 14px 34px -18px rgba(22, 32, 46, .20);

  --f-display: 'Miriam Libre', 'Arial Hebrew', 'Segoe UI', system-ui, sans-serif;
  --f-body:    'Rubik', 'Segoe UI', 'Arial Hebrew', system-ui, sans-serif;
  --f-mono:    'Miriam Mono', ui-monospace, 'Courier New', monospace;

  --t--1: clamp(.78rem, .76rem + .1vw, .85rem);
  --t-0:  clamp(1rem, .97rem + .16vw, 1.08rem);
  --t-1:  clamp(1.12rem, 1.06rem + .3vw, 1.32rem);
  --t-2:  clamp(1.4rem, 1.22rem + .85vw, 1.95rem);
  --t-3:  clamp(1.85rem, 1.5rem + 1.7vw, 3rem);
  --t-4:  clamp(2.4rem, 1.6rem + 3.9vw, 5rem);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;

  --gut: clamp(1.1rem, .5rem + 2.4vw, 2.75rem);
  --wide: 1220px;
  --read: 62ch;
}

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: var(--t-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.page {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

a { color: inherit; }

:where(a, button, input, textarea, summary):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell { width: min(100% - var(--gut) * 2, var(--wide)); margin-inline: auto; }

.sr {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}

/* ---------- shared type roles ---------- */

.eyebrow {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: var(--t--1);
  letter-spacing: .16em;
  color: var(--accent);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--t-3);
  line-height: 1.1;
  letter-spacing: -.025em;
  text-wrap: balance;
  margin: 0;
}

.lede {
  max-width: var(--read);
  color: var(--text-2);
  font-size: var(--t-1);
  line-height: 1.6;
  margin: 1.1rem 0 0;
}

.band { padding-block: clamp(3.2rem, 2rem + 4.6vw, 6.5rem); }
.band__head { margin-bottom: clamp(2rem, 1.2rem + 2.6vw, 3.4rem); }

/* ---------- masthead ---------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 249, 252, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.masthead__inner { display: flex; align-items: center; gap: 1.2rem; min-height: 68px; }

.logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -.04em;
  text-decoration: none;
  margin-inline-end: auto;
  display: inline-flex;
  align-items: center;
  direction: ltr;
  white-space: nowrap;
  color: var(--text);
}

.logo img { display: block; height: 26px; width: auto; }

@media (max-width: 420px) { .logo img { height: 22px; } }

.nav { display: none; gap: 1.5rem; }

.nav a {
  font-size: .93rem;
  text-decoration: none;
  color: var(--text-2);
  transition: color .16s;
}

.nav a:hover { color: var(--accent); }

@media (min-width: 980px) { .nav { display: flex; } }

/* language switch — the label always names the language you'd switch TO */
.lang {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .1em;
  text-decoration: none;
  color: var(--text-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  padding: .5rem .7rem;
  line-height: 1;
  white-space: nowrap;
  transition: color .16s, border-color .16s;
}

.lang:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--f-body);
  font-size: .97rem;
  line-height: 1;
  text-decoration: none;
  padding: .95rem 1.6rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .12s;
}

.btn:active { transform: translateY(1px); }

.btn--solid {
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  box-shadow: 0 6px 18px -8px rgba(11, 122, 107, .45);
}

.btn--solid:hover { background: var(--accent-hi); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hi);
}

.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--sm { padding: .6rem 1.1rem; font-size: .88rem; }

/* floating WhatsApp, like the reference layout */
.wa {
  position: fixed;
  inset-inline-start: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(1rem, 2vw, 1.75rem);
  z-index: 70;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #1FA855;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px -6px rgba(22, 32, 46, .35);
  transition: transform .18s;
}

.wa:hover { transform: scale(1.07); }
.wa svg { width: 27px; height: 27px; fill: currentColor; }

/* ---------- hero ---------- */

.hero { position: relative; padding-block: clamp(2.75rem, 1.5rem + 5vw, 5.5rem) clamp(2.5rem, 1.5rem + 4vw, 5rem); }

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(60% 60% at 78% 22%, rgba(15, 158, 138, .16), transparent 70%),
    radial-gradient(50% 50% at 22% 8%, rgba(74, 127, 212, .12), transparent 70%);
  pointer-events: none;
}

.hero__grid { position: relative; display: grid; gap: clamp(2.5rem, 1.5rem + 4vw, 4rem); }

@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: center; }
}

.hero__h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--t-4);
  line-height: 1.02;
  letter-spacing: -.035em;
  margin: 0;
  text-wrap: balance;
}

.hero__h1 span { color: var(--accent); }

.hero__sub {
  max-width: 47ch;
  font-size: var(--t-1);
  line-height: 1.6;
  color: var(--text-2);
  margin: 1.4rem 0 0;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero__fine {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: var(--t--1);
  letter-spacing: .08em;
  color: var(--muted);
  margin: 1.3rem 0 0;
}

/* ---------- hero data panels ---------- */

.panels { display: grid; gap: .9rem; }

.panels__note {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: var(--t--1);
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0;
}

.panels__pair { display: grid; gap: .9rem; }

@media (min-width: 560px) { .panels__pair { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}

.card__title {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: var(--t--1);
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0 0 1rem;
}

/* bar comparison — HTML bars so RTL is handled by layout, not by transforms */
.bars { display: grid; gap: .8rem; }
.bar { display: grid; grid-template-columns: 3.4rem 1fr auto; gap: .7rem; align-items: center; }

.bar__k { font-family: var(--f-mono); font-weight: 700; font-size: var(--t--1); color: var(--text-2); }

.bar__track { height: 12px; background: var(--surface-3); border-radius: 6px; overflow: hidden; }

.bar__fill {
  height: 100%;
  border-radius: 0 6px 6px 0;
  background: var(--c2);
}

.bar--now .bar__fill { background: var(--c1); }

.bar__v {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: var(--t--1);
  color: var(--text);
  font-variant-numeric: tabular-nums;
  min-width: 4.2rem;
  text-align: start;
}

.bar__foot {
  margin: 1rem 0 0;
  font-size: .86rem;
  color: var(--muted);
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}

.bar__foot b { color: var(--accent); font-weight: 700; }

/* donut */
.donut { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.donut svg { width: 104px; height: 104px; flex: none; }
.donut__seg { fill: none; stroke-width: 13; }

.legend { display: grid; gap: .42rem; margin: 0; padding: 0; list-style: none; min-width: 0; }

.legend li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .5rem;
  align-items: center;
  font-size: .84rem;
  color: var(--text-2);
}

.legend i { width: 9px; height: 9px; border-radius: 3px; display: block; }

.legend b {
  font-family: var(--f-mono);
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

/* stat + sparkline */
.stat__n {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.stat__d { font-size: .87rem; color: var(--muted); margin: .35rem 0 0; }
.spark { display: block; width: 100%; height: 54px; margin-top: .9rem; }

/* ---------- tech strip ---------- */

.strip { border-block: 1px solid var(--border); background: var(--surface); }

.strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem 1.6rem;
  padding-block: 1.4rem;
}

.strip__lbl {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: var(--t--1);
  letter-spacing: .12em;
  color: var(--muted);
  margin-inline-end: .4rem;
}

.strip__inner span:not(.strip__lbl) {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .04em;
  color: var(--text-2);
}

/* ---------- services (3 primary) ---------- */

.svcs { display: grid; gap: 1rem; }

@media (min-width: 880px) { .svcs { grid-template-columns: repeat(3, 1fr); } }

.svc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 1rem + 1.4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: border-color .18s, transform .18s;
}

.svc:hover { border-color: var(--border-hi); transform: translateY(-3px); }

.svc__ico {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--accent-dim);
  border: 1px solid rgba(15, 158, 138, .3);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.svc__ico svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.svc__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--t-2);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0;
}

.svc__desc { margin: 0; color: var(--text-2); font-size: .96rem; }

.svc__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; font-size: .9rem; color: var(--text-2); }

.svc__list li { display: grid; grid-template-columns: auto 1fr; gap: .55rem; align-items: baseline; }

.svc__list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-2px);
}

.svc__foot { margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--border); }

.svc__from { font-family: var(--f-mono); font-weight: 700; font-size: var(--t--1); letter-spacing: .1em; color: var(--muted); display: block; }

.svc__price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--t-2);
  color: var(--text);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  display: block;
  margin-top: .1rem;
}

.svc__note { font-family: var(--f-mono); font-weight: 700; font-size: var(--t--1); color: var(--muted); display: block; margin-top: .4rem; }

/* ---------- pillars ---------- */

.pillars { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }

@media (min-width: 720px)  { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1060px) { .pillars { grid-template-columns: repeat(4, 1fr); } }

.pillar { background: var(--surface); padding: clamp(1.4rem, 1rem + 1.2vw, 1.9rem); display: grid; gap: .55rem; align-content: start; }

.pillar__n {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: var(--t--1);
  letter-spacing: .14em;
  color: var(--accent);
}

.pillar__h { font-family: var(--f-display); font-weight: 700; font-size: var(--t-1); letter-spacing: -.015em; margin: 0; line-height: 1.2; }
.pillar__p { margin: 0; font-size: .93rem; color: var(--text-2); }

/* ---------- solutions grid ---------- */

.sols { display: grid; gap: 1rem; }

@media (min-width: 680px)  { .sols { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1060px) { .sols { grid-template-columns: repeat(4, 1fr); } }

.sol {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem;
  display: grid;
  gap: .55rem;
  align-content: start;
  transition: border-color .18s, background .18s;
}

.sol:hover { border-color: var(--border-hi); background: var(--surface-2); }

.sol__h { font-family: var(--f-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -.01em; margin: 0; line-height: 1.25; }
.sol__p { margin: 0; font-size: .89rem; color: var(--text-2); }

.sol__tag {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .05em;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 999px;
  padding: .25rem .6rem;
  justify-self: start;
  margin-top: .2rem;
}

/* ---------- work ---------- */

.cases { display: grid; gap: 1rem; }

.case {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid;
  overflow: hidden;
}

@media (min-width: 940px) { .case { grid-template-columns: minmax(0, 17rem) minmax(0, 1fr); } }

.case__side { background: var(--surface-2); padding: clamp(1.3rem, 1rem + 1.2vw, 1.9rem); display: grid; gap: .7rem; align-content: start; border-bottom: 1px solid var(--border); }

@media (min-width: 940px) { .case__side { border-bottom: 0; border-inline-start: 1px solid var(--border); } }

.case__kind { font-family: var(--f-mono); font-weight: 700; font-size: var(--t--1); letter-spacing: .12em; color: var(--accent); }
.case__who { font-family: var(--f-display); font-weight: 700; font-size: var(--t-2); line-height: 1.15; letter-spacing: -.02em; margin: 0; }
.case__stack { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .3rem; }

.case__stack span {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--muted);
  border: 1px solid var(--border-hi);
  border-radius: 999px;
  padding: .2rem .55rem;
}

.case__main { padding: clamp(1.3rem, 1rem + 1.2vw, 1.9rem); display: grid; gap: 1.2rem; align-content: start; }
.case__blk { display: grid; gap: .25rem; }

.case__lbl { font-family: var(--f-mono); font-weight: 700; font-size: var(--t--1); letter-spacing: .12em; color: var(--muted); }
.case__blk p { margin: 0; max-width: var(--read); color: var(--text-2); font-size: .95rem; }

.case__blk--out {
  background: var(--accent-dim);
  border: 1px solid rgba(15, 158, 138, .28);
  border-radius: var(--r-md);
  padding: .9rem 1rem;
}

.case__blk--out .case__lbl { color: var(--accent); }
.case__blk--out p { color: var(--text); font-weight: 700; }

/* ---------- faq ---------- */

.faq { max-width: 80ch; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }

.qa { border-bottom: 1px solid var(--border); }
.qa:last-child { border-bottom: 0; }

.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  font-weight: 700;
  font-size: 1.02rem;
  transition: color .16s;
}

.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--accent); }

.qa__pm { width: 1.4rem; height: 1.4rem; flex: none; position: relative; }

.qa__pm::before,
.qa__pm::after {
  content: "";
  position: absolute;
  inset: 50% 15% auto 15%;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: transform .2s ease, opacity .2s ease;
}

.qa__pm::after { transform: translateY(-50%) rotate(90deg); }
.qa[open] .qa__pm::after { transform: translateY(-50%) rotate(0deg); opacity: 0; }

.qa__a { margin: 0; padding: 0 1.3rem 1.3rem; color: var(--text-2); max-width: var(--read); font-size: .96rem; }

/* ---------- CTA + form ---------- */

.cta {
  background:
    radial-gradient(70% 120% at 82% 0%, rgba(15, 158, 138, .16), transparent 70%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 1rem + 2.4vw, 3rem);
  display: grid;
  gap: clamp(2rem, 1.2rem + 2.6vw, 3rem);
}

@media (min-width: 940px) { .cta { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); align-items: start; } }

.cta__h { font-family: var(--f-display); font-weight: 700; font-size: var(--t-3); line-height: 1.08; letter-spacing: -.03em; margin: 0; text-wrap: balance; }
.cta__p { color: var(--text-2); margin: 1rem 0 1.8rem; max-width: 44ch; }

.chans { display: grid; gap: .55rem; }

.chan {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .75rem;
  align-items: center;
  text-decoration: none;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: .8rem 1rem;
  transition: border-color .18s, background .18s;
}

.chan:hover { border-color: var(--accent); background: var(--surface-3); }
.chan.is-copied { border-color: var(--accent); background: var(--accent-dim); }
.chan.is-copied .chan__l { color: var(--accent); }
.chan__i { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-dim); display: grid; place-items: center; color: var(--accent); }
.chan__i svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.chan__t { display: grid; gap: 0; min-width: 0; }
.chan__l { font-family: var(--f-mono); font-weight: 700; font-size: .72rem; letter-spacing: .1em; color: var(--muted); }
.chan__v { font-size: .97rem; overflow-wrap: anywhere; }

.form { display: grid; gap: .85rem; }
.form__row { display: grid; gap: .85rem; }

@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: .35rem; }

.field label { font-family: var(--f-mono); font-weight: 700; font-size: .74rem; letter-spacing: .1em; color: var(--muted); }

.field input,
.field textarea {
  font-family: var(--f-body);
  font-size: .98rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-sm);
  padding: .75rem .9rem;
  transition: border-color .16s;
}

.field input::placeholder, .field textarea::placeholder { color: #9AA8BC; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 6.5rem; }

.check { display: grid; grid-template-columns: auto 1fr; gap: .6rem; align-items: start; font-size: .86rem; color: var(--muted); }
.check input { width: 17px; height: 17px; accent-color: var(--accent); margin-top: .2rem; }

.form__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .3rem; }

.btn--wa { background: #1E9E51; color: #FFFFFF; font-weight: 700; box-shadow: 0 6px 18px -8px rgba(30, 158, 81, .5); }
.btn--wa:hover { background: #16843F; }
.btn__wa { width: 18px; height: 18px; fill: currentColor; }

.form__hint {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .05em;
  color: var(--muted);
  margin: 0;
}

/* honeypot — off-screen rather than display:none, which some bots skip */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status { margin: 0; font-size: .92rem; min-height: 1.3em; }
.form__status.is-pending { color: var(--muted); }
.form__status.is-ok { color: var(--accent); font-weight: 700; }
.form__status.is-err { color: #B3400F; }
.form__status a { color: var(--accent); font-weight: 700; }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--border); background: var(--surface); padding-block: clamp(2.5rem, 1.6rem + 2.6vw, 3.75rem); margin-top: clamp(3rem, 2rem + 3vw, 5rem); }

.footer__grid { display: grid; gap: 2rem; }

@media (min-width: 820px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }

.footer__logo { display: block; height: 34px; width: auto; }
.footer__blurb { color: var(--text-2); font-size: .93rem; margin: .8rem 0 0; max-width: 34ch; }

.footer__h { font-family: var(--f-mono); font-weight: 700; font-size: var(--t--1); letter-spacing: .12em; color: var(--muted); margin: 0 0 .9rem; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .93rem; }
.footer__list a { color: var(--text-2); text-decoration: none; transition: color .16s; }
.footer__list a:hover { color: var(--accent); }

.footer__bot {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .08em;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
