:root {
  color-scheme: light;
  --ink: #102027;
  --muted: #5a6872;
  --line: #dce3e5;
  --paper: #f7f8f4;
  --white: #ffffff;
  --teal: #057b76;
  --teal-dark: #045a56;
  --coral: #e65f42;
  --amber: #f3b94d;
  --navy: #162a4a;
  --shadow: 0 24px 80px rgba(16, 32, 39, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 32px rgba(16, 32, 39, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #e83f35;
  color: var(--white);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.75),
    0 8px 24px rgba(16, 32, 39, 0.18);
}

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

.seal-ring {
  fill: none;
  stroke: #f7f8f4;
  stroke-width: 3;
}

.seal-field {
  fill: none;
  stroke: #f7f8f4;
  stroke-width: 1.2;
}

.seal-dragon,
.seal-head,
.seal-whisker,
.seal-tail {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seal-dragon {
  stroke-width: 4;
}

.seal-head,
.seal-tail {
  stroke-width: 2.7;
}

.seal-whisker {
  stroke-width: 1.8;
}

.site-header.is-scrolled .brand-mark {
  box-shadow:
    0 0 0 1px rgba(232, 63, 53, 0.18),
    0 8px 24px rgba(16, 32, 39, 0.12);
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a,
.header-cta {
  opacity: 0.86;
}

.nav-links a:hover,
.header-cta:hover {
  opacity: 1;
}

.header-cta {
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 5vw, 72px) 56px;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(10, 21, 28, 0.9) 0%, rgba(10, 21, 28, 0.72) 38%, rgba(10, 21, 28, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 21, 28, 0.52) 0%, rgba(10, 21, 28, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.cta-section h2 {
  margin: 0;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(4rem, 13vw, 10rem);
  font-weight: 900;
}

.hero-copy {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(230, 95, 66, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 42px 0 0;
}

.hero-metrics div {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-metrics dt {
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 900;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.trust-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--navy);
  color: var(--white);
}

.trust-band p {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
}

.trust-band span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.section,
.cta-section {
  padding: 92px clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(32px, 6vw, 88px);
}

.section-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.section h2,
.cta-section h2 {
  max-width: 780px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  font-weight: 900;
}

.section p,
.cta-section p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.58fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

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

.steps article,
.shipment-panel,
.reserve-panel,
.audience-section article,
.signup-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(16, 32, 39, 0.06);
}

.steps article {
  min-height: 218px;
  padding: 24px;
}

.steps span {
  color: var(--teal);
  font-weight: 900;
}

.steps h3,
.shipment-panel h3,
.reserve-panel h3,
.audience-section h2 {
  margin: 16px 0 8px;
  font-size: 1.35rem;
}

.container-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 380px);
  gap: 18px;
  align-items: stretch;
}

.shipment-panel {
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(5, 123, 118, 0.1), rgba(243, 185, 77, 0.12)),
    var(--white);
}

.panel-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-topline strong {
  margin-left: auto;
  color: var(--teal-dark);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(243, 185, 77, 0.22);
}

.shipment-panel h3 {
  margin-top: 30px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.route-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 34px 0;
}

.route-line::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--line);
}

.route-line span {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 6px solid var(--white);
  background: var(--teal);
  box-shadow: var(--shadow);
}

.product-list {
  display: grid;
  gap: 10px;
}

.product-list div,
.reserve-output span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.product-list strong,
.reserve-output strong {
  color: var(--ink);
  white-space: nowrap;
}

.reserve-panel {
  padding: 24px;
}

.reserve-panel label,
.signup-form label {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

input[type="range"] {
  accent-color: var(--teal);
}

input:not([type="range"]),
select {
  padding: 0 12px;
}

.reserve-output {
  margin: 22px 0;
}

.fine-print {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.audience-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: var(--ink);
}

.audience-section article {
  padding: clamp(24px, 4vw, 42px);
}

.audience-section ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.tracking {
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 0;
  padding: 0;
  margin: 44px 0 0;
  list-style: none;
  overflow-x: auto;
}

.timeline li {
  position: relative;
  min-height: 116px;
  padding: 46px 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
}

.timeline li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(5, 123, 118, 0.12);
}

.timeline li:nth-child(3)::after {
  background: var(--coral);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.72);
}

.signup-form {
  padding: 24px;
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #0d171d;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer span {
  color: var(--white);
  font-weight: 900;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(10, 21, 28, 0.92), rgba(10, 21, 28, 0.54)),
      linear-gradient(0deg, rgba(10, 21, 28, 0.55), rgba(10, 21, 28, 0));
  }

  .hero-metrics,
  .trust-band,
  .split,
  .section-heading,
  .container-showcase,
  .audience-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 96px 18px 32px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics {
    gap: 0;
  }

  .section,
  .cta-section {
    padding: 64px 18px;
  }

  .steps article {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }
}
