/* palette: bg=#FFFFFF fg=#14202E accent=#0A84FF */
/* fonts: display="Space Grotesk" body="Inter" mono="JetBrains Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F2F6FC;
  --bg-band: #0E1B30;
  --fg: #14202E;
  --fg-soft: #33465C;
  --muted: #6B7A8D;
  --accent: #0A84FF;
  --accent-deep: #005FD6;
  --accent-soft: #E4F0FF;
  --border: rgba(20, 32, 46, 0.12);
  --border-soft: rgba(20, 32, 46, 0.07);
  --serif: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.08; margin: 0; }

.section { padding: clamp(80px, 12vw, 160px) 0; }
.section--alt { background: var(--bg-alt); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 24px -12px rgba(14, 27, 48, 0.35);
  border-bottom-color: var(--border-soft);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(150deg, var(--accent), var(--accent-deep));
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.brand__mark svg { width: 17px; height: 17px; }
.nav { display: none; gap: 34px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-size: 14px;
  color: var(--fg-soft);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1.5px; background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }

.header__cta { display: none; }
@media (min-width: 900px) {
  .header__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--fg);
    color: var(--bg);
    border-radius: 9999px;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .header__cta:hover { background: var(--accent-deep); transform: translateY(-1px); }
}

.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 40px 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 30px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--fg);
}
.mobile-menu .header__cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 32px; padding: 16px; background: var(--accent); color: #fff; border-radius: 9999px; font-weight: 500;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px;
  border-radius: 9999px;
  font-size: 15px; font-weight: 500;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px -10px rgba(10, 132, 255, 0.7); }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(10, 132, 255, 0.75); }
.btn--ghost { border: 1px solid var(--border); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--bg-band); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(0,0,0,0.4); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 500; color: var(--accent);
  transition: gap 0.25s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(10, 132, 255, 0.20), transparent 60%),
    radial-gradient(760px 520px at 8% 108%, rgba(10, 132, 255, 0.10), transparent 55%),
    linear-gradient(180deg, #FBFDFF 0%, #EDF4FF 100%);
}
.hero__grid {
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 120px 0 80px;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 56px; padding: 100px 0; }
}
.hero__title {
  font-size: clamp(3.1rem, 8.2vw, 6.2rem);
  letter-spacing: -0.035em;
  font-weight: 400;
  line-height: 1.02;
  margin: 22px 0 26px;
}
.hero__title em { font-style: normal; color: var(--accent); }
.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--fg-soft);
  max-width: 30em;
  line-height: 1.7;
  margin: 0 0 34px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 30px 48px;
  margin-top: 52px; padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.hero__stat b { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; display: block; letter-spacing: -0.02em; }
.hero__stat span { font-size: 12.5px; color: var(--muted); }

.hero__visual { position: relative; }
.hero__panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(14, 27, 48, 0.4);
  border: 1px solid rgba(255,255,255,0.6);
  animation: heroZoom 8s var(--ease) both;
}
.hero__panel img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.3; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__chip {
  position: absolute;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 13px 17px;
  box-shadow: 0 18px 40px -18px rgba(14,27,48,0.35);
  display: flex; align-items: center; gap: 12px;
}
.hero__chip-dot { width: 9px; height: 9px; border-radius: 50%; background: #34C759; box-shadow: 0 0 0 4px rgba(52,199,89,0.18); }
.hero__chip b { font-family: var(--serif); font-size: 15px; font-weight: 500; display: block; }
.hero__chip span { font-size: 11.5px; color: var(--muted); }
.hero__chip--a { top: 24px; left: -14px; }
.hero__chip--b { bottom: 26px; right: -14px; }
@media (max-width: 560px) { .hero__chip { display: none; } }

/* ---------- SECTION HEAD ---------- */
.sec-head { max-width: 720px; margin-bottom: 60px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); letter-spacing: -0.025em; }
.sec-head p { font-size: 1.12rem; color: var(--fg-soft); margin: 20px 0 0; line-height: 1.7; }

/* ---------- SERVICES GRID ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 680px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 4px 24px -4px rgba(14, 27, 48, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px -12px rgba(14, 27, 48, 0.16); border-color: var(--border); }
.card__icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; margin-bottom: 22px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card p { color: var(--fg-soft); font-size: 15.5px; margin: 0 0 18px; }
.card ul { list-style: none; padding: 0; margin: 0; }
.card li { font-size: 14px; color: var(--muted); padding: 7px 0 7px 24px; position: relative; border-top: 1px solid var(--border-soft); }
.card li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

/* ---------- MANIFESTO / DARK BAND ---------- */
.band {
  background: var(--bg-band);
  color: #EAF1FB;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 85% 10%, rgba(10,132,255,0.28), transparent 60%);
  pointer-events: none;
}
.band .container { position: relative; }
.manifesto { max-width: 940px; margin: 0 auto; text-align: center; }
.manifesto .eyebrow { color: #7FC0FF; }
.manifesto .eyebrow::before { background: #7FC0FF; }
.manifesto p {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}
.manifesto p em { font-style: normal; color: #58A6FF; }
.manifesto__by { margin-top: 34px; font-size: 13px; color: #8FA6C4; font-family: var(--mono); letter-spacing: 0.04em; }

/* stats inside band */
.band-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 24px; margin-top: 80px; position: relative; }
@media (min-width: 800px) { .band-stats { grid-template-columns: repeat(4, 1fr); } }
.band-stat b { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 500; display: block; color: #fff; letter-spacing: -0.02em; }
.band-stat span { font-size: 13.5px; color: #93A7C4; }

/* ---------- FEATURE SPLIT ---------- */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } .split--rev .split__media { order: 2; } }
.split__media { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px -22px rgba(14,27,48,0.34); }
.split__media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.split p { color: var(--fg-soft); font-size: 1.05rem; margin: 0 0 20px; }
.split__list { list-style: none; padding: 0; margin: 26px 0 0; }
.split__list li { padding: 14px 0 14px 34px; position: relative; border-top: 1px solid var(--border-soft); font-size: 15px; }
.split__list li::before {
  content: "✓"; position: absolute; left: 0; top: 13px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center; font-size: 11px;
}
.split__list li b { font-family: var(--serif); font-weight: 500; }

/* ---------- PLANS ---------- */
.plans { display: grid; gap: 22px; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.plan {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 34px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 22px 48px -14px rgba(14,27,48,0.18); }
.plan--feat { background: var(--bg-band); color: #EAF1FB; border-color: var(--bg-band); box-shadow: 0 30px 60px -24px rgba(14,27,48,0.5); }
.plan__name { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.plan--feat .plan__name { color: #7FC0FF; }
.plan__price { font-family: var(--serif); font-size: 2.7rem; font-weight: 500; letter-spacing: -0.02em; margin: 14px 0 4px; }
.plan__price span { font-family: var(--sans); font-size: 0.95rem; font-weight: 400; color: var(--muted); }
.plan--feat .plan__price span { color: #93A7C4; }
.plan__desc { font-size: 14.5px; color: var(--fg-soft); margin: 0 0 24px; }
.plan--feat .plan__desc { color: #B7C7DD; }
.plan ul { list-style: none; padding: 0; margin: 0 0 28px; }
.plan li { font-size: 14.5px; padding: 9px 0 9px 26px; position: relative; }
.plan li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }
.plan--feat li::before { color: #58A6FF; }
.plan .btn { width: 100%; justify-content: center; }
.plan__tag { display: inline-block; margin-left: 10px; font-size: 10.5px; font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: var(--accent); color: #fff; vertical-align: middle; }

/* ---------- ARTICLE / EDITORIAL LIST ---------- */
.editorial { display: grid; gap: 0; }
.entry {
  display: grid; gap: 8px 40px; align-items: baseline;
  padding: 34px 0;
  border-top: 1px solid var(--border);
  transition: padding 0.3s var(--ease);
}
@media (min-width: 800px) { .entry { grid-template-columns: 120px 1fr auto; padding: 40px 0; } }
.entry:hover { padding-left: 12px; }
.entry:last-child { border-bottom: 1px solid var(--border); }
.entry__no { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.entry__body h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.entry__body p { color: var(--fg-soft); font-size: 15.5px; margin: 0; max-width: 46em; }
.entry__meta { font-family: var(--mono); font-size: 12px; color: var(--muted); white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq__item { border-top: 1px solid var(--border); padding: 0; }
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0;
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 500; letter-spacing: -0.01em;
}
.faq__q svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--accent); transition: transform 0.3s var(--ease); }
.faq__item[data-open="true"] .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { margin: 0 0 26px; color: var(--fg-soft); font-size: 16px; line-height: 1.75; max-width: 60ch; }

/* ---------- CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); letter-spacing: -0.03em; max-width: 16em; margin: 0 auto 24px; }
.cta-band p { color: var(--fg-soft); font-size: 1.15rem; max-width: 40em; margin: 0 auto 38px; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 72px; } }
.contact-info h3 { font-size: 1.3rem; margin: 34px 0 10px; }
.contact-info .eyebrow { margin-bottom: 8px; }
.contact-info p { color: var(--fg-soft); margin: 0; }
.contact-info a { color: var(--accent-deep); }
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 13px; font-weight: 500; color: var(--fg-soft); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { justify-content: center; }
.form__note { font-size: 12.5px; color: var(--muted); }
.form__note a { color: var(--accent-deep); text-decoration: underline; }

/* ---------- PROSE (legal) ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); margin-bottom: 16px; }
.prose .updated { font-family: var(--mono); font-size: 12.5px; color: var(--muted); margin-bottom: 48px; display: block; }
.prose h2 { font-size: 1.6rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 30px 0 10px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 16px; line-height: 1.8; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-deep); text-decoration: underline; }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-band); color: #C4D2E5; padding: 80px 0 40px; }
.footer__top { display: grid; gap: 44px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer .brand { color: #fff; margin-bottom: 18px; }
.footer__about { font-size: 14.5px; color: #93A7C4; max-width: 30em; line-height: 1.7; }
.footer__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #6F86A6; margin-bottom: 18px; font-weight: 500; }
.footer__col a, .footer__col p { display: block; font-size: 14.5px; color: #C4D2E5; padding: 6px 0; margin: 0; transition: color 0.2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 32px; font-size: 12.5px; color: #7488A6; }
.footer__bottom a { color: #7488A6; }
.footer__bottom a:hover { color: #fff; }

/* ---------- COOKIE POPUP ---------- */
.cookie-popup { position:fixed;inset:0;z-index:9999;display:flex;align-items:flex-end;justify-content:flex-start;padding:24px;background:rgba(14,27,48,0.4);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:opacity .3s; }
.cookie-popup[data-open="true"] { opacity:1;pointer-events:all; }
.cookie-popup__card { background:var(--bg);padding:32px 36px;max-width:480px;border-radius:16px;box-shadow:0 30px 70px -20px rgba(14,27,48,0.5);border:1px solid var(--border-soft); }
.cookie-popup__label { font-family:var(--mono);font-size:11px;letter-spacing:0.14em;text-transform:uppercase;color:var(--accent);margin-bottom:12px; }
.cookie-popup__card h3 { font-size:1.35rem;margin-bottom:12px; }
.cookie-popup__card p { font-size:14px;color:var(--fg-soft);margin:0;line-height:1.65; }
.cookie-popup__card p a { color:var(--accent-deep);text-decoration:underline; }
.cookie-popup__actions { display:flex;gap:12px;margin-top:22px; }
.cookie-popup__actions button { padding:12px 24px;border:1px solid var(--border);border-radius:9999px;cursor:pointer;font-size:14px;font-weight:500;transition:all 0.2s var(--ease); }
.cookie-popup__actions button:first-child { color:var(--fg-soft); }
.cookie-popup__actions button:first-child:hover { border-color:var(--fg); }
.cookie-popup__actions button:last-child { background:var(--fg);color:var(--bg);border-color:var(--fg); }
.cookie-popup__actions button:last-child:hover { background:var(--accent-deep);border-color:var(--accent-deep); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  padding: 140px 0 70px;
  background:
    radial-gradient(900px 420px at 82% -20%, rgba(10,132,255,0.16), transparent 60%),
    linear-gradient(180deg, #FBFDFF, var(--bg));
}
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); letter-spacing: -0.035em; font-weight: 400; max-width: 15em; }
.page-hero p { font-size: 1.2rem; color: var(--fg-soft); max-width: 40em; margin: 26px 0 0; }
.page-hero .eyebrow { margin-bottom: 22px; }

/* misc */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 52px; opacity: 0.72; }
.logos span { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; color: var(--muted); letter-spacing: -0.01em; }
.logos__label { width: 100%; text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
