:root {
  color-scheme: light;
  --navy: #0b1f35;
  --navy-2: #102b49;
  --blue: #1769e0;
  --blue-dark: #0e4fa8;
  --blue-soft: #eaf2ff;
  --green: #16855b;
  --green-soft: #e7f6ef;
  --orange: #b75c13;
  --orange-soft: #fff1e5;
  --ink: #122033;
  --muted: #5d6b7a;
  --line: #dbe3ea;
  --line-strong: #c5d0da;
  --surface: #fff;
  --surface-soft: #f4f7fa;
  --shadow-sm: 0 8px 22px rgba(11, 31, 53, .08);
  --shadow-md: 0 20px 55px rgba(11, 31, 53, .13);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shell: 1260px;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Segoe UI Variable", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { display: block; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .16s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #66a4ff; outline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(197, 208, 218, .8);
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 8px 28px rgba(11, 31, 53, .06);
  backdrop-filter: blur(14px);
}
.utility-bar {
  min-height: 32px;
  background: var(--navy);
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
}
.utility-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.utility-inner p { margin: 0; display: flex; align-items: center; gap: 8px; }
.utility-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #55d39b;
  box-shadow: 0 0 0 4px rgba(85, 211, 155, .15);
}
.nav-shell {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 250px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 30px);
}
.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #344256;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .18s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(23, 105, 224, .18);
  font-weight: 720;
  text-decoration: none;
  transition: background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.button:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 10px 25px rgba(14, 79, 168, .24);
  transform: translateY(-1px);
}
.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-small { min-height: 44px; padding-inline: 17px; font-size: 14px; }

.hero {
  position: relative;
  min-height: 680px;
  overflow: clip;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(112deg, #f9fbfd 0%, #eef4fa 53%, #e7f0f8 100%);
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-one {
  width: 420px;
  height: 420px;
  top: -240px;
  left: -80px;
  background: radial-gradient(circle, rgba(23, 105, 224, .15), transparent 68%);
}
.hero-glow-two {
  width: 620px;
  height: 620px;
  right: -180px;
  bottom: -300px;
  background: radial-gradient(circle, rgba(22, 133, 91, .13), transparent 66%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
  align-items: center;
  gap: clamp(48px, 6vw, 94px);
  padding-block: 76px 88px;
}
.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--blue-dark); }
.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(54px, 6.5vw, 88px);
  font-weight: 730;
  letter-spacing: -.055em;
  line-height: .96;
}
.hero-intro {
  max-width: 670px;
  margin: 26px 0 28px;
  color: #405066;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.55;
}
.status-row {
  max-width: 620px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 17px;
  border: 1px solid rgba(23, 105, 224, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}
.status-pulse {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #1baa72;
  box-shadow: 0 0 0 5px rgba(27, 170, 114, .13);
}
.status-note { color: var(--muted); font-size: 13px; }
.hero-actions { margin-top: 27px; display: flex; align-items: center; gap: 22px; }
.text-link {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.hero-visual { position: relative; min-height: 500px; display: grid; place-items: center; }
.visual-grid {
  position: absolute;
  inset: 8% -5%;
  opacity: .28;
  background-image:
    linear-gradient(rgba(23, 105, 224, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 224, .14) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, #000 18%, transparent 72%);
}
.visual-orbit {
  position: absolute;
  border: 1px solid rgba(23, 105, 224, .15);
  border-radius: 50%;
}
.visual-orbit-one { width: 440px; height: 440px; }
.visual-orbit-two { width: 335px; height: 335px; border-style: dashed; }
.preview-panel {
  position: relative;
  z-index: 2;
  width: min(470px, 94%);
  padding: 28px;
  border: 1px solid rgba(197, 208, 218, .9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.panel-header > div { display: grid; gap: 3px; }
.panel-header strong { color: var(--navy); font-size: 18px; }
.panel-kicker {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.development-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.plate-search {
  min-height: 72px;
  margin: 25px 0;
  display: grid;
  grid-template-columns: 32px 1fr 54px;
  align-items: center;
  overflow: hidden;
  border: 2px solid #122033;
  border-radius: 10px;
  background: #fff;
}
.plate-country {
  height: 100%;
  display: grid;
  place-items: center;
  background: #1258b5;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.plate-search strong {
  padding-left: 20px;
  color: #111;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 27px;
  letter-spacing: .09em;
}
.search-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
}
.search-symbol svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.preview-flow { display: grid; gap: 10px; }
.preview-flow > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--surface-soft);
}
.flow-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
}
.flow-icon-green { background: var(--green-soft); color: var(--green); }
.flow-icon-orange { background: var(--orange-soft); color: var(--orange); }
.flow-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.preview-flow p { margin: 0; display: grid; line-height: 1.35; }
.preview-flow strong { color: var(--navy); font-size: 14px; }
.preview-flow p span { color: var(--muted); font-size: 12px; }
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.floating-card-one { top: 36px; right: -28px; }
.floating-card-two { bottom: 35px; left: -20px; }
.floating-card svg {
  width: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-card span { display: grid; color: var(--muted); font-size: 11px; line-height: 1.35; }
.floating-card strong { color: var(--navy); font-size: 13px; }

.why-section { padding: 100px 0; }
.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 9vw, 125px);
}
.split-section h2,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 58px);
  letter-spacing: -.04em;
  line-height: 1.05;
}
.section-copy { padding-top: 4px; }
.section-copy p { margin: 0 0 18px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-copy .lead { color: #344256; font-size: 20px; font-weight: 560; }

.principles-section {
  padding: 98px 0 110px;
  border-block: 1px solid var(--line);
  background: var(--surface-soft);
}
.section-heading {
  margin-bottom: 43px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}
.section-heading > p { max-width: 470px; margin: 0 0 4px; color: var(--muted); font-size: 17px; }
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.principle-grid article {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 5px 18px rgba(11, 31, 53, .04);
}
.card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #e2e8ee;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
}
.card-icon-green { background: var(--green-soft); color: var(--green); }
.card-icon-orange { background: var(--orange-soft); color: var(--orange); }
.card-icon-navy { background: #e9eef3; color: var(--navy); }
.card-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.principle-grid h3 { margin: 32px 0 10px; color: var(--navy); font-size: 20px; }
.principle-grid p { margin: 0; color: var(--muted); line-height: 1.7; }

.goals-section { padding: 110px 0; }
.goals-card {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  gap: clamp(55px, 8vw, 115px);
  padding: clamp(45px, 6vw, 78px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(23, 105, 224, .26), transparent 34%),
    linear-gradient(135deg, var(--navy), #102b49);
  color: #fff;
  box-shadow: 0 26px 70px rgba(11, 31, 53, .2);
}
.goals-intro .eyebrow { color: #7bb2ff; }
.goals-intro h2 {
  margin: 0;
  font-size: clamp(40px, 4.8vw, 62px);
  letter-spacing: -.045em;
  line-height: 1.02;
}
.goals-intro > p:last-child { max-width: 450px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 17px; }
.goal-list { margin: 0; padding: 0; display: grid; list-style: none; }
.goal-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.goal-list li:first-child { padding-top: 0; }
.goal-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.goal-list li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #8dbdff;
  font-weight: 800;
}
.goal-list strong { font-size: 18px; }
.goal-list p { margin: 6px 0 0; color: rgba(255,255,255,.68); line-height: 1.6; }

.contact-section { padding: 0 0 110px; }
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 42px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, #f7fafe, #eef5fc);
}
.contact-card h2 { font-size: clamp(31px, 3.6vw, 48px); }
.contact-card p:last-child { max-width: 700px; margin: 15px 0 0; color: var(--muted); font-size: 17px; }
.contact-card .button { flex: 0 0 auto; }

.site-footer { border-top: 1px solid var(--line); background: #f8fafc; }
.footer-main {
  min-height: 165px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer-brand img { width: 220px; height: auto; }
.footer-brand p { margin: 10px 0 0 1px; color: var(--muted); font-size: 14px; }
.footer-status { display: grid; justify-items: end; gap: 12px; }
.footer-status > span { display: flex; align-items: center; gap: 10px; color: var(--navy); font-size: 13px; font-weight: 750; }
.footer-status a { color: var(--blue-dark); font-weight: 700; text-underline-offset: 4px; }
.footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #718092;
  font-size: 12px;
}

@media (max-width: 1080px) {
  .nav-shell { grid-template-columns: auto 1fr; }
  .main-nav { display: none; }
  .nav-shell > .button { justify-self: end; }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 34px; }
  .floating-card-one { right: -5px; }
  .floating-card-two { left: -5px; }
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-grid article { min-height: 270px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 100px; }
  .utility-message { display: none !important; }
  .nav-shell { min-height: 78px; }
  .brand img { width: 205px; }
  .nav-shell > .button { min-height: 42px; padding-inline: 14px; }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 58px 72px;
  }
  .hero-copy { text-align: left; }
  .hero h1 { font-size: clamp(52px, 13vw, 78px); }
  .hero-visual { min-height: 525px; }
  .split-section,
  .goals-card { grid-template-columns: 1fr; }
  .section-heading { display: grid; gap: 20px; }
  .section-heading > p { max-width: 650px; }
  .contact-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .utility-inner { justify-content: center; }
  .nav-shell { grid-template-columns: 1fr auto; gap: 10px; }
  .brand img { width: 168px; }
  .nav-shell > .button { min-height: 40px; padding-inline: 12px; font-size: 12px; }
  .nav-shell > .button svg { display: none; }
  .hero { min-height: 0; }
  .hero-grid { padding-block: 46px 58px; }
  .hero h1 { font-size: 50px; }
  .hero-intro { margin-top: 20px; font-size: 18px; }
  .status-row { align-items: flex-start; flex-direction: column; gap: 8px; }
  .status-note { padding-left: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .hero-visual { min-height: 470px; }
  .visual-orbit-one { width: 340px; height: 340px; }
  .visual-orbit-two { width: 270px; height: 270px; }
  .preview-panel { width: 100%; padding: 20px; }
  .panel-header strong { font-size: 15px; }
  .plate-search { min-height: 62px; grid-template-columns: 29px 1fr 47px; }
  .plate-search strong { padding-left: 14px; font-size: 22px; }
  .search-symbol { width: 37px; height: 37px; }
  .floating-card-one { top: -16px; right: 8px; }
  .floating-card-two { bottom: -16px; left: 8px; }
  .floating-card span { display: none; }
  .floating-card { padding: 10px; border-radius: 50%; }
  .why-section,
  .principles-section,
  .goals-section { padding-block: 72px; }
  .split-section { gap: 34px; }
  .split-section h2,
  .section-heading h2 { font-size: 38px; }
  .section-copy .lead { font-size: 18px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 250px; }
  .goals-card { gap: 42px; padding: 34px 24px; }
  .goals-intro h2 { font-size: 39px; }
  .goal-list li { grid-template-columns: 36px 1fr; gap: 13px; }
  .contact-section { padding-bottom: 72px; }
  .contact-card { padding: 30px 24px; }
  .contact-card .button { width: 100%; font-size: 14px; }
  .footer-main { align-items: flex-start; flex-direction: column; padding-block: 40px; }
  .footer-status { justify-items: start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
}

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