:root {
  --ink: #101522;
  --muted: #586273;
  --paper: #f7f4ef;
  --white: #ffffff;
  --line: #e4e0da;
  --red: #d6133a;
  --red-dark: #9f0c2a;
  --teal: #008f83;
  --gold: #e5b15f;
  --navy: #091827;
  --shadow: 0 18px 50px rgba(12, 21, 34, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255,255,255,.11);
  background: rgba(9, 24, 39, .96);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.nav-inner {
  max-width: 1180px;
  min-height: 70px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -.04em;
}
.brand span { color: #23d7c4; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 750;
  font-size: .9rem;
}
.nav-links a { color: #d9e0e9; text-decoration: none; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white) !important;
}

.hero {
  min-height: 590px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}
.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5,12,22,.94) 0%, rgba(5,12,22,.78) 44%, rgba(5,12,22,.24) 75%),
    linear-gradient(0deg, rgba(5,12,22,.88) 0%, transparent 58%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0 74px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #67eadb;
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.15rem, 7vw, 6.5rem);
  line-height: .95;
  letter-spacing: -.065em;
}
.hero .lede {
  max-width: 710px;
  margin: 24px 0 0;
  color: #e1e7ee;
  font-size: clamp(1.06rem, 2vw, 1.34rem);
}
.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { background: var(--red-dark); transform: translateY(-2px); }
.button.secondary {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.08);
}
.button.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}
.button.light:hover { background: #f1ece5; }

.breadcrumb {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 22px 0 0;
  color: #717a87;
  font-size: .86rem;
}
.breadcrumb a { color: var(--red-dark); font-weight: 800; text-decoration: none; }

.wrap {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}
.section { padding: 78px 0; }
.section.white { background: var(--white); }
.section.dark { background: var(--navy); color: var(--white); }
.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}
.kicker {
  color: var(--red);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section.dark .kicker { color: #67eadb; }
h2 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}
h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.2;
}
p { margin: 0 0 16px; }
.muted { color: var(--muted); }
.section.dark .muted { color: #bdc8d4; }

.fact-strip {
  margin-top: -36px;
  position: relative;
  z-index: 5;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.fact {
  min-height: 132px;
  padding: 25px;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: 0; }
.fact span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fact strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16,21,34,.05);
}
.section.dark .card {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.065);
  box-shadow: none;
}
.card .tag,
.pill {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f7dfe6;
  color: var(--red-dark);
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.card a.inline {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.section.dark .card a.inline { color: #67eadb; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}
.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li,
.plain-list li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 26px;
}
.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--teal);
  content: "✓";
  font-weight: 950;
}
.plain-list li::before {
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16,21,34,.06);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}
caption {
  padding: 15px 20px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 750;
  text-align: left;
}
th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  background: #f0ece6;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
tr:last-child td { border-bottom: 0; }
td a { color: var(--red-dark); font-weight: 900; }

.ship-card {
  padding: 0;
  overflow: hidden;
}
.ship-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.ship-card-body { padding: 24px; }
.ship-card .button { margin-top: 8px; }

.update-box,
.source-box {
  padding: 24px;
  border-radius: 18px;
}
.update-box {
  border: 1px solid #efc4cf;
  background: #fff0f3;
}
.source-box {
  border: 1px solid #cad4df;
  background: #eef3f7;
  color: #354151;
  font-size: .9rem;
}
.source-box a {
  color: var(--red-dark);
  font-weight: 850;
}
.source-box p:last-child { margin-bottom: 0; }
.source-list {
  margin: 12px 0 0;
  padding-left: 20px;
}
.source-list li { margin: 0 0 9px; }
.source-list li:last-child { margin-bottom: 0; }
.source-list a {
  color: var(--red-dark);
  font-weight: 850;
  text-underline-offset: 3px;
}
.stamp {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(9,24,39,.08);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.hero-micro span {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(5,12,22,.46);
  color: #e5ebf1;
  font-size: .76rem;
  font-weight: 850;
}
.anchor-nav {
  position: relative;
  z-index: 8;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
}
.anchor-nav .wrap {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.anchor-nav a {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #374252;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 850;
}
.anchor-nav a:hover { background: #f1ece5; color: var(--red-dark); }
.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--teal);
  border-radius: 0 16px 16px 0;
  background: #e9f7f5;
  color: #243e42;
}
.notice strong { color: #006c63; }
.note {
  font-size: .88rem;
  color: var(--muted);
}
.compact { margin-bottom: 0; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ship-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.ship-links a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--red-dark);
  text-decoration: none;
  font-size: .8rem;
  font-weight: 900;
}
.ship-links a:hover { border-color: #dba3b0; background: #fff4f6; }
.section.dark .ship-links a {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  color: #82eee2;
}
.fit-card {
  position: relative;
  padding-top: 54px;
}
.fit-card::before {
  position: absolute;
  left: 28px;
  top: 24px;
  color: var(--red);
  content: attr(data-number);
  font-size: .77rem;
  font-weight: 950;
  letter-spacing: .1em;
}
.verdict {
  padding: 32px;
  border: 1px solid #d7cfbf;
  border-radius: 22px;
  background: #fffaf2;
}
.verdict h3 { font-size: 1.45rem; }
.verdict p:last-child { margin-bottom: 0; }
.definition {
  margin: 0;
  display: grid;
  gap: 0;
}
.definition div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.definition div:first-child { padding-top: 0; }
.definition div:last-child { padding-bottom: 0; border-bottom: 0; }
.definition dt {
  margin-bottom: 4px;
  font-weight: 950;
}
.definition dd { margin: 0; color: var(--muted); }
.compare-callout {
  margin-top: 26px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f4f0ea;
}
.compare-callout strong { color: var(--red-dark); }
.official-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: #006c63;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.official-badge::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}
.page-intro {
  max-width: 850px;
  font-size: 1.08rem;
}
.no-margin { margin: 0; }
.all-ships-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--red-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.cta {
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(35,215,196,.25), transparent 34%),
    linear-gradient(135deg, #091827, #231121);
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta h2 { max-width: 690px; margin-top: 0; }
.cta p { max-width: 680px; color: #cbd5df; }

.footer {
  padding: 38px 0;
  background: #060e18;
  color: #aeb9c6;
  font-size: .88rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer a { color: var(--white); font-weight: 800; text-decoration: none; }

:focus-visible {
  outline: 3px solid #23d7c4;
  outline-offset: 3px;
}

@media (max-width: 920px) {
  .nav-links a:not(.nav-cta):not(.nav-context) { display: none; }
  .nav-context {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid.three { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .nav-inner,
  .wrap,
  .breadcrumb,
  .hero-content {
    width: calc(100% - 30px);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .nav-inner { min-height: 62px; gap: 10px; }
  .brand { font-size: 1.16rem; }
  .nav-links { min-width: 0; margin-left: auto; gap: 8px; font-size: .78rem; }
  .nav-context { white-space: nowrap; }
  .nav-cta { padding: 9px 11px; white-space: nowrap; }
  .hero { min-height: 540px; }
  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(5,12,22,.97) 0%, rgba(5,12,22,.7) 68%, rgba(5,12,22,.35));
  }
  .hero-content { padding-bottom: 64px; }
  .hero h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
  .hero h1,
  .hero .lede { max-width: 100%; overflow-wrap: anywhere; }
  .section { padding: 58px 0; }
  .fact-grid,
  .card-grid,
  .card-grid.four { grid-template-columns: 1fr; }
  .fact {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .card { padding: 23px; }
  .cta { padding: 30px 24px; }
  .footer-inner { flex-direction: column; }

  .table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .table-wrap table,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
    width: 100%;
  }
  .table-wrap table { min-width: 0; }
  .table-wrap caption {
    display: block;
    padding: 0 0 14px;
  }
  .table-wrap thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .table-wrap tbody {
    display: grid;
    gap: 16px;
  }
  .table-wrap tr {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(16,21,34,.06);
  }
  .table-wrap td {
    padding: 14px 17px;
    display: grid;
    grid-template-columns: minmax(7rem, .43fr) minmax(0, 1fr);
    gap: 14px;
    border-bottom: 1px solid var(--line);
  }
  .table-wrap td::before {
    color: var(--muted);
    content: attr(data-label);
    font-size: .67rem;
    font-weight: 950;
    letter-spacing: .07em;
    line-height: 1.45;
    text-transform: uppercase;
  }
  .table-wrap td:first-child {
    padding-top: 17px;
    padding-bottom: 17px;
    display: block;
    background: #f0ece6;
    font-size: 1.1rem;
  }
  .table-wrap td:first-child::before { display: none; }
  .table-wrap td:last-child { border-bottom: 0; }
}

@media (max-width: 360px) {
  .nav-links { font-size: .72rem; }
  .nav-cta { padding-right: 9px; padding-left: 9px; }
  .table-wrap td { grid-template-columns: 1fr; gap: 5px; }
}

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