:root {
  --ink: #0b1f33;
  --muted: #526474;
  --primary: #3157e6;
  --primary-dark: #2444bf;
  --live: #1dbd9f;
  --spark: #c8f04a;
  --canvas: #f5f8fa;
  --surface: #ffffff;
  --line: #d7e1e8;
  --success: #0b6f64;
  --warning: #7a4b00;
  --danger: #a34b52;
  --shadow-low: 0 1px 2px rgba(11, 31, 51, 0.06), 0 8px 28px rgba(11, 31, 51, 0.05);
  --shadow-high: 0 24px 70px rgba(11, 31, 51, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --page: min(1240px, calc(100vw - 48px));
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(49, 87, 230, 0.42);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--primary);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(215, 225, 232, 0.72);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 26px rgba(11, 31, 51, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 37px;
  height: 37px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--primary);
  box-shadow: 0 7px 16px rgba(49, 87, 230, 0.22);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  z-index: 1;
  content: "";
  background: #fff;
}

.brand-mark::before {
  top: 9px;
  left: 9px;
  width: 5px;
  height: 20px;
  border-radius: 4px;
  box-shadow: 14px -3px 0 #fff;
}

.brand-mark::after {
  top: 12px;
  left: 11px;
  width: 18px;
  height: 5px;
  border-radius: 4px;
  transform: rotate(50deg);
  transform-origin: left center;
}

.brand-mark > span {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--spark);
}

.brand-word {
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-descriptor {
  margin-left: 2px;
  padding-left: 11px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav > a,
.nav-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  color: #344b5f;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-signin:hover,
.nav-signin:focus-visible {
  color: var(--primary);
  background: #eef2ff;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.85rem;
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(49, 87, 230, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 14px 30px rgba(49, 87, 230, 0.28);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 7px 20px rgba(11, 31, 51, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #b7c6d0;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  min-height: 730px;
  padding: clamp(74px, 9vw, 126px) max(24px, calc((100vw - 1240px) / 2)) 104px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(49, 87, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 87, 230, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, #f8fbff 0%, #fff 47%, #f2fbf8 100%);
  background-size: 36px 36px, 36px 36px, auto;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.25) 55%, transparent);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: -210px;
  right: 12%;
  background: radial-gradient(circle, rgba(49, 87, 230, 0.15), rgba(49, 87, 230, 0));
}

.hero-glow-two {
  right: -190px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(29, 189, 159, 0.16), rgba(29, 189, 159, 0));
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 23px;
  height: 3px;
  border-radius: 3px;
  background: var(--live);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 6.2vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero h1 em {
  position: relative;
  color: var(--primary);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 1%;
  bottom: -2px;
  left: 2%;
  height: 8px;
  border-radius: 8px;
  background: var(--spark);
  content: "";
  transform: rotate(-1.5deg);
  z-index: -1;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 30px;
  color: #40566a;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;
  margin: 27px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
}

.hero-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-assurances li span {
  display: inline-grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: var(--success);
  background: #e8f8f4;
  font-size: 0.7rem;
}

.product-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  perspective: 1100px;
}

.stage-window {
  overflow: hidden;
  border: 1px solid rgba(191, 204, 214, 0.85);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-high);
  transform: rotateY(-2deg) rotateX(1deg);
  transform-origin: center;
}

.stage-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 57px;
  padding: 10px 16px;
  border-bottom: 1px solid #e7edf1;
  background: #fbfcfd;
}

.stage-brand,
.saved-state {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2f4559;
  font-size: 0.72rem;
}

.mini-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: linear-gradient(145deg, var(--primary), #5377f0);
  box-shadow: inset 7px 0 0 rgba(255, 255, 255, 0.16);
}

.saved-state {
  color: var(--muted);
  font-weight: 700;
}

.saved-state > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
}

.stage-layout {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 455px;
}

.stage-steps {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: 16px 10px;
  border-right: 1px solid #e7edf1;
  background: #f7f9fb;
}

.stage-step {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 8px;
  border-radius: 8px;
  color: #718291;
  font-size: 0.65rem;
  font-weight: 700;
}

.stage-step b {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #cfd9e0;
  border-radius: 6px;
  background: #fff;
  font-size: 0.58rem;
}

.stage-step.is-done {
  color: var(--success);
}

.stage-step.is-done b {
  border-color: #b7e0d6;
  background: #e8f8f4;
}

.stage-step.is-active {
  color: var(--primary);
  background: #eef2ff;
}

.stage-step.is-active b {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.stage-main {
  min-width: 0;
  padding: 14px 18px 18px;
  background: #fff;
}

.stage-tabs {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid #e2e9ee;
  border-radius: 9px;
  background: #f7f9fb;
}

.stage-tabs button {
  min-height: 30px;
  padding: 5px 11px;
  border: 0;
  border-radius: 6px;
  color: #667887;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
}

.stage-tabs button[aria-selected="true"] {
  color: var(--primary);
  background: #fff;
  box-shadow: 0 1px 5px rgba(11, 31, 51, 0.1);
}

.stage-panel {
  padding-top: 18px;
}

.stage-panel[hidden] {
  display: none;
}

.stage-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 13px;
}

.stage-kicker {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stage-heading h2 {
  margin-bottom: 0;
  font-size: 1.23rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.progress-count {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--primary);
  background: #eef2ff;
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

.progress-track {
  height: 5px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf0f4;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--live));
}

.source-list {
  display: grid;
  gap: 8px;
}

.source-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #e3eaef;
  border-radius: 10px;
  background: #fff;
}

.source-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  font-size: 0.7rem;
  font-weight: 900;
}

.source-official {
  color: var(--primary);
  background: #eef2ff;
}

.source-document {
  color: var(--success);
  background: #e8f8f4;
}

.source-alert {
  color: var(--warning);
  background: #fff7df;
}

.source-row strong,
.source-row small {
  display: block;
}

.source-row strong {
  margin-bottom: 2px;
  color: #21384c;
  font-size: 0.72rem;
}

.source-row small {
  color: #718291;
  font-size: 0.6rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: max-content;
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 850;
  white-space: nowrap;
}

.status-ready {
  color: var(--success);
  background: #e8f8f4;
}

.status-review {
  color: var(--warning);
  background: #fff7df;
}

.stage-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 13px 0 0;
  color: #607383;
  font-size: 0.62rem;
}

.stage-note > span {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: var(--primary);
  background: #eef2ff;
  font-size: 0.58rem;
  font-weight: 900;
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.review-summary div {
  padding: 10px;
  border: 1px solid #e3eaef;
  border-radius: 10px;
  background: #fbfcfd;
}

.review-summary strong,
.review-summary span {
  display: block;
}

.review-summary strong {
  font-size: 1.1rem;
}

.review-summary span {
  color: var(--muted);
  font-size: 0.58rem;
}

.review-card {
  padding: 13px;
  border: 1px solid #ead9ae;
  border-radius: 11px;
  background: #fffdf6;
}

.review-card h3 {
  margin: 7px 0 4px;
  font-size: 0.85rem;
}

.review-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.65rem;
}

.review-actions {
  display: flex;
  gap: 7px;
}

.review-actions button {
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid #d8e1e7;
  border-radius: 7px;
  color: #40576a;
  background: #fff;
  font-size: 0.61rem;
  font-weight: 800;
  cursor: pointer;
}

.review-actions .approve-button {
  color: #fff;
  border-color: var(--primary);
  background: var(--primary);
}

.mini-site {
  overflow: hidden;
  border: 1px solid #dce5eb;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.1);
}

.mini-site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 5px 9px;
}

.mini-seal {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-right: auto;
  border-radius: 50%;
  color: #fff;
  background: #0b5274;
  font-size: 0.45rem;
  font-weight: 900;
}

.mini-site-nav > span:not(.mini-seal) {
  width: 27px;
  height: 3px;
  border-radius: 3px;
  background: #ccd7df;
}

.mini-site-nav b {
  width: 42px;
  height: 14px;
  border-radius: 4px;
  background: #0b5274;
}

.mini-site-hero {
  display: grid;
  align-content: center;
  min-height: 172px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 51, 74, 0.96), rgba(5, 51, 74, 0.62)),
    linear-gradient(135deg, #1b7f8a, #8eb9a5);
}

.mini-site-hero small {
  margin-bottom: 7px;
  color: #f1cb4b;
  font-size: 0.52rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mini-site-hero strong {
  max-width: 270px;
  font-size: 1.07rem;
  line-height: 1.1;
}

.mini-site-hero i {
  width: 72px;
  height: 17px;
  margin-top: 12px;
  border-radius: 5px;
  background: #f1cb4b;
}

.mini-site-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 10px;
}

.mini-site-cards span {
  height: 47px;
  border: 1px solid #dfe7ec;
  border-radius: 7px;
  background: linear-gradient(135deg, #fff, #f3f7f8);
}

.stage-float {
  position: absolute;
  z-index: 5;
  display: grid;
  padding: 11px 13px;
  border: 1px solid rgba(215, 225, 232, 0.88);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(11, 31, 51, 0.13);
  backdrop-filter: blur(10px);
}

.stage-float-left {
  bottom: 42px;
  left: -27px;
  grid-template-columns: 26px auto;
  column-gap: 8px;
}

.stage-float-left > span {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  color: var(--success);
  background: #e8f8f4;
  font-weight: 900;
}

.stage-float strong,
.stage-float small {
  display: block;
}

.stage-float strong {
  color: #294054;
  font-size: 0.67rem;
}

.stage-float small {
  color: var(--muted);
  font-size: 0.55rem;
}

.stage-float-right {
  top: 90px;
  right: -24px;
}

.stage-float-right > span {
  color: var(--primary);
  font-size: 0.55rem;
  font-weight: 850;
  text-transform: uppercase;
}

.trust-ribbon {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: var(--page);
  margin: -35px auto 0;
  padding: 17px 20px;
  border: 1px solid #d8e3e9;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-low);
}

.trust-ribbon-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--spark);
  font-weight: 900;
}

.trust-ribbon p {
  margin-bottom: 0;
  color: #496074;
  font-size: 0.83rem;
}

.trust-ribbon p strong {
  color: var(--ink);
}

.trust-ribbon > a,
.text-link {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.trust-ribbon > a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding-block: clamp(88px, 11vw, 144px);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 48px;
}

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

.section-intro.centered .eyebrow {
  justify-content: center;
}

.section-intro h2,
.workflow-heading h2,
.trust-copy h2,
.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.2vw, 4.55rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.section-intro > p:last-child,
.workflow-heading > p,
.trust-copy > p,
.final-cta > div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.outcomes {
  padding-bottom: 96px;
}

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

.outcome-grid article {
  position: relative;
  min-height: 240px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #fff, #f8fafc);
  box-shadow: var(--shadow-low);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.outcome-grid article::after {
  position: absolute;
  right: -52px;
  bottom: -67px;
  width: 150px;
  height: 150px;
  border: 20px solid rgba(49, 87, 230, 0.04);
  border-radius: 45px;
  content: "";
  transform: rotate(28deg);
}

.outcome-grid article:hover {
  transform: translateY(-5px);
  border-color: #bbc9d4;
  box-shadow: 0 18px 42px rgba(11, 31, 51, 0.09);
}

.feature-number {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-bottom: 48px;
  border-radius: 12px;
  color: var(--primary);
  background: #eef2ff;
  font-size: 0.75rem;
  font-weight: 900;
}

.outcome-grid article:nth-child(2) .feature-number {
  color: var(--success);
  background: #e8f8f4;
}

.outcome-grid article:nth-child(3) .feature-number {
  color: var(--ink);
  background: #effacb;
}

.outcome-grid h3,
.blueprint-grid strong,
.track-card h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

.outcome-grid p,
.blueprint-grid p,
.track-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: start;
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1240px) / 2));
  background: var(--canvas);
}

.workflow-heading {
  position: sticky;
  top: 120px;
  max-width: 520px;
}

.workflow-heading .text-link {
  display: inline-block;
  margin-top: 25px;
  font-size: 0.92rem;
}

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

.workflow-list::before {
  position: absolute;
  top: 52px;
  bottom: 52px;
  left: 33px;
  width: 2px;
  background: linear-gradient(var(--primary), var(--live));
  content: "";
}

.workflow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
}

.workflow-list li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 6px solid #fff;
  border-radius: 14px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 0 0 1px #d9e2e8;
  font-size: 0.8rem;
  font-weight: 900;
}

.workflow-list li:nth-child(2) > span,
.workflow-list li:nth-child(3) > span {
  background: #287f88;
}

.workflow-list li:nth-child(4) > span {
  color: var(--ink);
  background: var(--spark);
}

.workflow-list h3 {
  margin: 4px 0 6px;
  font-size: 1rem;
}

.workflow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.split-intro {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(36px, 8vw, 110px);
  align-items: end;
  max-width: none;
}

.split-intro h2 {
  margin-bottom: 0;
}

.split-intro > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1rem;
}

.civic-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-bottom: 22px;
}

.city-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 470px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(11, 31, 51, 0.15);
  isolation: isolate;
}

.city-cadiz {
  min-height: 420px;
  margin-top: 50px;
}

.city-card img,
.city-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.city-card img {
  z-index: -2;
  object-fit: cover;
  transition: transform 450ms ease;
}

.city-overlay {
  z-index: -1;
  background: linear-gradient(0deg, rgba(6, 31, 47, 0.96), rgba(6, 31, 47, 0.1) 78%);
}

.city-card:hover img {
  transform: scale(1.035);
}

.city-content {
  display: grid;
  padding: 32px;
}

.city-content small {
  margin-bottom: 8px;
  color: #d6f76c;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-content > strong {
  margin-bottom: 5px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.city-content > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.city-content b {
  margin-top: 20px;
  font-size: 0.82rem;
}

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

.blueprint-grid article {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  transition: border-color 160ms ease, transform 160ms ease;
}

.blueprint-grid article:hover {
  transform: translateY(-3px);
  border-color: #b8c8d3;
}

.blueprint-grid article > span {
  display: block;
  margin-bottom: 32px;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 900;
}

.blueprint-grid strong {
  display: block;
}

.blueprint-grid p {
  font-size: 0.82rem;
}

.trust-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(520px, 1.17fr);
  gap: clamp(54px, 9vw, 126px);
  align-items: center;
  min-height: 720px;
  padding: clamp(88px, 11vw, 140px) max(24px, calc((100vw - 1240px) / 2));
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.trust-pattern {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(200, 240, 74, 0.18);
  border-radius: 110px;
  opacity: 0.7;
  transform: rotate(35deg);
}

.trust-pattern::before,
.trust-pattern::after {
  position: absolute;
  border: 1px solid rgba(29, 189, 159, 0.22);
  border-radius: inherit;
  content: "";
}

.trust-pattern::before {
  inset: 70px;
}

.trust-pattern::after {
  inset: 140px;
}

.trust-copy,
.trust-checks {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: #8fe2d0;
}

.trust-copy > p {
  color: #b6c4ce;
}

.button-light {
  margin-top: 28px;
  color: var(--ink);
  background: var(--spark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--ink);
  background: #d7f775;
}

.trust-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.trust-checks article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(183, 202, 214, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.trust-checks article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--live);
  font-weight: 900;
}

.trust-checks h3 {
  margin: 4px 0 7px;
  font-size: 0.94rem;
}

.trust-checks p {
  margin: 0;
  color: #aebdc8;
  font-size: 0.78rem;
}

.expansion-section {
  padding-bottom: 108px;
}

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

.track-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.track-card.is-current {
  color: #fff;
  border-color: var(--primary);
  background:
    radial-gradient(circle at 86% 15%, rgba(200, 240, 74, 0.2), transparent 27%),
    linear-gradient(145deg, #3157e6, #213d9d);
  box-shadow: 0 18px 45px rgba(49, 87, 230, 0.21);
}

.track-state {
  width: max-content;
  margin-bottom: 50px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--canvas);
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.is-current .track-state {
  color: var(--ink);
  background: var(--spark);
}

.track-card h3 {
  font-size: 1.4rem;
}

.track-card.is-current p,
.track-card.is-current li {
  color: rgba(255, 255, 255, 0.78);
}

.track-card ul {
  display: grid;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  color: #455b6d;
  font-size: 0.79rem;
  list-style: none;
}

.track-card li::before {
  margin-right: 8px;
  color: var(--live);
  content: "✓";
  font-weight: 900;
}

.track-card > a {
  margin-top: auto;
  padding-top: 28px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.track-card > a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  width: var(--page);
  margin: 0 auto 90px;
  padding: clamp(42px, 6vw, 68px);
  border: 1px solid #cfd9e1;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(49, 87, 230, 0.08), rgba(29, 189, 159, 0.08)),
    #fff;
  box-shadow: var(--shadow-low);
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
}

.final-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.final-actions > span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  padding: 70px max(24px, calc((100vw - 1240px) / 2)) 28px;
  color: #fff;
  background: #071727;
}

.brand-footer {
  color: #fff;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: #9eb0bd;
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links a {
  width: max-content;
  color: #9eb0bd;
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(183, 202, 214, 0.14);
  color: #758a99;
  font-size: 0.71rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-high);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a,
  .nav-signin {
    justify-content: flex-start;
    min-height: 46px;
    padding-inline: 13px;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 8px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .nav-actions .button {
    width: 100%;
  }

  .hero {
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
    gap: 40px;
    padding-inline: 24px;
  }

  .stage-float-left {
    left: -12px;
  }

  .stage-float-right {
    right: -12px;
  }

  .workflow-section,
  .trust-section {
    padding-inline: 24px;
  }
}

@media (max-width: 940px) {
  :root {
    --page: min(100% - 40px, 760px);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 78px;
    padding-bottom: 110px;
  }

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

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.7rem, 11vw, 6.2rem);
  }

  .product-stage {
    width: min(720px, 100%);
    margin: 12px auto 0;
  }

  .stage-window {
    transform: none;
  }

  .trust-ribbon {
    grid-template-columns: auto 1fr;
  }

  .trust-ribbon > a {
    grid-column: 2;
  }

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

  .outcome-grid article:last-child,
  .track-grid article:last-child {
    grid-column: 1 / -1;
  }

  .workflow-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .workflow-heading {
    position: static;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-intro > p {
    max-width: 680px;
  }

  .trust-section {
    min-height: 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-actions {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-descriptor {
    display: none;
  }

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

  .site-nav {
    top: 68px;
    right: 10px;
    left: 10px;
    max-height: calc(100vh - 78px);
  }

  .hero {
    gap: 44px;
    padding: 60px 14px 86px;
    background-size: 28px 28px, 28px 28px, auto;
  }

  .hero h1 {
    margin-bottom: 21px;
    font-size: clamp(3.2rem, 17vw, 4.6rem);
    letter-spacing: -0.07em;
  }

  .hero-lead {
    font-size: 1rem;
  }

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

  .hero-assurances {
    display: grid;
  }

  .stage-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .stage-steps {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding: 9px;
    border-right: 0;
    border-bottom: 1px solid #e7edf1;
    scrollbar-width: none;
  }

  .stage-steps::-webkit-scrollbar {
    display: none;
  }

  .stage-step {
    flex: 0 0 auto;
  }

  .stage-main {
    padding: 12px;
  }

  .stage-float {
    display: none;
  }

  .source-row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .source-row .status {
    grid-column: 2;
  }

  .stage-window {
    border-radius: 16px;
  }

  .trust-ribbon {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: -25px;
    padding: 17px;
  }

  .trust-ribbon > a {
    grid-column: auto;
  }

  .section {
    padding-block: 86px;
  }

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

  .section-intro h2,
  .workflow-heading h2,
  .trust-copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .outcome-grid,
  .blueprint-grid,
  .track-grid,
  .trust-checks {
    grid-template-columns: 1fr;
  }

  .outcome-grid article:last-child,
  .track-grid article:last-child {
    grid-column: auto;
  }

  .outcome-grid article {
    min-height: 220px;
  }

  .workflow-section,
  .trust-section {
    padding-inline: 14px;
  }

  .workflow-list::before {
    left: 26px;
  }

  .workflow-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .workflow-list li > span {
    width: 38px;
    height: 38px;
    border-width: 4px;
    border-radius: 11px;
  }

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

  .city-card,
  .city-cadiz {
    min-height: 390px;
    margin-top: 0;
  }

  .city-content {
    padding: 24px;
  }

  .trust-checks article {
    min-height: 0;
  }

  .track-card {
    min-height: 350px;
  }

  .final-cta {
    width: calc(100% - 28px);
    margin-bottom: 60px;
    padding: 30px 22px;
    border-radius: 18px;
  }

  .final-cta h2 {
    font-size: clamp(2.15rem, 12vw, 3.25rem);
  }

  .final-actions,
  .final-actions .button {
    width: 100%;
  }

  .final-actions {
    justify-items: stretch;
  }

  .final-actions > span {
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 55px 20px 24px;
  }

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

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .nav-actions {
    grid-template-columns: 1fr;
  }

  .stage-topbar {
    padding-inline: 11px;
  }

  .saved-state {
    display: none;
  }

  .stage-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .stage-heading {
    display: grid;
  }

  .review-summary {
    gap: 5px;
  }

  .mini-site-hero {
    min-height: 145px;
    padding: 18px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

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

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .city-card:hover img,
  .button:hover,
  .outcome-grid article:hover,
  .blueprint-grid article:hover {
    transform: none;
  }
}
