/* ============================================================
   PLEXUS COMMERCIAL GROUP — V2 Design System
   Light Executive theme · per /project-titan/brand/03-visual-direction.md
   White/slate base · navy typography · gold earned, never loud
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

/* ── 1. Tokens ─────────────────────────────────────────────── */
:root {
  --navy-900: #0A1628;
  --navy-800: #0F1F35;
  --navy-700: #16273F;
  --slate-600: #46586E;
  --slate-400: #8494A7;
  --slate-200: #D8DEE6;
  --slate-100: #E9EDF2;
  --slate-050: #F5F7F9;
  --white: #FFFFFF;
  --gold-600: #A8842C;   /* text-safe gold on light backgrounds */
  --gold-500: #C9A145;   /* gold on dark backgrounds, hairlines */

  --font-display: 'Inter Tight', 'Inter', -apple-system, sans-serif;
  --font-text: 'Inter', -apple-system, sans-serif;

  --text-hero: clamp(42px, 5.2vw, 80px);
  --text-h2: clamp(30px, 3.4vw, 50px);
  --text-h3: clamp(21px, 2vw, 28px);
  --text-body: 17px;

  --container: 1280px;
  --gutter: 24px;
  --space-section: clamp(88px, 11vw, 152px);
  --radius: 8px;
  --shadow-card: 0 1px 2px rgba(10,22,40,.06), 0 8px 24px rgba(10,22,40,.07);
  --shadow-card-hover: 0 2px 4px rgba(10,22,40,.08), 0 16px 40px rgba(10,22,40,.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

/* ── 2. Reset & base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-text);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--slate-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-h2); line-height: 1.12; }
h3 { font-size: var(--text-h3); line-height: 1.25; }
:focus-visible { outline: 2px solid var(--navy-900); outline-offset: 3px; border-radius: 2px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--navy-900); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ── 3. Layout primitives ──────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 max(5vw, var(--gutter)); }
.section { padding: var(--space-section) 0; }
.section--slate { background: var(--slate-050); }
.section--navy { background: var(--navy-900); border-top: 1px solid var(--gold-500); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: var(--slate-400); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head p { margin-top: 20px; font-size: 18px; }
.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── 4. Eyebrow — the system signature ─────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold-600); }
.section--navy .eyebrow, .hero .eyebrow { color: var(--gold-500); }
.section--navy .eyebrow::before, .hero .eyebrow::before { background: var(--gold-500); }

/* ── 5. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-text); font-size: 15px; font-weight: 500;
  padding: 15px 28px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--navy-900); color: var(--white); }
.btn--primary:hover { background: var(--navy-700); }
.btn--gold { background: transparent; border-color: var(--gold-600); color: var(--gold-600); }
.btn--gold:hover { background: var(--gold-600); color: var(--navy-900); }
.section--navy .btn--gold, .hero .btn--gold { border-color: var(--gold-500); color: var(--gold-500); }
.section--navy .btn--gold:hover, .hero .btn--gold:hover { background: var(--gold-500); color: var(--navy-900); }
.btn--ghost { border-color: rgba(255,255,255,.4); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); }
.btn--ghost-dark { border-color: var(--slate-200); color: var(--navy-900); }
.btn--ghost-dark:hover { border-color: var(--navy-900); }

/* ── 6. Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-solid, .nav.is-light {
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom-color: var(--slate-100);
}
.nav-inner {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 max(5vw, var(--gutter));
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; z-index: 1101; }
.nav-logo .wordmark {
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  letter-spacing: 0.14em; color: var(--navy-900); text-transform: uppercase;
}
.nav-logo .descriptor {
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-600);
}
.nav--dark:not(.is-solid) .wordmark { color: var(--white); }
.nav--dark:not(.is-solid) .descriptor { color: var(--gold-500); }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  font-size: 15px; font-weight: 500; color: var(--navy-900);
  padding: 8px 0; position: relative;
}
.nav--dark:not(.is-solid) .nav-links a.nav-link { color: rgba(255,255,255,.92); }
.nav-links a.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold-600);
  transition: width .3s var(--ease);
}
.nav-links a.nav-link:hover::after, .nav-links a.nav-link[aria-current="page"]::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 12px 22px; font-size: 14px; }

/* Dropdown panels */
.has-dropdown > button.nav-link {
  background: none; border: 0; font: inherit; font-size: 15px; font-weight: 500;
  color: var(--navy-900); cursor: pointer; padding: 8px 0;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav--dark:not(.is-solid) .has-dropdown > button.nav-link { color: rgba(255,255,255,.92); }
.has-dropdown .caret { transition: transform .25s var(--ease); font-size: 10px; }
.has-dropdown.open .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: -24px;
  min-width: 540px; background: var(--white);
  border: 1px solid var(--slate-100); border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  display: grid; grid-template-columns: 1.1fr 1fr;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-links { padding: 20px 8px; }
.dropdown-links a {
  display: block; padding: 11px 20px; border-radius: 6px;
  font-size: 15px; font-weight: 500; color: var(--navy-900);
}
.dropdown-links a span { display: block; font-size: 13px; font-weight: 400; color: var(--slate-400); }
.dropdown-links a:hover { background: var(--slate-050); }
.dropdown-feature {
  background: var(--slate-050); border-left: 1px solid var(--slate-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 24px; font-size: 14px; color: var(--slate-600);
}
.dropdown-feature .eyebrow { margin-bottom: 12px; font-size: 11px; }
.dropdown-feature strong { display: block; color: var(--navy-900); margin-bottom: 6px; font-size: 15px; }
.dropdown-feature a { color: var(--gold-600); font-weight: 500; font-size: 14px; }

/* Mobile nav */
.nav-toggle {
  display: none; z-index: 1101; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); transition: transform .3s var(--ease), opacity .3s; }
.nav--dark:not(.is-solid):not(.menu-open) .nav-toggle span { background: var(--white); }
.nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: calc(var(--nav-h) + 24px) 8vw 120px; gap: 8px;
    overflow-y: auto; transform: translateX(100%);
    transition: transform .4s var(--ease);
  }
  .nav.menu-open .nav-links { transform: translateX(0); }
  .nav.menu-open { background: var(--white); }
  .nav.menu-open .wordmark { color: var(--navy-900); }
  .nav.menu-open .descriptor { color: var(--gold-600); }
  .nav-links a.nav-link, .has-dropdown > button.nav-link {
    font-family: var(--font-display); font-size: 26px; color: var(--navy-900) !important; padding: 10px 0;
  }
  .dropdown {
    position: static; min-width: 0; display: none; box-shadow: none; border: 0;
    grid-template-columns: 1fr; opacity: 1; visibility: visible; transform: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown-feature { display: none; }
  .dropdown-links { padding: 0 0 8px 18px; }
  .nav-cta { display: none; }
  /* Sticky bottom CTA bar on mobile */
  .mobile-cta-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
    background: var(--navy-900); padding: 12px 5vw;
    border-top: 1px solid var(--gold-500);
  }
  .mobile-cta-bar .btn { width: 100%; justify-content: center; }
  body { padding-bottom: 72px; }
}
@media (min-width: 1081px) { .mobile-cta-bar { display: none; } }

/* ── 7. Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: min(92vh, 860px);
  padding: calc(var(--nav-h) + 64px) 0 clamp(64px, 9vh, 110px);
  background: var(--navy-900); color: var(--white); overflow: hidden;
}
.hero--short { min-height: min(64vh, 620px); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  /* Photography layered over a designed gradient — if the image
     fails to load, the gradient carries the composition. */
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(75deg, rgba(10,22,40,.94) 0%, rgba(10,22,40,.72) 46%, rgba(10,22,40,.38) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero h1 { color: var(--white); max-width: 15ch; }
.hero .lede { margin: 28px 0 40px; max-width: 560px; font-size: 19px; color: rgba(238,242,255,.82); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: 13px; letter-spacing: .06em; color: var(--slate-400); text-transform: uppercase; }
.breadcrumb {
  position: relative; z-index: 2;
  font-size: 13px; letter-spacing: .04em; color: var(--slate-400); margin-bottom: 28px;
}
.breadcrumb a:hover { color: var(--gold-500); }

/* ── 8. Cards & content components ─────────────────────────── */
/* Industry card */
.card-industry {
  display: block; background: var(--white); border: 1px solid var(--slate-100);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card-industry:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.card-industry .card-img {
  aspect-ratio: 4 / 3; background-size: cover; background-position: center;
  transition: transform .5s var(--ease);
}
.card-industry .card-img-frame { overflow: hidden; }
.card-industry:hover .card-img { transform: scale(1.03); }
.card-industry .card-body { padding: 26px 26px 30px; }
.card-industry .card-body .eyebrow { margin-bottom: 10px; font-size: 11px; }
.card-industry h3 { margin-bottom: 8px; }
.card-industry p { font-size: 15px; }
.card-industry .card-link { display: inline-block; margin-top: 16px; font-weight: 500; color: var(--gold-600); font-size: 15px; }

/* Solution rows — editorial two-column */
.solution-row {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(32px, 6vw, 96px);
  padding: clamp(36px, 5vw, 56px) 0; border-top: 1px solid var(--slate-200);
}
.solution-row:last-child { border-bottom: 1px solid var(--slate-200); }
.solution-row .num { font-family: var(--font-display); color: var(--gold-600); font-size: 14px; letter-spacing: .1em; margin-bottom: 10px; }
.solution-row h3 a:hover { color: var(--gold-600); }
.solution-row p { max-width: 60ch; }
.solution-row .row-link { display: inline-block; margin-top: 14px; color: var(--gold-600); font-weight: 500; font-size: 15px; }
@media (max-width: 760px) { .solution-row { grid-template-columns: 1fr; gap: 12px; } }

/* Sticky editorial layout (approach sections) */
.sticky-split { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 100px); }
.sticky-split .sticky-col { position: sticky; top: calc(var(--nav-h) + 40px); align-self: start; }
@media (max-width: 860px) { .sticky-split { grid-template-columns: 1fr; } .sticky-split .sticky-col { position: static; } }
.step-item { padding: 32px 0; border-top: 1px solid var(--slate-200); }
.step-item:last-child { border-bottom: 1px solid var(--slate-200); }
.step-item .step-num { font-family: var(--font-display); font-size: 14px; color: var(--gold-600); letter-spacing: .1em; margin-bottom: 8px; }
.step-item h4 { font-size: 20px; margin-bottom: 8px; }

/* Stat block */
.stat { border-top: 2px solid var(--gold-500); padding-top: 18px; }
.stat .stat-num { font-family: var(--font-display); font-weight: 500; font-size: clamp(44px, 4.5vw, 64px); color: var(--navy-900); line-height: 1; letter-spacing: -0.02em; }
.section--navy .stat .stat-num { color: var(--white); }
.stat .stat-label { margin-top: 10px; font-size: 14px; color: var(--slate-400); }

/* Quiet grid (assessment evaluation areas) */
.quiet-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--slate-200); border-left: 1px solid var(--slate-200); }
.quiet-grid .cell { padding: 30px 28px; border-right: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
.quiet-grid .cell h4 { font-size: 16.5px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.quiet-grid .cell p { font-size: 14.5px; color: var(--slate-400); }
.quiet-grid .cell svg { width: 20px; height: 20px; stroke: var(--gold-600); flex-shrink: 0; }
@media (max-width: 900px) { .quiet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .quiet-grid { grid-template-columns: 1fr; } }

/* Value props 3-col */
.value-prop h3 { display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px; font-size: 21px; }
.value-prop h3::before { content: ''; width: 22px; height: 2px; background: var(--gold-600); flex-shrink: 0; transform: translateY(-6px); }
.value-prop p { font-size: 15.5px; }

/* Case study panel */
.case-panel { background: var(--navy-800); border: 1px solid rgba(201,161,69,.25); border-radius: var(--radius); padding: clamp(32px, 5vw, 56px); }
.case-panel .case-tag { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 18px; }
.case-panel blockquote { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 28px); color: var(--white); line-height: 1.35; max-width: 30ch; }
.case-panel .case-meta { margin-top: 24px; font-size: 14px; color: var(--slate-400); }

/* Insights / article cards */
.card-insight { display: block; padding: 28px; border: 1px solid var(--slate-100); border-radius: var(--radius); background: var(--white); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card-insight:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-insight .meta { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 14px; }
.card-insight h3 { font-size: 19px; margin-bottom: 10px; }
.card-insight p { font-size: 14.5px; }

/* Accordion / FAQ */
.accordion { border-top: 1px solid var(--slate-200); }
.accordion-item { border-bottom: 1px solid var(--slate-200); }
.accordion-item button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 24px 0; font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--navy-900);
}
.accordion-item .acc-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.accordion-item .acc-icon::before, .accordion-item .acc-icon::after {
  content: ''; position: absolute; background: var(--gold-600); transition: transform .35s var(--ease);
}
.accordion-item .acc-icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.accordion-item .acc-icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.accordion-item.open .acc-icon::after { transform: rotate(90deg); }
.accordion-item .acc-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.accordion-item .acc-body p { padding: 0 40px 26px 0; font-size: 16px; }

/* Comparison table */
.table-wrap { overflow-x: auto; }
table.compare { width: 100%; border-collapse: collapse; font-size: 15.5px; }
table.compare th {
  text-align: left; font-family: var(--font-display); font-weight: 500;
  background: var(--navy-900); color: var(--white); padding: 16px 20px;
}
table.compare td { padding: 16px 20px; border-bottom: 1px solid var(--slate-200); vertical-align: top; }
table.compare td:first-child { font-weight: 500; color: var(--navy-900); }

/* Trust line — the objectivity promise */
.promise { max-width: 880px; }
.promise p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 3vw, 38px); line-height: 1.3; color: var(--white); letter-spacing: -0.01em;
}
.promise p em { font-style: normal; color: var(--gold-500); }
.promise .attribution { margin-top: 28px; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-400); }

/* CTA band — identical sitewide */
.cta-band { text-align: left; }
.cta-band h2 { max-width: 18ch; }
.cta-band p { margin: 20px 0 36px; max-width: 52ch; font-size: 18px; }
.cta-band .hero-actions { margin-top: 0; }

/* Forms */
.form-field { margin-bottom: 30px; }
.form-field label { display: block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 0; border-bottom: 1px solid var(--slate-200);
  background: transparent; padding: 10px 2px; font: inherit; color: var(--navy-900);
  border-radius: 0; transition: border-color .3s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-bottom: 2px solid var(--gold-600);
}
.form-note { font-size: 13.5px; color: var(--slate-400); margin-top: 18px; }

/* Footer */
.footer { background: var(--navy-900); color: var(--slate-400); border-top: 1px solid var(--gold-500); padding: 72px 0 40px; font-size: 14.5px; }
.footer h4 { color: var(--white); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a:hover { color: var(--gold-500); }
.footer .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 860px) { .footer .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer .footer-brand .wordmark { font-family: var(--font-display); color: var(--white); letter-spacing: .14em; font-size: 16px; text-transform: uppercase; }
.footer .footer-brand p { margin-top: 14px; max-width: 34ch; }
.footer .footer-legal { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; font-size: 13px; }
.footer .cities { margin-top: 20px; font-size: 13px; color: var(--slate-600); letter-spacing: .04em; }

/* ── 9. Imagery panels ─────────────────────────────────────── */
.img-panel {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16 / 10; background-size: cover; background-position: center;
}
.img-panel--tall { aspect-ratio: 4 / 5; }

/* Designed gradient fallbacks (photography layers on top) */
.bg-arch  { background-color: var(--navy-800); background-image: linear-gradient(160deg, #16273F 0%, #0A1628 60%, #0d1b30 100%); }
.bg-gold  { background-color: var(--navy-800); background-image: linear-gradient(150deg, #1a2c47 0%, #0A1628 55%, #2b2410 130%); }

/* ── 10. Reveal system (JS adds .js so no-JS users see everything) ── */
html.js [data-reveal] { opacity: 0; transform: translateY(32px); }
html.js .is-revealed[data-reveal], html.js [data-reveal].is-revealed { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; }
}

/* Utility */
.mt-0 { margin-top: 0; } .mb-40 { margin-bottom: 40px; }
.max-60 { max-width: 60ch; }
.small { font-size: 14px; color: var(--slate-400); }
