/* ============================================================
   Chief Perspective — design system
   Newsreader (display serif) + Archivo (body sans)
   Tokens per DESIGN.md §2 — single source of truth.
   ============================================================ */

:root {
  /* color */
  --ink: #101418;
  --ink-deep: #0b0d10;
  --ink-panel: #16181c;
  --ink-hairline: #2a2d33;
  --ink-border: #3a3d44;
  --green: #3f8a5a;
  --green-hover: #357a4e;
  --green-deep: #2f6a45;
  --green-bright: #4f9e6a;
  --green-light: #7fc79b;
  --green-pale: #e6f2ea;
  --green-wash: #f0f7f2;
  --body: #4a5560;
  --body-strong: #3a444c;
  --faint: #6a747c;
  --fainter: #8a949c;
  --on-dark-body: #9aa4ac;
  --on-dark-strong: #b7bec4;
  --surface: #f5f7f8;
  --surface-quiet: #fafbfb;
  --chip: #f0f3f4;
  --hairline: #e6e8ea;
  --border-input: #cfd6db;
  --white: #ffffff;

  /* type scale (desktop → mobile via clamp) */
  --fs-display: clamp(2.0625rem, 1.35rem + 3.2vw, 4rem);      /* 33 → 64 */
  --fs-h1: clamp(1.875rem, 1.45rem + 1.9vw, 3rem);            /* 30 → 48 */
  --fs-h2: clamp(1.625rem, 1.44rem + 0.83vw, 2.125rem);       /* 26 → 34 */
  --fs-h3: clamp(1.25rem, 1.19rem + 0.42vw, 1.5rem);          /* 20 → 24 */
  --fs-body-lg: clamp(1rem, 0.97rem + 0.21vw, 1.125rem);      /* 16 → 18 */
  --fs-body: clamp(0.9375rem, 0.92rem + 0.1vw, 1rem);         /* 15 → 16 */
  --fs-small: clamp(0.8125rem, 0.8rem + 0.1vw, 0.875rem);     /* 13 → 14 */
  --fs-kicker: 0.75rem;                                       /* 12 */

  /* spacing */
  --section-y: 80px;
  --hero-y: 96px;
  --gutter: 60px;

  /* misc */
  --shadow-card: 0 10px 28px rgba(16, 20, 24, .08);
  --shadow-menu: 0 16px 40px rgba(16, 20, 24, .10);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
}

@media (max-width: 860px) {
  :root {
    --section-y: 48px;
    --hero-y: 56px;
    --gutter: 22px;
  }
}
@media (max-width: 560px) {
  :root { --gutter: 16px; }
}

/* ------------------------------------------------------------ base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
.wrap { max-width: 1240px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 18px; font-size: 14px; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------ type */
h1, h2, h3, h4 { font-family: var(--serif); letter-spacing: -.01em; text-wrap: pretty; }
.kicker {
  font-family: var(--sans);
  font-size: var(--fs-kicker);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.dark .kicker, .kicker.on-dark { color: var(--green-light); }
.tlink { color: var(--green); font-size: var(--fs-small); font-weight: 600; }
.tlink:hover { color: var(--green-deep); }

/* ------------------------------------------------------------ buttons (§2, unified) */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.2;
  padding: 15px 30px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-hover); }
.btn-secondary { background: transparent; border: 1px solid var(--border-input); color: var(--ink); padding: 14px 29px; }
.btn-secondary:hover { border-color: var(--green); color: var(--green-deep); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--green); }
.dark .btn-primary:hover { background: var(--green-bright); }
.dark .btn-secondary { border-color: var(--ink-border); color: #eceae3; }
.dark .btn-secondary:hover { border-color: var(--green-light); color: var(--green-light); }

/* ------------------------------------------------------------ header / nav */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding-top: 18px; padding-bottom: 18px;
}
.brand img { height: 26px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 30px;
  list-style: none;
  font-size: 14px; font-weight: 500; color: var(--body-strong);
}
.nav-links > li > a { display: block; padding: 8px 0; }
.nav-links > li > a:hover { color: var(--green-deep); }
.navtop {
  font: inherit; color: inherit; background: none; border: 0; cursor: pointer;
  padding: 8px 0; white-space: nowrap; display: flex; align-items: center; gap: 6px;
}
.navtop:hover { color: var(--green-deep); }
.navtop .caret { font-size: 10px; color: var(--on-dark-body); transition: transform .18s var(--ease); }
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: -16px; padding-top: 10px; min-width: 280px;
}
.dropdown-menu-inner { background: #fff; border: 1px solid var(--hairline); box-shadow: var(--shadow-menu); padding: 8px; }
.dropdown-menu a { display: block; padding: 11px 14px; font-size: 14px; }
.dropdown-menu a:hover, .dropdown-menu a:focus-visible { background: var(--green-pale); color: var(--green-deep); }
.dropdown.open .dropdown-menu { display: block; }
.dropdown.open .caret { transform: rotate(180deg); }
.nav-cta { font-size: 13px; padding: 12px 24px; }
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer; padding: 10px;
  width: 44px; height: 44px; position: relative;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink); margin: 0 auto;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* desktop: open dropdowns on hover / keyboard focus */
@media (min-width: 961px) {
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu { display: block; }
}

/* mobile nav */
@media (max-width: 960px) {
  .nav { gap: 16px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-menu);
    padding: 10px var(--gutter) 22px;
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links > li { border-bottom: 1px solid var(--hairline); }
  .nav-links > li:last-child { border-bottom: 0; }
  .nav-links > li > a, .navtop { width: 100%; padding: 15px 0; font-size: 15px; }
  .navtop { justify-content: space-between; }
  .dropdown-menu { position: static; padding: 0 0 8px; min-width: 0; }
  .dropdown-menu-inner { border: 0; box-shadow: none; padding: 0 0 0 14px; }
  .dropdown-menu a { padding: 11px 10px; }
  .nav-links .nav-cta-mobile { border-bottom: 0; padding-top: 16px; }
  .nav-links .nav-cta-mobile .btn { display: block; text-align: center; }
}
@media (min-width: 961px) {
  .nav-cta-mobile { display: none; }
}

/* ------------------------------------------------------------ sections */
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-flush-bottom { padding-bottom: 0; }
.soft { background: var(--surface); }
.pale { background: var(--green-wash); }
.dark { background: var(--ink); color: #fff; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.bordered-top { border-top: 1px solid var(--hairline); }
.bordered-bottom { border-bottom: 1px solid var(--hairline); }

.section-head { margin-bottom: 44px; }
.section-head .kicker { display: block; margin-bottom: 14px; }
.section-head h2 { font-weight: 400; font-size: var(--fs-h2); line-height: 1.2; max-width: 620px; }
.section-head.row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }

.lede { font-size: 17px; line-height: 1.65; color: var(--body); max-width: 72ch; margin-top: 18px; }

/* ------------------------------------------------------------ grids */
.grid { display: grid; gap: 20px; }
.grid.gap-lg { gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}
@media (min-width: 561px) and (max-width: 860px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------------------------------------ cards (§2: two types) */
.card {                       /* Type A — feature */
  background: #fff;
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--green);
  padding: 30px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
a.card:hover { border-color: var(--green); box-shadow: var(--shadow-card); }
.card h3 { font-weight: 500; font-size: var(--fs-h3); margin-bottom: 12px; line-height: 1.25; }
.card h4 { font-weight: 500; font-size: 20px; margin-bottom: 12px; line-height: 1.25; }
.card p { font-size: var(--fs-small); line-height: 1.6; color: var(--body); }
.card-pad-lg { padding: 38px; }

.card-quiet {                 /* Type B — quiet */
  background: var(--surface-quiet);
  border: 1px solid var(--hairline);
  padding: 24px 28px;
}
.card-quiet h4 { font-weight: 500; font-size: 18px; margin-bottom: 8px; }
.card-quiet p { font-size: var(--fs-small); line-height: 1.6; color: var(--body); }

/* tick list inside feature cards */
.ticks { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.ticks li { display: flex; gap: 10px; font-size: 14px; line-height: 1.55; color: var(--body); }
.ticks li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 6px; background: var(--green); }
.ticks strong { color: var(--ink); }

/* dark panel grid (why-choose-us) */
.panel-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--ink-hairline); border: 1px solid var(--ink-hairline);
}
.panel-grid > div { background: var(--ink-panel); padding: 34px; }
.panel-grid h4 { font-weight: 500; font-size: 20px; margin-bottom: 12px; color: #fff; }
.panel-grid p { font-size: var(--fs-body); line-height: 1.6; color: var(--on-dark-body); }
@media (max-width: 860px) {
  .panel-grid { grid-template-columns: 1fr; }
  .panel-grid > div { padding: 26px 22px; }
}

/* chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  font-size: 13px; font-weight: 500; color: var(--body);
  background: var(--chip); padding: 10px 18px;
  transition: background-color .15s var(--ease), color .15s var(--ease);
  border: 0; cursor: pointer; font-family: var(--sans);
}
.chip:hover { background: var(--green-pale); color: var(--green-deep); }
.chip.active { background: var(--ink); color: #fff; }

/* ------------------------------------------------------------ heroes */
.hero { padding-top: var(--hero-y); padding-bottom: 88px; }
.hero .kicker { display: block; margin-bottom: 24px; letter-spacing: .16em; }
.hero h1 { font-weight: 300; font-size: clamp(2.0625rem, 1.6rem + 2.4vw, 3.75rem); line-height: 1.06; letter-spacing: -.02em; max-width: 840px; }
.hero .tagline { font-size: 19px; line-height: 1.65; color: var(--on-dark-strong); max-width: 620px; margin-top: 26px; }
.hero .cta-row { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero.light .tagline { color: var(--body); }
.hero.light h1 { font-weight: 400; }
@media (max-width: 860px) { .hero { padding-bottom: 56px; } }

/* split home hero */
.hero-home { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; background: var(--surface); }
.hero-home-copy { padding: var(--hero-y) var(--gutter) 88px; }
.hero-home-chip {
  display: inline-block; font-size: var(--fs-kicker); font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--green); background: var(--green-pale);
  padding: 7px 14px; margin-bottom: 30px;
}
.hero-home h1 { font-weight: 400; font-size: var(--fs-display); line-height: 1.06; letter-spacing: -.02em; }
.hero-home .sub { font-size: var(--fs-body-lg); line-height: 1.65; color: var(--body); max-width: 500px; margin-top: 26px; }
.hero-home .cta-row { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero-home-media { border-left: 1px solid #e0e4e6; background: #e7ebed; }
.hero-home-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .hero-home { grid-template-columns: 1fr; }
  .hero-home-copy { padding-bottom: 48px; }
  .hero-home-media { border-left: 0; max-height: 320px; }
  .hero-home-media img { max-height: 320px; }
}

/* ------------------------------------------------------------ FAQ */
.faq-grid { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }
.faq-list { border-top: 1px solid var(--hairline); }
.faq { border-bottom: 1px solid var(--hairline); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 0; cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { font-weight: 500; font-size: 20px; line-height: 1.3; }
.faq summary::after {
  content: "+"; font-size: 22px; color: var(--green); flex: none;
  width: 24px; text-align: center; line-height: 1;
}
.faq[open] summary::after { content: "−"; }
.faq .faq-a { font-size: var(--fs-body); line-height: 1.7; color: var(--body); max-width: 640px; padding: 0 0 24px; }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ------------------------------------------------------------ forms */
.contact h2 { font-weight: 400; font-size: var(--fs-h2); letter-spacing: -.01em; margin-bottom: 10px; }
.contact .contact-sub { font-size: 16px; color: var(--body); max-width: 600px; margin-bottom: 32px; }
.form { max-width: 660px; display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
.form label .opt { font-weight: 400; color: var(--fainter); }
.form input, .form textarea, .form select {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--border-input);
  font-family: var(--sans); font-size: 15px; background: #fff; color: var(--ink);
  border-radius: 0;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid var(--green); outline-offset: 0; border-color: var(--green);
}
.form textarea { resize: vertical; }
.form .fine { font-size: 12px; line-height: 1.5; color: var(--faint); }
@media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------ posts */
.post-card { border: 1px solid var(--hairline); display: flex; flex-direction: column; background: #fff; transition: border-color .18s var(--ease), box-shadow .18s var(--ease); }
.post-card:hover { border-color: var(--green); box-shadow: var(--shadow-card); }
.post-card .thumb { width: 100%; height: 170px; object-fit: cover; background: #eef1f2; }
.post-card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.post-card .cat { font-size: var(--fs-kicker); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green); }
.post-card h3 { font-weight: 500; font-size: 20px; line-height: 1.3; }
.post-card .more { font-size: 13px; font-weight: 600; color: var(--body); margin-top: auto; }

.post-index { border-top: 1px solid var(--hairline); }
.post-row {
  display: grid; grid-template-columns: 220px 1fr auto; gap: 28px; align-items: center;
  padding: 24px 0; border-bottom: 1px solid var(--hairline);
}
.post-row:hover { background: var(--surface-quiet); }
.post-row .cat { font-size: var(--fs-kicker); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green); }
.post-row h3 { font-weight: 500; font-size: 19px; line-height: 1.3; }
.post-row .more { font-size: 14px; font-weight: 600; color: var(--body); }
@media (max-width: 860px) {
  .post-row { grid-template-columns: 1fr; gap: 8px; }
  .post-row .more { display: none; }
}

/* ------------------------------------------------------------ article */
.article-hero { padding-top: 64px; padding-bottom: 52px; }
.article-hero .back { font-size: 13px; font-weight: 600; color: var(--green); }
.article-hero .back:hover { color: var(--green-deep); }
.article-hero .kicker { display: block; margin: 28px 0 16px; }
.article-hero h1 { font-weight: 400; font-size: clamp(1.75rem, 1.4rem + 1.7vw, 2.75rem); line-height: 1.12; letter-spacing: -.02em; max-width: 840px; }
.article-hero .byline { font-size: 14px; color: var(--faint); margin-top: 18px; }

.article-body-wrap { display: grid; grid-template-columns: minmax(0, 760px); justify-content: center; padding-top: 56px; padding-bottom: 72px; }
.article-lead-img { width: 100%; height: 320px; object-fit: cover; margin-bottom: 40px; }
.article { font-size: 16px; line-height: 1.75; color: var(--body-strong); }
.article p { margin: 0 0 18px; }
.article h2 { font-weight: 500; font-size: 28px; letter-spacing: -.01em; margin: 40px 0 16px; color: var(--ink); }
.article h3 { font-weight: 500; font-size: 21px; margin: 28px 0 12px; color: var(--ink); }
.article ul, .article ol { margin: 0 0 18px; padding-left: 22px; }
.article li { margin-bottom: 8px; line-height: 1.7; }
.article a { color: var(--green); text-decoration: underline; }
.article a:hover { color: var(--green-deep); }
.article strong { color: var(--ink); }

/* ------------------------------------------------------------ footer */
.site-footer { background: var(--ink); color: var(--on-dark-body); border-top: 3px solid var(--green); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding-top: 60px; padding-bottom: 60px;
}
.footer-grid .brand-col img { height: 24px; width: auto; margin-bottom: 18px; }
.footer-grid .brand-col p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-grid h4 { font-family: var(--sans); color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.footer-grid ul { list-style: none; font-size: 14px; line-height: 2; }
.footer-grid a:hover { color: var(--green-light); }
.footer-grid address { font-style: normal; font-size: 14px; line-height: 2; }
.footer-grid .email { color: var(--green-light); }
.footer-grid .email:hover { color: #b3e6c6; }
.footer-bottom { background: var(--ink-deep); }
.footer-bottom .wrap { padding-top: 22px; padding-bottom: 22px; font-size: 13px; color: var(--faint); }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; padding-top: 44px; padding-bottom: 44px; }
  .footer-grid .brand-col { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* slim footer (ad landing) */
.footer-slim { background: var(--ink); color: var(--on-dark-body); }
.footer-slim .wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  padding-top: 32px; padding-bottom: 32px; font-size: 13px;
}
.footer-slim img { height: 18px; width: auto; }
.footer-slim .email { color: var(--green-light); }

/* ------------------------------------------------------------ misc components */
.trust-strip { border-bottom: 1px solid var(--hairline); }
.trust-strip .wrap { display: flex; align-items: center; gap: 40px; padding-top: 32px; padding-bottom: 32px; }
.trust-strip .label { font-size: var(--fs-kicker); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--fainter); white-space: nowrap; }
.trust-strip .logos { display: flex; gap: 16px; flex: 1; }
.trust-strip .logos > div { height: 34px; flex: 1; background: #f2f4f5; display: flex; align-items: center; justify-content: center; font-size: 11px; letter-spacing: .12em; color: #b3bac0; }

.value-cards { padding-top: 72px; }
.value-cards .card { border-top: 1px solid var(--hairline); }
.value-cards .card .vc-title { font-family: var(--serif); font-size: 16px; color: var(--green); margin-bottom: 10px; }
.value-cards .card p { font-size: 15px; line-height: 1.55; }

.aud-col { border-top: 2px solid var(--green); padding-top: 22px; }
.aud-col h3 { font-weight: 500; font-size: 19px; margin-bottom: 12px; }
.aud-col p { font-size: 14px; line-height: 1.65; color: var(--on-dark-body); }

.proof-strip { border-bottom: 1px solid var(--hairline); }
.proof-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: 36px; padding-bottom: 36px; }
.proof-strip .stat { display: flex; gap: 14px; align-items: baseline; }
.proof-strip .num { font-family: var(--serif); font-size: 30px; color: var(--green); white-space: nowrap; }
.proof-strip .stat span:last-child { font-size: 14px; color: var(--body); }
@media (max-width: 860px) { .proof-strip .wrap { grid-template-columns: 1fr; gap: 16px; } }

.related-strip { border-top: 1px solid var(--hairline); }
.related-strip .wrap { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; padding-top: 44px; padding-bottom: 44px; }
.related-strip .label { font-size: var(--fs-kicker); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--fainter); }

/* about page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-grid h2 { font-weight: 400; font-size: var(--fs-h2); line-height: 1.2; }
.about-grid .story p { font-size: 16px; line-height: 1.7; color: var(--body); margin-top: 20px; }
.about-facts { display: grid; gap: 20px; }
.about-facts > div { border: 1px solid var(--hairline); border-left: 3px solid var(--green); padding: 24px 28px; }
.about-facts h3 { font-weight: 500; font-size: 19px; margin-bottom: 8px; }
.about-facts p { font-size: 14px; line-height: 1.6; color: var(--body); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 26px; } }

.leader-grid { display: grid; grid-template-columns: 300px 1fr 300px; gap: 52px; align-items: start; }
.leader-grid .portrait { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.leader-grid h2 { font-weight: 400; font-size: 36px; letter-spacing: -.01em; }
.leader-grid .role { font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--green-light); margin-top: 8px; }
.leader-grid .bio p { font-size: 15px; line-height: 1.75; color: var(--on-dark-strong); margin-top: 14px; }
.leader-grid .bio p:first-of-type { margin-top: 24px; }
.leader-grid .bio a { display: inline-block; margin-top: 24px; font-size: 14px; font-weight: 600; color: var(--green-light); }
.leader-facts { border-left: 1px solid var(--ink-hairline); padding-left: 32px; display: flex; flex-direction: column; gap: 20px; font-size: 14px; line-height: 1.6; }
.leader-facts .fact-label { font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; color: var(--green-light); margin-bottom: 4px; }
.leader-facts .fact-val { color: #d5dade; }
@media (max-width: 960px) {
  .leader-grid { grid-template-columns: 1fr; gap: 26px; }
  .leader-grid .portrait { max-width: 300px; }
  .leader-facts { border-left: 0; padding-left: 0; }
}

/* landing hero (qoe-a) */
.landing-hero { background: var(--ink); color: #fff; }
.landing-hero .wrap {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center;
  padding-top: 84px; padding-bottom: 80px;
}
.landing-hero h1 { font-weight: 300; font-size: clamp(2rem, 1.6rem + 2vw, 3.25rem); line-height: 1.06; letter-spacing: -.02em; }
.landing-hero .sub { font-size: 18px; line-height: 1.65; color: var(--on-dark-strong); max-width: 540px; margin-top: 24px; }
.landing-hero .down { display: inline-block; margin-top: 28px; font-size: 14px; font-weight: 600; color: var(--green-light); }
.landing-hero .down:hover { color: #b3e6c6; }
.lead-card { background: #fff; color: var(--ink); padding: 34px 32px; box-shadow: 0 30px 70px rgba(0, 0, 0, .35); }
.lead-card h2 { font-weight: 500; font-size: 22px; margin-bottom: 6px; }
.lead-card .quiet { font-size: 13px; color: var(--faint); margin-bottom: 20px; }
.lead-card .form { gap: 14px; }
.lead-card .btn { width: 100%; }
@media (max-width: 860px) {
  .landing-hero .wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; padding-bottom: 48px; }
}

/* calendly embed */
.calendly-block { min-width: 320px; height: 1080px; max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--hairline); }

/* ------------------------------------------------------------ motion */
@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
  .rv-in { opacity: 1; transform: none; }
}
