:root {
  color-scheme: light;
  --ink: #111416;
  --muted: #59635f;
  --line: #d9e0dc;
  --paper: #f6f7f2;
  --white: #ffffff;
  --field: #fbfcf8;
  --mist: #edf3ef;
  --green: #2d5d50;
  --teal: #147481;
  --mint: #8ee8d7;
  --amber: #b77a3d;
  --blue: #4f6fa6;
  --dark: #0d1114;
  --graphite: #161b1f;
  --steel: #6f817b;
  --shadow: 0 24px 70px rgba(17, 20, 22, 0.14);
  --hard-shadow: 0 34px 90px rgba(7, 10, 11, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 3vw, 40px);
  background: rgba(13, 17, 20, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 17, 20, 0.95);
  box-shadow: 0 16px 40px rgba(7, 10, 11, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
}

.brand img {
  width: 116px;
  height: auto;
  filter: invert(1);
}

.brand span {
  width: 96px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: nowrap;
}

.main-nav a {
  padding: 9px 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  border-radius: 6px;
}

.main-nav a:hover {
  background: rgba(142, 232, 215, 0.12);
  color: var(--mint);
}

.main-nav .quote-link {
  margin-left: 4px;
  background: var(--white);
  color: var(--ink);
}

.main-nav .quote-link:hover {
  background: var(--mint);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero,
.page-hero,
.form-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.home-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  align-items: center;
  min-height: min(820px, calc(100svh - 76px));
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px) clamp(38px, 5vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 17, 20, 0.98) 0%, rgba(22, 27, 31, 0.96) 52%, rgba(24, 46, 49, 0.95) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
  color: var(--white);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(142, 232, 215, 0.08), transparent 34%, rgba(183, 122, 61, 0.09));
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.form-hero {
  grid-template-columns: minmax(0, 880px);
  min-height: auto;
  padding-bottom: 24px;
}

.hero-copy,
.page-hero > div,
.form-hero > div {
  max-width: 820px;
}

.home-hero .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero .eyebrow,
.split-band .eyebrow,
.cta-band .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 68px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.form-hero p,
.section-intro p,
.cta-band p {
  color: var(--muted);
  font-size: 20px;
}

.home-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.cta-actions,
.section-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(17, 20, 22, 0.14);
}

.home-hero .button.primary,
.split-band .button.primary,
.cta-band .button.primary {
  background: var(--white);
  color: var(--ink);
}

.button.primary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.hero-media,
.page-hero img {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  min-height: 560px;
}

.home-hero .hero-media {
  display: grid;
  align-self: stretch;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--hard-shadow);
  backdrop-filter: blur(18px);
}

.hero-spec-panel {
  position: absolute;
  left: -22px;
  bottom: 86px;
  display: grid;
  gap: 5px;
  max-width: min(360px, calc(100% - 24px));
  padding: 16px 18px;
  border: 1px solid rgba(142, 232, 215, 0.38);
  border-radius: 8px;
  background: rgba(12, 17, 19, 0.84);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(7, 10, 11, 0.32);
  backdrop-filter: blur(18px);
}

.hero-spec-panel span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.hero-spec-panel strong {
  font-size: 18px;
  line-height: 1.18;
}

.hero-spec-panel small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-specs div {
  min-height: 96px;
  padding: 14px 18px;
  background: rgba(12, 17, 19, 0.62);
  backdrop-filter: blur(16px);
}

.hero-specs span,
.scope-board-head span {
  display: block;
  margin-bottom: 10px;
  color: #a8d7d0;
  font-size: 12px;
  font-weight: 900;
}

.hero-specs strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.hero-specs small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.hero-media img,
.page-hero img {
  width: 100%;
  height: min(62vh, 560px);
  min-height: 520px;
  padding: 12px;
  background:
    linear-gradient(135deg, #fbfcf8, #e8efe8),
    repeating-linear-gradient(90deg, rgba(17, 20, 22, 0.04) 0 1px, transparent 1px 54px);
  object-fit: contain;
}

.home-hero .hero-media img {
  height: 100%;
  min-height: 520px;
  padding: clamp(14px, 2vw, 26px);
  background: linear-gradient(135deg, #fbfcf8, #e1e8e4);
}

.hero-media figcaption {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-weight: 800;
}

.band,
.split-band,
.cta-band,
.project-dashboard,
.form-section {
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.trust-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px);
  background: var(--dark);
}

.trust-rail a {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 112px;
  padding: 22px;
  background: #f7f8f4;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.trust-rail a:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.trust-rail span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-rail strong {
  font-size: 16px;
  line-height: 1.22;
}

.project-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(13, 17, 20, 0.98), rgba(17, 29, 31, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 88px);
  color: var(--white);
}

.dashboard-copy {
  max-width: 760px;
}

.dashboard-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.dashboard-stats span {
  display: grid;
  gap: 3px;
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 750;
}

.dashboard-stats strong {
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.scope-board {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #f2f5ef;
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(7, 10, 11, 0.24);
}

.scope-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.scope-board-head span {
  margin: 0;
  color: var(--teal);
}

.scope-board-head strong {
  padding: 7px 10px;
  background: var(--dark);
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
}

.scope-meter {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.scope-meter i {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--mint));
}

.scope-meter i:nth-child(4) {
  background: linear-gradient(90deg, var(--amber), #e6bf78);
}

.scope-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.scope-list span {
  min-height: 44px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #313832;
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.scope-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 116, 129, 0.38);
  box-shadow: 0 12px 28px rgba(17, 20, 22, 0.08);
}

.board-link {
  justify-self: start;
  color: var(--teal);
  font-weight: 900;
}

.band.light {
  background: var(--white);
}

.section-intro {
  max-width: 860px;
  margin-bottom: 34px;
}

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

.capability-item {
  min-height: 132px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 246, 0.92)),
    linear-gradient(90deg, rgba(20, 116, 129, 0.1), transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.capability-item:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 116, 129, 0.28);
  box-shadow: 0 20px 48px rgba(17, 20, 22, 0.09);
}

.capability-item span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.capability-item strong {
  display: block;
  font-size: 21px;
  line-height: 1.18;
}

.showcase-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, #f7f8f4 0%, #edf3ef 100%),
    repeating-linear-gradient(90deg, rgba(17, 20, 22, 0.04) 0 1px, transparent 1px 92px);
}

.showcase-copy {
  max-width: 760px;
}

.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.showcase-readout {
  display: grid;
  gap: 6px;
  max-width: 520px;
  margin-top: 26px;
  padding: 18px;
  border-left: 4px solid var(--teal);
  background: var(--white);
  box-shadow: 0 20px 55px rgba(17, 20, 22, 0.08);
}

.showcase-readout span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.showcase-readout strong {
  font-size: 24px;
  line-height: 1.12;
}

.showcase-readout small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.showcase-visual {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.showcase-image {
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.showcase-image img {
  height: 460px;
  aspect-ratio: auto;
  padding: clamp(14px, 2vw, 26px);
}

.showcase-controls {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.showcase-controls button,
.system-filter button {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.showcase-controls button {
  display: grid;
  gap: 4px;
  min-height: 70px;
  padding: 11px;
  text-align: left;
}

.showcase-controls button:hover,
.system-filter button:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 116, 129, 0.38);
}

.showcase-controls button[aria-selected="true"],
.system-filter button[aria-pressed="true"] {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.showcase-controls span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.showcase-controls small {
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
}

.showcase-controls button[aria-selected="true"] small {
  color: var(--mint);
}

.system-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -10px 0 24px;
}

.system-filter button {
  min-height: 42px;
  padding: 9px 14px;
  font-weight: 850;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.system-card {
  position: relative;
  overflow: visible;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(17, 20, 22, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.system-card[hidden] {
  display: none;
}

.image-preview-trigger {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, #fbfcf8, #e7eee9),
    repeating-linear-gradient(90deg, rgba(17, 20, 22, 0.04) 0 1px, transparent 1px 54px);
  cursor: zoom-in;
}

.image-preview-trigger:focus-visible {
  outline: 3px solid rgba(43, 124, 130, 0.28);
  outline-offset: 3px;
}

.image-preview-trigger::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(22, 24, 22, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 22px rgba(22, 24, 22, 0.14);
  transition: background 160ms ease, border-color 160ms ease;
}

.image-preview-trigger::before {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  z-index: 1;
  width: 11px;
  height: 2px;
  border-radius: 999px;
  background: rgba(22, 24, 22, 0.72);
  transform: rotate(45deg);
  transform-origin: center;
}

.image-preview-trigger img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  padding: 12px;
  object-fit: contain;
  transition: filter 180ms ease, transform 180ms ease;
}

.image-preview-trigger:hover img,
.image-preview-trigger:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.015);
}

.image-preview-trigger:hover::after,
.image-preview-trigger:focus-visible::after {
  border-color: var(--teal);
  background: var(--mint);
}

.system-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(22, 24, 22, 0.12);
  border-color: rgba(20, 116, 129, 0.26);
}

.system-card > div {
  padding: 18px;
}

.system-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.system-card-head .model {
  margin-bottom: 0;
}

.system-card-head span {
  flex: 0 0 auto;
  padding: 5px 7px;
  border-radius: 999px;
  background: #edf5f2;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
}

.image-hover-panel {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 70;
  width: min(560px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 12px;
  border: 1px solid rgba(22, 24, 22, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(18, 23, 20, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-9999px, -9999px, 0) scale(0.98);
  transition: opacity 120ms ease, transform 120ms ease;
  visibility: hidden;
}

.image-hover-panel.is-visible {
  opacity: 1;
  transform: translate3d(var(--preview-x, 0), var(--preview-y, 0), 0) scale(1);
  visibility: visible;
}

.image-hover-panel img {
  width: 100%;
  max-height: calc(100vh - 112px);
  object-fit: contain;
  border-radius: 6px;
  background: linear-gradient(135deg, #f9faf6, #e8eee5);
}

.image-hover-panel span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(10, 13, 12, 0.88);
}

body.has-image-lightbox {
  overflow: hidden;
}

.image-lightbox figure {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(1120px, 100%);
  margin: 0;
}

.image-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.image-lightbox figcaption {
  color: var(--white);
  font-weight: 850;
  text-align: center;
}

.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.model {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

dl {
  margin: 16px 0 0;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 10px;
  font-weight: 750;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(13, 17, 20, 0.98), rgba(17, 29, 31, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 88px);
  color: var(--white);
}

.split-band p {
  color: rgba(255, 255, 255, 0.72);
}

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

.workflow-list li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.workflow-list li:hover {
  transform: translateX(4px);
  border-color: rgba(142, 232, 215, 0.32);
  background: rgba(255, 255, 255, 0.09);
}

.workflow-list span {
  color: #9ed8d0;
  font-weight: 900;
}

.workflow-list strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 20px;
}

.workflow-list p {
  margin: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, #e9f1ec 0%, #f8f9f4 58%, #f3e8db 100%);
  border-top: 1px solid var(--line);
}

.cta-band > div:first-child {
  max-width: 850px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.detail-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-panel p:not(.eyebrow) {
  color: var(--muted);
}

.detail-panel ul,
.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.legal-hero {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px) 34px;
  background: var(--paper);
}

.legal-hero > div {
  max-width: 900px;
}

.legal-hero h1 {
  max-width: 860px;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.legal-hero small {
  color: var(--steel);
  font-weight: 800;
}

.legal-section {
  padding: 0 clamp(18px, 5vw, 72px) clamp(58px, 7vw, 104px);
}

.legal-content {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.legal-content article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-content h2 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.12;
}

.legal-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-section {
  padding-top: 0;
}

.rfq-form {
  display: grid;
  gap: 18px;
  max-width: 1120px;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

legend {
  padding: 0 8px;
  font-size: 20px;
  font-weight: 900;
}

label {
  display: grid;
  gap: 8px;
}

label.full {
  grid-column: 1 / -1;
}

label span {
  color: #30352f;
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--field);
  border: 1px solid #cfd7ce;
  border-radius: 6px;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(43, 124, 130, 0.2);
  border-color: var(--teal);
}

.file-input small {
  color: var(--muted);
}

.form-note {
  padding: 18px 20px;
  background: #edf4ef;
  border: 1px solid #bfd5cc;
  border-radius: 8px;
}

.form-note strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.form-note p {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
}

.form-note a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-submit p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

body.has-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

body.has-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.breadcrumbs {
  padding: 16px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs div {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--teal);
}

.seo-hub-hero,
.seo-landing-hero {
  min-height: min(720px, calc(100svh - 76px));
}

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

.route-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 168px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(17, 20, 22, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.route-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 116, 129, 0.3);
  box-shadow: 0 22px 54px rgba(17, 20, 22, 0.1);
}

.route-card span {
  color: var(--teal);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.route-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.seo-routes {
  background:
    linear-gradient(135deg, #f7f8f4 0%, #edf3ef 100%),
    repeating-linear-gradient(90deg, rgba(17, 20, 22, 0.04) 0 1px, transparent 1px 92px);
}

.seo-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.seo-split > div:first-child {
  max-width: 760px;
}

.seo-split > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.seo-panel {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-panel h3 {
  margin-bottom: 16px;
}

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

.check-list li {
  position: relative;
  min-height: 48px;
  padding: 13px 14px 13px 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #303832;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.seo-rfq-band .check-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

.seo-rfq-band .check-list li::before {
  border-color: var(--mint);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-list details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(280px, 404px) minmax(190px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 38px clamp(18px, 5vw, 72px) 108px;
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  justify-self: start;
}

.site-footer img {
  width: 120px;
  filter: invert(1);
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  display: grid;
  justify-items: center;
  justify-self: center;
  gap: 7px;
  width: min(100%, 404px);
  min-width: 280px;
  padding: 16px 18px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
}

.footer-contact span {
  color: #9dd5cc;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--white);
  font-size: 30px;
  font-weight: 850;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  color: #c8f2ea;
}

.footer-links {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  max-width: 430px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

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

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 15px 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: #1f9f5f;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(18, 23, 20, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #17884f;
  box-shadow: 0 22px 50px rgba(18, 23, 20, 0.28);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(157, 213, 204, 0.65);
  outline-offset: 3px;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  fill: currentColor;
}

.whatsapp-float span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.whatsapp-float strong {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.1;
}

.whatsapp-float small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 1320px) {
  .brand {
    min-width: 128px;
  }

  .brand span {
    display: none;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(13, 17, 20, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(7, 10, 11, 0.28);
  }

  .main-nav a {
    color: rgba(255, 255, 255, 0.86);
  }

  .main-nav .quote-link {
    margin-left: 0;
    text-align: center;
  }

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

  .nav-toggle {
    display: block;
  }

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

  .home-hero {
    min-height: auto;
  }

  .hero-specs,
  .project-dashboard,
  .showcase-band {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 460px;
  }

  .home-hero .hero-media img {
    height: 460px;
    min-height: 460px;
  }

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

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

  .hero-media img,
  .page-hero img {
    height: 360px;
    min-height: 360px;
  }

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

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

  .seo-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand span {
    display: none;
  }

  .hero,
  .page-hero,
  .form-hero {
    min-height: auto;
  }

  .home-hero {
    padding-top: 46px;
  }

  h1 {
    font-size: 44px;
    line-height: 1;
  }

  h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .hero p,
  .page-hero p,
  .form-hero p,
  .section-intro p,
  .cta-band p,
  .dashboard-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-specs {
    display: none;
  }

  .capability-grid,
  .detail-grid,
  .system-grid,
  .route-grid,
  .seo-split,
  .split-band,
  .cta-band,
  .project-dashboard,
  .trust-rail,
  .dashboard-stats,
  fieldset {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .home-hero .hero-media img,
  .showcase-image img {
    height: 340px;
    min-height: 340px;
  }

  .hero-spec-panel {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .showcase-band {
    grid-template-columns: 1fr;
  }

  .showcase-controls {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .showcase-controls button {
    flex: 0 0 138px;
    scroll-snap-align: start;
  }

  .system-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .system-filter button {
    flex: 0 0 auto;
  }

  .scope-list {
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: auto;
  }

  .cta-band {
    align-items: start;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-links {
    justify-self: start;
  }

  .footer-contact {
    justify-items: center;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .page-hero img,
  .hero-media img {
    height: 300px;
    min-height: 300px;
  }

  .trust-rail a {
    min-height: 96px;
    padding: 18px;
  }

  .showcase-image {
    min-height: 300px;
  }

  .showcase-readout strong {
    font-size: 21px;
  }

  .footer-contact a {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-bottom: 88px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    justify-content: center;
    gap: 0;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
  }

  body.is-form-focused .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.92);
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 40px;
  }

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

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  body.has-reveal [data-reveal],
  body.has-reveal [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}
