:root {
  --navy: #0b1f3a;
  --teal: #0f9d8a;
  --mint: #ddf7f1;
  --gold: #f9be3b;
  --ivory: #fcfdfe;
  --slate: #52627a;
  --line: rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 28px 80px rgba(11, 31, 58, 0.12);
  --shadow-md: 0 20px 48px rgba(11, 31, 58, 0.08);
  --max-width: 1200px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  color: var(--navy);
  font-family: "Plus Jakarta Sans", "Noto Sans", sans-serif;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--navy);
  background:
    radial-gradient(circle at top left, rgba(15, 157, 138, 0.16), transparent 24%),
    radial-gradient(circle at right 20%, rgba(249, 190, 59, 0.18), transparent 18%),
    linear-gradient(180deg, #f9fcfd 0%, #eef6f8 46%, #fcfdfe 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(15, 157, 138, 0.45);
  outline-offset: 3px;
}

.site-shell {
  width: min(calc(100vw - 32px), var(--max-width));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(252, 253, 254, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(11, 31, 58, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(11, 31, 58, 0.06), rgba(15, 157, 138, 0.16)),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(11, 31, 58, 0.06);
}

.brand-mark svg {
  width: 42px;
  height: 42px;
}

.brand-copy strong {
  display: block;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  display: block;
  color: var(--slate);
  font-size: 0.92rem;
}

.header-nav,
.header-actions,
.site-nav,
.hero-actions,
.link-pill-row,
.mobile-actions {
  display: flex;
  align-items: center;
}

.header-nav {
  gap: 22px;
}

.site-nav {
  gap: 16px;
  flex-wrap: wrap;
}

.site-nav a,
.footer-group nav a,
.text-link {
  color: var(--slate);
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--navy);
}

.site-nav a:hover,
.footer-group nav a:hover,
.text-link:hover,
.contact-card:hover span,
.footer-group > a:hover {
  color: var(--teal);
}

.header-actions {
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: rgba(11, 31, 58, 0.06);
  color: var(--navy);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

.button,
.link-pill,
.button-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.link-pill:hover,
.button-tertiary:hover {
  transform: translateY(-1px);
}

.button-primary {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), #0c8b7a);
  box-shadow: 0 16px 30px rgba(15, 157, 138, 0.24);
}

.button-secondary {
  border: 1px solid rgba(11, 31, 58, 0.12);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
}

.button-tertiary {
  border: 1px solid rgba(11, 31, 58, 0.12);
  color: var(--navy);
  background: transparent;
}

.strong-link {
  font-weight: 700;
}

main {
  display: grid;
  gap: 24px;
  padding-top: 26px;
}

.hero,
.section,
.site-footer {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 26px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    linear-gradient(160deg, rgba(221, 247, 241, 0.86), rgba(252, 253, 254, 0.98));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 10%, rgba(15, 157, 138, 0.14), transparent 22%),
    radial-gradient(circle at 92% 12%, rgba(249, 190, 59, 0.16), transparent 18%);
  pointer-events: none;
}

.hero-copy,
.hero-visual,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 24px 10px 24px 6px;
}

.eyebrow,
.legal-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2 {
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.9rem, 6vw, 5.25rem);
  line-height: 0.95;
}

.hero .lead,
.section-heading p,
.feature-card p,
.detail-card p,
.article-card p,
.highlight-card p,
.site-footer p,
.contact-card p,
.visual-note p,
.step-card p,
.legal-status,
.legal-doc p {
  color: var(--slate);
  line-height: 1.72;
}

.hero .lead {
  max-width: 34rem;
  margin-bottom: 24px;
  font-size: 1.12rem;
}

.hero-actions,
.mobile-actions {
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-content: start;
}

.visual-route,
.visual-note,
.hero-stats article,
.feature-card,
.detail-card,
.step-card,
.article-card,
.highlight-card,
.contact-card,
.legal-card,
.legal-toc,
.legal-status-card,
.trust-grid article {
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.visual-route {
  position: relative;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(11, 31, 58, 0.96), rgba(17, 65, 93, 0.9)),
    linear-gradient(135deg, rgba(15, 157, 138, 0.28), transparent 60%);
}

.visual-route svg {
  position: absolute;
  inset: 8% 4% auto auto;
  width: 100%;
  height: 100%;
  opacity: 0.76;
}

.visual-route path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.74);
  stroke-dasharray: 10 12;
  stroke-linecap: round;
  stroke-width: 6;
}

.pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 5px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(249, 190, 59, 0.12);
}

.pin-a {
  top: 70px;
  left: 68px;
}

.pin-b {
  top: 180px;
  right: 116px;
  background: var(--teal);
}

.pin-c {
  bottom: 64px;
  left: 166px;
}

.vehicle-card {
  position: absolute;
  max-width: 220px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.vehicle-card span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-card strong {
  display: block;
  line-height: 1.4;
}

.vehicle-main {
  left: 30px;
  bottom: 30px;
  background: rgba(15, 157, 138, 0.38);
}

.vehicle-side {
  right: 24px;
  top: 32px;
  background: rgba(249, 190, 59, 0.24);
}

.visual-note {
  padding: 24px;
}

.visual-note h2 {
  margin-bottom: 8px;
  font-size: 1.42rem;
}

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

.hero-stats article {
  padding: 18px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.02rem;
}

.hero-stats span {
  color: var(--slate);
  font-size: 0.92rem;
}

.hero-minimal {
  grid-template-columns: 1fr;
  padding: 46px 40px;
}

.hero-minimal .hero-copy {
  padding: 0;
}

.hero-minimal h1 {
  max-width: none;
}

.section,
.site-footer {
  padding: 34px;
  background: rgba(252, 253, 254, 0.88);
}

.section-soft {
  background:
    linear-gradient(145deg, rgba(221, 247, 241, 0.72), rgba(252, 253, 254, 0.92));
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
}

.card-grid,
.step-grid,
.split-panels,
.contact-grid,
.legal-layout,
.legal-utility,
.site-footer,
.trust-grid {
  display: grid;
  gap: 18px;
}

.card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.feature-card,
.detail-card,
.step-card,
.article-card,
.highlight-card,
.contact-card {
  padding: 24px;
}

.feature-card h3,
.detail-card h3,
.step-card h3,
.article-card h3,
.highlight-card h3,
.contact-card h3,
.legal-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--teal);
  background: rgba(15, 157, 138, 0.1);
}

.icon-badge svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.detail-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--slate);
  line-height: 1.65;
}

.detail-card li + li {
  margin-top: 8px;
}

.step-card {
  position: relative;
  padding-top: 70px;
}

.step-number {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--navy);
  font-weight: 800;
  background: rgba(249, 190, 59, 0.22);
}

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

.highlight-primary {
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(24, 88, 122, 0.94));
  color: #ffffff;
}

.highlight-primary p,
.highlight-primary .text-link {
  color: rgba(255, 255, 255, 0.82);
}

.captain-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(249, 190, 59, 0.18), rgba(15, 157, 138, 0.1)),
    rgba(252, 253, 254, 0.92);
}

.trust-grid article {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
}

.trust-grid p {
  margin-bottom: 0;
  font-weight: 700;
}

.trust-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
}

.cta-band {
  background:
    linear-gradient(145deg, rgba(11, 31, 58, 0.96), rgba(17, 65, 93, 0.92)),
    rgba(11, 31, 58, 0.92);
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-band .eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}

.link-pill-row {
  flex-wrap: wrap;
  gap: 12px;
}

.link-pill {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.article-stack {
  display: grid;
  gap: 16px;
}

.article-card {
  padding: 24px 26px;
}

.contact-card {
  display: block;
}

.contact-card span,
.footer-group > a {
  color: var(--navy);
  font-weight: 700;
}

.legal-shell {
  overflow: hidden;
}

.legal-utility {
  grid-template-columns: 280px minmax(0, 1fr);
  margin-bottom: 18px;
}

.legal-toc,
.legal-status-card {
  padding: 22px;
}

.legal-toc strong,
.legal-status-card strong {
  display: block;
  margin-bottom: 14px;
}

.legal-toc a {
  display: block;
  margin-top: 10px;
  color: var(--slate);
  font-weight: 600;
}

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

.legal-card {
  padding: 26px;
}

.legal-card-header {
  margin-bottom: 18px;
}

.legal-card-header p:last-child,
.legal-doc-meta {
  margin-bottom: 0;
  color: var(--slate);
}

.legal-body {
  display: grid;
  gap: 16px;
}

.legal-doc {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.legal-doc:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.site-footer {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-brand strong,
.footer-group h3 {
  display: block;
  margin-bottom: 12px;
}

.footer-group nav {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  grid-column: 1 / -1;
  padding-top: 10px;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-utility-link {
  color: var(--slate);
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .hero,
  .card-grid-four,
  .card-grid-three,
  .step-grid,
  .contact-grid,
  .trust-grid,
  .legal-layout,
  .site-footer,
  .legal-utility {
    grid-template-columns: 1fr;
  }

  .split-panels,
  .captain-banner {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 920px) {
  .site-shell {
    width: min(calc(100vw - 24px), var(--max-width));
    padding-top: 16px;
  }

  .site-header {
    top: 10px;
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 0 0 auto;
  }

  .mobile-menu {
    display: grid;
    gap: 18px;
    padding-top: 16px;
  }

  .mobile-menu .site-nav {
    display: grid;
    gap: 12px;
  }

  .mobile-menu .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  }

  .mobile-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .hero,
  .section,
  .site-footer {
    border-radius: 24px;
  }

  .hero,
  .section,
  .site-footer,
  .legal-card,
  .feature-card,
  .detail-card,
  .step-card,
  .article-card,
  .highlight-card,
  .contact-card,
  .legal-toc,
  .legal-status-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    padding: 22px;
  }

  .site-header {
    padding: 14px;
  }

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

  .brand-copy span {
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .visual-route {
    min-height: 300px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 414px) {
  .site-shell {
    width: min(calc(100vw - 16px), var(--max-width));
  }

  .hero,
  .section,
  .site-footer {
    padding: 20px;
  }

  .hero-copy {
    padding: 10px 0;
  }

  .button,
  .link-pill,
  .button-tertiary {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .vehicle-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .visual-route {
    display: grid;
    align-content: end;
    gap: 12px;
  }
}
