:root {
  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-3: #18181f;
  --panel: #14141c;
  --panel-2: #1a1a24;
  --ink: #f7f2e8;
  --text: #d9d0c0;
  --muted: #a79d8f;
  --line: rgba(247, 242, 232, 0.13);
  --line-strong: rgba(200, 169, 110, 0.36);
  --accent: #c8a96e;
  --accent-2: #e8c98a;
  --accent-dark: #8c6a31;
  --danger: #ef6b3a;
  --green: #65c18c;
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1180px;
  --radius: 8px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(200, 169, 110, 0.14), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(232, 201, 138, 0.08), transparent 26%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.8rem, 6.9vw, 7.6rem);
}

h2 {
  font-size: clamp(2.35rem, 3.8vw, 4.6rem);
}

h3 {
  font-size: clamp(1.35rem, 1.65vw, 2rem);
}

p {
  color: var(--text);
}

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

a:hover {
  color: var(--accent-2);
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100vw - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(232, 201, 138, 0.18), rgba(200, 169, 110, 0.04));
  color: var(--accent-2);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent-2);
}

.nav-cta {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #16120a;
  box-shadow: 0 18px 42px rgba(200, 169, 110, 0.22);
}

.btn-primary:hover {
  color: #0f0d08;
  box-shadow: 0 24px 54px rgba(200, 169, 110, 0.32);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: rgba(200, 169, 110, 0.08);
}

.site-header .btn {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 14px;
}

section {
  position: relative;
  padding: 66px 0;
}

.band {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.deep-band {
  background:
    linear-gradient(180deg, rgba(200, 169, 110, 0.05), rgba(10, 10, 15, 0)),
    var(--bg);
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-bottom: 28px;
}

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

.eyebrow {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  color: var(--text);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.45;
}

.hero {
  min-height: auto;
  padding: 62px 0 68px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: 44px;
}

.hero-home-bg {
  isolation: isolate;
  background: var(--bg);
}

.hero-home-bg .hero-layout {
  display: block;
}

.hero-home-bg .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-home-bg .hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-home-bg .visual-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-home-bg .visual-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 52% center;
  opacity: 0.72;
}

.hero-home-bg .visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.92) 34%, rgba(10, 10, 15, 0.55) 64%, rgba(10, 10, 15, 0.24) 100%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.18), rgba(10, 10, 15, 0.82));
  pointer-events: none;
}

.hero-home-bg .visual-caption {
  display: none;
}

.hero-copy {
  display: grid;
  min-width: 0;
  gap: 22px;
}

.hero-title-stack {
  display: grid;
  gap: 8px;
}

.hero-subline {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.42rem, 1.95vw, 1.95rem);
  font-weight: 900;
  line-height: 1.12;
}

.hero-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  max-width: 800px;
}

.hero-story p {
  color: var(--text);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  line-height: 1.48;
}

.hero-story strong,
.story-card strong,
.premium-card strong {
  color: var(--ink);
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-support {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.source-note,
.source-link {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-visual {
  min-width: 0;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.visual-card.wide img {
  aspect-ratio: 1.25 / 1;
}

.visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 42%, rgba(10, 10, 15, 0.62)),
    radial-gradient(circle at 28% 18%, rgba(232, 201, 138, 0.18), transparent 30%);
  pointer-events: none;
}

.hero-soft-blend {
  isolation: isolate;
  background: var(--bg);
}

.hero-soft-blend .hero-layout {
  display: block;
}

.hero-soft-blend .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-soft-blend .hero-visual {
  position: absolute;
  inset: 0 0 0 46%;
  z-index: 0;
  pointer-events: none;
}

.hero-soft-blend .visual-card {
  position: absolute;
  inset: -30px -50px -30px -100px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-soft-blend .visual-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.hero-soft-blend .visual-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 10, 15, 1) 0%, rgba(10, 10, 15, 0.9) 16%, rgba(10, 10, 15, 0.46) 38%, rgba(10, 10, 15, 0.2) 70%, rgba(10, 10, 15, 0.84) 100%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.86), transparent 18%, transparent 70%, rgba(10, 10, 15, 0.9));
  pointer-events: none;
}

.hero-soft-blend .visual-card::after {
  background:
    radial-gradient(ellipse at center, transparent 34%, rgba(10, 10, 15, 0.22) 62%, rgba(10, 10, 15, 0.92) 100%),
    linear-gradient(180deg, transparent 36%, rgba(10, 10, 15, 0.5));
}

.hero-soft-blend .visual-caption {
  display: none;
}

.visual-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(247, 242, 232, 0.12);
  border-radius: 8px;
  background: rgba(10, 10, 15, 0.76);
  backdrop-filter: blur(12px);
}

.visual-caption span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-caption p {
  color: var(--ink);
  font-weight: 800;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.metric {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.metric strong {
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 500;
  line-height: 0.9;
}

.metric span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.premium-card,
.story-card,
.employee-card,
.timeline-card,
.step,
.calculator-live,
.legal-prose {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
}

.premium-card,
.story-card,
.timeline-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.premium-card h3,
.story-card h3,
.timeline-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(200, 169, 110, 0.28);
  border-radius: 8px;
  color: var(--accent-2);
  background: rgba(200, 169, 110, 0.08);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.impact-block {
  margin-top: 24px;
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: rgba(200, 169, 110, 0.06);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 34px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  min-width: 0;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--accent-2);
  content: "+";
  font-weight: 900;
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
}

.employee-card {
  overflow: hidden;
  padding: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.employee-card:hover,
.employee-card.is-active {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  background: rgba(200, 169, 110, 0.08);
}

.employee-card img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

.employee-body {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.employee-name {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.employee-role {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.employee-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.employee-copy {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.42;
}

.employee-panel {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(200, 169, 110, 0.12), rgba(255, 255, 255, 0.04)),
    var(--panel);
  box-shadow: var(--shadow);
}

.employee-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.5vw, 4rem);
}

.employee-panel #agent-description {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 16px;
  line-height: 1.45;
}

.employee-panel .hero-actions {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-content: flex-end;
}

.research-grid .premium-card {
  padding-top: 26px;
}

.research-stat {
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 6.8rem);
  line-height: 0.9;
}

.calculator-live {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  padding: 28px;
  border-color: var(--line-strong);
  background:
    linear-gradient(135deg, rgba(200, 169, 110, 0.13), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.calculator-controls {
  display: grid;
  gap: 16px;
}

.range-field {
  display: grid;
  gap: 10px;
}

.range-field label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-weight: 900;
}

.range-field output {
  color: var(--accent-2);
}

.range-field input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.calculator-result {
  display: grid;
  gap: 10px;
  align-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.calculator-result strong {
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.8vw, 7.4rem);
  font-weight: 500;
  line-height: 0.9;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-card {
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: start;
}

.time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--accent-2);
  background: rgba(200, 169, 110, 0.08);
  font-weight: 900;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 12px;
}

.step {
  counter-increment: steps;
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px 22px 22px 74px;
}

.step::before {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent);
  color: #15110a;
  content: counter(steps, decimal-leading-zero);
  font-weight: 900;
}

.step h3 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.founding-card,
.final-cta {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3.6vw, 40px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(200, 169, 110, 0.16), rgba(255, 255, 255, 0.04)),
    var(--panel);
  box-shadow: var(--shadow);
}

.final-cta {
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  width: min(100%, 820px);
  margin: 0 auto;
}

.final-cta .lead {
  width: min(100%, 640px);
  margin: 0 auto;
}

.final-cta .hero-actions {
  justify-content: center;
}

.quote-block {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: rgba(200, 169, 110, 0.08);
}

.quote-block p {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.16;
}

.story-break {
  width: 68px;
  height: 1px;
  background: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #07070b;
  color: var(--muted);
}

.footer-shell {
  display: grid;
  gap: 28px;
  padding: 44px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 34px;
}

.footer-brand,
.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.footer-title strong {
  color: var(--ink);
  font-size: 22px;
}

.footer-disclaimer,
.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-links span,
.footer-contact span:first-child {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact {
  color: var(--muted);
  font-style: normal;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-hero {
  padding: 72px 0 36px;
}

.legal-section {
  padding-top: 24px;
}

.legal-prose {
  display: grid;
  gap: 18px;
  padding: 34px;
}

.legal-prose h2,
.legal-prose h3 {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.legal-prose ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--text);
}

.legal-prose a {
  color: var(--accent-2);
  text-decoration: underline;
}

@media (max-width: 1040px) {
  .hero-layout,
  .split,
  .team-layout,
  .calculator-live,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .visual-card.wide img,
  .visual-card img {
    aspect-ratio: 16 / 11;
  }

  .metric-strip,
  .grid-4,
  .employee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .employee-panel {
    position: static;
    grid-template-columns: 1fr;
  }

  .employee-panel #agent-description,
  .employee-panel .hero-actions {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100vw - 48px);
  }

  section {
    padding: 44px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.95rem, 7.8vw, 3.1rem);
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 14px;
    min-height: auto;
    padding: 14px 0 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    font-size: 20px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    width: 100%;
    gap: 16px;
    font-size: 13px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
  }

  .nav-cta .btn {
    width: auto;
    min-height: 40px;
    padding: 10px 14px;
    white-space: nowrap;
  }

  .hero {
    padding: 28px 0 34px;
  }

  .hero-layout {
    gap: 20px;
  }

  .hero-story {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .section-actions .btn {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .employee-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric {
    padding: 18px;
  }

  .metric strong {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .metric span {
    font-size: 12px;
    line-height: 1.3;
  }

  .employee-card {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .employee-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .employee-body {
    align-content: center;
    padding: 12px;
  }

  .employee-copy {
    font-size: 13px;
    line-height: 1.35;
  }

  .employee-panel #agent-description {
    font-size: 15px;
    line-height: 1.4;
  }

  .premium-card,
  .story-card,
  .timeline-card,
  .calculator-live,
  .employee-panel,
  .founding-card,
  .final-cta,
  .legal-prose {
    padding: 18px;
  }

  .timeline-card {
    grid-template-columns: 1fr;
  }

  .time {
    width: fit-content;
    padding: 0 14px;
  }

  .step {
    padding: 58px 18px 18px;
  }

  .step::before {
    top: 18px;
    left: 18px;
  }

  .calculator-result strong {
    font-size: clamp(3rem, 15vw, 5rem);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100vw - 48px), 350px);
    margin-right: auto;
    margin-left: 24px;
  }

  .hero-subline {
    font-size: clamp(1.14rem, 4.6vw, 1.45rem);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100vw - 40px), 350px);
    margin-right: auto;
    margin-left: 20px;
  }

  h1 {
    font-size: clamp(2.32rem, 10.6vw, 3.55rem);
  }

  .brand {
    gap: 8px;
    max-width: 100%;
    font-size: 19px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-mark svg {
    width: 22px;
    height: 22px;
  }

  .nav-cta .btn {
    min-height: 36px;
    padding: 9px 12px;
    font-size: 13px;
  }

  .visual-caption {
    position: static;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
}
