:root {
  --ink: #f2fff8;
  --muted: #9ac7b3;
  --line: #1e4b3c;
  --paper: #06170f;
  --soft: #0b2418;
  --mist: #103625;
  --primary: #22e68a;
  --primary-dark: #10a463;
  --accent: #74ffd2;
  --gold: #a8ff60;
  --green: #22e68a;
  --deep: #020806;
  --violet: #56f1b8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  color-scheme: dark;
}

@keyframes routeFlow {
  from {
    stroke-dashoffset: 760;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes speedSweep {
  0% {
    opacity: 0;
    transform: translate3d(-18vw, 0, 0) skewX(-18deg);
  }

  12%,
  62% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translate3d(104vw, 0, 0) skewX(-18deg);
  }
}

@keyframes cuePulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(7px);
  }
}

@keyframes nodePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(116, 255, 210, 0.32);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(116, 255, 210, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(116, 255, 210, 0);
  }
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(154, 242, 231, 0.42);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(154, 242, 231, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(154, 242, 231, 0);
  }
}

@keyframes timelineIn {
  0% {
    opacity: 0;
    transform: translateX(-12px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 230, 138, 0.24), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(116, 255, 210, 0.14), transparent 28rem),
    linear-gradient(180deg, #020806 0%, #06170f 42%, #082218 100%);
  line-height: 1.6;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(215, 227, 255, 0.9);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 36px rgba(7, 27, 74, 0.12);
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(6, 27, 36, 0.18);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  box-shadow: 0 12px 32px rgba(6, 27, 36, 0.24);
  transform: translateY(-1px) rotate(-2deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #273b69;
  font-size: 15px;
}

.site-nav a {
  position: relative;
  padding: 24px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(660px, calc(100vh - 124px));
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(135deg, rgba(148, 185, 255, 0.14) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 62% 18%, rgba(34, 230, 138, 0.26), transparent 23rem),
    radial-gradient(circle at 82% 62%, rgba(116, 255, 210, 0.18), transparent 18rem);
  background-size: 42px 42px, auto, auto;
  mix-blend-mode: screen;
  opacity: 0.62;
  pointer-events: none;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-logistics.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  transition: transform 600ms ease;
}

.hero:hover .hero-media {
  transform: scale(1.035);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 12, 34, 0.92) 0%, rgba(5, 22, 54, 0.74) 42%, rgba(5, 24, 50, 0.3) 78%),
    linear-gradient(0deg, rgba(34, 230, 138, 0.18), rgba(116, 255, 210, 0.08));
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.flight-path {
  position: absolute;
  right: max(2vw, 24px);
  bottom: 12%;
  width: min(62vw, 820px);
  height: auto;
  opacity: 0.72;
}

.route-track,
.route-dash {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-track {
  stroke: rgba(184, 213, 255, 0.3);
  stroke-width: 2;
}

.route-dash {
  stroke: rgba(111, 216, 255, 0.95);
  stroke-width: 4;
  stroke-dasharray: 90 670;
  animation: routeFlow 5.8s linear infinite;
  filter: drop-shadow(0 0 12px rgba(116, 255, 210, 0.72));
}

.speed-line {
  position: absolute;
  right: auto;
  left: 0;
  width: 210px;
  height: 2px;
  background: linear-gradient(90deg, rgba(34, 230, 138, 0), rgba(116, 255, 210, 0.82), rgba(116, 255, 210, 0));
  border-radius: 999px;
  opacity: 0;
  transform: skewX(-18deg);
  animation: speedSweep 7s linear infinite;
}

.speed-line-one {
  top: 24%;
  animation-delay: 0.2s;
}

.speed-line-two {
  top: 48%;
  width: 150px;
  animation-delay: 2.7s;
}

.speed-line-three {
  top: 68%;
  width: 250px;
  animation-delay: 4.5s;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 48px;
  align-items: center;
  width: min(1180px, 90vw);
  min-height: min(660px, calc(100vh - 124px));
  margin: 0 auto;
  padding: 52px 0 64px;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 3;
  display: grid;
  gap: 4px;
  width: 28px;
  transform: translateX(-50%);
  pointer-events: none;
}

.scroll-cue span {
  display: block;
  height: 3px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  animation: cuePulse 1.8s ease-in-out infinite;
}

.scroll-cue span:nth-child(2) {
  animation-delay: 0.16s;
}

.scroll-cue span:nth-child(3) {
  animation-delay: 0.32s;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero .eyebrow,
.support-section .eyebrow {
  color: #95f0e8;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}

.headline-break {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 42%, transparent 60%);
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #008bff 58%, var(--accent));
  box-shadow: 0 12px 30px rgba(34, 230, 138, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary) 58%, #00afc0);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(184, 213, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.quick-panel,
.upload-form,
.tracking-summary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.94));
  border: 1px solid rgba(184, 213, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-panel {
  position: relative;
  align-self: center;
  padding: 22px;
  color: var(--ink);
  overflow: hidden;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.quick-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 16% 0%, rgba(34, 230, 138, 0.18), transparent 16rem),
    linear-gradient(120deg, rgba(34, 230, 138, 0.12), transparent 42%, rgba(116, 255, 210, 0.12));
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.quick-panel:hover {
  box-shadow: 0 28px 76px rgba(7, 27, 74, 0.22);
  transform: translateY(-4px);
}

.quick-panel:hover::before {
  opacity: 1;
}

.quick-form {
  display: none;
  position: relative;
  z-index: 1;
}

.quick-form.active {
  display: block;
}

.quick-form label,
.tracking-form label,
.field span {
  display: block;
  margin-bottom: 8px;
  color: #263b69;
  font-size: 14px;
  font-weight: 750;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(215, 227, 255, 0.9);
}

.panel-head span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.panel-head em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #006547;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  background: #dcfff3;
  border: 1px solid rgba(23, 185, 122, 0.28);
  border-radius: 999px;
}

.panel-head em::before {
  width: 7px;
  height: 7px;
  margin-right: 6px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(23, 185, 122, 0.12);
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(34, 230, 138, 0.14);
}

.mini-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.panel-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 18px;
}

.panel-steps span {
  display: grid;
  place-items: center;
  min-height: 34px;
  color: #234478;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(180deg, #f6faff, #ebf3ff);
  border: 1px solid rgba(215, 227, 255, 0.9);
  border-radius: 8px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 24px 5vw;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 230, 138, 0.18), transparent 25rem),
    linear-gradient(90deg, #071b4a, #092767 48%, #073f6f);
  border-top: 1px solid rgba(184, 213, 255, 0.2);
  border-bottom: 1px solid rgba(184, 213, 255, 0.2);
}

.trust-band div {
  position: relative;
  min-height: 118px;
  padding: 22px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(184, 213, 255, 0.22);
  border-radius: 8px;
  transform: translateZ(0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.trust-band div::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 96px;
  height: 96px;
  content: "";
  background: radial-gradient(circle, rgba(116, 255, 210, 0.28), transparent 68%);
  border-radius: 50%;
}

.trust-band div:hover {
  border-color: rgba(116, 255, 210, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.trust-band strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
}

.trust-band span {
  color: rgba(226, 241, 255, 0.78);
}

.section,
.platform-section,
.process-section,
.tracking-section,
.status-section,
.support-section {
  padding: 86px 5vw;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.section-heading.compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.platform-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 12%, rgba(34, 230, 138, 0.18), transparent 22rem),
    radial-gradient(circle at 92% 6%, rgba(116, 255, 210, 0.12), transparent 22rem),
    linear-gradient(180deg, #06170f, #082218);
}

.platform-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(34, 230, 138, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 230, 138, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 78%, transparent);
  pointer-events: none;
}

.platform-section > * {
  position: relative;
  z-index: 1;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.platform-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 27, 74, 0.16);
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
}

.platform-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.22), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
  pointer-events: none;
}

.platform-card::after {
  position: absolute;
  right: -45px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 36px;
  transform: rotate(24deg);
}

.platform-card:hover {
  box-shadow: 0 30px 78px rgba(7, 27, 74, 0.22);
  transform: translateY(-6px);
}

.platform-card span,
.platform-card h3,
.platform-card p {
  position: relative;
  z-index: 1;
}

.platform-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.platform-card h3 {
  color: #fff;
}

.platform-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.card-blue {
  background: linear-gradient(145deg, #22e68a, #064227);
}

.card-cyan {
  background: linear-gradient(145deg, #0d6f4a, #006d95);
}

.card-violet {
  background: linear-gradient(145deg, #6658f6, #2b3fbe);
}

.card-amber {
  background: linear-gradient(145deg, #22e68a, #0d6f4a);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.status-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(7, 27, 74, 0.06);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(7, 132, 134, 0.08) 42%, transparent 68%);
  transform: translateX(-105%);
  transition: transform 620ms ease;
  pointer-events: none;
}

.service-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(10, 39, 27, 0.92), rgba(5, 22, 14, 0.94));
}

.service-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(9, 42, 78, 0.92), rgba(5, 22, 14, 0.94));
}

.service-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(20, 38, 94, 0.92), rgba(5, 22, 14, 0.94));
}

.service-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(8, 56, 89, 0.92), rgba(5, 22, 14, 0.94));
}

.service-card:hover,
.status-grid article:hover {
  border-color: rgba(34, 230, 138, 0.25);
  box-shadow: 0 22px 54px rgba(7, 27, 74, 0.12);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: translateX(105%);
}

.service-index {
  display: block;
  margin-bottom: 32px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
}

.service-card p,
.status-grid p,
.process-step strong {
  color: var(--muted);
}

.process-section,
.status-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(34, 230, 138, 0.1), transparent 22rem),
    linear-gradient(180deg, #06170f, #082218);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.process-step {
  position: relative;
  min-height: 140px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.88));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.process-step::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(34, 230, 138, 0), rgba(34, 230, 138, 0.62));
  border-radius: 999px;
  transform: translateX(-10px);
  opacity: 0;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.process-step:hover {
  border-color: rgba(34, 230, 138, 0.26);
  box-shadow: 0 16px 42px rgba(7, 27, 74, 0.11);
  transform: translateY(-4px);
}

.process-step:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
}

.process-step.current {
  border-color: rgba(34, 230, 138, 0.36);
  box-shadow: 0 16px 42px rgba(34, 230, 138, 0.16);
}

.process-step.current span {
  animation: nodePulse 2.4s ease-out infinite;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: start;
}

.notice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.notice-list span {
  padding: 8px 12px;
  color: var(--primary-dark);
  background: linear-gradient(180deg, #f4f9ff, #e8f1ff);
  border: 1px solid rgba(34, 230, 138, 0.18);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.upload-form {
  padding: 26px;
  color: var(--ink);
  background: #fff;
  transition:
    box-shadow 260ms ease,
    transform 260ms ease;
}

.upload-form:hover {
  box-shadow: 0 22px 62px rgba(7, 27, 74, 0.17);
  transform: translateY(-3px);
}

.form-grid,
.upload-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: block;
}

.upload-grid {
  margin: 18px 0;
}

.upload-box {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(34, 230, 138, 0.12) 50%, transparent 50%) 0 0 / 12px 1px repeat-x,
    linear-gradient(90deg, rgba(34, 230, 138, 0.12) 50%, transparent 50%) 0 100% / 12px 1px repeat-x,
    linear-gradient(0deg, rgba(34, 230, 138, 0.12) 50%, transparent 50%) 0 0 / 1px 12px repeat-y,
    linear-gradient(0deg, rgba(34, 230, 138, 0.12) 50%, transparent 50%) 100% 0 / 1px 12px repeat-y,
    var(--soft);
  border: 1px dashed #9bb4b7;
  border-radius: var(--radius);
  transition:
    background-position 420ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.upload-box:hover,
.upload-box:focus-within {
  background-position:
    12px 0,
    -12px 100%,
    0 -12px,
    100% 12px,
    0 0;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.upload-box.has-file {
  background:
    linear-gradient(90deg, rgba(33, 166, 122, 0.16) 50%, transparent 50%) 0 0 / 12px 1px repeat-x,
    linear-gradient(90deg, rgba(33, 166, 122, 0.16) 50%, transparent 50%) 0 100% / 12px 1px repeat-x,
    linear-gradient(0deg, rgba(33, 166, 122, 0.16) 50%, transparent 50%) 0 0 / 1px 12px repeat-y,
    linear-gradient(0deg, rgba(33, 166, 122, 0.16) 50%, transparent 50%) 100% 0 / 1px 12px repeat-y,
    #f2fbf7;
  border-color: rgba(33, 166, 122, 0.54);
}

.upload-box input {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  position: absolute;
}

.upload-title {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
}

.upload-name {
  display: block;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.check-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.check-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-message {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--primary-dark);
  font-weight: 750;
}

.tracking-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 230, 138, 0.24), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(116, 255, 210, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(116, 255, 210, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #06170f, #092b62);
  background-size: 42px 42px, auto;
  color: #fff;
}

.tracking-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(116, 255, 210, 0.1), transparent);
  transform: translateX(-100%);
  animation: speedSweep 9s linear infinite;
  pointer-events: none;
}

.tracking-section > * {
  position: relative;
  z-index: 1;
}

.tracking-section .eyebrow {
  color: #8de9df;
}

.tracking-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.tracking-form {
  display: grid;
  grid-template-columns: auto minmax(220px, 560px) auto;
  gap: 12px;
  align-items: center;
  width: min(820px, 100%);
  margin: 0 auto 32px;
}

.tracking-form label {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.tracking-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 20px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.tracking-summary {
  padding: 24px;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(10, 39, 27, 0.92), rgba(5, 22, 14, 0.94));
}

.tracking-summary h3 {
  margin: 18px 0 8px;
  overflow-wrap: anywhere;
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  animation: statusPulse 2.6s ease-out infinite;
}

.status-pill.is-pending {
  color: #062016;
  background: linear-gradient(135deg, #a8ff60, #22e68a);
}

.status-pill.is-muted {
  color: #d9fff1;
  background: rgba(116, 255, 210, 0.12);
  border: 1px solid rgba(116, 255, 210, 0.28);
  animation: none;
}

.timeline {
  min-height: 315px;
  padding: 24px;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(184, 213, 255, 0.18);
  border-radius: var(--radius);
}

.timeline li {
  position: relative;
  padding: 0 0 22px 30px;
  transition: transform 180ms ease;
}

.timeline li:hover {
  transform: translateX(4px);
}

.timeline.timeline-refresh li {
  animation: timelineIn 420ms ease both;
}

.timeline.timeline-refresh li:nth-child(2) {
  animation-delay: 70ms;
}

.timeline.timeline-refresh li:nth-child(3) {
  animation-delay: 140ms;
}

.timeline.timeline-refresh li:nth-child(4) {
  animation-delay: 210ms;
}

.timeline.timeline-refresh li:nth-child(5) {
  animation-delay: 280ms;
}

.timeline li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  background: #fff;
  border: 3px solid #81dfff;
  border-radius: 50%;
}

.timeline li:first-child::before {
  animation: statusPulse 2.2s ease-out infinite;
}

.timeline li::after {
  position: absolute;
  top: 22px;
  bottom: 0;
  left: 8px;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.35);
}

.timeline li:last-child::after {
  display: none;
}

.timeline time {
  display: block;
  color: #81dfff;
  font-size: 13px;
  font-weight: 750;
}

.timeline strong {
  display: block;
  margin-top: 2px;
}

.timeline span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.status-grid article {
  min-height: 170px;
  background:
    radial-gradient(circle at right top, rgba(34, 230, 138, 0.08), transparent 8rem),
    linear-gradient(180deg, rgba(10, 39, 27, 0.92), rgba(5, 22, 14, 0.94));
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 20px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(34, 230, 138, 0.08);
}

.dot.pending {
  background: #aab5b8;
}

.dot.ready {
  background: var(--gold);
}

.dot.moving {
  background: var(--primary);
}

.dot.customs {
  background: var(--accent);
}

.dot.delivery {
  background: #5b7ee5;
}

.dot.done {
  background: var(--green);
}

.support-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 16% 16%, rgba(116, 255, 210, 0.2), transparent 18rem),
    linear-gradient(90deg, #22e68a, #06170f 52%, #0d6f4a),
    #22e68a;
}

.support-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -35%;
  width: 30%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  animation: speedSweep 8s linear infinite;
  pointer-events: none;
}

.support-section > * {
  position: relative;
  z-index: 1;
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.support-copy {
  max-width: 760px;
}

.support-copy p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 34px 5vw;
  color: rgba(255, 255, 255, 0.82);
  background: #06170f;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0 0;
}

.footer-brand {
  position: relative;
  min-height: 58px;
  padding-left: 70px;
}

.footer-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
}

/* Dark product-theme pass inspired by DigitalOcean's deep navy hero system. */
.site-header {
  background: rgba(3, 11, 29, 0.78);
  border-bottom-color: rgba(80, 124, 212, 0.22);
}

.site-header.scrolled {
  background: rgba(3, 11, 29, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.brand strong,
.site-nav,
.site-nav a {
  color: #f2fff8;
}

.brand small {
  color: #74ffd2;
}

.nav-toggle {
  background: rgba(10, 31, 70, 0.9);
  border-color: rgba(116, 255, 210, 0.28);
}

.nav-toggle span {
  background: #f2fff8;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 11, 29, 0.96) 0%, rgba(6, 22, 51, 0.8) 43%, rgba(6, 22, 51, 0.38) 82%),
    linear-gradient(0deg, rgba(34, 230, 138, 0.24), rgba(116, 255, 210, 0.08));
}

.eyebrow,
.hero .eyebrow,
.tracking-section .eyebrow,
.support-section .eyebrow {
  color: #74ffd2;
}

h1,
h2,
h3 {
  color: #f2fff8;
}

.section-heading p:not(.eyebrow),
.hero-lede,
.service-card p,
.status-grid p,
.process-step strong,
.tracking-summary p,
.support-copy p:not(.eyebrow) {
  color: var(--muted);
}

.quick-panel,
.upload-form,
.tracking-summary {
  background:
    linear-gradient(180deg, rgba(10, 39, 27, 0.92), rgba(5, 22, 14, 0.9)),
    rgba(5, 22, 14, 0.9);
  border-color: rgba(116, 255, 210, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.quick-panel::before {
  background:
    radial-gradient(circle at 16% 0%, rgba(34, 230, 138, 0.26), transparent 16rem),
    linear-gradient(120deg, rgba(34, 230, 138, 0.16), transparent 42%, rgba(116, 255, 210, 0.13));
}

.panel-head {
  border-bottom-color: rgba(116, 255, 210, 0.18);
}

.panel-head span,
.quick-form label,
.tracking-form label,
.field span,
.upload-title {
  color: #d9fff1;
}

.panel-head em {
  color: #b9ffe7;
  background: rgba(32, 208, 149, 0.12);
  border-color: rgba(32, 208, 149, 0.32);
}

input,
select {
  color: #f2fff8;
  background: rgba(2, 12, 8, 0.88);
  border-color: rgba(116, 255, 210, 0.22);
}

input::placeholder {
  color: rgba(207, 222, 255, 0.52);
}

input:focus,
select:focus {
  border-color: #74ffd2;
  box-shadow: 0 0 0 4px rgba(34, 230, 138, 0.22);
}

.mini-status,
.upload-name,
.check-field {
  color: var(--muted);
}

.panel-steps span {
  color: #d9fff1;
  background: rgba(9, 32, 22, 0.78);
  border-color: rgba(116, 255, 210, 0.2);
}

.button-primary {
  background: linear-gradient(135deg, #22e68a, #22e68a 54%, #74ffd2);
  box-shadow: 0 16px 38px rgba(34, 230, 138, 0.34);
}

.button-ghost,
.button-light {
  color: #f2fff8;
  background: rgba(116, 255, 210, 0.1);
  border-color: rgba(116, 255, 210, 0.28);
}

.trust-band {
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 230, 138, 0.26), transparent 25rem),
    linear-gradient(90deg, #020806, #06170f 50%, #08265a);
}

.trust-band div,
.platform-card,
.service-card,
.process-step,
.status-grid article {
  border-color: rgba(116, 255, 210, 0.2);
}

.platform-section,
.process-section,
.status-section,
.section {
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 230, 138, 0.16), transparent 25rem),
    radial-gradient(circle at 92% 12%, rgba(116, 255, 210, 0.09), transparent 22rem),
    linear-gradient(180deg, #06170f, #082218);
}

.platform-section::before {
  background-image: linear-gradient(rgba(116, 255, 210, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 255, 210, 0.055) 1px, transparent 1px);
}

.platform-card {
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.card-blue {
  background: linear-gradient(145deg, #22e68a, #064227);
}

.card-cyan {
  background: linear-gradient(145deg, #16b985, #075041);
}

.card-violet {
  background: linear-gradient(145deg, #1ca86d, #0b3c2a);
}

.card-amber {
  background: linear-gradient(145deg, #22e68a, #0d6f4a);
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.process-step,
.status-grid article {
  background:
    radial-gradient(circle at right top, rgba(34, 230, 138, 0.14), transparent 9rem),
    linear-gradient(180deg, rgba(10, 39, 27, 0.9), rgba(5, 22, 14, 0.92));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.service-card::after {
  background: linear-gradient(120deg, transparent 0%, rgba(116, 255, 210, 0.12) 42%, transparent 68%);
}

.service-index {
  color: #74ffd2;
}

.notice-list span {
  color: #d9fff1;
  background: rgba(34, 230, 138, 0.12);
  border-color: rgba(116, 255, 210, 0.22);
}

.upload-box {
  background:
    linear-gradient(90deg, rgba(116, 255, 210, 0.16) 50%, transparent 50%) 0 0 / 12px 1px repeat-x,
    linear-gradient(90deg, rgba(116, 255, 210, 0.16) 50%, transparent 50%) 0 100% / 12px 1px repeat-x,
    linear-gradient(0deg, rgba(116, 255, 210, 0.16) 50%, transparent 50%) 0 0 / 1px 12px repeat-y,
    linear-gradient(0deg, rgba(116, 255, 210, 0.16) 50%, transparent 50%) 100% 0 / 1px 12px repeat-y,
    rgba(6, 22, 51, 0.88);
  border-color: rgba(116, 255, 210, 0.3);
}

.upload-box.has-file {
  background:
    linear-gradient(90deg, rgba(32, 208, 149, 0.2) 50%, transparent 50%) 0 0 / 12px 1px repeat-x,
    linear-gradient(90deg, rgba(32, 208, 149, 0.2) 50%, transparent 50%) 0 100% / 12px 1px repeat-x,
    linear-gradient(0deg, rgba(32, 208, 149, 0.2) 50%, transparent 50%) 0 0 / 1px 12px repeat-y,
    linear-gradient(0deg, rgba(32, 208, 149, 0.2) 50%, transparent 50%) 100% 0 / 1px 12px repeat-y,
    rgba(8, 44, 48, 0.88);
}

.tracking-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 230, 138, 0.28), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(116, 255, 210, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(116, 255, 210, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #020806, #06170f);
}

.timeline {
  background: rgba(10, 39, 27, 0.58);
  border-color: rgba(116, 255, 210, 0.18);
}

.timeline span {
  color: var(--muted);
}

.dot.ready,
.dot.customs {
  background: var(--primary);
}

.support-section {
  background:
    radial-gradient(circle at 16% 16%, rgba(116, 255, 210, 0.18), transparent 18rem),
    linear-gradient(90deg, #0b5a39, #06170f 56%, #075041),
    #06170f;
}

.site-footer {
  background: #020806;
  border-top: 1px solid rgba(116, 255, 210, 0.16);
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 16px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: end;
  }

  .quick-panel {
    max-width: 520px;
  }

  .service-grid,
  .platform-grid,
  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .split-section,
  .tracking-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 6px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--soft);
  }

  .brand small {
    display: none;
  }

  .flight-path {
    right: -44vw;
    bottom: 27%;
    width: 126vw;
    opacity: 0.36;
  }

  .speed-line {
    width: 150px;
  }

  .hero-content {
    width: min(100% - 36px, 680px);
    min-height: auto;
    padding: 34px 0 36px;
    gap: 22px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(34px, 10vw, 40px);
  }

  .headline-break {
    display: block;
  }

  .hero-lede {
    margin-bottom: 20px;
    font-size: 16px;
  }

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

  .hero-actions .button,
  .support-actions .button {
    flex: 1 1 150px;
  }

  .section,
  .process-section,
  .tracking-section,
  .status-section,
  .support-section {
    padding: 62px 18px;
  }

  .service-grid,
  .status-grid,
  .process-steps,
  .platform-grid,
  .form-grid,
  .upload-grid,
  .trust-band,
  .support-section {
    grid-template-columns: 1fr;
  }

  .trust-band div {
    min-height: 90px;
    padding: 22px 18px;
  }

  .platform-card {
    min-height: 210px;
  }

  .tracking-form {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .tracking-form label {
    margin-bottom: -4px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 18px;
  }

  .quick-panel,
  .upload-form,
  .timeline,
  .tracking-summary {
    padding: 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .quick-panel .field-row {
    grid-template-columns: 1fr auto;
  }

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

  .quick-panel .field-row .button {
    width: auto;
  }
}

@media (max-width: 760px) {
  .site-nav {
    background: rgba(4, 18, 12, 0.98);
    border-color: rgba(116, 255, 210, 0.22);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(116, 255, 210, 0.1);
  }
}

/* Green-black theme pass. */
.site-header {
  background: rgba(2, 8, 6, 0.8);
  border-bottom-color: rgba(116, 255, 210, 0.18);
}

.site-header.scrolled {
  background: rgba(2, 8, 6, 0.94);
}

.brand small {
  color: #74ffd2;
}

.site-nav a::after {
  background: linear-gradient(90deg, #22e68a, #74ffd2);
}

.nav-toggle {
  background: rgba(9, 32, 22, 0.92);
  border-color: rgba(116, 255, 210, 0.26);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 8, 6, 0.96) 0%, rgba(6, 23, 15, 0.82) 43%, rgba(6, 23, 15, 0.42) 82%),
    linear-gradient(0deg, rgba(34, 230, 138, 0.2), rgba(116, 255, 210, 0.06));
}

.hero::after {
  background:
    linear-gradient(135deg, rgba(116, 255, 210, 0.1) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 62% 18%, rgba(34, 230, 138, 0.18), transparent 23rem),
    radial-gradient(circle at 82% 62%, rgba(116, 255, 210, 0.12), transparent 18rem);
}

.eyebrow,
.hero .eyebrow,
.tracking-section .eyebrow,
.support-section .eyebrow {
  color: #74ffd2;
}

.route-track {
  stroke: rgba(116, 255, 210, 0.24);
}

.route-dash {
  stroke: rgba(116, 255, 210, 0.95);
  filter: drop-shadow(0 0 12px rgba(34, 230, 138, 0.7));
}

.speed-line {
  background: linear-gradient(90deg, rgba(34, 230, 138, 0), rgba(116, 255, 210, 0.82), rgba(34, 230, 138, 0));
}

.quick-panel,
.upload-form,
.tracking-summary {
  background:
    linear-gradient(180deg, rgba(10, 39, 27, 0.94), rgba(5, 22, 14, 0.92)),
    rgba(5, 22, 14, 0.92);
  border-color: rgba(116, 255, 210, 0.2);
}

.quick-panel::before {
  background:
    radial-gradient(circle at 16% 0%, rgba(34, 230, 138, 0.24), transparent 16rem),
    linear-gradient(120deg, rgba(34, 230, 138, 0.16), transparent 42%, rgba(116, 255, 210, 0.12));
}

.panel-head {
  border-bottom-color: rgba(116, 255, 210, 0.16);
}

.panel-head em {
  color: #caffec;
  background: rgba(34, 230, 138, 0.12);
  border-color: rgba(34, 230, 138, 0.32);
}

input,
select {
  background: rgba(2, 12, 8, 0.88);
  border-color: rgba(116, 255, 210, 0.2);
}

input:focus,
select:focus {
  border-color: #74ffd2;
  box-shadow: 0 0 0 4px rgba(34, 230, 138, 0.2);
}

.panel-steps span,
.button-ghost,
.button-light {
  background: rgba(116, 255, 210, 0.09);
  border-color: rgba(116, 255, 210, 0.22);
}

.button-primary {
  background: linear-gradient(135deg, #10a463, #22e68a 54%, #74ffd2);
  box-shadow: 0 16px 38px rgba(34, 230, 138, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #0c7c4c, #10a463 58%, #74ffd2);
}

.trust-band {
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 230, 138, 0.22), transparent 25rem),
    linear-gradient(90deg, #020806, #06170f 50%, #0b2c1d);
}

.trust-band div,
.platform-card,
.service-card,
.process-step,
.status-grid article {
  border-color: rgba(116, 255, 210, 0.18);
}

.platform-section,
.process-section,
.status-section,
.section {
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 230, 138, 0.13), transparent 25rem),
    radial-gradient(circle at 92% 12%, rgba(116, 255, 210, 0.08), transparent 22rem),
    linear-gradient(180deg, #06170f, #082218);
}

.platform-section::before {
  background-image: linear-gradient(rgba(116, 255, 210, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 255, 210, 0.045) 1px, transparent 1px);
}

.card-blue {
  background: linear-gradient(145deg, #0e8f59, #064227);
}

.card-cyan {
  background: linear-gradient(145deg, #16b985, #075041);
}

.card-violet {
  background: linear-gradient(145deg, #1ca86d, #0b3c2a);
}

.card-amber {
  background: linear-gradient(145deg, #22e68a, #0d6f4a);
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.process-step,
.status-grid article {
  background:
    radial-gradient(circle at right top, rgba(34, 230, 138, 0.12), transparent 9rem),
    linear-gradient(180deg, rgba(10, 39, 27, 0.92), rgba(5, 22, 14, 0.94));
}

.service-card::before,
.process-step span,
.status-pill {
  background: linear-gradient(135deg, #10a463, #22e68a, #74ffd2);
}

.status-pill.is-pending {
  color: #062016;
  background: linear-gradient(135deg, #a8ff60, #22e68a);
}

.status-pill.is-muted {
  color: #d9fff1;
  background: rgba(116, 255, 210, 0.12);
  border: 1px solid rgba(116, 255, 210, 0.28);
  animation: none;
}

.service-card::after {
  background: linear-gradient(120deg, transparent 0%, rgba(116, 255, 210, 0.12) 42%, transparent 68%);
}

.service-index {
  color: #74ffd2;
}

.notice-list span {
  color: #d9fff1;
  background: rgba(34, 230, 138, 0.11);
  border-color: rgba(116, 255, 210, 0.2);
}

.upload-box {
  background:
    linear-gradient(90deg, rgba(116, 255, 210, 0.14) 50%, transparent 50%) 0 0 / 12px 1px repeat-x,
    linear-gradient(90deg, rgba(116, 255, 210, 0.14) 50%, transparent 50%) 0 100% / 12px 1px repeat-x,
    linear-gradient(0deg, rgba(116, 255, 210, 0.14) 50%, transparent 50%) 0 0 / 1px 12px repeat-y,
    linear-gradient(0deg, rgba(116, 255, 210, 0.14) 50%, transparent 50%) 100% 0 / 1px 12px repeat-y,
    rgba(5, 22, 14, 0.88);
  border-color: rgba(116, 255, 210, 0.28);
}

.tracking-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 230, 138, 0.24), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(116, 255, 210, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(116, 255, 210, 0.055) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #020806, #06170f);
}

.timeline {
  background: rgba(10, 39, 27, 0.56);
  border-color: rgba(116, 255, 210, 0.16);
}

.timeline time {
  color: #74ffd2;
}

.timeline li::before {
  border-color: #74ffd2;
}

.dot.ready,
.dot.customs {
  background: var(--primary);
}

.support-section {
  background:
    radial-gradient(circle at 16% 16%, rgba(116, 255, 210, 0.15), transparent 18rem),
    linear-gradient(90deg, #0b5a39, #06170f 56%, #0d6f4a),
    #06170f;
}

.site-footer {
  background: #020806;
  border-top-color: rgba(116, 255, 210, 0.14);
}

/* Black-forward green theme: green is the glow, black is the surface. */
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(34, 230, 138, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 16%, rgba(116, 255, 210, 0.09), transparent 28rem),
    linear-gradient(180deg, #010403 0%, #020806 42%, #06120c 100%);
}

.site-header {
  background: rgba(1, 4, 3, 0.84);
  border-bottom-color: rgba(116, 255, 210, 0.14);
}

.site-header.scrolled {
  background: rgba(1, 4, 3, 0.96);
}

.hero {
  background: #010403;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(1, 4, 3, 0.96) 0%, rgba(2, 8, 6, 0.86) 46%, rgba(2, 8, 6, 0.48) 84%),
    linear-gradient(0deg, rgba(34, 230, 138, 0.12), rgba(116, 255, 210, 0.04));
}

.hero::after {
  opacity: 0.36;
  background:
    linear-gradient(135deg, rgba(116, 255, 210, 0.075) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 62% 18%, rgba(34, 230, 138, 0.11), transparent 23rem),
    radial-gradient(circle at 82% 62%, rgba(116, 255, 210, 0.08), transparent 18rem);
}

.quick-panel,
.upload-form,
.tracking-summary {
  background:
    radial-gradient(circle at right top, rgba(34, 230, 138, 0.08), transparent 12rem),
    linear-gradient(180deg, rgba(4, 17, 11, 0.96), rgba(2, 10, 7, 0.96));
  border-color: rgba(116, 255, 210, 0.16);
}

.quick-panel::before {
  background:
    radial-gradient(circle at 16% 0%, rgba(34, 230, 138, 0.12), transparent 16rem),
    linear-gradient(120deg, rgba(34, 230, 138, 0.08), transparent 42%, rgba(116, 255, 210, 0.07));
}

input,
select {
  background: rgba(1, 6, 4, 0.94);
}

.trust-band {
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 230, 138, 0.14), transparent 25rem),
    linear-gradient(90deg, #010403, #020806 54%, #06170f);
}

.trust-band div {
  background: linear-gradient(145deg, rgba(11, 36, 24, 0.7), rgba(2, 8, 6, 0.74));
}

.platform-section,
.process-section,
.status-section,
.section {
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 230, 138, 0.08), transparent 25rem),
    radial-gradient(circle at 92% 12%, rgba(116, 255, 210, 0.05), transparent 22rem),
    linear-gradient(180deg, #020806, #06120c);
}

.card-blue,
.card-cyan,
.card-violet,
.card-amber {
  background:
    radial-gradient(circle at 26% 12%, rgba(116, 255, 210, 0.18), transparent 11rem),
    radial-gradient(circle at right bottom, rgba(34, 230, 138, 0.12), transparent 12rem),
    linear-gradient(145deg, #0a2418, #020806);
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3),
.service-card:nth-child(4),
.process-step,
.status-grid article {
  background:
    radial-gradient(circle at right top, rgba(34, 230, 138, 0.08), transparent 9rem),
    linear-gradient(180deg, rgba(7, 25, 16, 0.92), rgba(2, 10, 7, 0.96));
}

.tracking-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 230, 138, 0.14), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(116, 255, 210, 0.07), transparent 20rem),
    linear-gradient(135deg, rgba(116, 255, 210, 0.04) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, #010403, #020806);
}

.timeline {
  background: rgba(7, 25, 16, 0.62);
}

.support-section {
  background:
    radial-gradient(circle at 16% 16%, rgba(116, 255, 210, 0.1), transparent 18rem),
    linear-gradient(90deg, #063321, #020806 58%, #064227),
    #020806;
}

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

  .hero:hover .hero-media,
  .brand:hover .brand-logo,
  .brand:focus-visible .brand-logo,
  .button:hover,
  .button:focus-visible,
  .quick-panel:hover,
  .service-card:hover,
  .status-grid article:hover,
  .process-step:hover,
  .upload-form:hover,
  .upload-box:hover,
  .upload-box:focus-within {
    transform: none;
  }

  .hero-motion,
  .scroll-cue {
    display: none;
  }
}
