:root {
  color-scheme: dark;
  --navy-950: #061321;
  --navy-900: #0a1c31;
  --navy-800: #102943;
  --green: #5dcc55;
  --green-light: #82ea72;
  --paper: #f4f6f0;
  --ink: #f7faf6;
  --muted: #b7c4cd;
  --dark-text: #07192c;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(7, 25, 44, 0.16);
  --max: 74rem;
  --radius: 0.65rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 20rem;
  background: var(--navy-950);
  color: var(--ink);
  font-family: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

figure { margin: 0; }

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(93, 204, 85, 0.98);
  color: var(--dark-text);
  border-bottom: 1px solid rgba(7, 25, 44, 0.18);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled { box-shadow: 0 0.75rem 2.5rem rgba(2, 11, 19, 0.2); }

.header-inner {
  display: grid;
  width: min(calc(100% - 3rem), var(--max));
  min-height: 4.1rem;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.brand { display: block; width: fit-content; }

.brand-art {
  position: relative;
  display: block;
  overflow: hidden;
  width: 13.75rem;
  line-height: 0;
}

.brand-art img { width: 100%; height: auto; }

.brand-art::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18%;
  height: 31%;
  background: var(--green);
  content: "";
}

.desktop-nav {
  display: flex;
  gap: 1.3rem;
  align-items: center;
}

.desktop-nav a {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible { opacity: 0.64; }

.header-cta {
  justify-self: end;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: var(--dark-text);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  padding: 6.6rem 1.5rem 0;
  background:
    radial-gradient(circle at 79% 22%, rgba(93, 204, 85, 0.13), transparent 31rem),
    linear-gradient(120deg, var(--navy-900), var(--navy-950) 70%);
}

.hero-grid {
  display: grid;
  width: min(100%, var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(25rem, 0.86fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.45rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lead {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-top: 1.25rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible,
.text-link:focus-visible,
.header-cta:focus-visible { outline: 3px solid currentColor; outline-offset: 3px; }
.button-primary { background: var(--green); color: var(--dark-text); }
.button-primary:hover { background: var(--green-light); }
.button-dark { background: var(--dark-text); color: var(--ink); }

.text-link {
  color: var(--green-light);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-note { margin: 0.85rem 0 0; color: #8195a5; font-size: 0.76rem; }

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(130, 234, 114, 0.34);
  border-radius: var(--radius);
  background: var(--navy-800);
  box-shadow: 1rem 1rem 0 rgba(93, 204, 85, 0.08);
}

.hero-media picture {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-media figcaption {
  display: flex;
  justify-content: space-between;
  padding: 0.78rem 1rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-media figcaption span { color: var(--green-light); font-weight: 800; text-transform: uppercase; }

.hero-stats {
  display: grid;
  width: min(100%, var(--max));
  margin: 2rem auto 0;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.hero-stats div { padding: 0.95rem 1.5rem 1.1rem 0; }
.hero-stats div + div { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.hero-stats strong { display: block; color: var(--green-light); font-size: clamp(1.35rem, 2.4vw, 2rem); letter-spacing: -0.045em; line-height: 1; }
.hero-stats span { display: block; margin-top: 0.45rem; color: var(--muted); font-size: 0.72rem; line-height: 1.35; }

.section { padding: clamp(4.6rem, 8vw, 7rem) 1.5rem; }
.section > * { width: min(100%, var(--max)); margin-right: auto; margin-left: auto; }
.section-heading { margin-bottom: clamp(2.3rem, 4vw, 3.5rem); }
.section-heading .eyebrow { margin-bottom: 0.75rem; }

.section h2,
.proposal-builder h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(19rem, 0.65fr);
  gap: 3rem;
  align-items: end;
}

.split-heading > p {
  max-width: 35rem;
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 0.98rem;
  text-wrap: pretty;
}

.insights { background: var(--paper); color: var(--dark-text); }
.insights .eyebrow { color: #277e34; }
.insights .split-heading > p { color: #53616b; }

.insight-browser { overflow: hidden; border: 1px solid var(--dark-line); border-radius: var(--radius); background: #fff; }
.insight-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--dark-line); }
.insight-tabs button { display: flex; min-height: 3.7rem; align-items: center; gap: 0.75rem; padding: 0.8rem 1rem; border: 0; border-right: 1px solid var(--dark-line); background: transparent; color: #5b6872; cursor: pointer; font: inherit; font-size: 0.76rem; font-weight: 800; text-align: left; }
.insight-tabs button:last-child { border-right: 0; }
.insight-tabs button span { color: #2e8b3c; font-size: 0.65rem; }
.insight-tabs button[aria-selected="true"] { background: var(--green); color: var(--dark-text); }
.insight-tabs button[aria-selected="true"] span { color: var(--dark-text); }
.insight-tabs button:focus-visible,
.ecosystem-nodes button:focus-visible { position: relative; z-index: 1; outline: 3px solid #1f8734; outline-offset: -3px; }

.insight-panel { display: none; min-height: 13.5rem; grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1.2fr); gap: 2.5rem; align-items: center; padding: clamp(1.5rem, 3.2vw, 2.6rem); }
.insight-panel.is-active { display: grid; }
.insight-panel h3 { max-width: 24ch; margin: 0.35rem 0 0; font-size: clamp(1.25rem, 2.2vw, 1.8rem); letter-spacing: -0.035em; line-height: 1.12; }
.insight-panel > div:first-child > p:last-child { max-width: 36rem; margin: 0.7rem 0 0; color: #5b6872; font-size: 0.84rem; }
.panel-label { margin: 0; color: #2b8239; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.insight-quote { margin: 0; color: #237b31; font-size: clamp(1.7rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -0.055em; line-height: 1; }
.insight-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.insight-metrics-two { grid-template-columns: repeat(2, 1fr); }
.insight-metrics p { display: flex; min-height: 7.25rem; flex-direction: column; justify-content: center; margin: 0; padding: 1rem; }
.insight-metrics p + p { border-left: 1px solid var(--dark-line); }
.insight-metrics strong { color: #237b31; font-size: clamp(1.55rem, 3vw, 2.35rem); letter-spacing: -0.055em; line-height: 1; }
.insight-metrics span { margin-top: 0.45rem; color: #5b6872; font-size: 0.69rem; line-height: 1.35; }

.ecosystem { background: #0c2239; }
.ecosystem-browser { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(4, 17, 29, 0.35); }
.ecosystem-nodes { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.ecosystem-nodes::before { position: absolute; top: 2.25rem; right: 12.5%; left: 12.5%; height: 1px; background: rgba(130, 234, 114, 0.28); content: ""; }
.ecosystem-nodes button { position: relative; display: grid; min-height: 7rem; place-items: center; align-content: center; gap: 0.18rem; padding: 0.8rem; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; font: inherit; text-align: center; }
.ecosystem-nodes button:last-child { border-right: 0; }
.ecosystem-nodes button > span { position: relative; z-index: 1; display: grid; width: 2.9rem; height: 2.9rem; margin-bottom: 0.35rem; place-items: center; border: 1px solid rgba(130, 234, 114, 0.5); border-radius: 50%; background: #0c2239; }
.ecosystem-nodes button > span img { width: 1.25rem; height: 1.25rem; object-fit: contain; filter: invert(92%) sepia(17%) saturate(1444%) hue-rotate(52deg) brightness(102%); }
.ecosystem-nodes button strong { font-size: 0.78rem; }
.ecosystem-nodes button small { color: #8fa2b1; font-size: 0.62rem; }
.ecosystem-nodes button[aria-selected="true"] > span { border-color: var(--green); background: var(--green); }
.ecosystem-nodes button[aria-selected="true"] > span img { filter: none; }
.ecosystem-nodes button[aria-selected="true"] strong { color: var(--green-light); }

.ecosystem-panel { display: none; min-height: 12rem; grid-template-columns: minmax(13rem, 0.42fr) minmax(0, 1fr); gap: 2rem; align-items: center; padding: 1.35rem; }
.ecosystem-panel.is-active { display: grid; }
.ecosystem-panel-copy span { color: var(--green-light); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.ecosystem-panel-copy p { max-width: 25rem; margin: 0.65rem 0 0; color: var(--muted); font-size: 0.82rem; }
.ecosystem-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
.ecosystem-links-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ecosystem-links a { display: grid; grid-template-columns: 4.8rem 1fr auto; gap: 0.8rem; align-items: center; min-height: 5.6rem; padding: 0.6rem; border: 1px solid var(--line); border-radius: 0.45rem; background: rgba(255, 255, 255, 0.035); text-decoration: none; transition: border-color 160ms ease, transform 160ms ease; }
.ecosystem-links a:hover { border-color: rgba(130, 234, 114, 0.65); transform: translateY(-2px); }
.ecosystem-links a:focus-visible { outline: 3px solid var(--green-light); outline-offset: 3px; }
.ecosystem-links a > strong { font-size: 0.76rem; line-height: 1.25; }
.ecosystem-links a > small { color: var(--green-light); font-size: 0.61rem; font-weight: 700; text-align: right; }
.logo-surface { position: relative; display: grid; overflow: hidden; width: 4.8rem; height: 3.9rem; place-items: center; padding: 0.5rem; border-radius: 0.32rem; }
.logo-surface.light { background: #fff; }
.logo-surface.dark { background: #0b1830; }
.logo-surface img { width: 100%; height: 100%; object-fit: contain; }
.wordmark-surface::after { position: absolute; right: 0; bottom: 0; width: 22%; height: 34%; background: #fff; content: ""; }
.text-logo { color: var(--green-light); font-size: 1.3rem; font-weight: 900; letter-spacing: -0.08em; }

.profile-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.profile-links .profile-card { grid-template-columns: 3.45rem minmax(0, 1fr) auto; min-height: 4.75rem; }
.profile-avatar { display: block; overflow: hidden; width: 3.45rem; height: 3.45rem; border: 1px solid rgba(130, 234, 114, 0.34); border-radius: 50%; background: #fff; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-copy { display: flex; min-width: 0; flex-direction: column; gap: 0.16rem; }
.profile-copy strong { overflow: hidden; font-size: 0.76rem; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.profile-copy small { overflow: hidden; color: #8fa2b1; font-size: 0.62rem; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.card-arrow { color: var(--green-light); font-size: 0.78rem; font-weight: 800; }

.competition-links { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.competition-links a { position: relative; grid-template-columns: 3.65rem minmax(0, 1fr); gap: 0.65rem; min-height: 5rem; padding-right: 1.35rem; }
.competition-links .logo-surface { width: 3.65rem; height: 3.65rem; padding: 0.38rem; }
.competition-links a > small { position: absolute; top: 0.55rem; right: 0.55rem; }
.competition-links a > strong { font-size: 0.7rem; }

.press-links { display: grid; overflow-x: auto; grid-auto-columns: minmax(14rem, 1fr); grid-auto-flow: column; gap: 0.7rem; padding-bottom: 0.35rem; scrollbar-color: rgba(130, 234, 114, 0.45) transparent; scrollbar-width: thin; }
.press-links a { display: grid; min-height: 5.15rem; grid-template-columns: 2.7rem minmax(0, 1fr) auto; gap: 0.7rem; align-items: center; padding: 0.65rem; border: 1px solid var(--line); border-radius: 0.45rem; background: rgba(255, 255, 255, 0.035); color: var(--ink); text-decoration: none; transition: border-color 160ms ease, transform 160ms ease; }
.press-links a:hover { border-color: rgba(130, 234, 114, 0.65); transform: translateY(-2px); }
.press-links a:focus-visible { outline: 3px solid var(--green-light); outline-offset: 3px; }
.press-links a > strong { font-size: 0.7rem; line-height: 1.28; }
.press-links a > span:last-child { color: var(--green-light); font-size: 0.75rem; font-weight: 800; }
.press-source { display: grid; overflow: hidden; width: 2.7rem; height: 2.7rem; place-items: center; padding: 0.35rem; border-radius: 50%; background: #fff; }
.press-source img { width: 100%; height: 100%; object-fit: contain; }
.press-source.publisher-avatar { padding: 0; }
.press-source.publisher-avatar img { object-fit: cover; }

.assets { background: var(--navy-900); }

.inventory-accordion { border-top: 1px solid var(--line); }

.inventory-accordion details { border-bottom: 1px solid var(--line); }

.inventory-accordion summary {
  display: grid;
  min-height: 5.1rem;
  grid-template-columns: 3.6rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0;
  cursor: pointer;
  list-style: none;
}

.inventory-accordion summary::-webkit-details-marker { display: none; }
.inventory-accordion summary:focus-visible { outline: 3px solid var(--green-light); outline-offset: 4px; }
.inventory-number { color: var(--green-light); font-size: 0.7rem; font-weight: 800; }
.inventory-copy { display: grid; grid-template-columns: minmax(11rem, 0.55fr) minmax(16rem, 1fr); gap: 1.25rem; align-items: center; }
.inventory-copy strong { font-size: 1rem; line-height: 1.25; }
.inventory-copy small { color: var(--muted); font-size: 0.78rem; line-height: 1.4; }

.inventory-trigger { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--green-light); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.inventory-trigger i { position: relative; display: block; width: 1.8rem; height: 1.8rem; border: 1px solid rgba(130, 234, 114, 0.45); border-radius: 50%; }
.inventory-trigger i::before,
.inventory-trigger i::after { position: absolute; top: 50%; left: 50%; width: 0.65rem; height: 1px; background: currentColor; content: ""; transform: translate(-50%, -50%); }
.inventory-trigger i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 160ms ease; }
.inventory-accordion details[open] .inventory-trigger i::after { transform: translate(-50%, -50%) rotate(0); }

.inventory-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0.25rem 0 1.2rem 4.6rem;
}

.inventory-examples figure { overflow: hidden; border: 1px solid var(--line); border-radius: 0.45rem; background: rgba(255, 255, 255, 0.035); }
.inventory-examples img { width: 100%; height: 8.6rem; object-fit: cover; background: #050c13; }
.inventory-examples .portrait-example img { object-position: center 24%; }
.inventory-examples figcaption { padding: 0.6rem 0.7rem 0.7rem; color: #d8e0e5; font-size: 0.7rem; font-weight: 700; }

.section-action {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-action p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.calendar { background: #0c2239; }
.calendar-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.calendar-grid > article { padding: 1.45rem 1.5rem 1.55rem 0; }
.calendar-grid > article + article { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.calendar-grid > article > span { color: var(--green-light); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; }
.calendar-grid > article > strong { display: block; margin-top: 0.45rem; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.05em; line-height: 1; }
.calendar-grid > article > p { margin: 0.6rem 0 0; color: var(--muted); font-size: 0.84rem; }
.calendar-timeline { grid-column: 1 / -1; border-top: 1px solid var(--line); }
.schedule-row { display: grid; grid-template-columns: 6.4rem minmax(0, 1fr); }
.schedule-row + .schedule-row { border-top: 1px solid var(--line); }
.schedule-year { display: flex; min-width: 0; padding: 0.95rem 1rem 0.9rem 0; border-right: 1px solid var(--line); flex-direction: column; justify-content: center; }
.schedule-year strong { margin: 0; color: var(--green-light); font-size: 1.25rem; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.schedule-year span { margin-top: 0.42rem; color: var(--muted); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.03em; }
.schedule-events { display: grid; min-width: 0; margin: 0; padding: 0; list-style: none; }
.schedule-events-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.schedule-events-six { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.schedule-events li { position: relative; display: flex; min-width: 0; min-height: 5.25rem; padding: 0.85rem 0.75rem 0.8rem; flex-direction: column; justify-content: center; }
.schedule-events li + li { border-left: 1px solid var(--line); }
.schedule-events li::before { position: absolute; top: -1px; left: 0.75rem; width: 1.65rem; height: 2px; background: var(--green-light); content: ""; }
.schedule-date { color: var(--green-light); font-size: 0.875rem; font-weight: 800; letter-spacing: 0.02em; line-height: 1.2; font-variant-numeric: tabular-nums; }
.schedule-events b { overflow-wrap: anywhere; margin-top: 0.35rem; color: var(--ink); font-size: 0.875rem; line-height: 1.2; }
.schedule-events small { margin-top: 0.22rem; color: var(--muted); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em; line-height: 1.2; }
.calendar-footnote { margin: 0; padding: 0.75rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.74rem; }

.cases { background: var(--paper); color: var(--dark-text); }
.cases .eyebrow { color: #277e34; }
.cases .split-heading > p { color: #53616b; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.case-grid figure { overflow: hidden; border: 1px solid var(--dark-line); border-radius: var(--radius); background: white; }
.case-grid img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.case-grid figcaption { display: flex; padding: 0.9rem 1rem 1rem; flex-direction: column; gap: 0.2rem; }
.case-grid strong { font-size: 0.93rem; }
.case-grid span { color: #5d6972; font-size: 0.74rem; }

.proposal-builder {
  padding: clamp(3.5rem, 6vw, 5.2rem) 1.5rem;
  background: var(--green);
  color: var(--dark-text);
}

.proposal-builder-inner { width: min(100%, var(--max)); margin: 0 auto; }
.proposal-builder .eyebrow { margin-bottom: 0.65rem; color: var(--dark-text); }
.proposal-builder h2 { max-width: 19ch; font-size: clamp(1.9rem, 3.3vw, 2.8rem); }

.calculator-heading {
  display: grid;
  margin-bottom: 1.35rem;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: 2.5rem;
  align-items: end;
}

.calculator-heading > p { max-width: 33rem; margin: 0 0 0.2rem; font-size: 0.88rem; }

.calculator-panel {
  overflow: hidden;
  border: 1px solid rgba(7, 25, 44, 0.28);
  border-radius: var(--radius);
  background: #fff;
  color: var(--dark-text);
  box-shadow: 0.8rem 0.8rem 0 rgba(7, 25, 44, 0.12);
  color-scheme: light;
}

.plan-options {
  display: grid;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plan-option {
  position: relative;
  display: flex;
  min-height: 3.7rem;
  padding: 0.7rem 1rem;
  border-right: 1px solid var(--dark-line);
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.plan-option:last-child { border-right: 0; }
.plan-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.plan-option span { font-size: 0.82rem; font-weight: 850; line-height: 1.1; }
.plan-option small { margin-top: 0.28rem; color: #63717b; font-size: 0.62rem; line-height: 1.1; }
.plan-option:has(input:checked) { background: var(--navy-900); color: var(--ink); }
.plan-option:has(input:checked) small { color: var(--green-light); }
.plan-option:has(input:focus-visible) { z-index: 1; outline: 3px solid #267d34; outline-offset: -3px; }
.plan-option.is-sold { background: #eef0eb; cursor: not-allowed; }
.plan-option.is-sold span { color: #7a8387; text-decoration: line-through; text-decoration-thickness: 1px; }
.plan-option.is-sold small { width: fit-content; padding: 0.15rem 0.32rem; border-radius: 999px; background: #dfe2dc; color: #626b70; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }

.calculator-main {
  display: grid;
  min-height: 15.4rem;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
}

.calculator-config { min-width: 0; padding: 1.35rem 1.5rem; }
.calculator-kicker { margin: 0 0 0.38rem; color: #287c35; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.quota-view h3 { margin: 0; font-size: 1.55rem; letter-spacing: -0.035em; line-height: 1.1; }
.quota-description { max-width: 38rem; margin: 0.55rem 0 0; color: #59666f; font-size: 0.82rem; }
.quota-coverage { display: flex; width: fit-content; margin: 0.85rem 0 0; align-items: baseline; gap: 0.55rem; color: #42515b; font-size: 0.67rem; }
.quota-coverage span { color: #287c35; font-weight: 850; letter-spacing: 0.05em; text-transform: uppercase; }
.quota-coverage strong { font-size: 0.7rem; }

.quota-highlights { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.1rem; }
.quota-highlights span { padding: 0.4rem 0.55rem; border: 1px solid var(--dark-line); border-radius: 999px; background: #f6f7f3; color: #324351; font-size: 0.65rem; font-weight: 700; }

.calculator-fields { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(8rem, 0.85fr) minmax(7rem, 0.55fr); gap: 0.65rem; }
.calculator-fields label { display: flex; min-width: 0; flex-direction: column; gap: 0.35rem; }
.calculator-fields label > span:first-child { color: #44525c; font-size: 0.65rem; font-weight: 800; }
.calculator-fields input,
.calculator-fields select,
.asset-quantity {
  width: 100%;
  min-height: 2.7rem;
  border: 1px solid rgba(7, 25, 44, 0.23);
  border-radius: 0.34rem;
  background: #fff;
  color: var(--dark-text);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 650;
}
.calculator-fields input { padding: 0.58rem 0.65rem; }
.calculator-fields select { padding: 0.58rem 1.9rem 0.58rem 0.65rem; }
.calculator-fields input:focus,
.calculator-fields select:focus,
.asset-quantity:focus { border-color: #277e34; outline: 3px solid rgba(93, 204, 85, 0.24); }
.currency-input { position: relative; display: block; }
.currency-input i { position: absolute; top: 50%; left: 0.65rem; color: #63717b; font-size: 0.7rem; font-style: normal; font-weight: 800; transform: translateY(-50%); }
.currency-input input { padding-left: 2.25rem; }
.field-help { margin: 0.58rem 0 0; color: #68747c; font-size: 0.66rem; line-height: 1.4; }
.field-help strong { color: #287c35; }

.asset-picker { margin-top: 0.9rem; border-top: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.asset-picker summary { display: grid; min-height: 2.9rem; grid-template-columns: 1fr auto 1.65rem; gap: 0.6rem; align-items: center; cursor: pointer; list-style: none; }
.asset-picker summary::-webkit-details-marker { display: none; }
.asset-picker summary > span { font-size: 0.74rem; font-weight: 850; }
.asset-picker summary > small { color: #65727b; font-size: 0.62rem; font-weight: 700; }
.asset-picker summary > i { position: relative; width: 1.6rem; height: 1.6rem; border: 1px solid var(--dark-line); border-radius: 50%; }
.asset-picker summary > i::before,
.asset-picker summary > i::after { position: absolute; top: 50%; left: 50%; width: 0.55rem; height: 1px; background: var(--dark-text); content: ""; transform: translate(-50%, -50%); }
.asset-picker summary > i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 160ms ease; }
.asset-picker[open] summary > i::after { transform: translate(-50%, -50%); }
.asset-picker summary:focus-visible { outline: 3px solid #277e34; outline-offset: 2px; }
.asset-picker-body { padding: 0.8rem 0 0.4rem; border-top: 1px solid var(--dark-line); }
.asset-list { display: grid; overflow-y: auto; max-height: 18rem; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.45rem; padding-right: 0.35rem; scrollbar-color: rgba(7, 25, 44, 0.3) transparent; scrollbar-width: thin; }
.asset-row { display: grid; min-width: 0; min-height: 3.5rem; padding: 0.55rem 0.6rem; border: 1px solid var(--dark-line); border-radius: 0.4rem; background: #f7f8f4; grid-template-columns: auto minmax(0, 1fr) auto; gap: 0.55rem; align-items: center; }
.asset-row:has(input[type="checkbox"]:checked) { border-color: #43a842; background: #f0faed; }
.asset-row > input[type="checkbox"] { width: 1rem; height: 1rem; margin: 0; accent-color: #277e34; }
.asset-copy { display: flex; min-width: 0; flex-direction: column; }
.asset-copy strong { font-size: 0.66rem; line-height: 1.25; }
.asset-copy small { margin-top: 0.16rem; color: #64717a; font-size: 0.57rem; line-height: 1.2; }
.asset-quantity { width: 3.2rem; min-height: 2rem; padding: 0.3rem; text-align: center; }
.asset-quantity:disabled { background: #eceeea; color: #8a9296; }
.asset-scope { color: #617079; font-size: 0.56rem; font-weight: 700; white-space: nowrap; }
.asset-picker-body > p { margin: 0.65rem 0 0; color: #68747c; font-size: 0.6rem; }

.calculator-result { display: flex; min-width: 0; padding: 1.25rem 1.4rem; background: var(--navy-900); color: var(--ink); flex-direction: column; justify-content: center; }
.result-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.result-heading > span { padding: 0.25rem 0.42rem; border-radius: 0.25rem; background: var(--green); color: var(--dark-text); font-size: 0.63rem; font-weight: 850; letter-spacing: 0.05em; text-transform: uppercase; }
.result-heading > small { color: #91a2af; font-size: 0.58rem; }
.result-metrics { display: grid; margin-top: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.result-metrics p { min-width: 0; margin: 0; padding: 0.9rem 0.55rem 0.9rem 0; }
.result-metrics p + p { padding-left: 0.55rem; border-left: 1px solid var(--line); }
.result-metrics span { display: block; color: #91a2af; font-size: 0.58rem; }
.result-metrics strong { display: block; overflow-wrap: anywhere; margin-top: 0.22rem; color: var(--green-light); font-size: clamp(1rem, 1.7vw, 1.35rem); letter-spacing: -0.035em; line-height: 1.05; }
.result-objective { display: flex; margin: 0.9rem 0 0; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.result-objective span { color: #91a2af; font-size: 0.61rem; }
.result-objective strong { max-width: 15rem; font-size: 0.68rem; line-height: 1.35; text-align: right; }
.result-reach { margin: 0.7rem 0 0; color: #c8d2d9; font-size: 0.64rem; }

.calculator-action { display: flex; min-height: 4.1rem; padding: 0.7rem 0.85rem 0.7rem 1.5rem; border-top: 1px solid var(--dark-line); align-items: center; justify-content: space-between; gap: 1.5rem; background: #f1f3ee; }
.calculator-action p { margin: 0; color: #485660; font-size: 0.7rem; font-weight: 650; }
.calculator-action .button { min-width: 13rem; }
.calculator-disclaimer { max-width: 58rem; margin: 1.1rem 0 0; color: rgba(7, 25, 44, 0.76); font-size: 0.64rem; }

.brand-presence { padding: 1.2rem 1.5rem 1.45rem; border-top: 1px solid var(--dark-line); background: #f7f8f4; }
.brand-presence-heading { display: flex; align-items: end; justify-content: space-between; gap: 1.25rem; }
.brand-presence-heading .calculator-kicker { margin-bottom: 0.32rem; }
.brand-presence-heading h3 { margin: 0; font-size: 1rem; letter-spacing: -0.025em; }
.brand-presence-heading > p { max-width: 29rem; margin: 0; color: #5c6870; font-size: 0.68rem; line-height: 1.45; text-align: right; }
.brand-presence-grid { display: grid; margin-top: 0.9rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 0.65rem; }
.brand-placement-card { overflow: hidden; min-width: 0; padding: 0; border: 1px solid rgba(7, 25, 44, 0.16); border-radius: 0.45rem; appearance: none; background: #fff; color: inherit; cursor: zoom-in; font: inherit; text-align: left; transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease; }
.brand-placement-card:hover { border-color: #287c35; box-shadow: 0 0.45rem 1rem rgba(7, 25, 44, 0.12); transform: translateY(-2px); }
.brand-placement-card:focus-visible { outline: 3px solid #287c35; outline-offset: 2px; }
.brand-placement-card img { width: 100%; height: 9rem; object-fit: contain; border-bottom: 1px solid rgba(7, 25, 44, 0.16); background: #e9eeea; }
.brand-placement-card > div { padding: 0.65rem 0.7rem 0.75rem; }
.brand-placement-card span { display: block; margin-bottom: 0.22rem; color: #287c35; font-size: 0.56rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.brand-placement-card strong { display: block; color: var(--dark-text); font-size: 0.71rem; line-height: 1.25; }
.brand-placement-card p { margin: 0.25rem 0 0; color: #627079; font-size: 0.61rem; line-height: 1.35; }
.brand-presence-empty { width: 100%; padding: 1rem; border: 1px dashed rgba(7, 25, 44, 0.24); margin: 0; color: #64717a; font-size: 0.7rem; text-align: center; }

.brand-gallery { width: min(94vw, 68rem); max-width: none; padding: 0; border: 0; border-radius: 0.7rem; background: transparent; color: var(--dark-text); box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.52); }
.brand-gallery::backdrop { background: rgba(2, 11, 19, 0.78); backdrop-filter: blur(4px); }
.brand-gallery-panel { position: relative; display: grid; overflow: hidden; max-height: min(88vh, 52rem); grid-template-columns: minmax(0, 1.65fr) minmax(15rem, 0.65fr); border-radius: inherit; background: #f7f8f4; }
.brand-gallery-panel > img { width: 100%; height: min(88vh, 52rem); object-fit: contain; background: var(--navy-900); }
.brand-gallery-copy { display: flex; padding: clamp(1.25rem, 3vw, 2.2rem); padding-bottom: 4.9rem; flex-direction: column; justify-content: center; }
.brand-gallery-copy span { color: #287c35; font-size: 0.64rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.brand-gallery-copy h3 { margin: 0.45rem 0 0; font-size: clamp(1.25rem, 2.2vw, 1.85rem); letter-spacing: -0.04em; line-height: 1.05; }
.brand-gallery-copy p { margin: 0.8rem 0 0; color: #5c6870; font-size: 0.8rem; line-height: 1.5; }
.brand-gallery-close { position: absolute; z-index: 1; top: 0.65rem; right: 0.65rem; display: grid; width: 2.25rem; height: 2.25rem; padding: 0; border: 1px solid rgba(255, 255, 255, 0.38); border-radius: 50%; background: rgba(7, 25, 44, 0.78); color: #fff; cursor: pointer; font: 1.7rem/1 Arial, sans-serif; place-items: center; }
.brand-gallery-close:hover { background: var(--green); color: var(--dark-text); }
.brand-gallery-close:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.brand-gallery-nav { position: absolute; z-index: 1; bottom: 1.3rem; display: grid; width: 2rem; height: 2rem; padding: 0; border: 1px solid rgba(7, 25, 44, 0.2); border-radius: 50%; background: var(--navy-900); color: #fff; cursor: pointer; place-items: center; }
.brand-gallery-nav[hidden] { display: none; }
.brand-gallery-nav svg { display: block; width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.5; }
.brand-gallery-nav:hover { background: var(--green); color: var(--dark-text); }
.brand-gallery-nav:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.brand-gallery-prev { left: calc(85.87% - 5rem); }
.brand-gallery-next { right: auto; left: calc(85.87% + 3rem); }
.brand-gallery-count { position: absolute; z-index: 1; bottom: 1.72rem; left: 85.87%; margin: 0; color: #64717a; font-size: 0.62rem; font-weight: 750; transform: translateX(-50%); }

footer {
  display: grid;
  width: min(calc(100% - 3rem), var(--max));
  min-height: 6rem;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.74rem;
}

footer .brand-art { width: 13rem; }
footer .brand-art img { filter: brightness(0) invert(1); }
footer .brand-art::after { background: var(--navy-950); }
footer p { margin: 0; text-align: center; }
footer a { justify-self: end; color: var(--green-light); font-weight: 700; text-decoration: none; }

.mobile-cta { display: none; }

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { max-width: 45rem; }
  .hero-media { max-width: 43rem; }
  .insight-panel { grid-template-columns: 1fr; gap: 1.5rem; }
  .ecosystem-panel { grid-template-columns: 1fr; gap: 1rem; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .case-grid figure:last-child { grid-column: 1 / -1; max-width: calc(50% - 0.5rem); }
  .calculator-main { grid-template-columns: 1fr; }
  .calculator-result { min-height: 13rem; }
  .brand-presence-grid { grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
}

@media (max-width: 700px) {
  body { padding-bottom: 4.4rem; }
  .header-inner { width: calc(100% - 2rem); min-height: 4rem; }
  .brand-art { width: 12.4rem; }
  .header-cta { display: none; }
  .hero { padding: 6rem 1rem 0; }
  h1 { max-width: 13ch; font-size: clamp(2.25rem, 11vw, 3.15rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-media { box-shadow: 0.8rem 0.8rem 0 rgba(93, 204, 85, 0.08); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
  .hero-stats div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .hero-stats div:nth-child(4) { border-top: 1px solid var(--line); }
  .section { padding: 4rem 1rem; }
  .split-heading { grid-template-columns: 1fr; gap: 1.25rem; }
  .section h2, .proposal-builder h2 { font-size: clamp(1.85rem, 8.5vw, 2.65rem); }
  .proposal-builder h2 { font-size: clamp(1.65rem, 7.5vw, 2.2rem); }
  .insight-browser { overflow: visible; border: 0; background: transparent; }
  .insight-tabs { overflow-x: auto; grid-template-columns: repeat(4, minmax(9.5rem, 1fr)); border: 1px solid var(--dark-line); border-radius: 0.45rem 0.45rem 0 0; scrollbar-width: thin; }
  .insight-panel { min-height: 21rem; padding: 1.25rem; border: 1px solid var(--dark-line); border-top: 0; border-radius: 0 0 0.45rem 0.45rem; background: #fff; }
  .insight-metrics { grid-template-columns: 1fr; }
  .insight-metrics-two { grid-template-columns: 1fr 1fr; }
  .insight-metrics p { min-height: 5.5rem; }
  .insight-metrics:not(.insight-metrics-two) p + p { border-top: 1px solid var(--dark-line); border-left: 0; }
  .ecosystem-browser { overflow: visible; border: 0; background: transparent; }
  .ecosystem-nodes { overflow-x: auto; grid-template-columns: repeat(4, minmax(10rem, 1fr)); border: 1px solid var(--line); border-radius: 0.45rem 0.45rem 0 0; scrollbar-width: thin; }
  .ecosystem-nodes::before { display: none; }
  .ecosystem-panel { min-height: 19rem; padding: 1.1rem; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 0.45rem 0.45rem; background: rgba(4, 17, 29, 0.35); }
  .ecosystem-links,
  .ecosystem-links-three { overflow-x: auto; grid-template-columns: repeat(3, minmax(15rem, 1fr)); scrollbar-width: thin; }
  .ecosystem-links:not(.ecosystem-links-three) { grid-template-columns: repeat(2, minmax(15rem, 1fr)); }
  .content-links { grid-template-columns: repeat(3, minmax(14rem, 1fr)); }
  .competition-links { grid-template-columns: repeat(4, minmax(13.5rem, 1fr)); }
  .press-links { grid-auto-columns: minmax(14.5rem, 72vw); }
  .inventory-accordion summary { min-height: 5.5rem; grid-template-columns: 2rem minmax(0, 1fr) auto; gap: 0.65rem; }
  .inventory-copy { grid-template-columns: 1fr; gap: 0.22rem; }
  .inventory-trigger span { display: none; }
  .inventory-examples { overflow-x: auto; grid-template-columns: repeat(3, minmax(14rem, 1fr)); padding-left: 2.65rem; scrollbar-width: thin; }
  .section-action { align-items: flex-start; flex-direction: column; }
  .calendar-grid { grid-template-columns: 1fr; }
  .calendar-grid > article { padding: 1.2rem 0 1.3rem; }
  .calendar-grid > article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .calendar-timeline { grid-column: auto; }
  .schedule-row { grid-template-columns: 1fr; }
  .schedule-year { padding: 0.8rem 0; border-right: 0; border-bottom: 1px solid var(--line); flex-direction: row; align-items: baseline; justify-content: space-between; }
  .schedule-year span { margin-top: 0; }
  .schedule-events-three,
  .schedule-events-six { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .schedule-events li { min-height: 5rem; }
  .schedule-events li:nth-child(odd) { border-left: 0; }
  .schedule-events li:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .calendar-footnote { padding: 0.75rem 0; }
  .case-grid { grid-template-columns: 1fr; }
  .case-grid figure:last-child { grid-column: auto; max-width: none; }
  .proposal-builder { padding: 3.5rem 1rem; }
  .calculator-heading { grid-template-columns: 1fr; gap: 0.9rem; }
  .calculator-heading > p { font-size: 0.8rem; }
  .plan-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plan-option:nth-child(2) { border-right: 0; }
  .plan-option:nth-child(-n + 2) { border-bottom: 1px solid var(--dark-line); }
  .calculator-main { min-height: 0; }
  .calculator-config { padding: 1.1rem; }
  .quota-coverage { align-items: flex-start; flex-direction: column; gap: 0.15rem; }
  .calculator-fields { grid-template-columns: 1fr 1fr; }
  .calculator-fields label:first-child { grid-column: 1 / -1; }
  .asset-list { grid-template-columns: 1fr; }
  .calculator-result { min-height: 12rem; padding: 1.1rem; }
  .result-objective strong { max-width: 12rem; }
  .brand-presence { padding: 1.1rem; }
  .brand-presence-heading { align-items: flex-start; flex-direction: column; gap: 0.45rem; }
  .brand-presence-heading > p { max-width: none; text-align: left; }
  .brand-presence-grid { grid-template-columns: 1fr; }
  .brand-placement-card { display: grid; grid-template-columns: 7.6rem minmax(0, 1fr); }
  .brand-placement-card img { height: 100%; min-height: 7.5rem; border-right: 1px solid rgba(7, 25, 44, 0.16); border-bottom: 0; }
  .brand-gallery { width: min(94vw, 32rem); }
  .brand-gallery-panel { max-height: 88vh; grid-template-columns: 1fr; }
  .brand-gallery-panel > img { height: min(55vh, 25rem); }
  .brand-gallery-copy { padding: 1.15rem 1.2rem 4.4rem; }
  .brand-gallery-prev { bottom: 1rem; left: calc(50% - 5rem); }
  .brand-gallery-next { right: auto; bottom: 1rem; left: calc(50% + 3rem); }
  .brand-gallery-count { bottom: 1.58rem; left: 50%; }
  .calculator-action { padding: 0.9rem 1.1rem; align-items: stretch; flex-direction: column; gap: 0.75rem; }
  .calculator-action .button { width: 100%; }
  footer { width: calc(100% - 2rem); grid-template-columns: 1fr; padding: 1.5rem 0 2rem; text-align: center; }
  footer .brand-art { margin: 0 auto; }
  footer a { justify-self: center; }
  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    border-radius: 0.45rem;
    background: var(--green);
    color: var(--dark-text);
    box-shadow: 0 0.75rem 2rem rgba(2, 11, 19, 0.3);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
