:root {
  --ink: #f4f7f8;
  --muted: #aab4ba;
  --muted-strong: #cbd2d6;
  --bg: #050708;
  --bg-soft: #0a0e10;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --accent: #9adcf4;
  --accent-strong: #d6f3ff;
  --gold: #c7a56a;
  --danger: #ffb8b8;
  --max: 1240px;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% -10%, rgba(75, 158, 196, 0.12), transparent 35rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.menu-active {
  background: rgba(5, 7, 8, 0.88);
  border-color: var(--line-soft);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(100% - 40px, var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 25px);
}
.nav-link {
  position: relative;
  padding: 28px 0;
  color: #dce2e5;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 1px;
  background: #fff;
  transition: right 0.22s ease;
}
.nav-link:hover::after,
.nav-link.current::after { right: 0; }
.nav-link.cta {
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
}
.nav-link.cta::after { display: none; }
.nav-link.cta:hover { background: #fff; color: #000; }
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav-dropdown-toggle {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: #dce2e5;
  padding: 28px 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 3px 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 9px);
  right: -14px;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: radial-gradient(circle at 100% 0%, rgba(154,220,244,0.14), transparent 42%), rgba(7, 10, 11, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(225deg); }
.nav-dropdown-item {
  display: block;
  padding: 12px 14px;
  border-radius: 11px;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-dropdown-item:hover,
.nav-dropdown-item.current { color: #fff; background: rgba(154,220,244,0.09); }

.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-nav {
  display: none;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 8px 0 22px;
  border-top: 1px solid var(--line-soft);
}
.mobile-nav.open { display: grid; }
.mobile-nav .nav-link {
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .nav-link::after { display: none; }
.mobile-nav .nav-link.cta {
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}
.mobile-nav-label {
  padding: 17px 4px 7px;
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobile-nav .mobile-sub-link { padding-left: 18px; color: var(--muted-strong); }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 150px 0 84px;
  background: #040607;
}
.hero.compact { min-height: 66vh; }
.hero-media,
.hero::before,
.hero::after { position: absolute; inset: 0; }
.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
}
.hero::before {
  content: "";
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.94) 0%, rgba(2, 3, 4, 0.68) 44%, rgba(2, 3, 4, 0.24) 100%),
    linear-gradient(0deg, rgba(2, 3, 4, 0.94) 0%, rgba(2, 3, 4, 0.06) 62%);
}
.hero::after {
  content: "";
  z-index: -1;
  background: linear-gradient(110deg, transparent 48%, rgba(122, 208, 239, 0.07));
}
.hero-inner,
.section-inner,
.footer-inner {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}
.hero-copy { max-width: 840px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.display-title {
  max-width: 13em;
  margin: 0;
  font-size: clamp(2.75rem, 7vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
.compact .display-title { font-size: clamp(2.55rem, 6vw, 5.3rem); }
.hero-lede {
  max-width: 760px;
  margin: 25px 0 0;
  color: #d6dde0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #050708;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.secondary { background: rgba(0, 0, 0, 0.18); color: #fff; border-color: rgba(255, 255, 255, 0.48); }
.button.secondary:hover { background: #fff; color: #000; }

.section {
  position: relative;
  padding: clamp(76px, 9vw, 122px) 0;
  border-top: 1px solid var(--line-soft);
}
.section.soft { background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent); }
.section-header { max-width: 880px; margin-bottom: 42px; }
.section-title {
  margin: 0;
  max-width: 18em;
  font-size: clamp(2rem, 4.5vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.section-lede,
.prose p,
.card p,
.note,
.empty-state p {
  color: var(--muted-strong);
  line-height: 1.75;
}
.section-lede { max-width: 780px; margin: 19px 0 0; font-size: 1.02rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.split { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(36px, 7vw, 92px); align-items: center; }
.split.reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
.split.reverse .split-media { order: -1; }
.card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(112, 201, 235, 0.1), transparent 40%),
    linear-gradient(155deg, var(--panel-strong), var(--panel));
}
.card-label,
.metric-label,
.meta,
.form-section-title {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.card h2,
.card h3 { margin: 12px 0 14px; line-height: 1.12; letter-spacing: -0.025em; }
.card h2 { font-size: clamp(1.7rem, 3vw, 2.65rem); }
.card h3 { font-size: 1.35rem; }
.card p { margin: 0; }
.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.text-link::after { content: "\2192"; margin-left: 9px; }
.split-media {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #101416;
}
.split-media img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.prose h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.04; letter-spacing: -0.04em; }
.prose h3 { margin: 30px 0 10px; font-size: 1.2rem; }
.prose p { margin: 0 0 17px; }
.prose p:last-child { margin-bottom: 0; }

.metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.metric { padding: 28px 24px; background: #090c0e; }
.metric-value { display: block; margin: 7px 0 4px; font-size: clamp(1.65rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; }
.metric-note { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.feature-list { display: grid; gap: 0; margin-top: 24px; border-top: 1px solid var(--line); }
.feature-item { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.feature-number { color: var(--accent); font-size: 0.76rem; letter-spacing: 0.1em; }
.feature-item strong { display: block; margin-bottom: 5px; }
.feature-item span { color: var(--muted); line-height: 1.65; }

.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.person-card { overflow: hidden; padding: 0; }
.person-photo { aspect-ratio: 1 / 0.92; width: 100%; object-fit: cover; object-position: center 28%; filter: saturate(0.88); }
.person-body { padding: 26px 28px 30px; }
.person-body h2 { margin: 0 0 7px; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.person-role { margin: 0; color: var(--accent-strong); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }

.timeline { max-width: 900px; margin-top: 34px; border-left: 1px solid var(--line); }
.timeline-item { position: relative; padding: 0 0 34px 34px; }
.timeline-item::before { content: ""; position: absolute; left: -5px; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 7px rgba(154,220,244,0.08); }
.timeline-item h3 { margin: 0 0 10px; font-size: 1.25rem; }
.timeline-item p { margin: 0; color: var(--muted-strong); line-height: 1.75; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr); gap: 22px; align-items: start; }
.form-shell,
.aside-shell { padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(155deg, var(--panel-strong), var(--panel)); }
.form-shell h2,
.aside-shell h2 { margin: 0 0 12px; font-size: clamp(1.65rem, 3vw, 2.55rem); letter-spacing: -0.03em; }
.form-intro { margin: 0 0 30px; color: var(--muted-strong); line-height: 1.7; }
.form-section { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.form-section-title { margin: 0 0 20px; color: var(--accent-strong); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; align-content: start; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #dce2e5; font-size: 0.78rem; font-weight: 650; letter-spacing: 0.05em; }
.required::after { content: " *"; color: var(--accent); }
.field small { color: var(--muted); font-size: 0.78rem; line-height: 1.45; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  outline: 0;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  padding: 13px 14px;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(154, 220, 244, 0.1); }
.field select option { background: #111; color: #fff; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-note { margin: 16px 0 0; padding: 14px 16px; border-left: 2px solid var(--accent); background: rgba(154,220,244,0.055); color: var(--muted-strong); line-height: 1.62; font-size: 0.9rem; }
.submit-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.submit-row .button { border: 0; }
.privacy-note { max-width: 480px; margin: 0; color: var(--muted); font-size: 0.82rem; line-height: 1.55; }
.direct-email { display: block; margin: 18px 0 10px; color: var(--accent-strong); font-size: clamp(1.2rem, 2.2vw, 1.7rem); font-weight: 750; overflow-wrap: anywhere; }
.aside-list { display: grid; gap: 18px; margin-top: 28px; }
.aside-item { padding-top: 18px; border-top: 1px solid var(--line-soft); }
.aside-item strong { display: block; margin-bottom: 8px; }
.aside-item p { margin: 0; color: var(--muted); line-height: 1.65; }

.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.blog-card { min-height: 320px; display: flex; flex-direction: column; }
.blog-card h2 { font-size: 1.55rem; }
.blog-card .text-link { margin-top: auto; padding-top: 22px; }
.empty-state { padding: clamp(34px, 6vw, 72px); border: 1px dashed rgba(255, 255, 255, 0.2); border-radius: var(--radius); text-align: center; background: rgba(255,255,255,0.025); }
.empty-state h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.empty-state p { margin: 0 auto; max-width: 620px; }
.blog-feature {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--panel-strong), var(--panel));
}
.blog-feature-header { max-width: 920px; padding: clamp(30px, 6vw, 68px); }
.blog-feature-header h2 { margin: 14px 0 20px; font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -0.05em; text-wrap: balance; }
.blog-feature-lede { margin: 0; color: var(--muted-strong); font-size: 1.08rem; line-height: 1.75; }
.blog-feature-media { margin: 0; overflow: hidden; border-block: 1px solid var(--line-soft); }
.blog-feature-media img { width: 100%; max-height: 650px; object-fit: cover; }
.blog-feature-body { width: min(100% - 48px, 820px); margin: 0 auto; padding: clamp(36px, 7vw, 76px) 0; }
.blog-list {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}
.blog-entry {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: radial-gradient(circle at 100% 0%, rgba(154, 220, 244, 0.10), transparent 38%), rgba(255, 255, 255, 0.025);
}
.blog-entry-summary {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4.5vw, 48px);
  cursor: pointer;
  list-style: none;
}
.blog-entry-summary::-webkit-details-marker { display: none; }
.blog-entry-summary::marker { content: ""; }
.blog-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-entry-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 24px;
  align-items: center;
}
.blog-entry-title {
  max-width: 920px;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.blog-entry-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}
.blog-entry-excerpt {
  max-width: 820px;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.7;
}
.blog-entry-summary:hover .blog-entry-toggle {
  background: #fff;
  color: #000;
}
.blog-entry[open] .blog-entry-toggle { transform: rotate(45deg); }
.blog-entry-content {
  border-top: 1px solid var(--line-soft);
  animation: blog-entry-in 0.28s ease both;
}
@keyframes blog-entry-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.article { width: min(100% - 48px, 820px); margin: 0 auto; padding: 150px 0 100px; }
.article-header { padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.article-title { margin: 16px 0 20px; font-size: clamp(2.55rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -0.05em; }
.article-excerpt { color: var(--muted-strong); font-size: 1.14rem; line-height: 1.7; }
.article-body { padding-top: 42px; }
.article-body h2 { margin: 42px 0 14px; font-size: clamp(1.65rem, 3.4vw, 2.55rem); line-height: 1.15; }
.article-body h3 { margin: 32px 0 12px; font-size: 1.35rem; }
.article-body p,
.article-body li { color: #d3dade; font-size: 1.03rem; line-height: 1.82; }
.article-body ul { padding-left: 24px; }
.article-error { padding: 180px 24px 100px; text-align: center; }

.editor-page { width: min(100% - 48px, 980px); margin: 0 auto; padding: 130px 0 90px; }
.editor-note { margin: 20px 0 30px; padding: 18px 20px; border: 1px solid rgba(154,220,244,0.24); border-radius: 14px; background: rgba(154,220,244,0.055); color: var(--muted-strong); line-height: 1.65; }
.status { min-height: 1.5em; color: var(--accent-strong); font-size: 0.9rem; }

.cta-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: clamp(28px, 5vw, 52px); border: 1px solid rgba(154,220,244,0.24); border-radius: var(--radius); background: radial-gradient(circle at 100% 0%, rgba(154,220,244,0.13), transparent 42%), rgba(255,255,255,0.035); }
.cta-band h2 { margin: 0 0 10px; font-size: clamp(1.7rem, 3.5vw, 3rem); letter-spacing: -0.035em; }
.cta-band p { margin: 0; max-width: 720px; color: var(--muted-strong); line-height: 1.7; }

.site-footer { padding: 40px 0; border-top: 1px solid var(--line-soft); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-copy { margin: 0; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.08em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted-strong); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .nav-dropdown { display: none; }
  .menu-button { display: inline-flex; }
  .split,
  .split.reverse,
  .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: initial; }
  .grid-3,
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .header-inner,
  .mobile-nav,
  .hero-inner,
  .section-inner,
  .footer-inner,
  .article,
  .editor-page { width: min(100% - 32px, var(--max)); }
  .hero { min-height: 84vh; padding-bottom: 58px; }
  .hero.compact { min-height: 62vh; }
  .display-title { font-size: clamp(2.55rem, 14vw, 4.3rem); }
  .grid-2,
  .grid-3,
  .team-grid,
  .blog-grid,
  .metric-grid,
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .split-media,
  .split-media img { min-height: 300px; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band .button { width: 100%; }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 100%; }
  .blog-entry-summary { padding: 24px 20px; }
  .blog-entry-heading { grid-template-columns: minmax(0, 1fr) 40px; gap: 14px; }
  .blog-entry-toggle { width: 40px; height: 40px; font-size: 1.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
