:root {
  --white: #ffffff;
  --gray: #f5f5f5;
  --blue-dark: #1e2e69;
  --blue-light: #357fc4;
  --blue-statement: #143379;
  --blue-statement-video: #132a6c;
  --text: #333333;
  --line: rgba(53, 127, 196, 0.24);
  --line-strong: rgba(30, 46, 105, 0.24);
  --shadow: rgba(30, 46, 105, 0.08);
  --shadow-strong: rgba(30, 46, 105, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 1rem;
  z-index: 1000;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus-visible {
  top: 1rem;
}

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

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6rem 0;
}

[id] {
  scroll-margin-top: 6.5rem;
}

.section-muted {
  background: var(--gray);
}

.section-inverse {
  background: var(--blue-dark);
  color: var(--white);
}

.contour-zone {
  overflow: hidden;
}

.contour-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contour-lines path {
  fill: none;
  stroke: var(--blue-light);
  stroke-width: 1.15;
  opacity: 0.18;
}

.hero .contour-lines path {
  stroke: rgba(255, 255, 255, 0.24);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(53, 127, 196, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(53, 127, 196, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px var(--shadow);
}

.header-shell {
  width: min(100%, calc(100vw - 2.4rem));
  max-width: none;
}

.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.5rem;
  padding: 0.75rem 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo,
.footer-logo {
  height: auto;
}

.header-logo {
  width: clamp(152px, 16vw, 206px);
}

.footer-logo-icon {
  display: none;
  width: 42px;
}

.site-header:not(.is-scrolled) .header-logo {
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.22));
}

.footer-logo-full {
  width: clamp(180px, 18vw, 240px);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0 1rem;
}

.main-nav > a,
.nav-dropdown-toggle,
.footer-links a {
  text-decoration: none;
}

.main-nav > a,
.nav-dropdown-toggle {
  padding: 0.45rem 0.56rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 140ms ease, border-color 140ms ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--blue-light);
  border-color: var(--line-strong);
}

.site-header:not(.is-scrolled) .main-nav > a,
.site-header:not(.is-scrolled) .nav-dropdown-toggle {
  color: var(--white);
  border-color: transparent;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
}

.site-header.is-scrolled .main-nav > a,
.site-header.is-scrolled .nav-dropdown-toggle {
  color: var(--blue-dark);
  text-shadow: none;
}

.site-header:not(.is-scrolled) .main-nav > a:hover,
.site-header:not(.is-scrolled) .main-nav > a:focus-visible,
.site-header:not(.is-scrolled) .nav-dropdown-toggle:hover,
.site-header:not(.is-scrolled) .nav-dropdown-toggle:focus-visible {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.nav-dropdown-toggle::after {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 140ms ease;
}

.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 15.5rem;
  display: grid;
  padding: 0.2rem;
  border: 1px solid var(--line-strong);
  background: var(--white);
  box-shadow: 0 18px 40px var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-submenu a {
  padding: 0.6rem 0.72rem;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: var(--gray);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-ctas {
  display: flex;
  gap: 0.6rem;
  justify-self: end;
}

.header-ctas .btn:hover,
.header-ctas .btn:focus-visible {
  border-color: var(--blue-light);
  background: var(--blue-light);
  color: var(--white);
}

.site-header:not(.is-scrolled) .header-ctas .btn-accent {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.site-header:not(.is-scrolled) .header-ctas .btn-outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: transparent;
}

.site-header:not(.is-scrolled) .header-ctas .btn:hover,
.site-header:not(.is-scrolled) .header-ctas .btn:focus-visible {
  border-color: var(--blue-light);
  background: var(--blue-light);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line-strong);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.2rem;
  height: 2px;
  background: var(--blue-dark);
}

.site-header:not(.is-scrolled) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.site-header:not(.is-scrolled) .nav-toggle span {
  background: var(--white);
}

.hero {
  min-height: 100vh;
  padding: 0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  background: #0b1529;
}

.hero-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(150vw, 280vh);
  height: max(150vh, 92vw);
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.14);
  border: 0;
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 34, 0.74) 0%, rgba(8, 16, 34, 0.5) 34%, rgba(8, 16, 34, 0.22) 64%, rgba(8, 16, 34, 0.36) 100%),
    linear-gradient(180deg, rgba(8, 16, 34, 0.22) 0%, rgba(8, 16, 34, 0.08) 45%, rgba(8, 16, 34, 0.56) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: clamp(5.4rem, 11vh, 7.2rem);
  padding-bottom: 1.4rem;
}

.hero-copy-block {
  max-width: 48rem;
  text-align: left;
}

.hero-overline,
.section-label,
.card-label,
.mono,
.hero-pillars dt,
.blueprint-list {
  font-family: "IBM Plex Mono", monospace;
}

.hero-overline,
.section-label,
.card-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-overline {
  color: rgba(255, 255, 255, 0.9);
}

.section-label,
.card-label {
  color: var(--blue-light);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-dark);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 15ch;
  margin-top: 0.72rem;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 3.55rem);
  font-weight: 800;
}

h3 {
  font-size: 1.28rem;
  font-weight: 700;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.hero-subtitle {
  max-width: 38rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2.4vw, 1.3rem);
}

.hero-cta-grid {
  width: min(100%, 32rem);
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.hero-cta-grid .btn-wide {
  grid-column: 1 / -1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line-strong);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-dark {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: var(--white);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  border-color: var(--blue-light);
  background: var(--blue-light);
  color: var(--white);
}

.btn-accent {
  border-color: var(--blue-light);
  background: var(--blue-light);
  color: var(--white);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: var(--white);
}

.btn-outline {
  border-color: var(--blue-light);
  background: transparent;
  color: var(--blue-light);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--blue-dark);
  color: var(--blue-dark);
}

.btn-ghost {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--blue-dark);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: var(--white);
}

.btn-white {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue-dark);
}

.btn-white:hover,
.btn-white:focus-visible {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.hero .btn-dark {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--blue-light);
  color: var(--white);
}

.hero .btn-dark:hover,
.hero .btn-dark:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue-dark);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.46);
  background: transparent;
  color: var(--white);
}

.hero .btn-outline:hover,
.hero .btn-outline:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue-dark);
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.hero .btn-ghost:hover,
.hero .btn-ghost:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue-dark);
}

.hero-pillars {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-pillars div {
  padding: 1rem 1rem 0 0;
  border-top: 1px solid var(--line-strong);
  background: transparent;
}

.hero-pillars dt {
  color: var(--blue-light);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-pillars dd {
  margin: 0.4rem 0 0;
  color: var(--blue-dark);
  font-size: 0.82rem;
}

.hero-fact-value {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

.hero-facts-section {
  border-top: 1px solid var(--line);
}

.problem-gif {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.problem-gif img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.problem-source {
  margin-top: 0.5rem;
  color: var(--text);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: grid;
  gap: 0.22rem;
}

.problem-figure-title {
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.problem-figure-description {
  color: var(--text);
  font-size: 0.64rem;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}

.problem-source a {
  color: var(--blue-light);
  text-decoration: none;
}

.problem-source a:hover,
.problem-source a:focus-visible {
  text-decoration: underline;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: center;
}

.problem-stats .stats-grid {
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.problem-stats .data-card {
  height: 100%;
  padding: 0.95rem 1rem;
}

.problem-stats .card-label {
  font-size: 0.62rem;
}

.problem-stats .stat-figure {
  margin-top: 0.35rem;
  font-size: clamp(1.8rem, 2.9vw, 2.9rem);
}

.problem-stats .data-card h3 {
  margin-top: 0.35rem;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.18;
}

.problem-stats .data-card p:last-child {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.42;
}

.hero-pillars-stacked dt {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-pillars-stacked dd {
  margin-top: 0.55rem;
}

.statement-section {
  background: var(--blue-statement);
  color: var(--white);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.statement-media {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  justify-self: stretch;
  overflow: hidden;
  background: var(--blue-statement);
}

.statement-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--blue-statement);
  transform: scale(1.3);
}

.statement-copy {
  justify-self: end;
  max-width: 36rem;
}

.statement-copy h2 {
  margin-top: 0.8rem;
  max-width: 20ch;
  color: var(--white);
}

.section-head {
  margin-bottom: 1.35rem;
}

#problem .section-head {
  margin-bottom: 1rem;
}

#solution {
  padding-bottom: 0;
}

.offerings-grid,
.design-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.solution-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}

.solution-panels-full {
  width: 100%;
  margin-top: 1rem;
}

.solution-panel {
  --panel-scale: 1.08;
  min-height: clamp(20rem, 78vw, 30rem);
}

.solution-panel-media {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: clamp(20rem, 78vw, 30rem);
  aspect-ratio: auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.solution-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--panel-scale));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.solution-panel-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72%;
  background: linear-gradient(180deg, rgba(8, 16, 34, 0.02) 0%, rgba(8, 16, 34, 0.94) 100%);
  pointer-events: none;
}

.solution-panel-media figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem 1.05rem 1.2rem;
  z-index: 1;
}

.solution-panel-media h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.solution-panel-media p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  line-height: 1.42;
}

.solution-panel-roof {
  --panel-scale: 1.2;
}

.solution-panel-roof .solution-panel-media img {
  object-position: center 72%;
}

.solution-panel-eave {
  --panel-scale: 1.1;
}

.solution-panel-tripod {
  --panel-scale: 1.12;
}

.solution-panel-tripod .solution-panel-media img {
  object-position: center 58%;
}

.solution-panel:hover .solution-panel-media img,
.solution-panel:focus-within .solution-panel-media img {
  transform: scale(calc(var(--panel-scale) + 0.03));
  box-shadow: 0 24px 52px rgba(30, 46, 105, 0.24);
}

@media (min-width: 760px) {
  .solution-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.solution-visual-card,
.showcase-visual,
.offering-card,
.contact-shell-minimal {
  border: 1px solid var(--line-strong);
  background: var(--white);
  box-shadow: 0 18px 40px var(--shadow);
}

.solution-visual-card {
  position: relative;
  margin: 0;
  min-height: 32rem;
  padding: 1.3rem;
  overflow: hidden;
}

.solution-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(53, 127, 196, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 127, 196, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
}

.solution-visual-card img,
.showcase-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-visual-card figcaption,
.showcase-visual figcaption {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  color: var(--blue-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offering-card {
  padding: 1.6rem;
}

.offering-card h3 {
  margin-top: 0.3rem;
}

.offering-card p:last-of-type {
  margin-top: 0.72rem;
}

.offering-card .btn {
  width: 100%;
  min-height: 3.8rem;
  margin-top: 1rem;
  border-radius: 999px;
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: 0 12px 26px rgba(30, 46, 105, 0.12);
}

.offering-card .btn:hover,
.offering-card .btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(30, 46, 105, 0.18);
}

.btn-outline-accent {
  border-color: var(--blue-light);
  background: var(--white);
  color: var(--blue-light);
}

.btn-outline-accent:hover,
.btn-outline-accent:focus-visible {
  border-color: var(--blue-light);
  background: var(--blue-light);
  color: var(--white);
}

.offering-card-dark .btn-dark {
  background: #143379;
  border-color: #143379;
}

.design-banner {
  background: #143379;
  color: var(--white);
}

.design-banner-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.design-banner-content {
  align-self: center;
}

.design-banner-content h2 {
  max-width: 15ch;
  color: var(--white);
}

.design-banner-copy {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.08rem, 1.48vw, 1.24rem);
  line-height: 1.58;
}

.design-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn-banner {
  min-height: 4.25rem;
  width: min(100%, 23rem);
  padding-inline: 2rem;
  border-radius: 999px;
  border-color: var(--white);
  background: var(--white);
  color: #143379;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.btn-banner:hover,
.btn-banner:focus-visible {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.86);
  color: #143379;
}

.section-marketplace {
  background: radial-gradient(circle at 15% 0%, rgba(20, 51, 121, 0.06) 0%, rgba(20, 51, 121, 0) 45%),
    linear-gradient(180deg, #fafbfd 0%, #ffffff 100%);
}

.section-marketplace .section-label {
  color: #70798d;
}

.section-marketplace h2 {
  color: #10192d;
}

.marketplace-intro {
  max-width: 52rem;
  margin: 0.9rem 0 0;
  color: #576074;
  font-size: clamp(0.98rem, 1.04vw, 1.04rem);
  line-height: 1.68;
}

.kits-list {
  display: grid;
  gap: 1.45rem;
  margin-top: 1.55rem;
}

.kit-item {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 180ms ease;
}

.kit-item:hover,
.kit-item:focus-within {
  transform: translateY(-2px);
}

.kit-item[open] {
  transform: translateY(-2px);
}

.kit-item summary {
  position: relative;
  display: grid;
  gap: 0.36rem;
  padding: 0.1rem 2.2rem 0.5rem 0;
  cursor: pointer;
  list-style: none;
  background: transparent;
}

.kit-summary-main {
  color: #10192d;
  font-size: clamp(1.08rem, 1.34vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.24;
}

.kit-summary-sub {
  color: #6b7488;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}

.kit-item summary::-webkit-details-marker {
  display: none;
}

.kit-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  color: #10192d;
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-56%);
  transition: transform 180ms ease;
}

.kit-item[open] summary::after {
  content: "\2212";
  transform: translateY(-56%);
}

.kit-item-body {
  padding: 0.25rem 0 0.1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

.kit-item-body img {
  width: 100%;
  height: auto;
  max-height: 24rem;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.kit-item-copy {
  display: grid;
  gap: 1rem;
}

.kit-description {
  margin: 0;
  color: #30384b;
  font-size: clamp(0.97rem, 1.02vw, 1.03rem);
  line-height: 1.66;
}

.kit-breakdown {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.kit-breakdown-label {
  margin: 0;
  color: #5f687c;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kit-bullets {
  margin: 0;
  margin-top: 0.52rem;
  padding-left: 0;
  list-style: none;
  color: #1d273c;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.05rem;
  row-gap: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.52;
}

.kit-bullets li {
  position: relative;
  padding-left: 0.82rem;
}

.kit-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.53em;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 999px;
  background: #10192d;
}

.btn-kit-buy {
  width: fit-content;
  min-width: 17rem;
  min-height: 3rem;
  padding-inline: 1.4rem;
  border-radius: 999px;
  border: 0;
  background: #10192d;
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
}

.btn-kit-buy:hover,
.btn-kit-buy:focus-visible {
  border: 0;
  background: #2a3347;
  color: var(--white);
}

.contact-center {
  display: flex;
  justify-content: center;
}

.contact-shell-minimal {
  width: min(100%, 52rem);
  padding: 1.5rem;
}

.contact-head {
  margin-bottom: 1.2rem;
  text-align: center;
}

.contact-head h2 {
  max-width: none;
}

.contact-intro {
  max-width: 34rem;
  margin: 0.8rem auto 0;
  color: var(--text);
  font-size: 1rem;
}

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

.intake-form-centered input,
.intake-form-centered select,
.intake-form-centered textarea {
  border-color: rgba(30, 46, 105, 0.3);
}

.section-head-wide h2 {
  max-width: 18ch;
}

.stats-grid,
.three-up-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.two-up-grid,
.solution-grid,
.contact-layout,
.faq-testimonial-grid,
.inverse-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.four-up-grid,
.routing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

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

.data-card,
.split-panel,
.product-panel,
.route-card,
.topic-card,
.product-card-brief,
.faq-panel,
.testimonial-panel,
.intake-form,
.insurance-panel,
.contact-copy,
.legal-section .topic-card {
  border: 1px solid var(--line-strong);
  background: var(--white);
  box-shadow: 0 18px 40px var(--shadow);
}

.data-card,
.split-panel,
.route-card,
.topic-card,
.product-card-brief,
.faq-panel,
.testimonial-panel,
.insurance-panel,
.contact-copy,
.legal-section .topic-card {
  padding: 1.2rem;
}

.route-card {
  text-decoration: none;
  transition: border-color 140ms ease, transform 140ms ease;
}

.route-card:hover,
.route-card:focus-visible {
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

.stat-figure {
  margin: 0.5rem 0 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.data-card h3,
.topic-card h3,
.product-card-brief h3,
.route-card h3,
.split-panel h3,
.faq-panel h3,
.testimonial-panel h3,
.insurance-panel h2,
.contact-copy h2 {
  margin-top: 0.5rem;
}

.data-card p:last-child,
.topic-card p:last-child,
.product-card-brief p:last-child,
.route-card p:last-child,
.contact-copy p:last-child {
  margin-top: 0.8rem;
}

.blueprint-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--blue-dark);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split-visual {
  margin: 0;
}

.split-visual figcaption {
  color: var(--blue-light);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tech-diagram {
  width: 100%;
  margin-top: 0.9rem;
  fill: none;
  stroke: var(--blue-dark);
  stroke-width: 1.35;
}

.tech-diagram text {
  fill: var(--blue-light);
  stroke: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.diagram-path,
.diagram-bubble {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  transition: stroke-dashoffset 1400ms ease;
}

.diagram-bubble {
  stroke: rgba(53, 127, 196, 0.55);
  stroke-width: 1.4;
}

.tech-diagram.is-drawn .diagram-path,
.tech-diagram.is-drawn .diagram-bubble {
  stroke-dashoffset: 0;
}

.product-panel {
  margin-top: 1rem;
  padding: 1.2rem;
}

.product-copy {
  max-width: 42rem;
}

.product-gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  margin: 0;
  border: 1px solid var(--line-strong);
  background: var(--white);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card figcaption {
  padding: 0.8rem;
  color: var(--blue-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-routing {
  background: var(--white);
}

.insurance-panel {
  display: grid;
  grid-template-columns: minmax(0, 18rem) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.section-label-inverse,
.section-inverse h2 {
  color: var(--white);
}

.inverse-grid {
  align-items: center;
}

.faq-panel details {
  margin-top: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.faq-panel summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 700;
}

.faq-panel details p,
.testimonial-panel blockquote {
  margin: 0.8rem 0 0;
}

.testimonial-panel blockquote {
  padding-left: 1rem;
  border-left: 2px solid var(--blue-light);
  color: var(--blue-dark);
}

.contact-layout {
  align-items: start;
}

.contact-points {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.contact-points span {
  display: block;
  color: var(--blue-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-points strong {
  display: block;
  margin-top: 0.2rem;
  color: var(--blue-dark);
  font-size: 0.84rem;
}

.intake-form {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.intake-form label {
  display: grid;
  gap: 0.35rem;
}

.intake-form span {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--text);
  padding: 0.8rem 0.85rem;
  border-radius: 0;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 2px solid rgba(53, 127, 196, 0.18);
  border-color: var(--blue-light);
}

.field-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--blue-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-note[data-state="success"] {
  color: #0d7a3f;
}

.form-note[data-state="error"] {
  color: #b52f2f;
}

.legal-section {
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 3.4rem 0 3rem;
  background: var(--blue-dark);
  color: var(--white);
}

.footer-stack {
  display: grid;
  gap: 2rem;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.footer-group {
  display: grid;
  gap: 0.9rem;
}

.footer-heading {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-links-contact {
  display: grid;
  gap: 0.65rem;
}

.footer-links-contact span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
}

.footer-brand {
  margin-bottom: 0.2rem;
}

.footer-logo-full {
  width: clamp(208px, 20vw, 270px);
}

@media (max-width: 1180px) {
  .header-shell {
    width: min(100%, calc(100vw - 1.6rem));
  }

  .header-grid {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 0.7rem;
    border: 1px solid var(--line-strong);
    background: var(--white);
  }

  .site-header:not(.is-scrolled) .main-nav > a,
  .site-header:not(.is-scrolled) .nav-dropdown-toggle {
    color: var(--blue-dark);
    text-shadow: none;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    padding: 0.2rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    display: none;
  }

  .nav-dropdown.open .nav-submenu {
    display: grid;
  }

  .header-ctas {
    grid-column: 1 / -1;
    order: 4;
    flex-wrap: wrap;
  }

  .stats-grid,
  .statement-grid,
  .three-up-grid,
  .about-grid,
  .two-up-grid,
  .solution-grid,
  .offerings-grid,
  .design-banner-grid,
  .contact-layout,
  .faq-testimonial-grid,
  .inverse-grid,
  .routing-grid,
  .four-up-grid,
  .product-gallery,
  .footer-groups,
  .insurance-panel {
    grid-template-columns: 1fr;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
  }

  .problem-layout {
    grid-template-columns: 1fr;
  }

  .statement-media {
    width: min(100%, 540px);
    height: auto;
  }

  .solution-visual-card {
    min-height: 26rem;
  }

  .design-banner-actions {
    justify-content: flex-start;
  }

  .hero-shell {
    padding-top: 6.8rem;
  }

  .kit-item-body {
    grid-template-columns: 1fr;
  }

  .kit-bullets {
    grid-template-columns: 1fr;
  }

  .footer-stack {
    gap: 1.5rem;
  }
}

@media (max-width: 760px) {
  .statement-section,
  .statement-media,
  .statement-video {
    background: var(--blue-statement-video);
  }

  .section {
    padding: 4.6rem 0;
  }

  .header-logo {
    width: 146px;
  }

  .header-ctas {
    display: none !important;
  }

  .hero-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-grid .btn-wide {
    grid-column: auto;
  }

  .hero-shell {
    min-height: 100vh;
    padding-top: 6.1rem;
    padding-bottom: 1.5rem;
  }

  .hero-copy-block {
    max-width: 100%;
  }

  .btn,
  .header-ctas .btn {
    width: 100%;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.4rem, 13vw, 3.8rem);
  }

  .hero-media iframe {
    top: 50%;
    left: 50%;
    width: 420vw;
    height: 236.25vw;
    min-width: 420vw;
    min-height: 100%;
    transform: translate(-50%, -50%);
  }

  .solution-panels {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .solution-panel-media h3 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .kit-item summary {
    padding: 0.05rem 2rem 0.45rem 0;
  }

  .kit-item-body img {
    max-height: 19rem;
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.55rem);
  }

  .intake-form {
    grid-template-columns: 1fr;
  }

  .contact-shell-minimal {
    padding: 1.15rem;
  }

  .footer-logo-full {
    width: 188px;
  }

  .field-wide {
    grid-column: auto;
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  .hero-shell {
    padding-top: 5.4rem;
    padding-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.8rem);
  }

  .hero-subtitle {
    font-size: clamp(0.94rem, 1.7vw, 1.12rem);
  }

  .hero-cta-grid {
    margin-top: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .diagram-path,
  .diagram-bubble {
    stroke-dashoffset: 0 !important;
  }
}
