/* 4Ward public entry and signup experience
   Loaded after the legacy styles so the public journey can evolve without
   changing the dashboard or the account API contract. */

:root {
  --entry-bg: #050b18;
  --entry-bg-soft: #081426;
  --entry-panel: rgba(12, 27, 49, 0.86);
  --entry-panel-solid: #0c1b31;
  --entry-panel-light: #112641;
  --entry-line: rgba(142, 180, 224, 0.17);
  --entry-line-strong: rgba(110, 171, 255, 0.34);
  --entry-text: #f5f8ff;
  --entry-muted: #a8b8ce;
  --entry-blue: #5f8cff;
  --entry-blue-bright: #76a7ff;
  --entry-cyan: #55d9f4;
  --entry-green: #63e6b4;
  --entry-radius: 28px;
  --entry-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

html {
  scroll-behavior: smooth;
}

body.entry-page,
body.entry-auth-page {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--entry-text);
  background:
    radial-gradient(circle at 14% 4%, rgba(65, 111, 255, 0.16), transparent 27rem),
    radial-gradient(circle at 84% 17%, rgba(85, 217, 244, 0.08), transparent 30rem),
    var(--entry-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.entry-page *,
body.entry-auth-page * {
  box-sizing: border-box;
}

body.entry-page a,
body.entry-auth-page a {
  color: inherit;
}

body.entry-page button,
body.entry-auth-page button,
body.entry-page input,
body.entry-auth-page input,
body.entry-page select,
body.entry-auth-page select {
  font: inherit;
}

body.entry-page button,
body.entry-auth-page button,
body.entry-page a {
  -webkit-tap-highlight-color: transparent;
}

/* Opening sequence */
.entry-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(63, 113, 255, 0.2), transparent 24rem),
    #050b18;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  animation: entryIntroFailsafe 0.8s ease 3.2s forwards;
}

.entry-intro::before,
.entry-intro::after {
  content: "";
  position: absolute;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(118, 167, 255, 0.1);
  border-radius: 50%;
  animation: entryOrbit 8s linear infinite;
}

.entry-intro::after {
  width: 24rem;
  height: 24rem;
  border-color: rgba(85, 217, 244, 0.12);
  animation-direction: reverse;
  animation-duration: 6s;
}

.entry-intro.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.entry-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.entry-intro-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  animation: entryIntroBrand 0.7s cubic-bezier(.22, 1, .36, 1) 0.1s forwards;
}

.entry-intro-brand img,
.entry-intro-monogram {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  object-fit: contain;
  color: #fff;
  background: linear-gradient(145deg, #4169e1, #53bce9);
  border: 1px solid rgba(171, 201, 255, 0.42);
  border-radius: 18px;
  filter: drop-shadow(0 8px 22px rgba(93, 142, 255, 0.3));
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.entry-intro-brand strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

.entry-intro-brand span {
  display: block;
  margin-top: 3px;
  color: var(--entry-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.entry-intro-line {
  position: relative;
  width: min(250px, 54vw);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.entry-intro-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-105%);
  background: linear-gradient(90deg, var(--entry-blue), var(--entry-cyan));
  animation: entryLoadLine 1.05s cubic-bezier(.22, 1, .36, 1) 0.2s forwards;
}

@keyframes entryIntroBrand {
  to { opacity: 1; transform: none; }
}

@keyframes entryLoadLine {
  to { transform: translateX(0); }
}

@keyframes entryOrbit {
  to { transform: rotate(360deg); }
}

@keyframes entryIntroFailsafe {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* Navigation */
body.entry-page .top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  width: 100%;
  height: 82px;
  padding: 0 clamp(20px, 4vw, 68px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 11, 24, 0.58);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

body.entry-page .top-nav.scrolled {
  height: 68px;
  background: rgba(5, 11, 24, 0.9);
  border-bottom-color: var(--entry-line);
}

body.entry-page .nav-left {
  position: static;
  flex: 0 0 auto;
}

.entry-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.entry-brand img,
.entry-brand-monogram {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  object-fit: contain;
  color: #fff;
  background: linear-gradient(145deg, #4169e1, #53bce9);
  border: 1px solid rgba(171, 201, 255, 0.34);
  border-radius: 13px;
  filter: drop-shadow(0 8px 18px rgba(79, 127, 255, 0.22));
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.entry-brand-copy strong,
.entry-brand-copy small {
  display: block;
}

.entry-brand-copy strong {
  color: #fff;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.entry-brand-copy small {
  margin-top: 2px;
  color: #91a8c6;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.entry-page .nav-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

body.entry-page .nav-links a {
  padding: 10px 12px;
  color: #c2cee0;
  border-radius: 12px;
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  opacity: 1;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

body.entry-page .nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

body.entry-page .nav-links .entry-nav-login {
  margin-left: 6px;
  border: 1px solid var(--entry-line);
}

body.entry-page .nav-links .entry-nav-cta {
  padding-inline: 17px;
  color: #fff;
  background: linear-gradient(135deg, #4169e1, #5e91ff);
  box-shadow: 0 12px 28px rgba(62, 102, 225, 0.24);
}

.entry-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--entry-line);
  border-radius: 14px;
  cursor: pointer;
}

.entry-menu-toggle span,
.entry-menu-toggle span::before,
.entry-menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.entry-menu-toggle span {
  position: relative;
}

.entry-menu-toggle span::before,
.entry-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.entry-menu-toggle span::before { top: -6px; }
.entry-menu-toggle span::after { top: 6px; }
.entry-menu-toggle[aria-expanded="true"] span { background: transparent; }
.entry-menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.entry-menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
body.entry-page .hero-parallax-top {
  position: relative;
  isolation: isolate;
  min-height: min(920px, 100svh);
  padding: 132px clamp(20px, 5vw, 80px) 72px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 11, 24, 0.98) 0%, rgba(5, 11, 24, 0.83) 48%, rgba(5, 11, 24, 0.42) 100%),
    radial-gradient(circle at 72% 38%, rgba(77, 132, 255, 0.22), transparent 32rem),
    #050b18;
}

body.entry-page .hero-parallax-top::before {
  content: "";
  position: absolute;
  inset: 82px 0 0;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(119, 160, 219, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 160, 219, 0.13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

body.entry-page .hero-parallax-top::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -30%;
  z-index: -1;
  width: 56rem;
  height: 56rem;
  border: 1px solid rgba(92, 147, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(75, 128, 255, 0.025), 0 0 0 220px rgba(75, 128, 255, 0.018);
}

body.entry-page .hero-wrap {
  width: min(1360px, 100%);
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

body.entry-page .hero-text {
  max-width: 730px;
  margin: 0;
  text-align: left;
}

body.entry-page .hero-tag {
  margin: 0 0 23px;
  padding: 8px 13px;
  color: #b8ceff;
  background: rgba(81, 130, 255, 0.12);
  border: 1px solid rgba(105, 151, 255, 0.26);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.entry-page .hero-text h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(3.15rem, 6vw, 6.4rem);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

body.entry-page .hero-text h1 br { display: none; }

body.entry-page .hero-text p {
  max-width: 650px;
  margin: 0;
  color: #b2c0d5;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

body.entry-page .hero-text .cta-inline {
  justify-content: flex-start;
  gap: 12px;
  margin-top: 32px;
}

body.entry-page .cta-btn,
body.entry-page .primary-btn,
body.entry-page .reserve-btn,
body.entry-page .cta-buttons .primary,
body.entry-auth-page .entry-submit {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  margin: 0;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: linear-gradient(135deg, #3f66de, #6095ff);
  border: 1px solid rgba(147, 181, 255, 0.34);
  border-radius: 14px;
  box-shadow: 0 15px 34px rgba(52, 91, 204, 0.25);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

body.entry-page .cta-btn:hover,
body.entry-page .primary-btn:hover,
body.entry-page .reserve-btn:hover,
body.entry-page .cta-buttons .primary:hover,
body.entry-auth-page .entry-submit:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 20px 42px rgba(52, 91, 204, 0.34);
}

body.entry-page .secondary-btn,
body.entry-page .cta-buttons .secondary {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e7efff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--entry-line-strong);
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: background 0.22s ease, transform 0.22s ease;
}

body.entry-page .secondary-btn:hover,
body.entry-page .cta-buttons .secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

body.entry-page .hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

body.entry-page .hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -8% 3% 10%;
  border-radius: 42% 58% 56% 44% / 45% 35% 65% 55%;
  background: linear-gradient(145deg, rgba(79, 126, 244, 0.22), rgba(85, 217, 244, 0.04));
  filter: blur(3px);
  animation: entryBlob 11s ease-in-out infinite alternate;
}

body.entry-page .hero-visual > img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px) !important;
  max-width: none !important;
  aspect-ratio: 0.92;
  object-fit: cover;
  border: 1px solid rgba(165, 194, 255, 0.22);
  border-radius: 32px !important;
  box-shadow: var(--entry-shadow) !important;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1);
}

body.entry-page .hero-visual:hover > img {
  transform: rotateY(0) rotateX(0) translateY(-5px);
}

body.entry-page .logo-overlay { display: none !important; }

.entry-signal {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  color: #eaf1ff;
  background: rgba(7, 18, 36, 0.85);
  border: 1px solid var(--entry-line-strong);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.entry-signal--top { top: 11%; right: -5%; }
.entry-signal--bottom { left: -5%; bottom: 12%; }

.entry-signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--entry-green);
  box-shadow: 0 0 0 5px rgba(99, 230, 180, 0.12);
  animation: entryPulse 1.7s ease-in-out infinite;
}

.entry-signal strong,
.entry-signal small { display: block; }
.entry-signal strong { font-size: 0.78rem; }
.entry-signal small { margin-top: 3px; color: #8fa5c2; font-size: 0.66rem; }

@keyframes entryBlob {
  to { transform: translate3d(-20px, 14px, 0) rotate(-5deg); border-radius: 57% 43% 40% 60% / 39% 56% 44% 61%; }
}

@keyframes entryPulse {
  50% { opacity: 0.52; transform: scale(0.82); }
}

/* First-load choreography */
body.entry-page .top-nav,
body.entry-page .hero-text > *,
body.entry-page .hero-visual > * {
  opacity: 0;
  transform: translateY(24px);
}

body.entry-page.entry-ready .top-nav {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.22, 1, .36, 1), height 0.3s ease, background 0.3s ease;
}

body.entry-page.entry-ready .hero-text > *,
body.entry-page.entry-ready .hero-visual > * {
  opacity: 1 !important;
  transform: none;
  transition: opacity 0.75s ease, transform 0.85s cubic-bezier(.22, 1, .36, 1);
}

body.entry-page.entry-ready .hero-text > *:nth-child(1) { transition-delay: 0.1s; }
body.entry-page.entry-ready .hero-text > *:nth-child(2) { transition-delay: 0.18s; }
body.entry-page.entry-ready .hero-text > *:nth-child(3) { transition-delay: 0.26s; }
body.entry-page.entry-ready .hero-text > *:nth-child(4) { transition-delay: 0.34s; }
body.entry-page.entry-ready .hero-visual > img { transition-delay: 0.22s; transform: rotateY(-4deg) rotateX(2deg); }
body.entry-page.entry-ready .entry-signal--top { transition-delay: 0.5s; }
body.entry-page.entry-ready .entry-signal--bottom { transition-delay: 0.62s; }

/* Interactive command deck */
.entry-command {
  position: relative;
  z-index: 4;
  padding: 0 clamp(20px, 5vw, 80px) 112px;
  background: linear-gradient(to bottom, #050b18, #07101f);
}

.entry-command-shell {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(350px, 0.65fr);
  gap: 1px;
  overflow: hidden;
  background: var(--entry-line);
  border: 1px solid var(--entry-line);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.entry-command-main,
.entry-capacity-card {
  padding: clamp(28px, 4vw, 52px);
  background: rgba(10, 23, 43, 0.96);
}

.entry-kicker {
  margin: 0 0 14px;
  color: #7fa4ff;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entry-command h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.entry-role-tabs {
  width: fit-content;
  margin: 27px 0 24px;
  padding: 5px;
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--entry-line);
  border-radius: 14px;
}

.entry-role-tab {
  min-height: 42px;
  padding: 0 17px;
  color: #91a5c1;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.entry-role-tab.is-active {
  color: #fff;
  background: #243f7c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.entry-role-copy {
  min-height: 125px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.entry-role-copy.is-changing { opacity: 0; transform: translateY(7px); }

.entry-role-copy h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.entry-role-copy p {
  max-width: 670px;
  margin: 0;
  color: var(--entry-muted);
  line-height: 1.7;
}

.entry-role-points {
  margin: 22px 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
}

.entry-role-points li {
  min-height: 74px;
  padding: 14px;
  color: #c8d4e8;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--entry-line);
  border-radius: 15px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.entry-role-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin: 0 8px 1px 0;
  display: inline-block;
  border-radius: 50%;
  background: var(--entry-cyan);
  box-shadow: 0 0 0 4px rgba(85, 217, 244, 0.09);
}

.entry-command-cta {
  min-height: 48px;
  padding: 0 21px;
  color: #fff;
  background: linear-gradient(135deg, #3f66de, #6095ff);
  border: 1px solid rgba(147, 181, 255, 0.34);
  border-radius: 14px;
  font-size: 0.83rem;
  font-weight: 850;
  cursor: pointer;
}

.entry-capacity-card {
  position: relative;
  overflow: hidden;
}

.entry-capacity-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(74, 125, 244, 0.13);
  filter: blur(5px);
}

.entry-capacity-head,
.entry-capacity-value,
.entry-capacity-track,
.entry-route-mini,
.entry-capacity-note { position: relative; z-index: 1; }

.entry-capacity-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.entry-capacity-head h3 {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
}

.entry-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #9ee8cb;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--entry-green);
  box-shadow: 0 0 0 4px rgba(99, 230, 180, 0.1);
}

.entry-capacity-value {
  margin: 38px 0 24px;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.07em;
}

.entry-capacity-value span {
  color: #86a3cc;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
}

.entry-capacity-track input[type="range"] {
  width: 100%;
  height: 5px;
  margin: 0;
  appearance: none;
  background: linear-gradient(90deg, var(--entry-cyan) var(--entry-range, 0%), rgba(255, 255, 255, 0.1) var(--entry-range, 0%));
  border-radius: 999px;
  outline: none;
}

.entry-capacity-track input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  appearance: none;
  background: #fff;
  border: 5px solid #4b7af0;
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.3);
  cursor: grab;
}

.entry-range-labels {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  color: #7186a3;
  font-size: 0.65rem;
  font-weight: 700;
}

.entry-route-mini {
  margin-top: 38px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.entry-route-mini span {
  width: 12px;
  height: 12px;
  border: 3px solid #658df2;
  border-radius: 50%;
  background: #0a172b;
}

.entry-route-mini i {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.entry-route-mini i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--entry-cyan), transparent);
  transform: translateX(-110%);
  animation: entryRoute 2.3s ease-in-out infinite;
}

.entry-capacity-note {
  margin: 17px 0 0;
  color: #8fa2bc;
  font-size: 0.76rem;
  line-height: 1.6;
}

@keyframes entryRoute {
  70%, 100% { transform: translateX(110%); }
}

/* Shared public section system */
body.entry-page .page-content:not(.hero-parallax-top) {
  width: 100%;
  padding: clamp(82px, 9vw, 132px) clamp(20px, 5vw, 80px);
  color: var(--entry-text);
  background: #07101f;
}

body.entry-page .page-content.alt-band,
body.entry-page .page-content.alt-bg,
body.entry-page .page-content:nth-of-type(2n + 4) {
  background: #091527;
}

body.entry-page .section-container,
body.entry-page .dashboard-wrapper {
  width: min(1360px, 100%);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

body.entry-page .section-container.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

body.entry-page .text-block { min-width: 0; }

body.entry-page .section-heading,
body.entry-page .text-block h2,
body.entry-page .hero.small h2,
body.entry-page .immersive-section h3,
body.entry-page .cta h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(2.15rem, 4.2vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

body.entry-page .section-heading {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 48px;
  text-align: center;
}

body.entry-page .testimonial-heading {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

body.entry-page .testimonial-heading .section-heading {
  margin-bottom: 16px;
}

body.entry-page .testimonial-heading > p {
  max-width: 710px;
  margin: 0 auto;
  color: var(--entry-muted);
  font-size: 1rem;
  line-height: 1.75;
}

body.entry-page .testimonial-eyebrow,
body.entry-page .testimonial-sector {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--entry-cyan);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.entry-page .testimonial-eyebrow {
  margin-bottom: 14px;
}

body.entry-page .text-block > p,
body.entry-page .hero.small p,
body.entry-page .immersive-section p,
body.entry-page .cta p,
body.entry-page .container p,
body.entry-page .benefit-card p,
body.entry-page .process-step p,
body.entry-page .space-card p,
body.entry-page .testimonial-card blockquote {
  color: var(--entry-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

body.entry-page .image-block {
  position: relative;
}

body.entry-page .image-block::before {
  content: "";
  position: absolute;
  inset: 8% -4% -5% 8%;
  background: linear-gradient(135deg, rgba(76, 124, 238, 0.16), rgba(85, 217, 244, 0.04));
  border-radius: 30px;
}

body.entry-page .image-block img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 590px;
  object-fit: cover;
  border: 1px solid var(--entry-line);
  border-radius: 28px;
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.25);
}

body.entry-page .icon-list {
  margin: 26px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  list-style: none;
}

body.entry-page .icon-list li {
  min-height: 54px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c6d3e6;
  background: rgba(255, 255, 255, 0.032);
  border: 1px solid var(--entry-line);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 700;
}

body.entry-page .icon-list i {
  width: 24px;
  color: var(--entry-cyan);
  text-align: center;
}

body.entry-page .benefits-grid,
body.entry-page .process-grid,
body.entry-page .card-grid,
body.entry-page .testimonial-grid,
body.entry-page #container-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

body.entry-page .testimonial-grid,
body.entry-page #container-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.entry-page .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

body.entry-page .benefit-card,
body.entry-page .process-step,
body.entry-page .space-card,
body.entry-page .testimonial-card,
body.entry-page .container,
body.entry-page .mini-card,
body.entry-page .eco-card {
  position: relative;
  overflow: hidden;
  color: var(--entry-text);
  background: linear-gradient(155deg, rgba(17, 38, 65, 0.94), rgba(9, 22, 40, 0.98));
  border: 1px solid var(--entry-line);
  border-radius: 22px;
  box-shadow: none;
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

body.entry-page .benefit-card:hover,
body.entry-page .process-step:hover,
body.entry-page .space-card:hover,
body.entry-page .testimonial-card:hover,
body.entry-page .container:hover,
body.entry-page .mini-card:hover,
body.entry-page .eco-card:hover {
  transform: translateY(-7px);
  border-color: var(--entry-line-strong);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

body.entry-page .benefit-card,
body.entry-page .testimonial-card {
  padding: 13px 13px 24px;
  text-align: left;
}

body.entry-page .testimonial-card--featured {
  border-color: rgba(85, 217, 244, 0.28);
  background:
    radial-gradient(circle at 85% 8%, rgba(85, 217, 244, 0.13), transparent 30%),
    linear-gradient(155deg, rgba(17, 43, 72, 0.98), rgba(8, 21, 39, 0.99));
}

body.entry-page .testimonial-sector {
  margin: 19px 8px 0;
  padding: 7px 10px;
  color: #9feafa;
  background: rgba(85, 217, 244, 0.09);
  border: 1px solid rgba(85, 217, 244, 0.18);
  border-radius: 999px;
  letter-spacing: 0.1em;
}

body.entry-page .testimonial-card blockquote {
  flex: 1;
  margin-top: 20px;
}

body.entry-page .testimonial-card cite {
  display: grid;
  gap: 4px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--entry-line);
}

body.entry-page .testimonial-card cite strong {
  color: #fff;
  font-size: 0.95rem;
}

body.entry-page .testimonial-card cite span {
  color: #8fa8c7;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.5;
}

body.entry-page .benefit-card img,
body.entry-page .testimonial-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 15px;
  filter: saturate(0.88) contrast(1.04);
}

body.entry-page .benefit-card h3,
body.entry-page .benefit-card p,
body.entry-page .testimonial-card blockquote,
body.entry-page .testimonial-card cite {
  margin-inline: 8px;
}

body.entry-page .benefit-card h3,
body.entry-page .process-step h3,
body.entry-page .space-card h3,
body.entry-page .container strong {
  color: #fff;
}

body.entry-page .benefit-card h3 { margin-top: 21px; }

body.entry-page .process-step {
  min-height: 250px;
  padding: 26px;
}

body.entry-page .process-step .step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #4169e1, #56b5ec);
  border-radius: 13px;
  font-weight: 850;
}

body.entry-page .process-step h3 { margin-top: 34px; }

body.entry-page .space-card,
body.entry-page .container {
  min-height: 280px;
  padding: 28px;
}

body.entry-page .space-card ul {
  padding-left: 18px;
  color: #9fb0c7;
  line-height: 1.8;
}

body.entry-page .space-card li,
body.entry-page .process-step p,
body.entry-page .promise-content p,
body.entry-page .pricing-details p,
body.entry-page .pricing-tab-content p,
body.entry-page .info-panel p {
  color: var(--entry-muted) !important;
}

body.entry-page .space-card .reserve-btn { margin-top: 14px; }

body.entry-page .card-header {
  margin: -28px -28px 21px;
  padding: 17px 28px;
  color: #dce7ff;
  background: rgba(74, 117, 221, 0.13);
  border-bottom: 1px solid var(--entry-line);
}

body.entry-page .mini-cards,
body.entry-page .eco-grid {
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.entry-page .eco-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

body.entry-page .mini-card,
body.entry-page .eco-card {
  min-height: 84px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

body.entry-page .mini-card span,
body.entry-page .eco-card span { color: #8ea3c0; font-size: 0.72rem; }
body.entry-page .eco-card i { color: var(--entry-green); }

body.entry-page .pricing-tabs,
body.entry-page .info-switch {
  margin: 24px 0 14px;
  padding: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--entry-line);
  border-radius: 14px;
}

body.entry-page .pricing-tabs .tab-btn,
body.entry-page .switch-btn,
body.entry-page .info-btn {
  min-height: 41px;
  padding: 0 14px;
  color: #9cafc8;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

body.entry-page .pricing-tabs .tab-btn.active,
body.entry-page .switch-btn.active,
body.entry-page .info-btn {
  color: #fff;
  background: rgba(75, 118, 223, 0.3);
}

body.entry-page .pricing-details,
body.entry-page .pricing-tab-content,
body.entry-page .info-panel {
  color: var(--entry-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--entry-line);
  border-radius: 15px;
}

body.entry-page .pricing-details,
body.entry-page .pricing-tab-content,
body.entry-page .info-panel { padding: 17px; }

body.entry-page .pricing-tab-content:not(.active),
body.entry-page .info-panel:not(.active) { display: none; }

body.entry-page .promise-accordion,
body.entry-page .faq-section .dashboard-wrapper {
  display: grid;
  gap: 10px;
}

body.entry-page .promise-item,
body.entry-page .faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--entry-line);
  border-radius: 16px;
}

body.entry-page .promise-btn,
body.entry-page .faq-question {
  width: 100%;
  min-height: 64px;
  padding: 0 22px;
  color: #eaf1ff;
  background: transparent;
  border: 0;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

body.entry-page .promise-content,
body.entry-page .faq-answer {
  color: var(--entry-muted);
  border-top: 1px solid var(--entry-line);
}

body.entry-page .faq-section .section-heading { order: -1; }
body.entry-page .testimonial-card cite { color: #7fa4ff; font-style: normal; font-size: 0.78rem; }
body.entry-page .testimonial-cta { margin-top: 28px; padding: 34px; text-align: center; background: rgba(63, 101, 218, 0.12); border: 1px solid var(--entry-line); border-radius: 22px; }

body.entry-page .hero.small {
  margin: 0 0 32px;
  padding: clamp(28px, 4vw, 52px);
  color: var(--entry-text);
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.16), rgba(10, 25, 46, 0.9));
  border: 1px solid var(--entry-line);
  border-radius: 24px;
  box-shadow: none;
}

body.entry-page .hero.small h2 { font-size: clamp(2rem, 3vw, 3.3rem); }

body.entry-page .timeline {
  margin: 0 0 26px;
  padding: 14px;
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #6f89ae;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--entry-line);
  border-radius: 16px;
}

body.entry-page .timeline .active { color: var(--entry-cyan); }

body.entry-page .immersive-section {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  background: transparent;
}

body.entry-page .immersive-section img {
  width: 100%;
  border: 1px solid var(--entry-line);
  border-radius: 28px;
  box-shadow: var(--entry-shadow);
}

body.entry-page > .parallax-section:not(.hero-parallax-top) {
  min-height: 540px;
  padding: 100px 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(5, 11, 24, 0.63), rgba(5, 11, 24, 0.86)),
    url("/assets/images/backgrounds/parallax-bg.png") center / cover fixed;
}

body.entry-page > .parallax-section:not(.hero-parallax-top) .cta {
  width: min(850px, 100%);
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
  background: rgba(7, 18, 35, 0.73);
  border: 1px solid var(--entry-line-strong);
  border-radius: 30px;
  box-shadow: var(--entry-shadow);
  backdrop-filter: blur(18px);
}

body.entry-page .cta-buttons { display: flex; justify-content: center; gap: 12px; }

/* Scroll reveal - each section owns its entrance rather than all content firing at once. */
.entry-reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(.22, 1, .36, 1);
}

.entry-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.entry-reveal .benefit-card,
.entry-reveal .process-step,
.entry-reveal .space-card,
.entry-reveal .testimonial-card,
.entry-reveal .container {
  opacity: 0;
  transform: translateY(24px);
}

.entry-reveal.is-visible .benefit-card,
.entry-reveal.is-visible .process-step,
.entry-reveal.is-visible .space-card,
.entry-reveal.is-visible .testimonial-card,
.entry-reveal.is-visible .container {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease calc(var(--entry-i, 0) * 70ms + 120ms), transform 0.65s cubic-bezier(.22, 1, .36, 1) calc(var(--entry-i, 0) * 70ms + 120ms), border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Signup dialog */
body.entry-page .overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  padding: 20px;
  align-items: center;
  justify-content: center;
  overflow: auto;
  background: rgba(2, 7, 16, 0.78);
  backdrop-filter: blur(15px);
}

body.entry-page .overlay.entry-dialog-open { display: flex !important; }

body.entry-page .signup-shell {
  width: min(1180px, 100%);
  max-width: none;
  max-height: min(850px, calc(100svh - 40px));
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(460px, 1.05fr);
  overflow: hidden;
  color: var(--entry-text);
  background: #0b192d;
  border: 1px solid var(--entry-line-strong);
  border-radius: 28px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.52);
  opacity: 0;
  transform: translateY(26px) scale(0.98);
}

body.entry-page .overlay.entry-dialog-open .signup-shell {
  opacity: 1;
  transform: none;
  transition: opacity 0.38s ease, transform 0.48s cubic-bezier(.22, 1, .36, 1);
}

body.entry-page .signup-info {
  position: relative;
  min-height: 650px;
  padding: 50px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10, 23, 46, 0.24), rgba(7, 16, 33, 0.95)),
    url("/assets/images/photos/cargo-port.jpg") center / cover;
}

body.entry-page .signup-info::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 25% 20%, rgba(82, 129, 255, 0.35), transparent 18rem);
}

body.entry-page .signup-info .parallax-bg { opacity: 0.24; }

body.entry-page .signup-info .info-content {
  width: 100%;
  padding: 27px;
  background: rgba(6, 16, 32, 0.74);
  border: 1px solid rgba(159, 190, 255, 0.22);
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

body.entry-page .signup-info h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

body.entry-page .signup-info p,
body.entry-page .signup-info li {
  color: #c0cde0;
  line-height: 1.65;
}

body.entry-page .signup-info ul { padding-left: 0; list-style: none; }
body.entry-page .signup-info li { margin: 9px 0; }

body.entry-page .change-role {
  margin: 0 0 22px;
  padding: 8px 0;
  color: #9fbaff;
  background: none;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

body.entry-page .signup-form {
  position: relative;
  min-height: 650px;
  padding: 46px clamp(28px, 5vw, 58px);
  overflow-y: auto;
  color: var(--entry-text);
  background: #0b192d;
}

body.entry-page .signup-form > h1 {
  margin: 0 40px 7px 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.045em;
}

body.entry-page .signup-form > .subtitle {
  margin: 0 0 28px;
  color: #91a5c0;
}

body.entry-page .role-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.entry-page .role-picker button {
  min-height: 195px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  color: #d9e5f7;
  background: linear-gradient(145deg, rgba(20, 43, 73, 0.92), rgba(10, 25, 45, 0.96));
  border: 1px solid var(--entry-line);
  border-radius: 19px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

body.entry-page .role-picker button:hover {
  transform: translateY(-5px);
  border-color: var(--entry-line-strong);
  background: linear-gradient(145deg, rgba(29, 55, 94, 0.96), rgba(11, 28, 51, 0.98));
}

body.entry-page .role-picker button i,
body.entry-page .role-picker .entry-role-icon {
  width: 46px;
  height: 46px;
  margin: 0 0 15px;
  display: grid;
  place-items: center;
  color: #a9c5ff;
  background: rgba(79, 126, 244, 0.16);
  border: 1px solid rgba(118, 167, 255, 0.2);
  border-radius: 14px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
}

body.entry-page .role-picker button strong { color: #fff; font-size: 0.97rem; }
body.entry-page .role-picker button small { color: #8fa4c0; font-size: 0.72rem; line-height: 1.5; }

body.entry-page .progress-bar {
  position: relative;
  margin: 0 0 28px;
  padding: 14px 10px;
  justify-content: space-between;
  gap: 4px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--entry-line);
  border-radius: 16px;
}

body.entry-page .progress-bar::before {
  left: 9%;
  right: 9%;
  top: 30px;
  width: auto;
  background: var(--entry-line);
}

body.entry-page .progress-step {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  min-width: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #7286a2;
  background: transparent !important;
  border-radius: 0;
}

body.entry-page .progress-step span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  color: #8195b0;
  background: #0b192d;
  border: 1px solid var(--entry-line);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 850;
}

body.entry-page .progress-step small { margin-top: 7px; color: inherit; font-size: 0.58rem; }

body.entry-page .progress-step.active,
body.entry-page .progress-step.is-complete { color: #dbe7fb; background: transparent !important; }
body.entry-page .progress-step.active span { color: #fff; background: #4c78e8; border-color: #7ca3ff; box-shadow: 0 0 0 5px rgba(76, 120, 232, 0.12); }
body.entry-page .progress-step.is-complete span { color: #06152a; background: var(--entry-cyan); border-color: var(--entry-cyan); }

body.entry-page #signupForm .step {
  margin: 0;
  padding: 0;
  background: transparent;
}

body.entry-page #signupForm .step.step-active {
  animation: entryStepIn 0.36s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes entryStepIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: none; }
}

body.entry-page #signupForm .step h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 1.35rem;
}

body.entry-page #signupForm .step > p { margin: 0 0 20px; color: #879bb7; font-size: 0.82rem; }

.entry-field-label {
  margin: 15px 0 7px;
  display: block;
  color: #aebed3;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

body.entry-page #signupForm input:not([type="checkbox"]),
body.entry-auth-page .entry-auth-form input:not([type="checkbox"]) {
  width: 100%;
  min-height: 51px;
  margin: 0;
  padding: 0 15px;
  color: #f5f8ff;
  background: #081426;
  border: 1px solid rgba(137, 174, 219, 0.22);
  border-radius: 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.entry-page #signupForm input::placeholder,
body.entry-auth-page .entry-auth-form input::placeholder { color: #5f7592; }

body.entry-page #signupForm input:focus,
body.entry-auth-page .entry-auth-form input:focus {
  background: #0a1930;
  border-color: #6e9dff;
  box-shadow: 0 0 0 4px rgba(83, 132, 244, 0.11);
}

body.entry-page #signupForm input[aria-invalid="true"],
body.entry-auth-page .entry-auth-form input[aria-invalid="true"] { border-color: #ff778c; }

.entry-password-wrap { position: relative; }
.entry-password-wrap input { padding-right: 53px !important; }

.entry-password-toggle {
  position: absolute;
  right: 7px;
  top: 7px;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #8ea4c2;
  background: rgba(255, 255, 255, 0.04);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.entry-strength { margin: 10px 0 3px; }
.entry-strength-track { height: 4px; overflow: hidden; background: rgba(255, 255, 255, 0.08); border-radius: 999px; }
.entry-strength-track span { display: block; width: var(--strength, 0%); height: 100%; background: var(--strength-color, #ff778c); border-radius: inherit; transition: width 0.25s ease, background 0.25s ease; }
.entry-strength-copy { margin-top: 6px; display: flex; justify-content: space-between; gap: 10px; color: #6f84a0; font-size: 0.64rem; }

body.entry-page .checkbox-group {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

body.entry-page .checkbox-group label {
  min-height: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #afbed1;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--entry-line);
  border-radius: 12px;
  font-size: 0.74rem;
  cursor: pointer;
}

body.entry-page .checkbox-group input { accent-color: #5f8cff; }

body.entry-page .step-controls {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
  gap: 9px;
}

body.entry-page .next-btn,
body.entry-page .submit-btn,
body.entry-page .back-btn {
  min-height: 47px;
  padding: 0 19px;
  color: #fff;
  border: 1px solid var(--entry-line);
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

body.entry-page .next-btn,
body.entry-page .submit-btn { background: linear-gradient(135deg, #4169e1, #6095ff); }
body.entry-page .back-btn { color: #afbed1; background: rgba(255, 255, 255, 0.04); }

body.entry-page .review-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

body.entry-page .review-details p {
  margin: 0;
  padding: 13px;
  color: #96aac5;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--entry-line);
  border-radius: 12px;
  font-size: 0.72rem;
  overflow-wrap: anywhere;
}

body.entry-page .review-details strong { display: block; margin-bottom: 4px; color: #dce7f7; }

body.entry-page .close-btn {
  position: absolute;
  top: 23px;
  right: 23px;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #a8b8ce;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--entry-line);
  border-radius: 13px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

body.entry-page .close-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.09); transform: rotate(5deg); }
body.entry-page #signupError { color: #ff91a2; font-size: 0.75rem; }
.entry-field-shake { animation: entryShake 0.34s ease; }

@keyframes entryShake {
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
}

/* Standalone customer signup */
body.entry-auth-page {
  padding: 28px;
  display: grid;
  place-items: center;
}

body.entry-auth-page::before,
body.entry-auth-page::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(4px);
  animation: entryAuthFloat 12s ease-in-out infinite alternate;
}

body.entry-auth-page::before { top: -18rem; left: -12rem; background: rgba(66, 105, 225, 0.18); }
body.entry-auth-page::after { right: -17rem; bottom: -18rem; background: rgba(85, 217, 244, 0.09); animation-delay: -5s; }

@keyframes entryAuthFloat { to { transform: translate3d(45px, 28px, 0) scale(1.08); } }

.entry-auth-shell {
  width: min(1180px, 100%);
  min-height: min(790px, calc(100svh - 56px));
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(500px, 1.12fr);
  overflow: hidden;
  background: rgba(9, 22, 41, 0.92);
  border: 1px solid var(--entry-line-strong);
  border-radius: 30px;
  box-shadow: var(--entry-shadow);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(25px) scale(0.985);
}

body.entry-auth-page.entry-ready .entry-auth-shell {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.85s cubic-bezier(.22, 1, .36, 1);
}

.entry-auth-story {
  position: relative;
  isolation: isolate;
  padding: clamp(34px, 5vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(5, 14, 29, 0.28), rgba(5, 14, 29, 0.95)),
    url("/assets/images/photos/cargo-port.jpg") center / cover;
}

.entry-auth-story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 25% 15%, rgba(79, 126, 244, 0.33), transparent 19rem);
}

.entry-auth-story .entry-brand { align-self: flex-start; }

.entry-auth-copy h1 {
  max-width: 520px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.entry-auth-copy > p { margin: 0; color: #bcc9dc; line-height: 1.7; }

.entry-auth-points {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.entry-auth-points li {
  padding: 12px 14px;
  color: #d1dcef;
  background: rgba(6, 16, 33, 0.58);
  border: 1px solid rgba(159, 190, 255, 0.18);
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.entry-auth-points li::before { content: ""; width: 7px; height: 7px; margin-right: 9px; display: inline-block; border-radius: 50%; background: var(--entry-green); }
.entry-auth-foot { color: #91a6c2; font-size: 0.7rem; }

.entry-auth-form-panel {
  padding: clamp(34px, 5vw, 64px);
  overflow-y: auto;
  background: #0b192d;
}

.entry-auth-eyebrow { margin: 0 0 8px; color: #7fa4ff; font-size: 0.67rem; font-weight: 850; letter-spacing: 0.15em; text-transform: uppercase; }
.entry-auth-form-panel h2 { margin: 0; color: #fff; font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -0.045em; }
.entry-auth-subtitle { margin: 8px 0 24px; color: #8fa3bf; line-height: 1.6; }

.entry-form-progress { margin-bottom: 22px; }
.entry-form-progress-head { margin-bottom: 8px; display: flex; justify-content: space-between; color: #7f94af; font-size: 0.66rem; font-weight: 800; }
.entry-form-progress-track { height: 5px; overflow: hidden; background: rgba(255, 255, 255, 0.07); border-radius: 999px; }
.entry-form-progress-track span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--entry-blue), var(--entry-cyan)); border-radius: inherit; transition: width 0.35s ease; }

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

.entry-auth-field { min-width: 0; }
.entry-auth-field--wide { grid-column: 1 / -1; }
.entry-auth-form .entry-field-label { margin-top: 13px; }
.entry-auth-actions { grid-column: 1 / -1; margin-top: 23px; }
.entry-auth-actions .entry-submit { width: 100%; }
.entry-auth-form-panel .note { color: #ff91a2; font-size: 0.73rem; }
.entry-auth-switch { margin: 19px 0 0; color: #8fa3bf; font-size: 0.78rem; text-align: center; }
.entry-auth-switch a { color: #9bb8ff !important; font-weight: 800; }

.entry-ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  transform: translate(-50%, -50%) scale(0);
  animation: entryRipple 0.65s ease-out forwards;
  pointer-events: none;
}

@keyframes entryRipple { to { opacity: 0; transform: translate(-50%, -50%) scale(16); } }

@media (max-width: 1100px) {
  body.entry-page .hero-wrap { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr); gap: 44px; }
  body.entry-page .hero-visual { min-height: 470px; }
  .entry-command-shell { grid-template-columns: 1fr 0.72fr; }
  body.entry-page .benefits-grid,
  body.entry-page .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.entry-page .card-grid,
  body.entry-page .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  body.entry-page .top-nav { height: 72px; padding-inline: 18px; }
  .entry-menu-toggle { display: flex; }
  body.entry-page .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    padding: 12px;
    display: grid;
    gap: 5px;
    background: rgba(8, 19, 36, 0.98);
    border: 1px solid var(--entry-line-strong);
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
  }
  body.entry-page .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
  body.entry-page .nav-links a { padding: 13px 14px; }
  body.entry-page .nav-links .entry-nav-login { margin-left: 0; }

  body.entry-page .hero-parallax-top { min-height: auto; padding-top: 120px; }
  body.entry-page .hero-wrap { grid-template-columns: 1fr; }
  body.entry-page .hero-text { max-width: 760px; }
  body.entry-page .hero-visual { width: min(640px, 100%); min-height: 520px; margin: 0 auto; }
  body.entry-page .hero-visual > img { aspect-ratio: 1.18; }
  .entry-signal--top { right: 1%; }
  .entry-signal--bottom { left: 1%; }

  .entry-command-shell,
  body.entry-page .section-container.two-col,
  body.entry-page .immersive-section,
  body.entry-page .signup-shell,
  .entry-auth-shell { grid-template-columns: 1fr; }

  .entry-command-main,
  .entry-capacity-card { padding: 34px; }
  body.entry-page .section-container.two-col { gap: 48px; }
  body.entry-page .section-container.two-col .image-block { order: -1; }
  body.entry-page #forCouriers .image-block { order: -1; }

  body.entry-page .signup-info { display: none; }
  body.entry-page .signup-shell { width: min(680px, 100%); }
  body.entry-page .signup-form { min-height: 0; max-height: calc(100svh - 40px); }

  .entry-auth-shell { max-width: 680px; }
  .entry-auth-story { min-height: 430px; }
}

@media (max-width: 640px) {
  body.entry-page .hero-parallax-top { padding: 108px 18px 58px; }
  body.entry-page .hero-text h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  body.entry-page .hero-text .cta-inline { display: grid; grid-template-columns: 1fr 1fr; }
  body.entry-page .hero-text .cta-inline > * { width: 100%; }
  body.entry-page .hero-visual { min-height: 410px; }
  body.entry-page .hero-visual > img { aspect-ratio: 0.98; }
  .entry-signal { padding: 10px 11px; }
  .entry-signal--top { top: 7%; right: 0; }
  .entry-signal--bottom { bottom: 7%; left: 0; }

  .entry-command { padding: 0 14px 74px; }
  .entry-command-shell { border-radius: 23px; }
  .entry-command-main,
  .entry-capacity-card { padding: 26px 21px; }
  .entry-role-tabs { width: 100%; }
  .entry-role-tab { flex: 1; padding-inline: 10px; }
  .entry-role-points { grid-template-columns: 1fr; }

  body.entry-page .page-content:not(.hero-parallax-top) { padding: 74px 18px; }
  body.entry-page .section-container.two-col { gap: 36px; }
  body.entry-page .icon-list,
  body.entry-page .benefits-grid,
  body.entry-page .process-grid,
  body.entry-page .card-grid,
  body.entry-page .testimonial-grid,
  body.entry-page #container-grid,
  body.entry-page .mini-cards,
  body.entry-page .eco-grid { grid-template-columns: 1fr; }
  body.entry-page .benefit-card img,
  body.entry-page .testimonial-card img { height: 230px; }
  body.entry-page .immersive-section { gap: 30px; }
  body.entry-page .cta-buttons { flex-direction: column; }

  body.entry-page .overlay { padding: 0; align-items: stretch; }
  body.entry-page .signup-shell { max-height: none; border: 0; border-radius: 0; }
  body.entry-page .signup-form { min-height: 100svh; max-height: 100svh; padding: 74px 18px 32px; }
  body.entry-page .close-btn { top: 16px; right: 16px; }
  body.entry-page .role-picker { grid-template-columns: 1fr; }
  body.entry-page .role-picker button { min-height: 145px; }
  body.entry-page .progress-bar { overflow-x: auto; justify-content: flex-start; }
  body.entry-page .progress-bar::before { display: none; }
  body.entry-page .progress-step { min-width: 72px; }
  body.entry-page .checkbox-group,
  body.entry-page .review-details { grid-template-columns: 1fr; }

  body.entry-auth-page { padding: 0; place-items: stretch; }
  .entry-auth-shell { min-height: 100svh; border: 0; border-radius: 0; }
  .entry-auth-story { min-height: 360px; padding: 26px 20px; }
  .entry-auth-form-panel { padding: 36px 20px; }
  .entry-auth-form { grid-template-columns: 1fr; }
  .entry-auth-field--wide,
  .entry-auth-actions { grid-column: auto; }
}

/* High-motion forwarder showcase */
.entry-scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.entry-scroll-progress::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #5a7cff, #53d9f3, #72f2b3);
  box-shadow: 0 0 18px rgba(83, 217, 243, 0.72);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.entry-ambient-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.entry-ambient-field i {
  position: absolute;
  left: var(--particle-x);
  bottom: -20px;
  width: 4px;
  height: 4px;
  background: #64dff4;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(100, 223, 244, 0.75);
  opacity: 0;
  animation: entryParticle 13s linear infinite;
  animation-delay: var(--particle-delay);
}

body.entry-page > section,
body.entry-page > nav,
body.entry-page > footer {
  position: relative;
  z-index: 1;
}

body.entry-page .page-content.forwarder-lab {
  position: relative;
  overflow: hidden;
  padding-block: clamp(92px, 10vw, 154px);
  background:
    radial-gradient(circle at 13% 16%, rgba(70, 111, 226, 0.2), transparent 26%),
    radial-gradient(circle at 88% 30%, rgba(64, 217, 238, 0.13), transparent 25%),
    #050e1d;
}

.forwarder-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(100, 150, 220, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 150, 220, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
  animation: forwarderGridMove 18s linear infinite;
}

.forwarder-lab-glow {
  position: absolute;
  top: 14%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: rgba(70, 215, 239, 0.09);
  border-radius: 50%;
  filter: blur(75px);
  animation: forwarderGlow 8s ease-in-out infinite alternate;
}

.forwarder-lab-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
  margin-bottom: 42px;
}

.forwarder-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #73e2f3;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.forwarder-kicker > i {
  width: 8px;
  height: 8px;
  background: #6cf0b6;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(108, 240, 182, 0.08), 0 0 18px rgba(108, 240, 182, 0.7);
  animation: forwarderPulse 1.7s ease-in-out infinite;
}

.forwarder-lab-heading h2,
.intelligence-heading h2,
.workflow-heading h2 {
  max-width: 950px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.forwarder-lab-heading > p,
.intelligence-heading > p,
.workflow-heading > p {
  margin: 0;
  color: #98abc5;
  font-size: clamp(0.96rem, 1.25vw, 1.12rem);
  line-height: 1.8;
}

.forwarder-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 15px 0;
  color: #b7c8de;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(126, 168, 224, 0.14);
  border-radius: 15px;
}

.forwarder-marquee::before,
.forwarder-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 90px;
  pointer-events: none;
}

.forwarder-marquee::before { left: 0; background: linear-gradient(90deg, #071325, transparent); }
.forwarder-marquee::after { right: 0; background: linear-gradient(-90deg, #071325, transparent); }

.forwarder-marquee > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  animation: forwarderMarquee 24s linear infinite;
}

.forwarder-marquee span {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.forwarder-marquee i {
  width: 5px;
  height: 5px;
  background: #57d8ef;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(87, 216, 239, 0.75);
}

.forwarder-console {
  position: relative;
  display: grid;
  grid-template-columns: 295px minmax(0, 1fr);
  min-height: 780px;
  overflow: hidden;
  background: rgba(6, 16, 31, 0.93);
  border: 1px solid rgba(125, 171, 233, 0.2);
  border-radius: 30px;
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);
}

.forwarder-console::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at var(--console-x, 70%) var(--console-y, 20%), rgba(79, 213, 238, 0.06), transparent 35%);
}

.forwarder-console-sidebar {
  position: relative;
  z-index: 2;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(13, 31, 56, 0.98), rgba(8, 21, 39, 0.98));
  border-right: 1px solid rgba(125, 171, 233, 0.15);
}

.forwarder-console-brand {
  padding: 4px 5px 24px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(125, 171, 233, 0.12);
}

.forwarder-console-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #5b7df1, #4dcbea);
  border-radius: 13px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(67, 114, 229, 0.28);
}

.forwarder-console-brand div { min-width: 0; display: grid; gap: 3px; }
.forwarder-console-brand div strong { color: #f2f7ff; font-size: 0.73rem; }
.forwarder-console-brand div small { color: #748aa6; font-size: 0.61rem; }

.forwarder-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #78e7ba;
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.forwarder-live > i,
.forwarder-live > b {
  width: 6px;
  height: 6px;
  background: #6ce8ae;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(108, 232, 174, 0.8);
  animation: forwarderPulse 1.5s ease-in-out infinite;
}

.forwarder-sidebar-label {
  margin: 26px 8px 10px;
  color: #657b99;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.forwarder-lane-list {
  display: grid;
  gap: 8px;
}

.forwarder-lane-list button {
  position: relative;
  width: 100%;
  padding: 14px 13px 14px 54px;
  display: grid;
  gap: 4px;
  color: #a8bad1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.forwarder-lane-list button:hover { transform: translateX(4px); color: #fff; }
.forwarder-lane-list button.is-active {
  color: #fff;
  background: linear-gradient(100deg, rgba(79, 121, 229, 0.22), rgba(71, 213, 238, 0.06));
  border-color: rgba(94, 151, 231, 0.25);
}

.forwarder-lane-list button > span {
  position: absolute;
  top: 16px;
  left: 13px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #75dff2;
  background: rgba(79, 211, 237, 0.08);
  border: 1px solid rgba(79, 211, 237, 0.16);
  border-radius: 9px;
  font-size: 0.54rem;
  font-weight: 900;
}

.forwarder-lane-list strong { font-size: 0.72rem; }
.forwarder-lane-list small { color: #667c99; font-size: 0.61rem; }
.forwarder-sidebar-actions { margin-top: auto; display: grid; gap: 9px; }

.forwarder-sidebar-actions button {
  min-height: 46px;
  padding: 0 13px;
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.forwarder-sidebar-actions button:hover { transform: translateY(-2px); }
.forwarder-simulate { color: #b9dff8; background: rgba(71, 203, 234, 0.06); border: 1px solid rgba(71, 203, 234, 0.18); }
.forwarder-simulate span { margin-right: 6px; color: #65eab5; font-size: 1rem; }
.forwarder-signup { color: #fff; background: linear-gradient(135deg, #5478eb, #4fcce8); border: 0; box-shadow: 0 13px 28px rgba(68, 118, 227, 0.25); }

.forwarder-console-main {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3.4vw, 45px);
  min-width: 0;
}

.forwarder-console-topline,
.forwarder-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.forwarder-console-topline { margin-bottom: 24px; }
.forwarder-console-topline > div:first-child { display: grid; gap: 6px; }
.forwarder-console-topline span,
.forwarder-panel-head span {
  color: #6f86a5;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.forwarder-console-topline h3 { margin: 0; color: #fff; font-size: clamp(1.4rem, 2.3vw, 2.15rem); letter-spacing: -0.035em; }
.forwarder-sailing-id { padding: 10px 13px; display: grid; gap: 3px; text-align: right; background: rgba(255, 255, 255, 0.025); border: 1px solid rgba(125, 171, 233, 0.12); border-radius: 11px; }
.forwarder-sailing-id strong { color: #9db9df; font-size: 0.7rem; letter-spacing: 0.08em; }

.forwarder-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 11px;
}

.forwarder-metrics article {
  position: relative;
  overflow: hidden;
  min-height: 128px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(125, 171, 233, 0.12);
  border-radius: 16px;
}

.forwarder-metrics article::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, #567ce9, #52d9ee);
  transform: scaleX(0);
  transform-origin: left;
}

.forwarder-console.is-updating .forwarder-metrics article::before { animation: metricSweep 0.72s ease both; }
.forwarder-metrics article > span { color: #7289a6; font-size: 0.63rem; font-weight: 700; }
.forwarder-metrics article > strong { color: #fff; font-size: clamp(1.35rem, 2.2vw, 2rem); letter-spacing: -0.04em; }
.forwarder-metrics article > strong b { font: inherit; }
.forwarder-metrics article > small { color: #66809d; font-size: 0.58rem; line-height: 1.4; }

.forwarder-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 11px;
}

.forwarder-capacity-visual,
.forwarder-ai-card,
.forwarder-activity {
  padding: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(125, 171, 233, 0.12);
  border-radius: 18px;
}

.forwarder-panel-head > div { display: grid; gap: 4px; }
.forwarder-panel-head strong { color: #dce8f8; font-size: 0.75rem; }

.container-shell {
  position: relative;
  height: 170px;
  overflow: hidden;
  margin-top: 19px;
  background: #071323;
  border: 7px solid #273b56;
  border-radius: 10px;
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.38);
}

.container-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--container-fill);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: end;
  gap: 5px;
  padding: 10px;
  background: linear-gradient(90deg, rgba(72, 114, 223, 0.45), rgba(66, 207, 231, 0.22));
  border-right: 1px solid rgba(92, 225, 245, 0.65);
  transition: width 0.75s cubic-bezier(.22, 1, .36, 1);
}

.container-fill i {
  height: calc(25px + (var(--particle-index, 1) * 0px));
  background: linear-gradient(145deg, #4667a7, #274573);
  border: 1px solid rgba(141, 180, 232, 0.3);
  border-radius: 3px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  animation: cargoBreathe 2.8s ease-in-out infinite alternate;
}

.container-fill i:nth-child(2n) { height: 39px; animation-delay: -0.8s; }
.container-fill i:nth-child(3n) { height: 56px; animation-delay: -1.4s; }
.container-grid-lines { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 33px, rgba(125, 171, 233, 0.08) 34px 35px); }
.container-scan { position: absolute; top: 0; bottom: 0; width: 2px; background: #75edff; box-shadow: 0 0 18px #75edff; animation: containerScan 3.8s ease-in-out infinite; }
.container-fill-label { position: absolute; top: 14px; right: 15px; padding: 7px 9px; color: #91a6bf; background: rgba(4, 12, 24, 0.7); border: 1px solid rgba(125, 171, 233, 0.15); border-radius: 8px; font-size: 0.58rem; }
.container-fill-label b { color: #7ce5f6; font-size: 0.76rem; }

.forwarder-route-line {
  position: relative;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.forwarder-route-line::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, #64eab6 0 33%, #5078dd 33% 49%, rgba(125, 171, 233, 0.17) 49%);
}

.forwarder-route-line span { position: relative; z-index: 1; display: grid; justify-items: center; gap: 7px; color: #617792; font-size: 0.55rem; }
.forwarder-route-line i { width: 15px; height: 15px; background: #142740; border: 3px solid #0b192c; border-radius: 50%; box-shadow: 0 0 0 1px rgba(125, 171, 233, 0.17); }
.forwarder-route-line .is-complete i { background: #65e8b5; }
.forwarder-route-line .is-current i { background: #5d83ef; box-shadow: 0 0 0 5px rgba(93, 131, 239, 0.12), 0 0 16px rgba(93, 131, 239, 0.65); animation: forwarderPulse 1.7s ease-in-out infinite; }
.forwarder-route-line b { font-weight: 700; }

.forwarder-ai-card { display: flex; flex-direction: column; }
.forwarder-ai-head { display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; align-items: center; gap: 10px; }
.forwarder-ai-orb { position: relative; width: 42px; height: 42px; display: grid; place-items: center; background: radial-gradient(circle, #77e6f5 0 8%, #405fd2 9% 28%, #152b50 29%); border-radius: 50%; box-shadow: 0 0 28px rgba(83, 202, 235, 0.24); animation: aiOrb 4s linear infinite; }
.forwarder-ai-orb::before, .forwarder-ai-orb::after { content: ""; position: absolute; inset: -4px; border: 1px solid rgba(109, 225, 244, 0.25); border-radius: 50%; }
.forwarder-ai-orb::after { inset: -9px; border-style: dashed; animation: aiOrbit 8s linear infinite reverse; }
.forwarder-ai-head > div { display: grid; gap: 3px; }
.forwarder-ai-head small { color: #6e86a5; font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.1em; }
.forwarder-ai-head strong { color: #edf5ff; font-size: 0.74rem; }
.forwarder-ai-badge { color: #7de5f4; font-size: 0.54rem; }
.forwarder-ai-card > p { min-height: 120px; margin: 31px 0 22px; color: #b8c8da; font-size: 0.84rem; line-height: 1.7; transition: opacity 0.25s ease, filter 0.25s ease; }
.forwarder-ai-card > p.is-thinking { opacity: 0.35; filter: blur(2px); }
.forwarder-ai-factors { display: flex; flex-wrap: wrap; gap: 6px; }
.forwarder-ai-factors span { padding: 7px 8px; display: inline-flex; align-items: center; gap: 5px; color: #7f96b2; background: rgba(255, 255, 255, 0.025); border: 1px solid rgba(125, 171, 233, 0.1); border-radius: 8px; font-size: 0.54rem; }
.forwarder-ai-factors i { width: 4px; height: 4px; background: #68ddec; border-radius: 50%; }
.forwarder-ai-card button { margin-top: auto; min-height: 40px; color: #a7dff0; background: rgba(78, 198, 226, 0.07); border: 1px solid rgba(78, 198, 226, 0.16); border-radius: 10px; font-size: 0.62rem; font-weight: 800; cursor: pointer; }

.forwarder-activity { margin-top: 11px; }
.forwarder-activity-list { margin-top: 14px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.forwarder-activity-list p { min-width: 0; margin: 0; padding: 12px; display: grid; grid-template-columns: 8px minmax(0, 1fr) auto; align-items: center; gap: 9px; background: rgba(255, 255, 255, 0.018); border: 1px solid rgba(125, 171, 233, 0.08); border-radius: 10px; }
.forwarder-activity-list p > i { width: 7px; height: 7px; border-radius: 50%; }
.forwarder-activity-list .is-green { background: #67e8b4; box-shadow: 0 0 9px rgba(103, 232, 180, 0.7); }
.forwarder-activity-list .is-blue { background: #65b9f0; box-shadow: 0 0 9px rgba(101, 185, 240, 0.7); }
.forwarder-activity-list .is-purple { background: #9a83f2; box-shadow: 0 0 9px rgba(154, 131, 242, 0.7); }
.forwarder-activity-list p span { min-width: 0; display: grid; gap: 3px; }
.forwarder-activity-list strong { overflow: hidden; color: #bccde0; font-size: 0.61rem; text-overflow: ellipsis; white-space: nowrap; }
.forwarder-activity-list small { overflow: hidden; color: #617895; font-size: 0.54rem; text-overflow: ellipsis; white-space: nowrap; }
.forwarder-activity-list time { color: #66809c; font-size: 0.53rem; }
.forwarder-activity-list .is-new { animation: activityArrival 0.55s cubic-bezier(.22, 1, .36, 1) both; }

body.entry-page .testimonial-grid--featured {
  width: min(1100px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

body.entry-page .testimonial-grid--featured .testimonial-card {
  min-height: 660px;
  display: flex;
  flex-direction: column;
}

body.entry-page .testimonial-grid--featured .testimonial-card img {
  height: 280px;
  object-position: center 28%;
}

body.entry-page .testimonial-grid--featured .testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.8;
}

body.entry-page .testimonial-grid--featured .testimonial-card cite {
  min-height: 82px;
  margin-top: auto;
}

.entry-tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
}

.entry-tilt-card::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(107, 221, 241, 0.1), transparent 34%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.entry-tilt-card:hover::after { opacity: 1; }

body.entry-page .page-content.intelligence-section,
body.entry-page .page-content.workflow-section {
  background: #07101f;
}

.intelligence-heading,
.workflow-heading {
  max-width: 980px;
  margin-bottom: 48px;
}

.intelligence-heading h2,
.workflow-heading h2 { font-size: clamp(2.5rem, 4.8vw, 5.2rem); }
.intelligence-heading > p,
.workflow-heading > p { max-width: 700px; margin-top: 20px; }

#features > .dashboard-wrapper > .hero.small,
#legacy-feature-grid,
#how > .dashboard-wrapper > .hero.small,
#how > .dashboard-wrapper > .timeline,
#legacy-workflow-grid {
  display: none;
}

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

.intelligence-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 27px;
  color: #e9f2ff;
  background: linear-gradient(150deg, rgba(16, 36, 62, 0.98), rgba(7, 19, 36, 0.99));
  border: 1px solid rgba(125, 171, 233, 0.15);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.intelligence-card--map,
.intelligence-card--assistant { grid-column: span 7; }
.intelligence-card--pricing,
.intelligence-card--trust { grid-column: span 5; }

.intelligence-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 16px;
}

.intelligence-card-head > span { grid-column: 1; color: #7188a6; font-size: 0.61rem; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.intelligence-card-head > strong { grid-column: 1; color: #f0f6ff; font-size: 1.05rem; }
.intelligence-card-head > i { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: #73def0; font-size: 0.58rem; font-style: normal; font-weight: 800; text-transform: uppercase; }

.network-radar {
  position: relative;
  width: min(330px, 75%);
  aspect-ratio: 1;
  margin: 14px auto -16px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(75, 125, 221, 0.13), transparent 63%);
}

.radar-ring { position: absolute; border: 1px solid rgba(105, 169, 232, 0.14); border-radius: 50%; animation: radarPulse 3.8s ease-out infinite; }
.radar-ring--one { inset: 32%; }
.radar-ring--two { inset: 18%; animation-delay: -1.2s; }
.radar-ring--three { inset: 4%; animation-delay: -2.4s; }
.network-core { position: relative; z-index: 2; width: 84px; height: 84px; display: grid; place-items: center; align-content: center; color: #fff; background: radial-gradient(circle at 35% 28%, #688cf4, #284587); border: 1px solid rgba(125, 196, 244, 0.4); border-radius: 50%; box-shadow: 0 0 38px rgba(84, 135, 234, 0.32); }
.network-core b { font-size: 1.55rem; line-height: 1; }
.network-core small { color: #c0d4ed; font-size: 0.52rem; }
.network-node { position: absolute; z-index: 3; width: 11px; height: 11px; background: #68e1f2; border: 3px solid #112a48; border-radius: 50%; box-shadow: 0 0 14px rgba(104, 225, 242, 0.75); animation: networkNode 2s ease-in-out infinite; }
.network-node--one { top: 20%; left: 27%; }
.network-node--two { top: 30%; right: 15%; animation-delay: -0.6s; }
.network-node--three { right: 28%; bottom: 15%; animation-delay: -1.2s; }
.network-node--four { left: 15%; bottom: 31%; animation-delay: -1.6s; }
.network-route { position: absolute; left: 28%; top: 38%; width: 44%; height: 1px; background: linear-gradient(90deg, transparent, #5989e8, transparent); transform: rotate(28deg); transform-origin: center; }
.network-route--two { transform: rotate(-36deg); }
.network-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.network-stats span { padding: 12px 8px; color: #718aa8; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(125, 171, 233, 0.09); border-radius: 10px; font-size: 0.56rem; text-align: center; }
.network-stats b { display: block; margin-bottom: 3px; color: #dfeeff; font-size: 0.82rem; }

.pricing-lab-value { margin: 47px 0 28px; display: grid; gap: 7px; }
.pricing-lab-value > span { color: #7890ad; font-size: 0.65rem; }
.pricing-lab-value > strong { color: #fff; font-size: clamp(2.4rem, 4vw, 4rem); letter-spacing: -0.055em; }
.pricing-lab-value > strong b { font: inherit; }
.pricing-lab-value small { color: #7790af; font-size: 0.7rem; letter-spacing: 0; }
.pricing-lab-control { display: grid; gap: 12px; }
.pricing-lab-control > span { display: flex; justify-content: space-between; color: #8ca2be; font-size: 0.65rem; }
.pricing-lab-control b { color: #79e0f0; }
.pricing-lab-control input { width: 100%; height: 5px; appearance: none; background: linear-gradient(90deg, #5a7eec var(--price-progress), rgba(255,255,255,.08) var(--price-progress)); border-radius: 999px; cursor: pointer; }
.pricing-lab-control input::-webkit-slider-thumb { width: 18px; height: 18px; appearance: none; background: #fff; border: 4px solid #5e85ef; border-radius: 50%; box-shadow: 0 0 0 5px rgba(94, 133, 239, 0.12); }
.pricing-lab-chart { height: 70px; margin: 24px 0 15px; display: flex; align-items: end; gap: 7px; }
.pricing-lab-chart i { flex: 1; height: var(--bar); background: linear-gradient(#5f91ed, #28457a); border-radius: 4px 4px 1px 1px; animation: barBreathe 2.4s ease-in-out infinite alternate; }
.pricing-lab-chart i:nth-child(2n) { animation-delay: -1s; }
.intelligence-card--pricing > p { margin: 0; color: #7890ad; font-size: 0.65rem; line-height: 1.6; }
.intelligence-card--pricing > p strong { color: #c8ddf5; }

.assistant-thinking { height: 50px; margin: 48px 0 18px; display: flex; align-items: center; gap: 6px; }
.assistant-thinking span { width: 7px; height: 7px; background: #67dcec; border-radius: 50%; animation: assistantDot 1.2s ease-in-out infinite; }
.assistant-thinking span:nth-child(2) { animation-delay: .18s; }
.assistant-thinking span:nth-child(3) { animation-delay: .36s; }
.assistant-insight { min-height: 84px; margin: 0; max-width: 620px; color: #d6e5f6; font-size: clamp(1.1rem, 2.2vw, 1.75rem); line-height: 1.45; letter-spacing: -0.025em; transition: opacity .25s ease, transform .25s ease; }
.assistant-insight.is-thinking { opacity: .35; transform: translateY(5px); }
.assistant-suggestions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 7px; }
.assistant-suggestions button { padding: 10px 12px; color: #8da7c5; background: rgba(255, 255, 255, .025); border: 1px solid rgba(125, 171, 233, .12); border-radius: 9px; font-size: .6rem; font-weight: 750; cursor: pointer; }
.assistant-suggestions button:hover, .assistant-suggestions button.is-active { color: #bcebf4; background: rgba(74, 198, 226, .08); border-color: rgba(74, 198, 226, .24); }

.trust-orbit { position: relative; width: 130px; height: 130px; margin: 28px auto 18px; display: grid; place-items: center; }
.trust-orbit > b { width: 64px; height: 64px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #5b7de9, #31518e); border-radius: 50%; font-size: .85rem; box-shadow: 0 0 35px rgba(87, 127, 232, .3); }
.trust-orbit > span { position: absolute; inset: 0; border: 1px dashed rgba(101, 193, 232, .28); border-radius: 50%; animation: aiOrbit 10s linear infinite; }
.trust-orbit > span i { position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; background: #65e3ef; border-radius: 50%; box-shadow: 0 0 13px #65e3ef; }
.intelligence-card--trust ul { margin: 0; padding: 0; display: grid; gap: 7px; list-style: none; }
.intelligence-card--trust li { padding: 10px; display: grid; grid-template-columns: 7px minmax(0,1fr) auto; align-items: center; gap: 9px; background: rgba(255,255,255,.02); border: 1px solid rgba(125,171,233,.08); border-radius: 9px; }
.intelligence-card--trust li > i { width: 6px; height: 6px; background: #6be6b4; border-radius: 50%; }
.intelligence-card--trust li span { display: grid; gap: 2px; }
.intelligence-card--trust li strong { color: #bdcee0; font-size: .62rem; }
.intelligence-card--trust li small { color: #657d99; font-size: .52rem; }
.intelligence-card--trust li > b { color: #70ddb2; font-size: .53rem; text-transform: uppercase; }

.workflow-shell {
  position: relative;
  padding: clamp(20px, 3vw, 36px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(15, 34, 59, .96), rgba(7, 19, 35, .99));
  border: 1px solid rgba(125, 171, 233, .16);
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .24);
}

.workflow-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.workflow-nav button { min-height: 100px; padding: 15px; display: grid; grid-template-columns: 36px minmax(0,1fr); align-content: center; gap: 3px 10px; color: #7188a5; background: rgba(255,255,255,.02); border: 1px solid rgba(125,171,233,.09); border-radius: 14px; text-align: left; cursor: pointer; transition: all .28s ease; }
.workflow-nav button:hover { transform: translateY(-3px); border-color: rgba(91, 139, 231, .3); }
.workflow-nav button.is-active { color: #fff; background: linear-gradient(135deg, rgba(83, 124, 229, .2), rgba(74, 207, 232, .07)); border-color: rgba(91, 139, 231, .36); box-shadow: inset 0 1px rgba(255,255,255,.04); }
.workflow-nav span { grid-row: 1 / span 2; width: 34px; height: 34px; display: grid; place-items: center; color: #75dcea; background: rgba(80, 204, 229, .08); border: 1px solid rgba(80, 204, 229, .14); border-radius: 10px; font-size: .61rem; font-weight: 900; }
.workflow-nav strong { font-size: .75rem; }
.workflow-nav small { color: #627995; font-size: .55rem; }
.workflow-track { position: relative; height: 30px; margin: 19px 4.5% 8px; }
.workflow-track::before { content: ""; position: absolute; top: 14px; left: 0; right: 0; height: 2px; background: rgba(125,171,233,.12); }
.workflow-track > i { position: absolute; top: 14px; left: 0; width: var(--workflow-progress,0%); height: 2px; background: linear-gradient(90deg,#5c7fea,#5cdced); box-shadow: 0 0 14px rgba(92,220,237,.35); transition: width .65s cubic-bezier(.22,1,.36,1); }
.workflow-track > span { position: absolute; top: 1px; left: var(--workflow-position,0%); width: 28px; height: 28px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg,#5c7fea,#4dcfe8); border: 3px solid #0e2039; border-radius: 50%; font-size: .46rem; font-weight: 900; box-shadow: 0 0 0 5px rgba(91,128,235,.1),0 0 19px rgba(77,207,232,.32); transform: translateX(-50%); transition: left .65s cubic-bezier(.22,1,.36,1); }
.workflow-stage { min-height: 420px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); align-items: center; gap: clamp(40px,7vw,100px); padding: clamp(34px,5vw,72px); transition: opacity .18s ease, transform .18s ease; }
.workflow-shell.is-changing .workflow-stage { opacity: .3; transform: translateY(8px); }
.workflow-copy > span { color: #6eddeb; font-size: .66rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.workflow-copy h3 { margin: 16px 0 18px; color: #fff; font-size: clamp(2rem,4vw,4.1rem); line-height: 1.02; letter-spacing: -.055em; text-wrap: balance; }
.workflow-copy > p { margin: 0; color: #94a9c2; font-size: .95rem; line-height: 1.8; }
.workflow-copy ul { margin: 25px 0 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.workflow-copy li { display: flex; align-items: center; gap: 9px; color: #b9cadc; font-size: .72rem; }
.workflow-copy li::before { content: ""; width: 7px; height: 7px; background: #68e3b1; border-radius: 50%; box-shadow: 0 0 10px rgba(104,227,177,.55); }
.workflow-visual { position: relative; padding: 18px; background: rgba(3,11,22,.5); border: 1px solid rgba(125,171,233,.13); border-radius: 20px; }
.workflow-status { margin-bottom: 14px; display: flex; justify-content: space-between; gap: 16px; color: #7d94b0; font-size: .58rem; }
.workflow-status span { display: flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: .1em; }
.workflow-status i { width: 6px; height: 6px; background: #6de9b6; border-radius: 50%; box-shadow: 0 0 9px #6de9b6; animation: forwarderPulse 1.4s ease-in-out infinite; }
.workflow-status strong { color: #80ddeb; }
.workflow-window { position: relative; min-height: 300px; padding: 24px; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; background: radial-gradient(circle at 50% 35%, rgba(73,119,218,.22),transparent 35%),#071526; border: 1px solid rgba(125,171,233,.12); border-radius: 15px; }
.workflow-window-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(107,154,217,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(107,154,217,.06) 1px,transparent 1px); background-size: 30px 30px; perspective: 400px; }
.workflow-window > strong { position: relative; z-index: 2; color: #fff; font-size: 1.5rem; }
.workflow-window > small { position: relative; z-index: 2; margin-top: 5px; color: #7790ad; }
.workflow-cargo { position: absolute; z-index: 1; width: 76px; height: 54px; background: linear-gradient(145deg,#4f70ad,#273f6a); border: 1px solid rgba(142,180,231,.28); border-radius: 5px; box-shadow: 0 18px 30px rgba(0,0,0,.25),inset 0 1px rgba(255,255,255,.08); animation: workflowCargo 4s ease-in-out infinite alternate; }
.workflow-cargo::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg,transparent 0 16px,rgba(255,255,255,.06) 17px 18px); }
.workflow-cargo--one { top: 32%; left: 17%; }
.workflow-cargo--two { top: 18%; right: 20%; animation-delay: -1.4s; transform: scale(.72); }
.workflow-cargo--three { top: 46%; right: 34%; animation-delay: -2.6s; transform: scale(.55); }
.workflow-scan { position: absolute; z-index: 3; top: 0; left: 0; right: 0; height: 2px; background: #69e3f3; box-shadow: 0 0 18px #69e3f3; animation: workflowScan 3.6s ease-in-out infinite; }

@keyframes entryParticle { 0% { opacity: 0; transform: translate3d(0,0,0); } 15% { opacity: .45; } 80% { opacity: .2; } 100% { opacity: 0; transform: translate3d(30px,-105vh,0); } }
@keyframes forwarderGridMove { to { background-position: 52px 52px; } }
@keyframes forwarderGlow { to { transform: translate(-90px,90px) scale(1.25); } }
@keyframes forwarderPulse { 50% { opacity: .42; transform: scale(.76); } }
@keyframes forwarderMarquee { to { transform: translateX(-36%); } }
@keyframes metricSweep { to { transform: scaleX(1); } }
@keyframes cargoBreathe { to { filter: brightness(1.24); transform: translateY(-3px); } }
@keyframes containerScan { 0%,100% { left: 0; opacity: 0; } 15%,85% { opacity: 1; } 50% { left: 100%; } }
@keyframes aiOrb { 50% { filter: hue-rotate(40deg) brightness(1.14); transform: scale(1.05); } }
@keyframes aiOrbit { to { transform: rotate(360deg); } }
@keyframes activityArrival { from { opacity: 0; transform: translateY(-12px); } }
@keyframes radarPulse { 0% { opacity: 0; transform: scale(.72); } 35% { opacity: 1; } 100% { opacity: 0; transform: scale(1.12); } }
@keyframes networkNode { 50% { transform: scale(1.35); filter: brightness(1.4); } }
@keyframes barBreathe { to { filter: brightness(1.35); transform: scaleY(1.08); transform-origin: bottom; } }
@keyframes assistantDot { 0%,60%,100% { transform: translateY(0); opacity: .35; } 30% { transform: translateY(-8px); opacity: 1; } }
@keyframes workflowCargo { to { transform: translateY(-9px) rotateY(7deg); filter: brightness(1.14); } }
@keyframes workflowScan { 0%,100% { top: 0; opacity: 0; } 15%,85% { opacity: 1; } 50% { top: 100%; } }

@media (max-width: 1100px) {
  .forwarder-lab-heading { grid-template-columns: 1fr; }
  .forwarder-lab-heading > p { max-width: 720px; }
  .forwarder-console { grid-template-columns: 235px minmax(0,1fr); }
  .forwarder-metrics { grid-template-columns: repeat(2,1fr); }
  .forwarder-visual-grid { grid-template-columns: 1fr; }
  .forwarder-ai-card > p { min-height: auto; }
  .intelligence-card { grid-column: span 6; }
  .workflow-stage { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .entry-ambient-field { display: none; }
  .forwarder-lab-heading h2,
  .intelligence-heading h2,
  .workflow-heading h2 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .forwarder-marquee { margin-inline: -18px; border-radius: 0; border-inline: 0; }
  .forwarder-console { grid-template-columns: 1fr; border-radius: 22px; }
  .forwarder-console-sidebar { border-right: 0; border-bottom: 1px solid rgba(125,171,233,.14); }
  .forwarder-console-brand { padding-bottom: 18px; }
  .forwarder-lane-list { grid-template-columns: 1fr; }
  .forwarder-sidebar-actions { margin-top: 18px; }
  .forwarder-console-main { padding: 21px 14px; }
  .forwarder-console-topline { align-items: flex-start; }
  .forwarder-sailing-id { display: none; }
  .forwarder-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .forwarder-metrics article { min-height: 110px; padding: 14px; }
  .forwarder-metrics article > strong { font-size: 1.45rem; }
  .container-shell { height: 145px; }
  .forwarder-activity-list { grid-template-columns: 1fr; }
  body.entry-page .testimonial-grid--featured { grid-template-columns: 1fr; }
  body.entry-page .testimonial-grid--featured .testimonial-card { min-height: auto; }
  body.entry-page .testimonial-grid--featured .testimonial-card img { height: 240px; }
  .intelligence-grid { grid-template-columns: 1fr; }
  .intelligence-card { grid-column: auto; min-height: 390px; padding: 21px; }
  .network-radar { width: min(300px,90%); }
  .workflow-shell { padding: 13px; border-radius: 21px; }
  .workflow-nav { grid-template-columns: repeat(2,1fr); }
  .workflow-nav button { min-height: 84px; }
  .workflow-track { display: none; }
  .workflow-stage { min-height: auto; padding: 36px 12px 12px; gap: 36px; }
  .workflow-window { min-height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .entry-intro { display: none; }
  body.entry-page .top-nav,
  body.entry-page .hero-text > *,
  body.entry-page .hero-visual > *,
  .entry-reveal,
  .entry-reveal .benefit-card,
  .entry-reveal .process-step,
  .entry-reveal .space-card,
  .entry-reveal .testimonial-card,
  .entry-reveal .container,
  .entry-auth-shell { opacity: 1 !important; transform: none !important; }
}
