:root {
  --navy-950: #04111d;
  --navy-900: #071b2d;
  --navy-850: #0b243a;
  --navy-800: #10334e;
  --blue-700: #0a5b83;
  --blue-600: #0877a8;
  --blue-500: #1599c7;
  --cyan-300: #77d4e5;
  --amber-500: #f4a72c;
  --amber-400: #ffba4a;
  --ink: #112433;
  --muted: #587083;
  --line: #d7e2e9;
  --surface: #ffffff;
  --surface-alt: #f3f7fa;
  --surface-blue: #eaf5f8;
  --success: #176b50;
  --error: #a62b2b;
  --focus: #ffb23e;
  --shadow-sm: 0 8px 24px rgba(4, 28, 46, 0.08);
  --shadow-md: 0 18px 48px rgba(4, 28, 46, 0.14);
  --radius-sm: 0.55rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --container: 75rem;
  --header-height: 5.25rem;
  --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

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

::selection {
  color: var(--navy-950);
  background: #bcecf4;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.15rem);
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

p {
  margin-bottom: 1rem;
}

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

.narrow {
  width: min(100%, 48rem);
}

.narrow--center {
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.25rem, 8vw, 7rem);
}

.section--tight {
  padding-block: clamp(3.25rem, 6vw, 5rem);
}

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

.section--blue {
  background: var(--surface-blue);
}

.section--dark {
  color: #d8e7ef;
  background:
    radial-gradient(circle at 80% 0%, rgba(21, 153, 199, 0.2), transparent 34rem),
    var(--navy-950);
}

.section--dark h2,
.section--dark h3 {
  color: #ffffff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.75fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  margin-bottom: 0;
  max-width: 16ch;
}

.section-heading p {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--dark .section-heading p {
  color: #b6cbd7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.65rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--cyan-300);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: var(--blue-700);
  font-weight: 760;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(0.2rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.8rem 1rem;
  color: #ffffff;
  background: var(--navy-900);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.utility-bar {
  color: #c7d8e2;
  background: var(--navy-950);
  font-size: 0.82rem;
}

.utility-bar__inner {
  min-height: 2.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  color: #ffffff;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(215, 226, 233, 0.88);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(4, 28, 46, 0.1);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.brand {
  min-height: 2.75rem;
  display: inline-flex;
  min-width: 0;
  gap: 0.8rem;
  align-items: center;
  color: var(--navy-900);
  text-decoration: none;
}

.brand__mark {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(145deg, var(--blue-500), var(--blue-700) 58%, var(--navy-900));
  border-radius: 0.72rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand__logo {
  width: 8.8rem;
  height: 3.1rem;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  box-shadow: none;
}

.brand__copy {
  display: grid;
  line-height: 1.1;
}

.brand__copy strong {
  overflow: hidden;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand__copy span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.primary-nav {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.primary-nav > a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0.62rem 0.72rem;
  color: #2d4657;
  border-radius: 0.5rem;
  font-size: 0.83rem;
  font-weight: 720;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav > a:hover,
.primary-nav > a.is-active:not(.button) {
  color: var(--blue-700);
  background: var(--surface-blue);
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: none;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 0.7rem;
}

.menu-toggle > span:not(.sr-only) {
  width: 1.25rem;
  height: 2px;
  display: block;
  margin: 0.24rem auto;
  background: var(--navy-900);
  transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.button {
  min-height: 3rem;
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  color: #ffffff;
  background: var(--blue-700);
  border: 1px solid transparent;
  border-radius: 0.62rem;
  box-shadow: 0 7px 18px rgba(8, 119, 168, 0.2);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--blue-600);
  box-shadow: 0 11px 24px rgba(8, 119, 168, 0.28);
  transform: translateY(-1px);
}

.button:disabled,
.button[aria-disabled="true"] {
  color: #d5e3ea;
  background: #5b7180;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.button--small {
  min-height: 2.75rem;
  padding: 0.62rem 0.9rem !important;
  font-size: 0.8rem !important;
}

.button--accent {
  color: var(--navy-950) !important;
  background: var(--amber-500) !important;
  box-shadow: 0 8px 22px rgba(244, 167, 44, 0.24);
}

.button--accent:hover {
  background: var(--amber-400) !important;
}

.button--secondary {
  color: var(--navy-900);
  background: #ffffff;
  border-color: var(--line);
  box-shadow: none;
}

.button--secondary:hover {
  color: var(--blue-700);
  background: var(--surface-blue);
}

.button--ghost-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button-row--spaced,
.form-success-actions {
  margin-top: 1.5rem;
}

.hero {
  position: relative;
  min-height: min(49rem, calc(100vh - 7.5rem));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy-950);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(3, 17, 30, 0.98) 0%, rgba(4, 23, 39, 0.88) 36%, rgba(5, 24, 39, 0.46) 66%, rgba(5, 24, 39, 0.15) 100%),
    linear-gradient(0deg, rgba(3, 14, 24, 0.64), transparent 44%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 11vw, 8rem);
}

.hero__copy {
  width: min(100%, 46rem);
}

.hero h1 {
  margin-bottom: 1.2rem;
  color: #ffffff;
  max-width: 12ch;
}

.hero h1 span {
  color: var(--cyan-300);
}

.hero__lead {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: #d7e5ed;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.hero__proof li {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: #d7e5ed;
  font-size: 0.88rem;
  font-weight: 680;
}

.hero__proof li::before {
  width: 0.52rem;
  height: 0.52rem;
  background: var(--amber-500);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 0.25rem rgba(244, 167, 44, 0.16);
}

.hero__panel {
  position: absolute;
  z-index: 3;
  right: max(1rem, calc((100% - var(--container)) / 2));
  bottom: 2rem;
  width: min(28rem, calc(100% - 2rem));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.hero__metric {
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.hero__metric:last-child {
  border-right: 0;
}

.hero__metric strong,
.hero__metric span {
  display: block;
}

.hero__metric strong {
  color: var(--blue-700);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__metric span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #d6e5ed;
  background:
    radial-gradient(circle at 90% 10%, rgba(21, 153, 199, 0.22), transparent 28rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -11rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(119, 212, 229, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 3rem rgba(119, 212, 229, 0.035),
    0 0 0 7rem rgba(119, 212, 229, 0.025);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.page-hero h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.page-hero p {
  max-width: 43rem;
  margin-bottom: 0;
  color: #c4d7e1;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.4rem;
  color: #9fb9c7;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumb span[aria-hidden="true"] {
  color: var(--cyan-300);
}

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

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

.card {
  position: relative;
  min-width: 0;
  padding: 1.55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card--flat {
  box-shadow: none;
}

.card--dark {
  color: #bfd0da;
  background: var(--navy-850);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.card--dark h3 {
  color: #ffffff;
}

.card__index {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--blue-700);
  background: var(--surface-blue);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.card--dark .card__index {
  color: var(--navy-950);
  background: var(--cyan-300);
}

.card h3 {
  margin-bottom: 0.65rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card p {
  color: var(--muted);
}

.card--dark p {
  color: #b7cbd6;
}

.card__meta {
  display: grid;
  gap: 0.65rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.card__meta div {
  display: grid;
  gap: 0.1rem;
}

.card__meta strong {
  color: var(--navy-900);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.card__meta span {
  color: var(--muted);
  font-size: 0.89rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.split--top {
  align-items: start;
}

.feature-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 4vw, 3rem);
  color: #d6e4eb;
  background:
    radial-gradient(circle at 100% 0%, rgba(21, 153, 199, 0.22), transparent 20rem),
    var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-panel h2,
.feature-panel h3 {
  color: #ffffff;
}

.feature-panel p {
  color: #c1d2dc;
}

.feature-list,
.check-list,
.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.feature-list__mark {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--amber-500);
  border-radius: 0.55rem;
  font-size: 0.75rem;
  font-weight: 900;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  color: #ffffff;
}

.feature-list span {
  margin-top: 0.15rem;
  color: #b7cbd6;
  font-size: 0.92rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  position: absolute;
  top: 0.56rem;
  left: 0;
  width: 0.72rem;
  height: 0.42rem;
  border-bottom: 2px solid var(--blue-600);
  border-left: 2px solid var(--blue-600);
  content: "";
  transform: rotate(-45deg);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.tag-list li {
  padding: 0.48rem 0.72rem;
  color: var(--blue-700);
  background: var(--surface-blue);
  border: 1px solid #cce6ed;
  border-radius: 99rem;
  font-size: 0.8rem;
  font-weight: 760;
}

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

.process__step {
  position: relative;
  min-width: 0;
  padding: 0 1rem;
  counter-increment: process;
}

.process__step::before {
  width: 3rem;
  height: 3rem;
  display: grid;
  position: relative;
  z-index: 2;
  place-items: center;
  margin-bottom: 1.15rem;
  color: var(--navy-950);
  background: var(--amber-500);
  border: 0.4rem solid #fff4dc;
  border-radius: 50%;
  content: counter(process, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 900;
}

.process__step::after {
  position: absolute;
  z-index: 1;
  top: 1.5rem;
  left: 3.4rem;
  width: calc(100% - 1rem);
  height: 1px;
  background: #bcd4de;
  content: "";
}

.process__step:last-child::after {
  display: none;
}

.process__step h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.process__step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.port-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 0.85fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.port-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.port-card__status::before {
  width: 0.55rem;
  height: 0.55rem;
  background: #2caa7d;
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 0.25rem rgba(44, 170, 125, 0.16);
}

.facts {
  display: grid;
  gap: 0.75rem;
}

.fact {
  padding: 0.9rem 1rem;
  background: var(--surface-alt);
  border-left: 3px solid var(--blue-600);
  border-radius: 0.3rem var(--radius-sm) var(--radius-sm) 0.3rem;
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  color: var(--navy-900);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.fact span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.notice {
  padding: 1.15rem 1.25rem;
  color: #244151;
  background: #eef8fa;
  border: 1px solid #c9e8ed;
  border-left: 4px solid var(--blue-600);
  border-radius: var(--radius-sm);
}

.notice--warning {
  color: #624610;
  background: #fff8e8;
  border-color: #f1dbab;
  border-left-color: var(--amber-500);
}

.notice--success {
  color: #0e5c40;
  background: #eaf8f2;
  border-color: #bfe6d6;
  border-left-color: #2caa7d;
}

.notice--error {
  color: #782222;
  background: #fff0f0;
  border-color: #efc4c4;
  border-left-color: var(--error);
}

.notice h2,
.notice h3 {
  color: inherit;
}

.notice p:last-child,
.notice ul:last-child {
  margin-bottom: 0;
}

.details-list {
  display: grid;
  gap: 0.75rem;
}

.details-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.details-list summary {
  position: relative;
  padding: 1.05rem 3rem 1.05rem 1.1rem;
  color: var(--navy-900);
  font-weight: 790;
  cursor: pointer;
  list-style: none;
}

.details-list summary::-webkit-details-marker {
  display: none;
}

.details-list summary::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--blue-700);
  content: "+";
  font-size: 1.45rem;
  transform: translateY(-50%);
}

.details-list details[open] summary::after {
  content: "−";
}

.details-list__body {
  padding: 0 1.1rem 1.15rem;
  color: var(--muted);
}

.details-list__body p:last-child,
.details-list__body ul:last-child {
  margin-bottom: 0;
}

.legal-copy h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.65rem;
  font-size: 1.5rem;
}

.legal-copy h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.legal-copy p,
.legal-copy li {
  color: #40596a;
}

.legal-copy ul {
  padding-left: 1.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  min-width: 0;
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-card span,
.contact-card a,
.contact-card strong {
  display: block;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  margin-top: 0.3rem;
  color: var(--navy-900);
  font-size: 1.05rem;
  font-style: normal;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--blue-700);
}

.rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.rfq-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  display: grid;
  gap: 1rem;
}

.form-shell {
  padding: clamp(1.25rem, 4vw, 2.25rem);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-section {
  padding: 0;
  margin: 0 0 2rem;
  border: 0;
}

.form-section:last-of-type {
  margin-bottom: 1rem;
}

.form-section legend {
  width: 100%;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0 0 0.75rem;
  margin-bottom: 1rem;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
  font-size: 1.2rem;
  font-weight: 820;
}

.form-section legend span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--amber-500);
  border-radius: 50%;
  font-size: 0.72rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  min-width: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.field-label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 780;
}

.required {
  color: var(--error);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.68rem 0.78rem;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #b9cbd5;
  border-radius: 0.48rem;
  box-shadow: inset 0 1px 2px rgba(4, 28, 46, 0.04);
}

.form-field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(21, 153, 199, 0.2);
  outline-offset: 0;
}

.form-field [aria-invalid="true"],
.form-field input:invalid:not(:placeholder-shown) {
  border-color: var(--error);
}

.field-help {
  margin-top: 0.36rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.radio-group {
  min-height: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.radio-option {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.58rem 0.78rem;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  cursor: pointer;
}

.radio-option input {
  width: 1rem;
  min-height: auto;
  margin: 0;
}

.file-drop {
  position: relative;
  padding: 1.3rem;
  text-align: center;
  background: var(--surface-alt);
  border: 1px dashed #98b5c5;
  border-radius: var(--radius-sm);
}

.file-drop input {
  width: 100%;
  min-height: auto;
}

.file-output {
  margin-top: 0.55rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.file-output.is-error {
  color: var(--error);
  font-weight: 700;
}

.consent {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.65rem;
  align-items: start;
  margin-top: 1rem;
}

.consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.3rem;
}

.consent label {
  color: #40596a;
  font-size: 0.88rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.form-actions p {
  max-width: 27rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.prefooter {
  color: #dbe8ef;
  background:
    linear-gradient(110deg, var(--navy-900), var(--navy-800));
}

.prefooter__inner {
  min-height: 22rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding-block: 3.5rem;
}

.prefooter h2 {
  max-width: 17ch;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.prefooter p {
  max-width: 42rem;
  margin-bottom: 0;
  color: #bed0da;
}

.prefooter__actions {
  display: grid;
  gap: 0.75rem;
}

.site-footer {
  color: #a9bdc8;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.8fr);
  gap: 2rem;
  padding-block: 4rem 3rem;
}

.footer-brand p {
  max-width: 27rem;
  margin-top: 1.1rem;
  font-size: 0.9rem;
}

.brand--footer {
  color: #ffffff;
}

.brand--footer .brand__copy span {
  color: #9ab1bd;
}

.footer-note {
  color: #7f98a6;
  font-size: 0.78rem !important;
}

.site-footer h2 {
  margin-bottom: 0.9rem;
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a,
.site-footer address a {
  color: #b9ccd6;
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-links a:hover,
.site-footer address a:hover {
  color: #ffffff;
}

.site-footer address {
  display: grid;
  gap: 0.55rem;
  color: #b9ccd6;
  font-size: 0.86rem;
  font-style: normal;
}

.footer-bottom {
  min-height: 5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a {
  color: #a9bdc8;
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Premium marine visual layer */
main {
  overflow: clip;
}

h1,
h2 {
  text-wrap: balance;
}

h1,
h2,
h3,
.brand__copy strong {
  font-family: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", sans-serif;
}

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(1.25);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 42px rgba(4, 28, 46, 0.13);
}

.brand__mark {
  position: relative;
  overflow: hidden;
  border-radius: 0.7rem 0.7rem 1rem 0.7rem;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 8px 18px rgba(7, 71, 105, 0.18);
}

.brand__logo {
  position: static;
  overflow: visible;
}

.brand__mark::after {
  position: absolute;
  right: 0.42rem;
  bottom: 0.42rem;
  left: 0.42rem;
  height: 0.28rem;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  content: "";
  transform: skewX(-28deg);
}

.primary-nav > a:not(.button) {
  position: relative;
  background: transparent;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0.72rem;
  bottom: 0.34rem;
  left: 0.72rem;
  height: 2px;
  background: var(--blue-600);
  border-radius: 99rem;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a.is-active:not(.button)::after {
  transform: scaleX(1);
}

.primary-nav > a:hover,
.primary-nav > a.is-active:not(.button) {
  background: transparent;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0.7rem;
}

.button::after {
  position: absolute;
  z-index: -1;
  top: -60%;
  left: -35%;
  width: 26%;
  height: 220%;
  background: rgba(255, 255, 255, 0.2);
  content: "";
  transform: rotate(18deg) translateX(-260%);
  transition: transform 420ms ease;
}

.button:hover::after {
  transform: rotate(18deg) translateX(650%);
}

.hero {
  isolation: isolate;
  min-height: min(52rem, calc(100vh - 7.5rem));
}

.hero__media img {
  animation: hero-arrival 1200ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes hero-arrival {
  from {
    opacity: 0.7;
    transform: scale(1.045);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__overlay {
  background:
    radial-gradient(circle at 72% 52%, transparent 0 12rem, rgba(5, 23, 38, 0.08) 26rem),
    linear-gradient(90deg, rgba(3, 17, 30, 0.99) 0%, rgba(4, 23, 39, 0.93) 34%, rgba(5, 24, 39, 0.48) 67%, rgba(5, 24, 39, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 14, 24, 0.76), transparent 48%);
}

.hero__chart {
  position: absolute;
  z-index: 1;
  top: 9%;
  right: 3%;
  width: min(34vw, 31rem);
  aspect-ratio: 1;
  border: 1px solid rgba(119, 212, 229, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero__chart::before,
.hero__chart::after,
.hero__chart span {
  position: absolute;
  border: 1px solid rgba(119, 212, 229, 0.14);
  border-radius: 50%;
  content: "";
}

.hero__chart::before {
  inset: 16%;
}

.hero__chart::after {
  inset: 34%;
  background: rgba(119, 212, 229, 0.05);
}

.hero__chart span:nth-child(1) {
  top: 50%;
  right: -8%;
  left: -8%;
  height: 1px;
  border: 0;
  background: rgba(119, 212, 229, 0.16);
}

.hero__chart span:nth-child(2) {
  top: -8%;
  bottom: -8%;
  left: 50%;
  width: 1px;
  border: 0;
  background: rgba(119, 212, 229, 0.16);
}

.hero__chart span:nth-child(3) {
  top: 18%;
  right: 15%;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--amber-500);
  border: 0;
  box-shadow: 0 0 0 0.35rem rgba(244, 167, 44, 0.14);
}

.hero__copy {
  width: min(100%, 48rem);
}

.hero__content {
  padding-block: clamp(3.5rem, 5vw, 5.5rem);
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 6vw, 4.85rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero__proof {
  gap: 0.6rem;
}

.hero__proof li {
  padding: 0.5rem 0.72rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99rem;
  backdrop-filter: blur(8px);
}

.hero__proof li::before {
  width: 0.42rem;
  height: 0.42rem;
  box-shadow: none;
}

.hero__panel {
  color: #ffffff;
  background: rgba(4, 17, 29, 0.78);
  border-color: rgba(255, 255, 255, 0.17);
  box-shadow: 0 22px 58px rgba(0, 8, 17, 0.34);
  backdrop-filter: blur(18px) saturate(1.2);
}

.hero__metric {
  border-right-color: rgba(255, 255, 255, 0.12);
}

.hero__metric strong {
  color: var(--cyan-300);
}

.hero__metric span {
  color: #d5e3ea;
}

.assurance-strip {
  position: relative;
  z-index: 8;
  color: #d7e5ed;
  background:
    linear-gradient(90deg, rgba(21, 153, 199, 0.1), transparent 25%, transparent 75%, rgba(244, 167, 44, 0.08)),
    var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.assurance-strip__inner {
  min-height: 6.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.assurance-strip__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 1.2rem clamp(1rem, 3vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.assurance-strip__item:first-child {
  padding-left: 0;
}

.assurance-strip__item:last-child {
  padding-right: 0;
  border-right: 0;
}

.assurance-strip__item > span {
  color: var(--amber-400);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.assurance-strip__item strong,
.assurance-strip__item small {
  display: block;
}

.assurance-strip__item strong {
  color: #ffffff;
  font-size: 0.96rem;
}

.assurance-strip__item small {
  margin-top: 0.16rem;
  color: #9fb8c5;
  font-size: 0.76rem;
}

.section-heading h2 {
  letter-spacing: -0.035em;
}

.card {
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(4, 28, 46, 0.085);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-300), var(--amber-500));
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.card:hover {
  border-color: #b7d9e4;
  box-shadow: 0 20px 48px rgba(4, 28, 46, 0.14);
  transform: translateY(-0.35rem);
}

.card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.card--flat:hover {
  box-shadow: 0 16px 36px rgba(4, 28, 46, 0.1);
}

.card__index {
  border: 1px solid #cae7ee;
  border-radius: 0.75rem 0.75rem 1rem 0.75rem;
  box-shadow: inset 0 -8px 18px rgba(8, 119, 168, 0.06);
}

.section--visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 119, 168, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(8, 119, 168, 0.035) 1px, transparent 1px),
    #f8fbfc;
  background-size: 3rem 3rem;
}

.section--visual::before {
  position: absolute;
  top: -14rem;
  left: -12rem;
  width: 32rem;
  height: 32rem;
  background: rgba(119, 212, 229, 0.11);
  border-radius: 50%;
  content: "";
  filter: blur(1px);
}

.editorial-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
}

.editorial-media {
  position: relative;
  min-height: 37rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.9rem 1.9rem 4.6rem 1.9rem;
  box-shadow: 0 30px 74px rgba(4, 28, 46, 0.2);
}

.editorial-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(3, 17, 30, 0.9), transparent 46%),
    linear-gradient(90deg, rgba(3, 17, 30, 0.14), transparent 45%);
  content: "";
  pointer-events: none;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 52% center;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.editorial-media:hover img {
  transform: scale(1.025);
}

.editorial-media figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(1.3rem, 4vw, 2.2rem);
  bottom: clamp(1.3rem, 4vw, 2.2rem);
  left: clamp(1.3rem, 4vw, 2.2rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.editorial-media figcaption span,
.editorial-media figcaption strong {
  display: block;
}

.editorial-media figcaption span {
  margin-bottom: 0.35rem;
  color: var(--cyan-300);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-media figcaption strong {
  max-width: 29rem;
  color: #ffffff;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.editorial-copy h2 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
}

.precision-list {
  display: grid;
  gap: 0;
  margin: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.precision-list article {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.8rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.precision-list article > span {
  padding-top: 0.18rem;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.precision-list h3 {
  margin-bottom: 0.2rem;
  font-size: 1.04rem;
}

.precision-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link--strong {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(10, 91, 131, 0.3);
}

.page-hero {
  min-height: 29rem;
  display: grid;
  align-items: center;
}

.page-hero__inner {
  padding-block: clamp(3.2rem, 6vw, 5rem);
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 5.3vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.page-hero::before {
  position: absolute;
  inset: 0 0 0 42%;
  background:
    linear-gradient(90deg, var(--navy-950), transparent 44%),
    linear-gradient(0deg, rgba(4, 17, 29, 0.72), rgba(4, 17, 29, 0.14)),
    url("../images/hero-marine.webp") center 52% / cover no-repeat;
  content: "";
  opacity: 0.42;
  filter: saturate(0.75);
}

.feature-panel {
  border: 1px solid rgba(119, 212, 229, 0.12);
  border-radius: 1.55rem 1.55rem 3.3rem 1.55rem;
}

.feature-panel::after {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid rgba(119, 212, 229, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 0.8rem rgba(119, 212, 229, 0.035),
    0 0 0 1.8rem rgba(119, 212, 229, 0.02);
}

.details-list details,
.contact-card,
.form-shell {
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.details-list details:hover,
.contact-card:hover {
  border-color: #b6d8e3;
  box-shadow: 0 14px 34px rgba(4, 28, 46, 0.09);
  transform: translateY(-2px);
}

.form-shell {
  border-top: 3px solid var(--blue-600);
  box-shadow: 0 24px 58px rgba(4, 28, 46, 0.11);
}

.radio-option {
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.radio-option:hover {
  background: #edf7fa;
  border-color: #9fcbd8;
  transform: translateY(-1px);
}

.prefooter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(21, 153, 199, 0.24), transparent 20rem),
    linear-gradient(115deg, var(--navy-950), var(--navy-800));
}

.prefooter::before {
  position: absolute;
  top: -12rem;
  right: -8rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(119, 212, 229, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 3.5rem rgba(119, 212, 229, 0.035),
    0 0 0 7rem rgba(119, 212, 229, 0.02);
}

.prefooter__inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 110;
    top: calc(2.25rem + var(--header-height));
    right: 1rem;
    left: 1rem;
    max-height: calc(100vh - 9rem);
    display: none;
    align-items: stretch;
    padding: 0.8rem;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

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

  .primary-nav > a {
    padding: 0.8rem;
  }

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

  .process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 2rem;
  }

  .process__step:nth-child(3)::after,
  .process__step:last-child::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .section-heading,
  .split,
  .prefooter__inner,
  .footer-grid,
  .rfq-layout,
  .editorial-split {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1rem;
    align-items: start;
  }

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

  .hero {
    min-height: 44rem;
  }

  .hero__panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(calc(100% - 2rem), var(--container));
    z-index: 4;
    margin: -1.2rem auto 1.5rem;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(3, 17, 30, 0.97) 0%, rgba(4, 23, 39, 0.83) 48%, rgba(4, 23, 39, 0.3) 100%),
      linear-gradient(0deg, rgba(3, 14, 24, 0.54), transparent 62%);
  }

  .hero__media img {
    object-position: 66% center;
  }

  .hero__chart {
    width: 25rem;
    opacity: 0.55;
  }

  .editorial-split {
    gap: 2.8rem;
  }

  .editorial-media {
    min-height: 32rem;
  }

  .editorial-copy {
    max-width: 44rem;
  }

  .port-card {
    grid-template-columns: 1fr;
  }

  .rfq-sidebar {
    position: static;
    grid-row: 1;
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 4.6rem;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .utility-bar__inner {
    min-height: 2rem;
    justify-content: center;
  }

  .utility-bar p {
    display: block;
    overflow: hidden;
    font-size: 0.7rem;
    letter-spacing: 0.015em;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand__mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand__logo {
    width: 7.5rem;
    height: 2.7rem;
  }

  .brand__copy strong {
    max-width: 12.5rem;
    font-size: 0.88rem;
  }

  .brand__copy span {
    display: none;
  }

  .primary-nav {
    top: calc(2rem + var(--header-height));
  }

  .hero {
    min-height: 46rem;
  }

  .hero__chart {
    display: none;
  }

  .hero__content {
    align-self: start;
    padding-block: 3.5rem 8.5rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .hero__proof {
    display: none;
  }

  .hero__panel {
    position: absolute;
    right: 0.65rem;
    bottom: 0.75rem;
    width: calc(100% - 1.3rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    border-radius: 1rem;
  }

  .hero__metric {
    min-width: 0;
    padding: 0.75rem 0.6rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .hero__metric:last-child {
    border-right: 0;
  }

  .hero__metric strong {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .hero__metric span {
    font-size: 0.68rem;
  }

  .hero__media img {
    object-position: 64% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(3, 17, 30, 0.98) 0%, rgba(3, 17, 30, 0.89) 38%, rgba(3, 17, 30, 0.48) 70%, rgba(3, 17, 30, 0.22) 100%),
      linear-gradient(90deg, rgba(3, 17, 30, 0.82) 0%, rgba(3, 17, 30, 0.36) 70%, rgba(3, 17, 30, 0.12) 100%);
  }

  .cards,
  .cards--four,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .assurance-strip__inner {
    grid-template-columns: 1fr;
    padding-block: 0.45rem;
  }

  .assurance-strip__item,
  .assurance-strip__item:first-child,
  .assurance-strip__item:last-child {
    padding: 0.9rem 0.2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .assurance-strip__item:last-child {
    border-bottom: 0;
  }

  .page-hero {
    min-height: 25rem;
  }

  .page-hero::before {
    inset: 0;
    opacity: 0.22;
  }

  .editorial-media {
    min-height: 25rem;
    border-radius: 1.3rem 1.3rem 2.8rem 1.3rem;
  }

  .editorial-media img {
    object-position: 58% center;
  }

  .section--visual {
    background-size: 2rem 2rem;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .process__step {
    padding-left: 4rem;
  }

  .process__step::before {
    position: absolute;
    top: 0;
    left: 0;
  }

  .process__step::after {
    top: 3rem;
    left: 1.5rem;
    width: 1px;
    height: calc(100% + 1rem);
  }

  .process__step:nth-child(3)::after {
    display: block;
  }

  .process__step:last-child::after {
    display: none;
  }

  .form-shell {
    padding: 1rem;
  }

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

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.3rem;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .prefooter,
  .site-footer,
  .button,
  .menu-toggle {
    display: none !important;
  }

  .section,
  .page-hero__inner {
    padding-block: 1.5rem;
  }

  .page-hero,
  .section--dark {
    color: #000000;
    background: #ffffff;
  }

  .page-hero h1,
  .section--dark h2,
  .section--dark h3 {
    color: #000000;
  }
}

/* Pacific Command — 2026 visual system */
:root {
  --navy-950: #061725;
  --navy-900: #092235;
  --navy-850: #0d2b41;
  --navy-800: #153a52;
  --blue-700: #0b607f;
  --blue-600: #087d9c;
  --blue-500: #1a9fbd;
  --cyan-300: #9ad9e3;
  --amber-500: #ef5a2f;
  --amber-400: #ff7047;
  --ink: #102634;
  --muted: #5b6f79;
  --line: #d8e1e1;
  --surface: #ffffff;
  --surface-alt: #f5f8f6;
  --surface-blue: #eaf1f1;
  --focus: #ff8a55;
  --shadow-sm: 0 0.8rem 2.2rem rgba(6, 23, 37, 0.08);
  --shadow-md: 0 1.8rem 4.6rem rgba(6, 23, 37, 0.16);
  --radius-sm: 0.3rem;
  --radius-md: 0.55rem;
  --radius-lg: 0.8rem;
  --container: 82rem;
  --header-height: 5.5rem;
  --font-sans: "Aptos", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --font-display: "Bahnschrift SemiCondensed", "Aptos Display", "Arial Narrow", "Segoe UI", sans-serif;
}

html {
  background: var(--navy-950);
  scrollbar-color: var(--blue-600) var(--surface-alt);
}

body {
  color: var(--ink);
  background: var(--surface);
  font-size: clamp(0.98rem, 0.22vw + 0.92rem, 1.06rem);
  line-height: 1.7;
}

main {
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(7, 60, 84, 0.025) 50%, transparent calc(50% + 0.5px)),
    var(--surface);
}

h1,
h2,
h3,
h4,
.brand__copy strong {
  font-family: var(--font-display);
  font-stretch: condensed;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.65rem);
  line-height: 1.02;
}

h3 {
  line-height: 1.16;
}

p,
li {
  text-wrap: pretty;
}

.container {
  width: min(calc(100% - clamp(2rem, 7vw, 7rem)), var(--container));
}

.section {
  position: relative;
  padding-block: clamp(5rem, 8vw, 8rem);
}

.section--alt {
  background:
    linear-gradient(90deg, rgba(8, 125, 156, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(8, 125, 156, 0.035) 1px, transparent 1px),
    var(--surface-alt);
  background-size: 4rem 4rem;
}

.section--blue {
  background:
    radial-gradient(circle at 85% 15%, rgba(8, 125, 156, 0.12), transparent 24rem),
    var(--surface-blue);
}

.section-heading {
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.62fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: 2rem;
  margin-bottom: 2.8rem;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  max-width: 15ch;
}

.section-heading p {
  max-width: 35rem;
  justify-self: end;
  font-size: 1.05rem;
}

.eyebrow {
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 2.4rem;
  height: 0.16rem;
  background: var(--amber-500);
}

.eyebrow--light {
  color: #d9e7ea;
}

.lead {
  max-width: 45rem;
  color: var(--muted);
  line-height: 1.72;
}

.utility-bar {
  color: #c8d7dc;
  background:
    linear-gradient(90deg, rgba(239, 90, 47, 0.12), transparent 24rem),
    var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-bar__inner {
  min-height: 2.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.utility-bar__inner p {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.utility-bar__detail {
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
}

.utility-bar__inner p::before {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--amber-500);
  border-radius: 50%;
  box-shadow: 0 0 0 0.28rem rgba(239, 90, 47, 0.14);
  content: "";
}

.site-header {
  border-bottom-color: rgba(9, 34, 53, 0.1);
  background: rgba(245, 248, 246, 0.95);
  backdrop-filter: blur(20px) saturate(1.12);
}

.site-header.is-scrolled {
  background: rgba(245, 248, 246, 0.985);
  box-shadow: 0 1rem 2.8rem rgba(6, 23, 37, 0.13);
}

.site-header__inner {
  min-height: var(--header-height);
}

.brand {
  gap: 0.85rem;
  text-decoration: none;
}

.brand__mark {
  width: 3.35rem;
  height: 3.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.2rem 0.2rem 1rem 0.2rem;
  color: #ffffff;
  background:
    linear-gradient(135deg, transparent 0 70%, var(--amber-500) 70% 100%),
    var(--navy-900);
  box-shadow: 0 0.6rem 1.6rem rgba(6, 23, 37, 0.18);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand__mark::after {
  right: 0.5rem;
  bottom: 0.55rem;
  left: 0.5rem;
  height: 0.18rem;
  border-top-color: rgba(255, 255, 255, 0.82);
  border-bottom: 0;
}

.brand__copy {
  gap: 0.12rem;
}

.brand__copy strong {
  color: var(--navy-950);
  font-size: 0.98rem;
  font-weight: 760;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.brand__copy span {
  color: #687a83;
  font-size: 0.69rem;
  letter-spacing: 0.035em;
}

.primary-nav {
  gap: 0.16rem;
}

.primary-nav > a {
  border-radius: 0.2rem;
  font-size: 0.77rem;
  font-weight: 730;
  letter-spacing: 0.025em;
}

.primary-nav > a:not(.button)::after {
  right: 0.78rem;
  bottom: 0.42rem;
  left: 0.78rem;
  height: 0.16rem;
  background: var(--amber-500);
  border-radius: 0;
}

.button {
  min-height: 3.15rem;
  gap: 0.65rem;
  padding-inline: 1.25rem;
  border-radius: 0.2rem 0.2rem 0.75rem 0.2rem;
  font-size: 0.79rem;
  font-weight: 820;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  box-shadow: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button::before {
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.button:hover::before {
  width: 1.7rem;
}

.button:hover {
  box-shadow: 0 0.85rem 2rem rgba(6, 23, 37, 0.18);
  transform: translateY(-2px);
}

.button--small {
  min-height: 2.65rem;
  padding-inline: 1rem;
  font-size: 0.7rem;
}

.button--accent {
  color: var(--navy-950);
  background: var(--amber-500);
  border-color: var(--amber-500);
}

.button--accent:hover {
  color: var(--navy-950);
  background: #ff7047;
  border-color: #ff7047;
}

.button--secondary {
  color: var(--navy-900);
  background: transparent;
  border-color: #9eb0b7;
}

.button--secondary:hover {
  color: #ffffff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button--ghost-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.44);
}

.button--ghost-light:hover {
  color: var(--navy-950);
  background: #ffffff;
  border-color: #ffffff;
}

.hero {
  min-height: min(53rem, calc(100svh - 7.9rem));
  background: var(--navy-950);
  border-bottom: 0.35rem solid var(--amber-500);
}

.hero::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: min(58%, 58rem);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4rem 4rem;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.hero__media {
  z-index: 0;
}

.hero__overlay {
  z-index: 1;
}

.hero__media img {
  object-position: 64% center;
  filter: saturate(0.82) contrast(1.04);
}

.hero__overlay {
  background:
    linear-gradient(104deg, rgba(6, 23, 37, 1) 0%, rgba(6, 23, 37, 0.99) 39%, rgba(6, 23, 37, 0.78) 53%, rgba(6, 23, 37, 0.18) 73%, rgba(6, 23, 37, 0) 100%),
    linear-gradient(0deg, rgba(6, 23, 37, 0.72), transparent 52%);
}

.hero__chart {
  z-index: 2;
  top: 8%;
  right: 4%;
  width: min(31vw, 29rem);
  border-color: rgba(218, 235, 239, 0.2);
  border-radius: 50%;
  opacity: 0.82;
}

.hero__chart span:nth-child(3) {
  background: var(--amber-500);
  box-shadow: 0 0 0 0.45rem rgba(239, 90, 47, 0.16);
}

.hero__content {
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-block: clamp(4rem, 8vw, 7rem) 9rem;
}

.hero__copy {
  width: min(100%, 48rem);
}

.hero h1 {
  max-width: 10.5ch;
  margin-bottom: 1.35rem;
  color: #ffffff;
  font-size: clamp(3.25rem, 6.2vw, 5.65rem);
  font-weight: 760;
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--amber-400);
}

.hero__lead {
  max-width: 42rem;
  margin-bottom: 1.75rem;
  color: #d2e0e4;
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

.hero .eyebrow {
  color: #d9e7ea;
}

.hero__proof {
  margin-top: 1.6rem;
  gap: 0;
}

.hero__proof li {
  padding: 0.48rem 0.78rem;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  color: #bfd0d6;
  background: transparent;
  font-size: 0.73rem;
  letter-spacing: 0.025em;
  backdrop-filter: none;
}

.hero__proof li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero__proof li::before {
  display: none;
}

.hero__panel {
  z-index: 4;
  right: max(1rem, calc((100vw - var(--container)) / 2));
  bottom: 1.8rem;
  width: min(48rem, calc(100% - 2rem));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.25rem 0.25rem 1rem 0.25rem;
  color: #ffffff;
  background: rgba(6, 23, 37, 0.86);
  box-shadow: 0 1.6rem 4rem rgba(0, 8, 16, 0.34);
  backdrop-filter: blur(20px) saturate(1.1);
}

.hero__metric {
  min-height: 5.2rem;
  padding: 1rem 1.15rem;
}

.hero__metric strong {
  color: var(--amber-400);
  font-size: 0.63rem;
  letter-spacing: 0.13em;
}

.hero__metric span {
  color: #e8eff1;
  font-size: 0.82rem;
}

.assurance-strip {
  color: var(--ink);
  background: var(--surface-alt);
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.assurance-strip__inner {
  min-height: 6.7rem;
}

.assurance-strip__item {
  border-right-color: var(--line);
}

.assurance-strip__item > span {
  color: var(--amber-500);
  font-family: var(--font-display);
  font-size: 0.76rem;
}

.assurance-strip__item strong {
  color: var(--navy-900);
}

.assurance-strip__item small {
  color: var(--muted);
}

.cards {
  gap: 1rem;
}

.card {
  min-height: 100%;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 0.25rem 0.25rem 1.25rem 0.25rem;
  background:
    linear-gradient(145deg, rgba(8, 125, 156, 0.035), transparent 45%),
    #ffffff;
  box-shadow: 0 0.75rem 2rem rgba(6, 23, 37, 0.06);
}

.card::before {
  height: 0.2rem;
  background: var(--amber-500);
  opacity: 1;
  transform: scaleX(0.3);
}

.card:hover {
  border-color: #adc1c6;
  box-shadow: 0 1.5rem 3.8rem rgba(6, 23, 37, 0.13);
  transform: translateY(-0.32rem);
}

.card__index {
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 0.15rem 0.15rem 0.75rem 0.15rem;
  color: #ffffff;
  background: var(--navy-900);
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--navy-900);
}

.card p {
  color: var(--muted);
}

.text-link {
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.text-link::after {
  color: var(--amber-500);
}

.section--visual {
  background:
    linear-gradient(90deg, rgba(8, 125, 156, 0.034) 1px, transparent 1px),
    linear-gradient(rgba(8, 125, 156, 0.034) 1px, transparent 1px),
    #f7f9f8;
  background-size: 4rem 4rem;
}

.section--visual::before {
  top: -11rem;
  left: auto;
  right: -10rem;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(8, 125, 156, 0.12);
  background: transparent;
  box-shadow:
    0 0 0 4rem rgba(8, 125, 156, 0.025),
    0 0 0 8rem rgba(8, 125, 156, 0.015);
}

.editorial-split {
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.78fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.editorial-media {
  min-height: 40rem;
  border: 0.4rem solid #ffffff;
  border-radius: 0.25rem 0.25rem 4.5rem 0.25rem;
  box-shadow: 0 2.4rem 6rem rgba(6, 23, 37, 0.21);
}

.editorial-media::before {
  position: absolute;
  z-index: 3;
  top: 1.2rem;
  right: 1.2rem;
  width: 4.5rem;
  height: 0.2rem;
  background: var(--amber-500);
  content: "";
}

.editorial-media figcaption {
  border-top-color: rgba(255, 255, 255, 0.4);
}

.editorial-media figcaption span {
  color: var(--amber-400);
}

.editorial-copy h2 {
  max-width: 11ch;
}

.precision-list article {
  grid-template-columns: 3rem 1fr;
  padding-block: 1.15rem;
}

.precision-list article > span {
  color: var(--amber-500);
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.feature-panel {
  border: 0;
  border-radius: 0.25rem 0.25rem 2.6rem 0.25rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--navy-900);
  box-shadow: 0 1.8rem 4.5rem rgba(6, 23, 37, 0.18);
}

.feature-panel::after {
  top: 1.5rem;
  right: 1.5rem;
  width: 4rem;
  height: 4rem;
  border-color: rgba(239, 90, 47, 0.28);
  box-shadow:
    0 0 0 0.7rem rgba(239, 90, 47, 0.045),
    0 0 0 1.5rem rgba(239, 90, 47, 0.025);
}

.feature-list__mark {
  color: var(--navy-950);
  background: var(--amber-500);
  border-color: var(--amber-500);
  border-radius: 0.15rem 0.15rem 0.55rem 0.15rem;
}

.process {
  counter-reset: command-step;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process__step {
  min-height: 13rem;
  padding: 2.2rem 1.3rem 1rem;
  border-right: 1px solid var(--line);
}

.process__step:last-child {
  border-right: 0;
}

.process__step::before {
  color: var(--navy-950);
  background: var(--amber-500);
  border: 0;
  border-radius: 0.15rem 0.15rem 0.55rem 0.15rem;
}

.process__step::after {
  display: none;
}

.process__step h3 {
  margin-top: 4rem;
}

.port-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0.25rem 0.25rem 2.8rem 0.25rem;
  color: #d7e4e8;
  background:
    linear-gradient(120deg, rgba(239, 90, 47, 0.08), transparent 32%),
    var(--navy-900);
  box-shadow: 0 2rem 5rem rgba(6, 23, 37, 0.2);
}

.port-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 0.3rem;
  background: var(--amber-500);
  content: "";
}

.port-card h2,
.port-card strong {
  color: #ffffff;
}

.port-card__status {
  color: var(--amber-400);
}

.facts {
  border-color: rgba(255, 255, 255, 0.16);
}

.fact {
  border-color: rgba(255, 255, 255, 0.12);
}

.page-hero {
  min-height: 31rem;
  border-bottom: 0.3rem solid var(--amber-500);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--navy-950);
  background-size: 4rem 4rem;
}

.page-hero::before {
  inset: 0 0 0 46%;
  background:
    linear-gradient(90deg, var(--navy-950) 0%, rgba(6, 23, 37, 0.35) 58%, rgba(6, 23, 37, 0.1)),
    linear-gradient(0deg, rgba(6, 23, 37, 0.66), rgba(6, 23, 37, 0.1)),
    url("../images/hero-marine.webp") center 52% / cover no-repeat;
  opacity: 0.58;
  filter: saturate(0.7) contrast(1.04);
}

.page-hero::after {
  border-color: rgba(218, 235, 239, 0.12);
}

.page-hero__inner {
  z-index: 2;
}

.page-hero h1 {
  max-width: 13ch;
  color: #ffffff;
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.page-hero p {
  color: #cbdbe0;
}

.breadcrumb {
  color: #a8c0c8;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.details-list details,
.contact-card,
.form-shell {
  border-radius: 0.25rem 0.25rem 1.1rem 0.25rem;
}

.details-list details {
  background: #ffffff;
}

.details-list summary {
  font-family: var(--font-display);
  font-weight: 720;
}

.contact-card {
  border-top: 0.22rem solid var(--amber-500);
}

.form-shell {
  border-top: 0.3rem solid var(--amber-500);
  box-shadow: 0 1.8rem 4.8rem rgba(6, 23, 37, 0.12);
}

.form-section {
  border-color: var(--line);
}

.form-section h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
}

input,
select,
textarea {
  border-radius: 0.2rem;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 0.22rem rgba(8, 125, 156, 0.12);
}

.radio-option,
.file-drop {
  border-radius: 0.2rem 0.2rem 0.75rem 0.2rem;
}

.prefooter {
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(115deg, var(--navy-950), var(--navy-800));
  background-size: 4rem 4rem, 4rem 4rem, auto;
  border-top: 0.3rem solid var(--amber-500);
}

.prefooter::before {
  border-color: rgba(239, 90, 47, 0.2);
  box-shadow:
    0 0 0 3.5rem rgba(239, 90, 47, 0.03),
    0 0 0 7rem rgba(239, 90, 47, 0.016);
}

.prefooter h2 {
  max-width: 16ch;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.site-footer {
  background: #04111d;
}

.footer-grid {
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-grid h2 {
  color: #ffffff;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: var(--amber-400);
  transform: translateX(0.18rem);
}

.brand--footer .brand__copy strong {
  color: #ffffff;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 560ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 560ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .primary-nav {
    top: calc(2.4rem + var(--header-height));
    border: 0;
    border-top: 0.25rem solid var(--amber-500);
    border-radius: 0.2rem 0.2rem 1rem 0.2rem;
    box-shadow: 0 1.8rem 4rem rgba(6, 23, 37, 0.24);
  }

  .primary-nav > a {
    min-height: 3rem;
    display: flex;
    align-items: center;
  }

  .process {
    border-top: 0;
  }

  .process__step {
    min-height: 12rem;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .section-heading,
  .split,
  .prefooter__inner,
  .footer-grid,
  .rfq-layout,
  .editorial-split {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.25rem;
    align-items: start;
  }

  .section-heading p {
    justify-self: start;
  }

  .hero {
    min-height: 48rem;
  }

  .hero::before {
    width: 82%;
  }

  .hero__content {
    padding-bottom: 8.5rem;
  }

  .hero__overlay {
    background:
      linear-gradient(100deg, rgba(6, 23, 37, 1) 0%, rgba(6, 23, 37, 0.96) 48%, rgba(6, 23, 37, 0.56) 78%, rgba(6, 23, 37, 0.2) 100%),
      linear-gradient(0deg, rgba(6, 23, 37, 0.78), transparent 60%);
  }

  .hero__panel {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
    margin: 0;
  }

  .editorial-media {
    min-height: 33rem;
  }

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

  .process__step {
    border-right: 1px solid var(--line);
  }

  .process__step:nth-child(even) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 4.7rem;
  }

  .container {
    width: min(calc(100% - 1.3rem), var(--container));
  }

  .section {
    padding-block: 4.5rem;
  }

  .section--alt,
  .section--visual,
  .page-hero,
  .prefooter {
    background-size: 2.5rem 2.5rem;
  }

  .utility-bar__inner {
    min-height: 2.1rem;
  }

  .utility-bar__inner p::before {
    display: none;
  }

  .utility-bar__detail {
    display: none;
  }

  .brand__mark {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand__copy strong {
    max-width: 12.5rem;
    font-size: 0.83rem;
  }

  .primary-nav {
    top: calc(2.1rem + var(--header-height));
    right: 0.65rem;
    left: 0.65rem;
  }

  .hero {
    min-height: 49rem;
  }

  .hero::before {
    width: 100%;
    clip-path: none;
  }

  .hero__media img {
    object-position: 61% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(6, 23, 37, 0.99) 0%, rgba(6, 23, 37, 0.94) 38%, rgba(6, 23, 37, 0.64) 70%, rgba(6, 23, 37, 0.35) 100%),
      linear-gradient(90deg, rgba(6, 23, 37, 0.82), rgba(6, 23, 37, 0.18));
  }

  .hero__content {
    align-items: flex-start;
    padding-block: 3.4rem 10rem;
  }

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.85rem, 14.5vw, 4rem);
  }

  .hero__lead {
    max-width: 30rem;
    font-size: 1rem;
  }

  .hero .button-row {
    align-items: stretch;
  }

  .hero .button-row .button {
    width: 100%;
  }

  .hero__panel {
    right: 0.65rem;
    bottom: 0.65rem;
    width: calc(100% - 1.3rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 0.2rem 0.2rem 0.75rem 0.2rem;
  }

  .hero__metric {
    min-height: 5.3rem;
    padding: 0.7rem 0.55rem;
  }

  .hero__metric strong {
    font-size: 0.57rem;
    letter-spacing: 0.07em;
  }

  .hero__metric span {
    font-size: 0.65rem;
    line-height: 1.35;
  }

  .assurance-strip__item {
    border-bottom-color: var(--line);
  }

  .assurance-strip__item strong {
    font-size: 0.9rem;
  }

  .assurance-strip__item small {
    font-size: 0.72rem;
  }

  .section-heading {
    padding-bottom: 1.4rem;
    margin-bottom: 2rem;
  }

  .card {
    padding: 1.4rem;
  }

  .editorial-media {
    min-height: 27rem;
    border-width: 0.25rem;
    border-radius: 0.2rem 0.2rem 2.6rem 0.2rem;
  }

  .feature-panel,
  .port-card {
    border-radius: 0.2rem 0.2rem 1.8rem 0.2rem;
  }

  .process {
    grid-template-columns: 1fr;
  }

  .process__step,
  .process__step:nth-child(even) {
    min-height: 0;
    padding: 1.4rem 0 1.4rem 4rem;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process__step h3 {
    margin-top: 0;
  }

  .process__step::before {
    top: 1.4rem;
  }

  .page-hero {
    min-height: 27rem;
  }

  .page-hero::before {
    inset: 0;
    opacity: 0.32;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .prefooter h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }
}

/* Contrast corrections after the complete Pacific Command cascade. */
.brand:not(.brand--footer) .brand__copy span {
  color: #62747d;
}

.assurance-strip__item > span,
.precision-list article > span {
  color: #b83d1f;
}

.feature-list .feature-list__mark {
  color: var(--navy-950);
}

.port-card .fact strong {
  color: var(--navy-900);
}

.port-card .text-link {
  color: var(--amber-400);
}

.port-card .text-link:hover {
  color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .hero,
  .page-hero,
  .port-card,
  .feature-panel,
  .prefooter {
    color: #000000;
    background: #ffffff;
    border-color: #000000;
    box-shadow: none;
  }
}
