:root {
  --midnight: #030a1d;
  --midnight-2: #06122c;
  --midnight-3: #071a3d;
  --blue: #0d3478;
  --blue-soft: rgba(61, 111, 255, .12);
  --ink: #f4f8ff;
  --text: #dbe6f8;
  --muted: #a8b7d3;
  --subtle: #7f91b3;
  --white: #ffffff;
  --green: #21f196;
  --green-deep: #10b973;
  --orange: #ff8b36;
  --red: #ff5a52;
  --amber: #ffd166;
  --surface: rgba(255, 255, 255, .075);
  --surface-2: rgba(255, 255, 255, .105);
  --surface-3: rgba(7, 26, 61, .76);
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 255, 255, .22);
  --shadow: 0 34px 110px rgba(0, 0, 0, .44);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, .26);
  --radius-xxl: 38px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --header-h: 90px;
  --page-x: clamp(18px, 4.6vw, 92px);
  --section-y: clamp(76px, 8vw, 138px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -5%, rgba(33, 241, 150, .12), transparent 34%),
    radial-gradient(circle at 95% 4%, rgba(255, 139, 54, .12), transparent 30%),
    linear-gradient(180deg, var(--midnight) 0%, var(--midnight-2) 48%, var(--midnight) 100%);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.modal-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
a, button, select { cursor: pointer; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
p { margin: 0; color: var(--muted); }
::selection { background: rgba(33, 241, 150, .28); color: var(--white); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 200;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--green);
  color: #03101f;
  font-weight: 900;
}
.skip-link:focus { top: 1rem; }

.site-shell { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: -1; }
.shell-glow { position: absolute; border-radius: 999px; filter: blur(24px); opacity: .65; }
.shell-glow-a { width: 38vw; height: 38vw; left: -18vw; top: 12vh; background: rgba(33, 241, 150, .10); }
.shell-glow-b { width: 30vw; height: 30vw; right: -15vw; bottom: 10vh; background: rgba(255, 139, 54, .09); }

.wide-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: var(--page-x);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid transparent;
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease, backdrop-filter .24s ease;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(3, 10, 29, .84);
  border-color: rgba(255, 255, 255, .10);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .24);
  backdrop-filter: blur(22px);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}
.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -.06em;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, .92) 0 3px, transparent 4px),
    linear-gradient(145deg, #f04c3b 0%, #a51e19 100%);
  box-shadow: 0 18px 42px rgba(224, 49, 35, .30), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: .10em;
  font-size: 1rem;
  color: var(--white);
}
.brand-text em {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--green);
  font-size: .67rem;
  font-weight: 900;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}
.main-nav a {
  position: relative;
  padding: .78rem .9rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, .75);
  font-size: .9rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, .09);
}
.header-cta,
.pill-button,
.filter,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.header-cta {
  padding: .82rem 1.08rem;
  color: #03101f;
  background: linear-gradient(135deg, var(--green), #9affd0);
  box-shadow: 0 18px 42px rgba(33, 241, 150, .22);
}
.header-cta:hover,
.btn:hover,
.pill-button:hover { transform: translateY(-2px); }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .075);
}
.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 64px) 0 34px;
  overflow: hidden;
  isolation: isolate;
}
.hero-media,
.hero-media picture,
.hero-media img,
.hero-overlay,
.hero-grid { position: absolute; inset: 0; }
.hero-media { z-index: -3; opacity: .85; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(1.03) contrast(1.06);
}
.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 70% 32%, rgba(3, 10, 29, .05) 0 17%, rgba(3, 10, 29, .46) 47%, rgba(3, 10, 29, .92) 86%),
    linear-gradient(90deg, rgba(3, 10, 29, .99) 0%, rgba(3, 10, 29, .94) 29%, rgba(6, 18, 44, .56) 59%, rgba(6, 18, 44, .10) 100%),
    linear-gradient(0deg, rgba(3, 10, 29, 1) 0%, rgba(3, 10, 29, .45) 32%, rgba(3, 10, 29, .08) 100%);
}
.hero-grid {
  z-index: -1;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.hero-content {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(330px, .72fr);
  align-items: end;
  gap: clamp(28px, 5vw, 92px);
  position: relative;
  z-index: 1;
  padding-bottom: clamp(32px, 4.5vw, 68px);
}
.hero-copy { max-width: 1040px; }
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 18px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: clamp(.68rem, .76vw, .79rem);
  font-weight: 900;
}
.eyebrow span,
.section-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(33, 241, 150, .82);
}
h1, h2, h3 {
  margin: 0;
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.035;
  letter-spacing: -.055em;
}
h1 {
  max-width: 1120px;
  font-size: clamp(3.25rem, 7.4vw, 8.9rem);
  letter-spacing: -.082em;
}
h2 { font-size: clamp(2.15rem, 4.1vw, 5.55rem); }
h3 { font-size: clamp(1.2rem, 1.65vw, 2rem); }
.hero-lead {
  max-width: 800px;
  margin-top: 26px;
  font-size: clamp(1.06rem, 1.48vw, 1.45rem);
  line-height: 1.72;
  color: rgba(231, 239, 255, .84);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  min-height: 54px;
  padding: .95rem 1.28rem;
  text-align: center;
}
.btn-primary {
  color: #03101f;
  background: linear-gradient(135deg, var(--green), #8dffca 55%, #ffffff 145%);
  box-shadow: 0 20px 50px rgba(33, 241, 150, .22);
}
.btn-secondary {
  border: 1px solid var(--line-strong);
  color: var(--white);
  background: rgba(255, 255, 255, .075);
  backdrop-filter: blur(18px);
}
.btn-full { width: 100%; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .68);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 900;
}
.hero-proof strong { color: var(--green); }

.command-centre { min-width: 0; }
.app-window,
.cockpit,
.model-system,
.governance-workspace,
.report-panel,
.contact-form,
.trust-card,
.modal-card {
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04)),
    rgba(7, 26, 61, .62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px);
}
.app-window {
  border-radius: var(--radius-xxl);
  overflow: hidden;
  transform: perspective(1100px) rotateY(-5deg) rotateX(3deg);
  transform-origin: center right;
}
.window-bar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: rgba(3, 10, 29, .50);
}
.window-bar div { display: flex; gap: 7px; }
.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .24);
}
.window-bar span:nth-child(2) { background: rgba(255, 209, 102, .72); }
.window-bar span:nth-child(3) { background: rgba(33, 241, 150, .72); }
.window-bar strong { font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .66); }
.app-body { display: grid; grid-template-columns: 66px 1fr; min-height: 455px; }
.mini-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 14px;
  border-right: 1px solid rgba(255, 255, 255, .10);
  background: rgba(3, 10, 29, .38);
}
.mini-sidebar i {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
}
.mini-sidebar i:first-child { background: linear-gradient(135deg, rgba(33, 241, 150, .28), rgba(255,255,255,.07)); border-color: rgba(33, 241, 150, .32); }
.dashboard-preview { padding: 22px; display: grid; gap: 16px; }
.dash-head,
.panel-title,
.workspace-header,
.cockpit-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.dash-head span,
.panel-title span,
.workspace-header span,
.cockpit-toolbar span,
.report-panel .panel-title span,
.contact-form .form-header span {
  display: block;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  font-weight: 900;
}
.dash-head strong,
.panel-title strong,
.workspace-header strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.12rem;
  letter-spacing: -.04em;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .48rem .72rem;
  border-radius: 999px;
  font-size: .72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}
.status-live { color: var(--green); background: rgba(33, 241, 150, .12); border: 1px solid rgba(33, 241, 150, .28); }
.status-ready { color: #92ffd0; background: rgba(33, 241, 150, .10); border: 1px solid rgba(33, 241, 150, .22); }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi-row article,
.ops-card,
.process-card,
.service-card,
.report-metrics article,
.contact-cards a,
.insight-grid article,
.outcome-panel,
.qa-row,
.empty-state {
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(155deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow-soft);
}
.kpi-row article { padding: 16px; border-radius: 18px; }
.kpi-row span,
.ops-card span,
.report-metrics span,
.contact-cards span { display: block; color: var(--subtle); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; }
.kpi-row strong,
.ops-card strong,
.report-metrics strong { display: block; margin-top: 6px; color: var(--white); font-family: Manrope, Inter, sans-serif; font-size: 1.75rem; line-height: 1; letter-spacing: -.05em; }
.route-panel { display: grid; grid-template-columns: minmax(0, 1fr) 175px; gap: 14px; align-items: stretch; }
.route-map,
.map-canvas {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 20% 25%, rgba(33, 241, 150, .14), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(255, 139, 54, .13), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
}
.route-map::before,
.map-canvas::before {
  content: "";
  position: absolute;
  inset: -30%;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: rotate(-10deg);
}
.route-line,
.map-route {
  position: absolute;
  left: 14%;
  top: 55%;
  width: 72%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: rotate(-20deg);
  border-radius: 99px;
  box-shadow: 0 0 24px rgba(33, 241, 150, .35);
}
.pin,
.vehicle {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid rgba(255, 255, 255, .86);
  box-shadow: 0 0 32px rgba(33, 241, 150, .60);
}
.pin-a { left: 18%; top: 62%; }
.pin-b { left: 48%; top: 42%; background: var(--orange); box-shadow: 0 0 32px rgba(255, 139, 54, .55); }
.pin-c { right: 15%; top: 28%; }
.route-list { display: grid; gap: 9px; }
.route-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 8px;
  padding: 13px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(3, 10, 29, .35);
}
.route-list strong { font-size: .84rem; color: var(--white); }
.route-list span { grid-column: 1 / 2; color: var(--muted); font-size: .76rem; }
.status-dot { grid-row: 1 / 3; grid-column: 2; align-self: center; width: 10px; height: 10px; border-radius: 50%; }
.ok { background: var(--green); }
.amber { background: var(--amber); }
.red { background: var(--red); }

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-xxl);
  overflow: hidden;
  background: rgba(255, 255, 255, .072);
  backdrop-filter: blur(24px);
}
.hero-metrics article { padding: clamp(22px, 2.4vw, 34px); border-right: 1px solid rgba(255, 255, 255, .10); }
.hero-metrics article:last-child { border-right: 0; }
.hero-metrics span { display: block; color: var(--green); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 900; }
.hero-metrics strong { display: block; margin-top: 6px; color: var(--white); font-family: Manrope, Inter, sans-serif; font-size: clamp(1.75rem, 3vw, 3.35rem); line-height: .95; letter-spacing: -.055em; }
.hero-metrics small { display: block; margin-top: 8px; color: var(--muted); font-size: .92rem; }

.section { position: relative; padding: var(--section-y) 0; overflow: hidden; }
.section::before {
  content: "";
  position: absolute;
  pointer-events: none;
  width: 620px;
  height: 620px;
  right: -300px;
  top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 241, 150, .08), transparent 68%);
}
.section-copy { max-width: 980px; position: relative; z-index: 1; }
.section-copy > p:last-child,
.section-heading > p:last-child,
.governance-copy > p:not(.section-kicker),
.contact-copy > p:not(.section-kicker) {
  margin-top: 18px;
  font-size: clamp(1rem, 1.22vw, 1.18rem);
  line-height: 1.8;
}
.section-heading { max-width: 1040px; margin-bottom: clamp(34px, 4vw, 56px); position: relative; z-index: 1; }

.intro-section { background: linear-gradient(180deg, var(--midnight) 0%, #071631 100%); }
.split-intro {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.insight-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: var(--radius-lg);
}
.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: var(--green);
  background: rgba(33, 241, 150, .10);
  border: 1px solid rgba(33, 241, 150, .24);
  font-weight: 900;
}
.insight-grid strong { display: block; color: var(--white); font-family: Manrope, Inter, sans-serif; font-size: 1.12rem; letter-spacing: -.03em; }
.insight-grid p { margin-top: 10px; }

.cockpit {
  margin-top: clamp(40px, 5vw, 78px);
  display: grid;
  grid-template-columns: 280px 1fr;
  border-radius: var(--radius-xxl);
  overflow: hidden;
}
.cockpit-nav {
  padding: 24px;
  background: rgba(3, 10, 29, .52);
  border-right: 1px solid rgba(255, 255, 255, .10);
}
.cockpit-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.cockpit-brand span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #f04c3b, #a51e19); font-weight: 900; }
.cockpit-brand strong { font-family: Manrope, Inter, sans-serif; }
.cockpit-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  margin-top: 6px;
  border-radius: 16px;
  color: rgba(255, 255, 255, .74);
  font-weight: 850;
}
.cockpit-nav a i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .26);
}
.cockpit-nav a.active,
.cockpit-nav a:hover {
  background: rgba(33, 241, 150, .11);
  color: var(--white);
}
.cockpit-nav a.active i { background: var(--green); box-shadow: 0 0 18px rgba(33, 241, 150, .6); }
.cockpit-main { padding: clamp(22px, 2.6vw, 34px); }
.cockpit-toolbar { margin-bottom: 22px; }
.cockpit-toolbar h3 { margin-top: 4px; font-size: clamp(1.6rem, 2.3vw, 3rem); }
.toolbar-actions { display: flex; align-items: center; gap: 12px; }
.search-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  min-width: min(350px, 34vw);
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
}
.search-shell span {
  width: 14px;
  height: 14px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  position: relative;
}
.search-shell span::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  right: -5px;
  bottom: -2px;
  background: var(--muted);
  transform: rotate(45deg);
  border-radius: 99px;
}
.search-shell input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.data-panel select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
}
.search-shell input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(168, 183, 211, .75); }
.pill-button {
  padding: .78rem 1rem;
  color: #03101f;
  background: linear-gradient(135deg, var(--green), #8effca);
}
.pill-button.ghost { color: var(--white); background: rgba(255, 255, 255, .08); border: 1px solid var(--line); }
.ops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 16px; }
.ops-card { padding: 22px; border-radius: var(--radius-lg); }
.ops-card.high { border-color: rgba(33, 241, 150, .28); background: linear-gradient(145deg, rgba(33, 241, 150, .14), rgba(255,255,255,.04)); }
.trend { margin-top: 12px; font-size: .85rem; font-weight: 800; }
.trend.positive { color: var(--green); }
.trend.neutral { color: var(--muted); }
.trend.warning { color: var(--amber); }
.workbench { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); gap: 16px; }
.live-board,
.data-panel {
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(3, 10, 29, .28);
}
.map-canvas { margin-top: 18px; min-height: 300px; }
.vehicle { width: 22px; height: 22px; border-radius: 8px; transform: rotate(45deg); }
.vehicle-a { left: 20%; top: 61%; }
.vehicle-b { left: 52%; top: 38%; background: var(--amber); box-shadow: 0 0 30px rgba(255, 209, 102, .5); }
.vehicle-c { right: 18%; top: 24%; background: var(--orange); box-shadow: 0 0 30px rgba(255, 139, 54, .5); }
.legend-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; color: var(--muted); font-size: .86rem; font-weight: 800; }
.legend-row span { display: inline-flex; align-items: center; gap: 7px; }
.legend-row i { width: 9px; height: 9px; border-radius: 50%; }
.data-panel select {
  max-width: 160px;
  padding: .6rem .75rem;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.queue-list { display: grid; gap: 12px; margin-top: 18px; }
.queue-list article {
  display: grid;
  gap: 7px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .10);
}
.queue-list strong { color: var(--white); }
.queue-list span { color: var(--muted); font-size: .9rem; }
.severity { width: max-content; padding: .35rem .55rem; border-radius: 999px; font-size: .68rem; font-style: normal; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.severity.high { color: var(--red); background: rgba(255, 90, 82, .12); }
.severity.medium { color: var(--amber); background: rgba(255, 209, 102, .12); }
.severity.low { color: var(--green); background: rgba(33, 241, 150, .11); }

.model-section { background: linear-gradient(180deg, #071631 0%, var(--midnight) 100%); }
.model-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: clamp(26px, 5vw, 88px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 58px);
}
.model-header > p {
  color: rgba(219, 230, 248, .82);
  font-size: clamp(1rem, 1.24vw, 1.18rem);
  line-height: 1.82;
}
.model-system {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .36fr);
  gap: 18px;
  padding: clamp(18px, 2.2vw, 28px);
  border-radius: var(--radius-xxl);
}
.process-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.process-card {
  min-height: 360px;
  padding: 24px;
  border-radius: var(--radius-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.process-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
}
.process-card.active {
  border-color: rgba(33, 241, 150, .28);
  background: linear-gradient(145deg, rgba(33, 241, 150, .14), rgba(255, 255, 255, .04));
}
.process-card span { position: absolute; top: 36px; left: 38px; color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .14em; }
.process-card p { margin-top: 12px; }
.outcome-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(3, 10, 29, .28);
}
.outcome-list { display: grid; gap: 12px; margin-top: 24px; }
.outcome-list div {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}
.outcome-list span {
  margin-top: .48rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(33, 241, 150, .62);
}
.audit-card {
  margin-top: 26px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 139, 54, .16), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 139, 54, .22);
}
.audit-card small { color: var(--orange); text-transform: uppercase; letter-spacing: .16em; font-weight: 900; }
.audit-card strong { display: block; margin-top: 8px; color: var(--white); font-family: Manrope, Inter, sans-serif; font-size: 1.12rem; }
.audit-card p { margin-top: 8px; }

.services { background: linear-gradient(180deg, var(--midnight) 0%, #071833 100%); }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card {
  position: relative;
  min-height: 440px;
  padding: clamp(24px, 2.3vw, 34px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.service-card:hover,
.process-card:hover,
.insight-grid article:hover,
.ops-card:hover,
.contact-cards a:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 241, 150, .31);
  background: linear-gradient(155deg, rgba(33, 241, 150, .105), rgba(255,255,255,.04));
}
.service-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 65% 30%, rgba(255,255,255,.8) 0 4px, transparent 5px),
    linear-gradient(135deg, rgba(33, 241, 150, .22), rgba(255,255,255,.04));
  border: 1px solid rgba(33, 241, 150, .25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 18px 44px rgba(33, 241, 150, .11);
}
.service-icon.vip { background: radial-gradient(circle at 60% 32%, rgba(255,255,255,.82) 0 4px, transparent 5px), linear-gradient(135deg, rgba(255, 139, 54, .24), rgba(255,255,255,.04)); border-color: rgba(255,139,54,.25); }
.service-icon.shuttle { background: radial-gradient(circle at 60% 32%, rgba(255,255,255,.82) 0 4px, transparent 5px), linear-gradient(135deg, rgba(95, 135, 255, .24), rgba(255,255,255,.04)); border-color: rgba(95,135,255,.25); }
.service-icon.network { background: radial-gradient(circle at 60% 32%, rgba(255,255,255,.82) 0 4px, transparent 5px), linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.04)); }
.service-card > span {
  display: block;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 900;
}
.service-card h3 { margin-top: 12px; }
.service-card p { margin-top: 14px; }
.service-card ul { display: grid; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.service-card li { display: flex; gap: 10px; color: rgba(255,255,255,.76); font-size: .94rem; }
.service-card li::before { content: ""; flex: 0 0 auto; width: 7px; height: 7px; margin-top: .55rem; border-radius: 50%; background: var(--orange); }

.governance {
  background:
    radial-gradient(circle at 86% 20%, rgba(33, 241, 150, .10), transparent 28%),
    linear-gradient(180deg, #071833 0%, var(--midnight-2) 100%);
}
.governance-layout {
  display: grid;
  grid-template-columns: minmax(340px, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.governance-copy { position: sticky; top: calc(var(--header-h) + 32px); }
.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--green);
  font-weight: 900;
  border-bottom: 1px solid rgba(33, 241, 150, .45);
}
.governance-workspace {
  border-radius: var(--radius-xxl);
  padding: clamp(20px, 2.4vw, 32px);
}
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.filter {
  min-height: 40px;
  padding: .62rem .88rem;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
}
.filter.active,
.filter:hover { color: #03101f; background: var(--green); }
.qa-table { display: grid; gap: 9px; }
.qa-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(120px, .45fr) minmax(140px, .6fr) minmax(110px, auto);
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
}
.qa-row.header {
  background: rgba(255,255,255,.035);
  box-shadow: none;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 900;
}
.qa-row:not(.header) span:first-child { color: var(--white); font-weight: 850; }
.qa-row:not(.header) span { color: var(--muted); }
.badge {
  justify-self: start;
  padding: .42rem .62rem;
  border-radius: 999px;
  font-style: normal;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
}
.badge.ok { color: var(--green); background: rgba(33, 241, 150, .10); }
.badge.amber { color: var(--amber); background: rgba(255, 209, 102, .11); }
.empty-state {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
}
.empty-state > span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(33, 241, 150, .12);
  border: 1px solid rgba(33, 241, 150, .25);
  position: relative;
}
.empty-state > span::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 14px;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}
.empty-state strong { color: var(--white); }
.empty-state p { margin-top: 2px; }

.commercial { background: linear-gradient(180deg, var(--midnight-2) 0%, var(--midnight) 100%); }
.commercial-grid-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}
.report-panel { border-radius: var(--radius-xxl); padding: clamp(22px, 2.6vw, 34px); }
.report-tabs {
  display: flex;
  gap: 8px;
  margin: 24px 0 16px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(3, 10, 29, .36);
  border: 1px solid rgba(255,255,255,.10);
}
.report-tabs button {
  flex: 1;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: transparent;
  font-weight: 900;
}
.report-tabs button.active { color: #03101f; background: var(--green); }
.tab-panel { display: none; padding: 22px; border-radius: var(--radius-lg); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.10); }
.tab-panel.active { display: block; animation: tabFade .22s ease both; }
@keyframes tabFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel h3 { font-size: clamp(1.25rem, 1.8vw, 2rem); }
.tab-panel p { margin-top: 12px; }
.report-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.report-metrics article { padding: 18px; border-radius: 20px; }
.report-metrics strong { font-size: 1rem; }

.trust-section { background: linear-gradient(180deg, var(--midnight) 0%, #06162f 100%); }
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
}
.trust-card { border-radius: var(--radius-xxl); padding: clamp(28px, 4vw, 56px); }
.trust-card p:not(.section-kicker) { margin-top: 18px; font-size: clamp(1rem, 1.2vw, 1.15rem); }
.industry-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
  padding: clamp(20px, 3vw, 34px);
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.045);
}
.industry-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: .78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.84);
  font-weight: 900;
}

.contact-section {
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 139, 54, .11), transparent 32%),
    linear-gradient(180deg, #06162f 0%, var(--midnight) 100%);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, .72fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 32px; }
.contact-cards a { padding: 20px; border-radius: var(--radius-lg); }
.contact-cards strong { display: block; margin-top: 6px; color: var(--white); font-size: 1.06rem; }
.contact-form {
  border-radius: var(--radius-xxl);
  padding: clamp(22px, 2.8vw, 38px);
}
.form-header { margin-bottom: 24px; }
.form-header h3 { margin-top: 8px; font-size: clamp(1.45rem, 2vw, 2.3rem); }
.form-header p { margin-top: 10px; }
.contact-form label { display: grid; gap: 8px; margin-top: 15px; }
.contact-form label > span { color: rgba(255,255,255,.78); font-size: .86rem; font-weight: 900; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(3, 10, 29, .38);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea { padding: 14px 16px; min-height: 132px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(33, 241, 150, .48);
  box-shadow: 0 0 0 4px rgba(33, 241, 150, .10);
  background: rgba(3, 10, 29, .52);
}
.contact-form select option { color: #071631; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .btn { margin-top: 18px; }
.form-note { margin-top: 14px; font-size: .9rem; }
.form-note.success { color: var(--green); }
.form-note.error { color: var(--red); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.site-footer { padding: 38px 0; border-top: 1px solid rgba(255,255,255,.10); background: rgba(3,10,29,.78); }
.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, .55fr) 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer-inner p { margin-top: 12px; max-width: 520px; }
.footer-inner nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.footer-inner nav a { color: rgba(255,255,255,.72); font-weight: 800; padding: .5rem .2rem; }
.footer-inner nav a:hover { color: var(--green); }
.copyright { white-space: nowrap; margin: 0 !important; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .64); backdrop-filter: blur(10px); }
.modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(760px, 90svh);
  overflow: auto;
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-xxl);
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
  font-size: 1.6rem;
  line-height: 1;
}
.modal-kicker { color: var(--green); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 900; }
.modal-card h2 { margin-top: 12px; font-size: clamp(1.8rem, 3vw, 3.8rem); }
.modal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.modal-grid article { padding: 18px; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.11); }
.modal-grid strong { color: var(--white); }
.modal-grid p { margin-top: 6px; }
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 140;
  max-width: min(420px, calc(100vw - 44px));
  padding: 16px 18px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(3, 10, 29, .88);
  border: 1px solid rgba(33, 241, 150, .28);
  box-shadow: var(--shadow-soft);
  transform: translateY(22px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1280px) {
  .hero-content { grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: 1fr; }
  .split-intro { grid-template-columns: 1fr; }
  .cockpit { grid-template-columns: 220px 1fr; }
  .workbench { grid-template-columns: 1fr; }
  .commercial-grid-layout { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  :root { --header-h: 76px; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 14px auto 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(3, 10, 29, .94);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { width: 100%; border-radius: 16px; padding: 1rem; }
  .hero-content { grid-template-columns: 1fr; align-items: start; }
  .command-centre { max-width: 720px; }
  .app-window { transform: none; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
  .hero-metrics article:nth-child(2) { border-right: 0; }
  .hero-metrics article:nth-child(1), .hero-metrics article:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.10); }
  .model-header,
  .model-system,
  .governance-layout,
  .trust-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .governance-copy { position: static; }
  .cockpit { grid-template-columns: 1fr; }
  .cockpit-nav { display: none; }
  .toolbar-actions { width: 100%; flex-wrap: wrap; }
  .search-shell { flex: 1 1 280px; min-width: 0; }
  .ops-grid { grid-template-columns: 1fr; }
  .qa-row { grid-template-columns: 1fr; gap: 6px; }
  .qa-row.header { display: none; }
  .qa-row span:nth-child(2)::before { content: "Frequency: "; color: var(--subtle); font-weight: 900; }
  .qa-row span:nth-child(3)::before { content: "Evidence: "; color: var(--subtle); font-weight: 900; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-inner nav { justify-content: flex-start; }
  .copyright { white-space: normal; }
}

@media (max-width: 760px) {
  :root { --page-x: 18px; --section-y: 70px; }
  .brand-mark { width: 48px; height: 48px; }
  .brand-text strong { font-size: .92rem; }
  .brand-text em { font-size: .6rem; letter-spacing: .20em; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 38px); }
  .hero-media img { object-position: 70% center; }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .hero-lead { font-size: 1rem; line-height: 1.7; }
  .btn { width: 100%; }
  .app-body { grid-template-columns: 1fr; }
  .mini-sidebar { display: none; }
  .route-panel { grid-template-columns: 1fr; }
  .route-map { min-height: 210px; }
  .hero-metrics { grid-template-columns: 1fr; border-radius: 26px; }
  .hero-metrics article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .hero-metrics article:last-child { border-bottom: 0; }
  .cockpit-main { padding: 18px; }
  .cockpit-toolbar { align-items: stretch; flex-direction: column; }
  .toolbar-actions { display: grid; grid-template-columns: 1fr; }
  .pill-button { width: 100%; }
  .map-canvas { min-height: 240px; }
  .process-rail { grid-template-columns: 1fr; overflow: visible; }
  .process-card { min-height: auto; padding-top: 92px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .report-tabs { border-radius: 22px; flex-direction: column; }
  .report-metrics { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .modal-grid { grid-template-columns: 1fr; }
  .window-bar strong { display: none; }
}

@media (max-width: 420px) {
  .wide-frame { padding-inline: 15px; }
  .hero-actions { gap: 10px; }
  .kpi-row { grid-template-columns: 1fr; }
  .dashboard-preview { padding: 16px; }
  .app-window,
  .cockpit,
  .model-system,
  .governance-workspace,
  .report-panel,
  .contact-form,
  .trust-card { border-radius: 24px; }
}

.thanks-page,
.legal-page {
  min-height: 100svh;
  padding: calc(var(--header-h) + 64px) var(--page-x) var(--section-y);
  background:
    radial-gradient(circle at 12% 12%, rgba(33,241,150,.12), transparent 32%),
    radial-gradient(circle at 85% 6%, rgba(255,139,54,.10), transparent 28%),
    var(--midnight);
}
.thanks-panel,
.legal-page > .wide-frame,
.legal-page > .container {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-xxl);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(155deg, rgba(255,255,255,.105), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.thanks-panel .brand { margin-bottom: 34px; }
.thanks-panel h1,
.legal-page h1 { font-size: clamp(2.3rem, 5vw, 5.2rem); }
.thanks-panel p:not(.section-kicker),
.legal-page p { margin-top: 16px; font-size: clamp(1rem, 1.2vw, 1.12rem); line-height: 1.8; }
.thanks-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn-outline { color: var(--white); background: rgba(255,255,255,.075); border: 1px solid rgba(255,255,255,.18); }
.legal-page h2 { margin-top: 34px; font-size: clamp(1.5rem, 2.4vw, 2.5rem); }
.legal-page a { color: var(--green); font-weight: 900; }
.static.main-nav { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: 0; box-shadow: none; backdrop-filter: none; }
@media (max-width: 760px) {
  .thanks-actions .btn { width: 100%; }
  .thanks-page, .legal-page { padding-inline: 16px; }
}
