@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

/* ---------- Tokens ---------- */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f5f5;
  --surface-alt: #efefef;
  --ink-950: #050505;
  --ink-900: #0a0a0a;
  --ink-800: #141414;
  --text: #111111;
  --muted: #545454;
  --muted-soft: #7a7a7a;
  --inverse: #ffffff;
  --inverse-muted: #b7b7b7;
  --border: #e2e2e2;
  --border-strong: #cfcfcf;
  --line-on-dark: #2a2a2a;

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  --max-width: 1280px;
  --section-pad: clamp(4rem, 7vw, 6.2rem);
  --radius: 4px;
  --shadow-card: 3px 3px 0 rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 5px 5px 0 rgba(0, 0, 0, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.container {
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 0 auto;
}

section { padding: var(--section-pad) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--text);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0.9rem;
}

.section-head p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid var(--text);
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
  min-height: 44px;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.btn-primary { background: var(--text); color: var(--inverse); }
.btn-primary:hover { transform: translateY(-2px); background: #000; }

.btn-outline { background: transparent; color: var(--text); }
.btn-outline:hover { transform: translateY(-2px); background: var(--text); color: var(--inverse); }

.btn-outline-invert { background: transparent; color: var(--inverse); border-color: var(--inverse); }
.btn-outline-invert:hover { background: var(--inverse); color: var(--ink-950); }

.btn-primary-invert { background: var(--inverse); color: var(--ink-950); border-color: var(--inverse); }
.btn-primary-invert:hover { transform: translateY(-2px); background: var(--inverse-muted); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 200ms var(--ease);
}

.site-header.scrolled { box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 24px -20px rgba(0, 0, 0, 0.3); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}

.brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand img { height: 26px; width: auto; }
.brand span.sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

.nav-desktop { display: flex; align-items: center; gap: 1.4rem; }
.nav-desktop a { font-size: 0.87rem; font-weight: 500; color: var(--text); position: relative; padding-bottom: 4px; white-space: nowrap; }
.nav-desktop a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--text); transition: right 200ms var(--ease); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { right: 0; }
.nav-desktop a.active { font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border-strong); border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); transition: transform 200ms var(--ease); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.mobile-nav {
  display: none;
  position: fixed; inset: 76px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
.mobile-nav .mobile-actions { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

@media (max-width: 1220px) {
  .nav-desktop { display: none; }
  .header-actions .btn-outline.portal-link { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero.dark { background: var(--ink-950); color: var(--inverse); }
.hero.dark .eyebrow { color: var(--inverse-muted); }
.hero.dark .eyebrow::before { background: var(--inverse); }

.hero-copy h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); font-weight: 700; line-height: 1.04; margin-top: 1rem; }
.hero-copy .lede { margin-top: 1.4rem; font-size: 1.1rem; line-height: 1.7; color: var(--muted); max-width: 46ch; }
.hero.dark .hero-copy .lede { color: var(--inverse-muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }
.hero.dark .hero-badges { border-top-color: var(--line-on-dark); }
.hero-badges span { font-size: 0.8rem; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.hero.dark .hero-badges span { color: var(--inverse-muted); }
.hero-badges svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.7; }

.hero-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--border) 1px, transparent 1px) 0 0/100% 12.5%,
    linear-gradient(90deg, var(--border) 1px, transparent 1px) 0 0/12.5% 100%,
    var(--surface-soft);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero.dark .hero-panel { border-color: var(--line-on-dark); background: linear-gradient(var(--line-on-dark) 1px, transparent 1px) 0 0/100% 12.5%, linear-gradient(90deg, var(--line-on-dark) 1px, transparent 1px) 0 0/12.5% 100%, var(--ink-900); }

.hero-panel .mark { position: absolute; top: 2rem; left: 2rem; width: 34%; opacity: 0.92; }
.hero.dark .hero-panel .mark { filter: invert(1); }
.hero-panel .stat-card { margin: 1.6rem; background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-card); width: calc(100% - 3.2rem); }
.hero.dark .hero-panel .stat-card { background: var(--ink-950); border-color: var(--line-on-dark); }
.hero-panel .stat-card .num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; }
.hero-panel .stat-card .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 0.25rem; }
.hero.dark .hero-panel .stat-card .lbl { color: var(--inverse-muted); }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { aspect-ratio: 16 / 10; }
}

/* ---------- Icon swatch ---------- */
.icon-swatch { width: 42px; height: 42px; border: 1px solid var(--text); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex: none; }
.icon-swatch svg { width: 20px; height: 20px; stroke: var(--text); fill: none; stroke-width: 1.6; }
.hero.dark .icon-swatch, .dark-band .icon-swatch { border-color: var(--inverse); }
.hero.dark .icon-swatch svg, .dark-band .icon-swatch svg { stroke: var(--inverse); }

/* ---------- Cards grid ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

@media (max-width: 1080px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-card);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: var(--border-strong); }
.card h3 { font-size: 1.1rem; font-weight: 600; margin-top: 1.1rem; }
.card p { margin-top: 0.6rem; color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.card ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.45rem; }
.card ul li { font-size: 0.85rem; color: var(--text); display: flex; gap: 0.5rem; align-items: flex-start; }
.card ul li::before { content: "—"; color: var(--muted-soft); flex: none; }
.card .card-link { margin-top: 1.2rem; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 700; border-bottom: 1px solid var(--text); padding-bottom: 2px; }
.card .card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 180ms var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }

/* ---------- Who we serve / audience ---------- */
.audience-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.audience-row .a-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.6rem 1.4rem; }
.audience-row .a-item h4 { font-size: 0.98rem; font-weight: 600; margin-top: 0.9rem; }
.audience-row .a-item p { margin-top: 0.5rem; font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 1080px) { .audience-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .audience-row { grid-template-columns: 1fr; } }

/* ---------- Process / journey ---------- */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; position: relative; }
.process .p-step { position: relative; }
.process .p-step .p-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--border-strong); }
.process .p-step h4 { font-size: 1rem; font-weight: 600; margin-top: 0.6rem; }
.process .p-step p { margin-top: 0.5rem; font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.process .p-step:not(:last-child)::after { content: ""; position: absolute; top: 1.1rem; left: calc(100% + 0.2rem); width: calc(1.2rem - 0.4rem); height: 1px; background: var(--border-strong); }
@media (max-width: 960px) { .process { grid-template-columns: 1fr; gap: 2rem; } .process .p-step:not(:last-child)::after { display: none; } }

/* ---------- Dark band (trust / stats) ---------- */
.dark-band { background: var(--ink-950); color: var(--inverse); }
.dark-band .section-head p { color: var(--inverse-muted); }
.dark-band .eyebrow { color: var(--inverse-muted); }
.dark-band .eyebrow::before { background: var(--inverse); }
.trust-cols { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-cols .t-col { padding: 0 1.5rem; border-left: 1px solid var(--line-on-dark); }
.trust-cols .t-col:first-child { border-left: none; padding-left: 0; }
.trust-cols .t-col h4 { font-size: 0.98rem; font-weight: 600; margin-top: 1rem; }
.trust-cols .t-col p { margin-top: 0.55rem; font-size: 0.84rem; color: var(--inverse-muted); line-height: 1.6; }
@media (max-width: 1080px) { .trust-cols { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; } .trust-cols .t-col { border-left: none; padding-left: 0; } }
@media (max-width: 560px) { .trust-cols { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-950); color: var(--inverse); text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; max-width: 34ch; margin: 0.9rem auto 0; }
.cta-band p { margin-top: 1rem; color: var(--inverse-muted); max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; }
.cta-band .eyebrow { justify-content: center; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.price-card { background: var(--surface-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; }
.price-card.featured { background: var(--surface); border: 2px solid var(--text); box-shadow: var(--shadow-card-hover); }
.price-card .tag { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--text); border-radius: 999px; padding: 0.3rem 0.7rem; margin-bottom: 1rem; width: fit-content; }
.price-card h3 { font-size: 1.2rem; font-weight: 600; }
.price-card .price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; margin-top: 0.6rem; }
.price-card .price small { font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.price-card p.desc { margin-top: 0.7rem; color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
.price-card ul { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; }
.price-card ul li { font-size: 0.87rem; display: flex; gap: 0.55rem; align-items: flex-start; }
.price-card ul li svg { width: 15px; height: 15px; stroke: var(--text); fill: none; stroke-width: 2; margin-top: 3px; flex: none; }
.price-card .btn { margin-top: 1.6rem; width: 100%; }
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; } .price-card.featured { order: -1; } }

/* ---------- Team ---------- */
.team-card { text-align: left; }
.team-photo { aspect-ratio: 1; border: 1px solid var(--border-strong); border-radius: var(--radius); background: var(--surface-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--border-strong); }
.team-card h3 { margin-top: 1.1rem; }
.team-card .role { font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-top: 0.2rem; }
.team-card p.bio { margin-top: 0.7rem; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.4rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--text); }
.faq-q svg { width: 18px; height: 18px; stroke: var(--text); fill: none; stroke-width: 1.8; flex: none; transition: transform 200ms var(--ease); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 260ms var(--ease); }
.faq-a-inner { padding-bottom: 1.4rem; color: var(--muted); font-size: 0.94rem; line-height: 1.7; max-width: 68ch; }
.faq-item.open .faq-a { max-height: 480px; }

/* ---------- Resources ---------- */
.resource-card .r-meta { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-soft); }
.resource-card h3 { margin-top: 0.7rem; }
.resource-card .r-thumb { aspect-ratio: 16/10; border: 1px solid var(--border); border-radius: var(--radius); background: repeating-linear-gradient(135deg, var(--surface-soft), var(--surface-soft) 10px, var(--surface-alt) 10px, var(--surface-alt) 20px); margin-bottom: 1.2rem; }

/* ---------- Careers ---------- */
.job-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.6rem 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.job-row:first-child { border-top: 1px solid var(--border); }
.job-row .job-info h3 { font-size: 1.08rem; font-weight: 600; }
.job-row .job-info .job-meta { margin-top: 0.4rem; font-size: 0.82rem; color: var(--muted); display: flex; gap: 1rem; flex-wrap: wrap; }
.job-row .job-info .job-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.job-row .job-info .job-meta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 780px) { .perk-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }

.field label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color 160ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--text); }
.field textarea { resize: vertical; min-height: 130px; }

.form-note { margin-top: 1rem; font-size: 0.8rem; color: var(--muted-soft); }
.form-success { display: none; border: 1px solid var(--text); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-top: 1.2rem; font-size: 0.9rem; }
.form-success.show { display: block; }

/* ---------- Contact info panel ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--border); }
.info-row:first-child { border-top: 1px solid var(--border); }
.info-row .icon-swatch { width: 38px; height: 38px; }
.info-row .icon-swatch svg { width: 17px; height: 17px; }
.info-row h4 { font-size: 0.92rem; font-weight: 600; }
.info-row p { margin-top: 0.3rem; font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

.map-frame { margin-top: 1.6rem; aspect-ratio: 16/9; border: 1px solid var(--border); border-radius: var(--radius); background: repeating-linear-gradient(45deg, var(--surface-soft), var(--surface-soft) 12px, var(--surface-alt) 12px, var(--surface-alt) 24px); display: flex; align-items: center; justify-content: center; color: var(--muted-soft); font-size: 0.82rem; font-weight: 600; text-align: center; padding: 1rem; }

/* ---------- Portal ---------- */
.portal-wrap { display: flex; justify-content: center; }
.portal-card { width: min(420px, 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.4rem; box-shadow: var(--shadow-card); }
.portal-card .icon-swatch { margin: 0 auto 1.2rem; }
.portal-card h1 { font-size: 1.5rem; text-align: center; }
.portal-card p.lede { text-align: center; margin-top: 0.6rem; color: var(--muted); font-size: 0.9rem; }
.portal-card form { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.portal-card .btn { width: 100%; margin-top: 0.6rem; }
.portal-note { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--border); font-size: 0.82rem; color: var(--muted-soft); text-align: center; line-height: 1.6; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--ink-950); color: var(--inverse); padding: clamp(3.4rem, 7vw, 5.5rem) 0 clamp(2.6rem, 5vw, 3.6rem); }
.page-hero .eyebrow { color: var(--inverse-muted); }
.page-hero .eyebrow::before { background: var(--inverse); }
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 700; margin-top: 1rem; max-width: 32ch; }
.page-hero p { margin-top: 1rem; color: var(--inverse-muted); max-width: 58ch; font-size: 1.02rem; line-height: 1.7; }
.breadcrumb { font-size: 0.78rem; color: var(--inverse-muted); display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1.2rem; }
.breadcrumb a { font-weight: 600; color: var(--inverse); }

/* ---------- Split content (about / values) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.value-list { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 1rem; }
.value-list .v-item { display: flex; gap: 1.1rem; }
.value-list h4 { font-size: 1rem; font-weight: 600; }
.value-list p { margin-top: 0.4rem; font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ---------- Policy / legal text ---------- */
.legal-body { max-width: 74ch; }
.legal-body h2 { font-size: 1.3rem; margin-top: 2.4rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-top: 0.9rem; }
.legal-body ul { margin-top: 0.6rem; padding-left: 1.2rem; list-style: disc; }
.legal-body ul li { margin-top: 0.4rem; }
.legal-body strong { color: var(--text); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-950); color: var(--inverse); padding: 4.5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-on-dark); }
.footer-brand img { height: 24px; filter: invert(1); }
.footer-brand p { margin-top: 1.1rem; color: var(--inverse-muted); font-size: 0.86rem; line-height: 1.65; max-width: 32ch; }
.footer-col h5 { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--inverse-muted); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.88rem; color: var(--inverse-muted); transition: color 160ms var(--ease); }
.footer-col a:hover { color: var(--inverse); }
.footer-bottom { padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: var(--inverse-muted); }
.footer-bottom .legal-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--inverse-muted); }
.footer-bottom a:hover { color: var(--inverse); }

@media (max-width: 960px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 420ms var(--ease), transform 420ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--text); z-index: 200; width: 0%; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.divider { height: 1px; background: var(--border); border: none; margin: 0; }
.bg-soft { background: var(--surface-soft); }
