:root {
  color-scheme: light;
  --ink: #14213d;
  --muted: #536173;
  --line: #d8e0e8;
  --paper: #ffffff;
  --wash: #f4f7f8;
  --navy: #172554;
  --teal: #0f766e;
  --gold: #b7791f;
  --focus: #f59e0b;
  --shadow: 0 18px 50px rgba(20, 33, 61, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: .7rem 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 132px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.16rem;
  font-weight: 800;
}

.brand-subtitle {
  font-size: .78rem;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
  min-width: 44px;
  min-height: 44px;
  font: inherit;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  text-decoration: none;
  padding: .65rem .75rem;
  border-radius: 6px;
  color: #26364d;
  font-weight: 650;
  font-size: .94rem;
}

.site-nav a:hover {
  background: var(--wash);
}

.button,
.site-nav .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  padding: .75rem 1rem;
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: #fff;
  color: var(--navy);
  border-color: #8ea0b8;
}

.button.tertiary {
  background: var(--teal);
  border-color: var(--teal);
}

.hero {
  min-height: clamp(590px, 78vh, 760px);
  padding: clamp(4rem, 8vw, 7rem) 0 4rem;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, .94), rgba(20, 83, 92, .84)),
    radial-gradient(circle at 72% 30%, rgba(94, 234, 212, .3), transparent 25%),
    #172554;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 .7rem;
  color: #99f6e4;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .82rem;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: 1.25rem;
}

.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  max-width: 780px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  padding: 1.4rem;
  background: rgba(255, 255, 255, .08);
}

.construction-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(15, 118, 110, .86)),
    #172554;
  color: #fff;
}

.construction-shell {
  width: min(760px, 100%);
  text-align: center;
}

.construction-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(560px, 92vw);
  padding: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
}

.construction-logo {
  width: 100%;
  height: auto;
  display: block;
}

.construction-page .lead {
  margin-inline: auto;
  color: #e6fffb;
}

.construction-actions {
  justify-content: center;
}

.construction-contact {
  margin-top: 1.5rem;
  color: #dbeafe;
}

.construction-contact a {
  color: #ccfbf1;
  font-weight: 850;
}

.journey-mini {
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-mini li {
  display: flex;
  gap: .65rem;
  align-items: center;
  color: #e6fffb;
}

.step-dot {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ccfbf1;
  color: #134e4a;
  font-weight: 900;
  flex: 0 0 auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section.alt {
  background: var(--wash);
}

.section-head {
  max-width: 800px;
  margin-bottom: 2rem;
}

.kicker {
  color: var(--teal);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .82rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.module-card,
.info-card,
.package-card,
.legal-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 8px 22px rgba(20, 33, 61, .05);
}

.module-card {
  display: grid;
  gap: .85rem;
  align-content: start;
}

.module-top {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}

.module-mark {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  flex: 0 0 auto;
}

.module-logo {
  width: 92px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

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

.status {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .2rem .65rem;
  font-size: .82rem;
  font-weight: 800;
  color: #26364d;
  background: #f8fafc;
}

.independent {
  font-weight: 800;
  color: #1f3b57;
}

.text-link {
  color: var(--navy);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: journey;
}

.journey-step {
  min-height: 150px;
  border-left: 4px solid var(--teal);
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  counter-increment: journey;
}

.journey-step::before {
  content: counter(journey);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  margin-bottom: .75rem;
}

.breadcrumb {
  font-size: .92rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 750;
}

.page-hero {
  background: #eef5f5;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-list {
  columns: 2;
  padding-left: 1.15rem;
}

.feature-list li {
  break-inside: avoid;
  margin-bottom: .35rem;
}

.contact-band {
  background: var(--navy);
  color: #fff;
}

.contact-band a {
  color: #ccfbf1;
  font-weight: 850;
}

.placeholder-form {
  border: 1px dashed #9eb2c9;
  border-radius: 8px;
  padding: 1rem;
  background: #f8fafc;
}

.site-footer {
  background: #0f172a;
  color: #dbeafe;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 1.5rem;
}

.footer-grid a {
  display: block;
  color: #e0f2fe;
  text-decoration: none;
  margin: .35rem 0;
}

.footer-grid h2,
.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
}

.fine-print {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #bfdbfe;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 74px;
    display: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .6rem;
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-grid,
  .grid.two,
  .grid.three,
  .journey,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1rem, 1160px);
  }

  .brand-subtitle {
    display: none;
  }

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

  .feature-list {
    columns: 1;
  }
}

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