/* ============================================
   ALWALEED TRADING — CORE STYLES
   Palette: Onyx / Charcoal / Gold / Bone / Slate
   ============================================ */

:root {
  --onyx: #0d1117;
  --charcoal: #111827;
  --charcoal-2: #1a2035;
  --slate: #8a8a96;
  --slate-dim: #5a5a66;
  --bone: #f4f2ec;
  --bone-dim: #c9c7c0;
  --gold: #fbbc04;
  --gold-bright: #fcc934;
  --gold-dim: #d9a000;
  --line: rgba(251, 188, 4, 0.18);

  --font-display: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--onyx);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--onyx); }

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

/* ============================================
   BACKGROUND GRID / TEXTURE
   ============================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(251, 188, 4, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 188, 4, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 600px);
}

/* ============================================
   TOP TICKER — Cargo manifest strip
   ============================================ */
.ticker {
  position: relative;
  z-index: 50;
  background: var(--gold);
  color: var(--onyx);
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-bottom: 1px solid var(--gold-dim);
}

.ticker__track {
  display: inline-flex;
  animation: ticker-scroll 120s linear infinite;
  padding: 7px 0;
}

.ticker__track span {
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker__track span::before {
  content: "▣";
  font-size: 11px;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bone);
}

.brand__mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(251,188,4,0.40);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0;
  line-height: 1;
  user-select: none;
}

.brand__mark svg { display: none; }

.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  font-weight: 400;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__login-mobile { display: none; }

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--slate);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--bone);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--onyx);
  box-shadow: 0 0 0 0 rgba(251,188,4,0.5);
}
.btn--gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(251,188,4,0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(244,242,236,0.22);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--onyx);
}

.btn--sm { padding: 10px 20px; font-size: 12px; }
.btn--block { width: 100%; }

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.section { padding: 110px 0; position: relative; z-index: 1; }
.section--tight { padding: 70px 0; }
.section--alt { background: var(--charcoal); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--bone);
  font-weight: 600;
  line-height: 1.12;
}

h2 { font-size: clamp(34px, 5vw, 54px); }
h3 { font-size: 24px; }

.lede {
  color: var(--slate);
  font-size: 17px;
  max-width: 620px;
  line-height: 1.8;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 90px 0 120px;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}

.hero__glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(251,188,4,0.16), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-size: clamp(42px, 7vw, 80px);
  margin-bottom: 24px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s cubic-bezier(.16,1,.3,1) forwards;
}
.hero__title .line:nth-child(1) span { animation-delay: 0.1s; }
.hero__title .line:nth-child(2) span { animation-delay: 0.25s; color: var(--gold); }
.hero__title .line:nth-child(3) span { animation-delay: 0.4s; }

@keyframes rise {
  to { transform: translateY(0); }
}

.hero__sub {
  color: var(--slate);
  font-size: 18px;
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fade-up 0.9s ease forwards 0.7s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: fade-up 0.9s ease forwards 0.9s;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  margin-top: 56px;
  opacity: 0;
  animation: fade-up 0.9s ease forwards 1.1s;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}

/* ============================================
   ISOMETRIC SHIPPING CONTAINER STACK (Hero visual)
   ============================================ */
.hero__visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.crate-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1400px;
}

/* Each container is built from 3 isometric faces: top, front, side */
.crate {
  position: absolute;
  width: 180px;
  height: 92px;
  transform-style: preserve-3d;
}

.crate__face {
  position: absolute;
  border: 1px solid rgba(251,188,4,0.35);
}

/* FRONT FACE — corrugated container wall */
.crate__front {
  width: 180px;
  height: 92px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--charcoal-2) 0px,
      var(--charcoal-2) 8px,
      var(--charcoal) 8px,
      var(--charcoal) 16px
    );
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.4),
    0 24px 50px -18px rgba(0,0,0,0.8);
}

/* TOP FACE — slight skew to fake isometric top */
.crate__top {
  width: 180px;
  height: 28px;
  background: linear-gradient(180deg, var(--charcoal-2), #232328);
  top: -18px;
  left: 0;
  transform: skewX(-32deg) scaleY(0.62);
  transform-origin: bottom left;
  border-bottom: 1px solid rgba(251,188,4,0.25);
}

/* SIDE FACE — darker, fake right-side depth */
.crate__side {
  width: 22px;
  height: 92px;
  background: linear-gradient(180deg, #0e0e11, #050506);
  right: -21px;
  top: 0;
  transform: skewY(-32deg) scaleX(0.62);
  transform-origin: top left;
  border-left: 1px solid rgba(251,188,4,0.2);
}

/* container door panel lines + lock bars */
.crate__front::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, transparent 0 8px, rgba(0,0,0,0.35) 8px 10px, transparent 10px 100%);
}

.crate__door {
  position: absolute;
  right: 10px;
  top: 7px;
  bottom: 7px;
  width: 32px;
  border: 1px solid rgba(251,188,4,0.3);
  background: rgba(0,0,0,0.18);
}
.crate__door::before,
.crate__door::after {
  content: "";
  position: absolute;
  left: -7px;
  width: 12px;
  height: 3px;
  background: var(--gold-dim);
}
.crate__door::before { top: 22%; }
.crate__door::after { top: 72%; }

/* Container ID label */
.crate__id {
  position: absolute;
  top: 11px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(251,188,4,0.35);
  z-index: 2;
}

/* Color band — like a shipping line logo band */
.crate__band {
  position: absolute;
  left: 0; right: 32px;
  bottom: 0;
  height: 18px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold) 60%, var(--gold-bright));
  opacity: 0.85;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.crate__band span {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--onyx);
  font-weight: 600;
}

/* Corner casting bolts */
.crate__bolt {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold-dim);
  border-radius: 1px;
  box-shadow: 0 0 4px rgba(251,188,4,0.4);
}
.crate__bolt--tl { top: 4px; left: 4px; }
.crate__bolt--bl { bottom: 4px; left: 4px; }

/* ---- Placement + float animation per container ---- */
.crate--1 {
  left: 4%; top: 14%;
  animation: float-1 7s ease-in-out infinite;
  z-index: 3;
}
.crate--2 {
  left: 38%; top: 56%;
  animation: float-2 8s ease-in-out infinite;
  z-index: 2;
}
.crate--3 {
  width: 140px; height: 92px;
  right: 2%; top: 6%;
  animation: float-3 9s ease-in-out infinite;
  z-index: 1;
}
.crate--3 .crate__front,
.crate--3 .crate__top { width: 140px; }

.crate--4 {
  left: 14%; bottom: 4%;
  animation: float-1 7.5s ease-in-out infinite reverse;
  z-index: 4;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-0.6deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(12px) rotate(0.6deg); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(-8px, 10px) rotate(1deg); }
}

/* orbiting scan ring */
.scan-ring {
  position: absolute;
  width: 360px; height: 360px;
  border: 1px dashed rgba(251,188,4,0.25);
  border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  animation: spin 30s linear infinite;
}
.scan-ring::before {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  top: -5px; left: 50%;
  box-shadow: 0 0 16px 4px rgba(251,188,4,0.6);
}
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   MARQUEE PARTNER STRIP
   ============================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 26px 0;
}
.marquee__track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--slate-dim);
  text-transform: uppercase;
  transition: color 0.3s;
}
.marquee__track span:hover { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--onyx);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.service-card:hover { background: var(--charcoal); }

.service-card__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-dim);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  position: relative;
}

.service-card h3 {
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.service-card p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 28px;
  flex-grow: 1;
}

.service-card__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease;
}
.service-card__link::after {
  content: "→";
  transition: transform 0.3s ease;
}
.service-card:hover .service-card__link { gap: 16px; }
.service-card:hover .service-card__link::after { transform: translateX(4px); }

/* Icon animations */
.icon-stamp { animation: stamp-pulse 3s ease-in-out infinite; }
@keyframes stamp-pulse {
  0%, 100% { transform: scale(1) rotate(-6deg); opacity: 0.9; }
  50% { transform: scale(1.08) rotate(-6deg); opacity: 1; }
}

.icon-route .route-dot {
  animation: route-move 3.5s ease-in-out infinite;
}
@keyframes route-move {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

.icon-gear { animation: gear-spin 6s linear infinite; transform-origin: center; }
@keyframes gear-spin { to { transform: rotate(360deg); } }

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process {
  position: relative;
}
.process__line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.process__steps { display: flex; flex-direction: column; gap: 0; }
.process__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.process__step:last-child { border-bottom: none; }
.process__num {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  background: var(--onyx);
  position: relative;
  z-index: 1;
}
.process__step h4 { margin-bottom: 8px; font-size: 19px; }
.process__step p { color: var(--slate); max-width: 600px; font-size: 14.5px; }

/* ============================================
   CARDS / FEATURE GRID
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.feature-card {
  border: 1px solid var(--line);
  padding: 34px 28px;
  background: var(--charcoal);
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.feature-card__num {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.feature-card h4 { font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: var(--slate); font-size: 14px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  border: 1px solid var(--line);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(251,188,4,0.04) 0 2px, transparent 2px 26px);
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.cta-banner p { color: var(--slate); max-width: 480px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 28px;
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer__about p {
  color: var(--slate);
  font-size: 14px;
  max-width: 320px;
  margin-top: 18px;
}
.footer h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  color: var(--slate);
  font-size: 14px;
  transition: color 0.25s;
}
.footer__links a:hover { color: var(--bone); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--slate-dim);
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================
   QUOTE MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,12,0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  background: var(--charcoal);
  border: 1px solid var(--gold-dim);
  width: 100%;
  max-width: 520px;
  padding: 46px 40px;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute;
  top: 22px; right: 22px;
  width: 32px; height: 32px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--bone);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.modal__close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }

.modal h3 { margin-bottom: 6px; }
.modal .lede { font-size: 14px; margin-bottom: 30px; }

.form-row { margin-bottom: 18px; }
.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--onyx);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: 2px;
  transition: border-color 0.25s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row textarea { resize: vertical; min-height: 80px; }

.form-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}
.form-success.active { display: block; }
.form-success__ref {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
  font-weight: 600;
}
.form-success__ref:empty { display: none; }
.form-success__icon {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold);
  font-size: 28px;
  animation: stamp-in 0.5s cubic-bezier(.16,1,.4,1.4);
}
@keyframes stamp-in {
  from { transform: scale(2) rotate(-15deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}

/* ============================================
   PAGE HEADER (sub pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(38px, 6vw, 64px); }
.page-hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.1em;
  margin-top: 22px;
}
.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb span { margin: 0 8px; color: var(--slate-dim); }

/* ============================================
   TWO COL CONTENT
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split--rev .split__visual { order: 2; }

.split__visual {
  border: 1px solid var(--line);
  background: var(--charcoal);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag-list span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 8px 14px;
  color: var(--slate);
}

.checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--bone-dim);
  font-size: 15px;
}
.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, transparent 45%, var(--gold) 45%, var(--gold) 55%, transparent 55%);
}

/* ============================================
   STAMP ANIMATION (Custom Clearance visual)
   ============================================ */
.stamp-visual {
  width: 220px; height: 220px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: stamp-drop 4s cubic-bezier(.16,1,.4,1.2) infinite;
}
.stamp-visual::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px dashed var(--gold-dim);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
.stamp-visual span {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-align: center;
  line-height: 1.5;
}
@keyframes stamp-drop {
  0%, 60% { transform: scale(1) rotate(-8deg); }
  65% { transform: scale(0.85) rotate(-8deg); }
  72% { transform: scale(1.05) rotate(-8deg); }
  78%, 100% { transform: scale(1) rotate(-8deg); }
}

/* ============================================
   ROUTE / FREIGHT VISUAL
   ============================================ */
.route-visual {
  width: 100%; height: 100%;
  padding: 40px;
  position: relative;
}
.route-line {
  position: absolute;
  left: 12%; right: 12%; top: 50%;
  height: 1px;
  background: var(--line);
}
.route-line::before, .route-line::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  background: var(--onyx);
}
.route-line::before { left: -7px; }
.route-line::after { right: -7px; }
.route-node {
  position: absolute;
  top: 50%;
  width: 26px; height: 26px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--onyx);
  animation: route-travel 6s ease-in-out infinite;
  box-shadow: 0 0 24px 4px rgba(251,188,4,0.4);
}
@keyframes route-travel {
  0% { left: 12%; }
  45%, 55% { left: 50%; }
  100% { left: 88%; }
}
.route-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--slate);
}
.route-label--start { left: 12%; top: 58%; transform: translateX(-50%); }
.route-label--end { left: 88%; top: 58%; transform: translateX(-50%); }

/* ============================================
   PROCUREMENT VISUAL
   ============================================ */
.procure-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px;
  width: 100%;
}
.procure-cell {
  border: 1px solid var(--line);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--gold-dim);
  transition: all 0.4s ease;
}
.procure-cell.lit {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 20px rgba(251,188,4,0.15);
}

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.stats-band__item {
  padding: 40px 30px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.stats-band__item:last-child { border-right: none; }
.stats-band__num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
}
.stats-band__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 8px;
}

/* ============================================
   ABOUT TIMELINE
   ============================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
}
.timeline__item h4 { margin-bottom: 8px; font-size: 17px; }
.timeline__item p { color: var(--slate); font-size: 14px; max-width: 540px; }

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.team-card {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--charcoal);
}
.team-card__avatar {
  width: 64px; height: 64px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
}
.team-card h4 { font-size: 16px; margin-bottom: 4px; }
.team-card span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--slate);
  text-transform: uppercase;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info__item {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info__item:first-child { padding-top: 0; }
.contact-info__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 16px;
}
.contact-info__item h4 { font-size: 15px; margin-bottom: 6px; }
.contact-info__item p { color: var(--slate); font-size: 14px; }

.map-block {
  border: 1px solid var(--line);
  height: 100%;
  min-height: 300px;
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 20px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  border: 1px solid var(--line);
  background: var(--charcoal);
  padding: 50px 44px;
  position: relative;
  z-index: 2;
}
.auth-card__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.auth-card h2 { font-size: 28px; text-align: center; margin-bottom: 8px; }
.auth-card .lede { text-align: center; max-width: none; font-size: 13px; margin: 0 auto 32px; }

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  margin-bottom: 30px;
}
.auth-tabs button {
  background: transparent;
  border: none;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px;
  transition: all 0.25s;
}
.auth-tabs button.active {
  background: var(--gold);
  color: var(--onyx);
}

.form-extra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -6px 0 24px;
  font-size: 13px;
}
.form-extra label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  cursor: pointer;
}
.form-extra a { color: var(--gold); }
.form-extra input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
  color: var(--slate-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.auth-card__form { display: none; }
.auth-card__form.active { display: block; animation: fade-up 0.5s ease; }

/* ============================================
   ANIMATED LOADING BAR (for hero / generic)
   ============================================ */
.load-bar {
  width: 100%;
  height: 2px;
  background: var(--line);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.load-bar::after {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 40%;
  background: var(--gold);
  animation: load-sweep 2.4s ease-in-out infinite;
}
@keyframes load-sweep {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.16,1,.3,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ANIMATED CARGO JOURNEY
   ============================================ */
.journey { position: relative; }

.journey__rail {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.journey__rail::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--line);
  transform: translateY(-50%);
}

.journey__fill {
  position: absolute;
  left: 0; top: 50%;
  height: 2px; margin-top: -1px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  box-shadow: 0 0 8px rgba(251,188,4,0.5);
  border-radius: 1px;
  z-index: 1;
  animation: jfill 15s linear infinite;
}
@keyframes jfill {
  0%, 5%  { width: 0%;   opacity: 1; }
  20%     { width: 0%; }
  32%     { width: 25%; }
  44%     { width: 50%; }
  56%     { width: 75%; }
  70%     { width: 100%; }
  80%     { width: 100%; opacity: 1; }
  85%     { width: 100%; opacity: 0; }
  90%     { width: 0%;   opacity: 0; }
  95%, 100%{ width: 0%;  opacity: 1; }
}

.journey__cargo {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  filter: drop-shadow(0 0 8px rgba(251,188,4,0.55));
  animation: jcargo 15s linear infinite;
}
@keyframes jcargo {
  0%, 5%  { left: 0%;   opacity: 1; }
  20%     { left: 0%; }
  32%     { left: 25%; }
  44%     { left: 50%; }
  56%     { left: 75%; }
  70%     { left: 100%; }
  78%     { left: 100%; opacity: 1; }
  83%     { left: 100%; opacity: 0; }
  90%     { left: -1%;  opacity: 0; }
  95%, 100%{ left: 0%;  opacity: 1; }
}

.journey__cargo-body {
  width: 72px; height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  position: relative;
  background: repeating-linear-gradient(90deg, var(--charcoal-2) 0 5px, var(--charcoal) 5px 10px);
}
.journey__cargo-id {
  position: absolute;
  top: 4px; left: 5px;
  font-family: var(--font-mono);
  font-size: 7px; font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-shadow: 0 0 6px rgba(251,188,4,0.5);
}
.journey__cargo-door {
  position: absolute;
  right: 5px; top: 4px; bottom: 4px; width: 13px;
  border-left: 1px solid rgba(251,188,4,0.45);
  background: rgba(0,0,0,0.25);
}
.journey__cargo-trail {
  position: absolute;
  right: 100%; top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,188,4,0.5));
}

.journey__node {
  position: absolute;
  top: 50%;
  width: 16px; height: 16px;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-radius: 50%;
  border: 2px solid rgba(251,188,4,0.25);
  background: var(--charcoal);
  animation: jnode 15s linear infinite var(--jnd, 0s);
}
.journey__node::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(251,188,4,0.5);
  border-radius: 50%;
  transform: scale(0); opacity: 0;
  animation: jpulse 15s linear infinite var(--jnd, 0s);
}
@keyframes jnode {
  0%    { border-color: var(--gold); background: var(--gold); box-shadow: 0 0 22px rgba(251,188,4,0.9); transform: translate(-50%,-50%) scale(1.6); }
  3%    { transform: translate(-50%,-50%) scale(1.9); box-shadow: 0 0 30px rgba(251,188,4,1); }
  10%   { border-color: var(--gold-dim); background: var(--charcoal-2); box-shadow: 0 0 8px rgba(251,188,4,0.3); transform: translate(-50%,-50%) scale(1.15); }
  18%   { border-color: rgba(251,188,4,0.25); background: var(--charcoal); box-shadow: none; transform: translate(-50%,-50%) scale(1); }
  100%  { border-color: rgba(251,188,4,0.25); background: var(--charcoal); box-shadow: none; transform: translate(-50%,-50%) scale(1); }
}
@keyframes jpulse {
  0%, 2%  { transform: scale(0.7); opacity: 0.85; }
  10%     { transform: scale(1.9); opacity: 0.4; }
  18%     { transform: scale(2.8); opacity: 0; }
  100%    { transform: scale(0);   opacity: 0; }
}

.journey__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  margin-top: 28px;
}
.journey__step {
  padding: 28px 20px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  animation: jstep-bg 15s linear infinite var(--jnd, 0s);
}
.journey__step:last-child { border-right: none; }
.journey__step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-bright));
  animation: jstep-bar 15s linear infinite var(--jnd, 0s);
}
@keyframes jstep-bg {
  0%, 1%   { background: rgba(251,188,4,0.07); }
  14%      { background: rgba(251,188,4,0.03); }
  20%      { background: transparent; }
  100%     { background: transparent; }
}
@keyframes jstep-bar {
  0%       { width: 0%; }
  5%       { width: 100%; }
  18%      { width: 100%; }
  23%      { width: 0%; }
  100%     { width: 0%; }
}
.journey__step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold-dim);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.journey__step h4 { font-size: 14px; margin-bottom: 8px; line-height: 1.3; }
.journey__step p  { color: var(--slate); font-size: 13px; line-height: 1.65; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { height: 320px; order: -1; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__visual { order: 0; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band__item:nth-child(2) { border-right: none; }
  .stats-band__item:nth-child(odd) { border-right: 1px solid var(--line); }
  /* Journey responsive */
  .journey__rail { display: none; }
  .journey__steps { grid-template-columns: 1fr; }
  .journey__step { border-right: none; border-bottom: 1px solid var(--line); }
  .journey__step:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }
  .brand {
    font-size: 18px;
  }
  .brand__mark {
    width: 32px;
    height: 32px;
  }
  .nav__actions {
    gap: 10px;
  }
  .nav__actions .btn--gold.btn--sm {
    padding: 10px 14px;
    font-size: 11px;
  }
  .nav__links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--onyx);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 24px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    z-index: 99;
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__toggle { display: flex; }
  .nav__actions .btn--ghost { display: none; }
  .section { padding: 70px 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .timeline__item, .process__step { grid-template-columns: 1fr; gap: 14px; }
  .timeline__year { font-size: 22px; }
  .form-row--split { grid-template-columns: 1fr; }
  .cta-banner { padding: 50px 28px; flex-direction: column; align-items: flex-start; }
  .hero__title { font-size: clamp(30px, 9.5vw, 60px); letter-spacing: 0; }
  .container { padding: 0 20px; }
  .nav__login-mobile { display: block; width: 100%; margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--line); }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .hero__stats { gap: 20px; justify-content: space-between; }
}

/* ============================================
   FLOATING PARTICLES
   ============================================ */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: p-float var(--dur, 14s) ease-in-out infinite var(--delay, 0s);
  opacity: 0;
  width: var(--sz, 3px);
  height: var(--sz, 3px);
}

@keyframes p-float {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  8%   { opacity: var(--op, 0.55); }
  50%  { transform: translateY(var(--ty, -80px)) translateX(var(--tx, 20px)) scale(0.7); }
  92%  { opacity: var(--op, 0.55); }
  100% { transform: translateY(var(--ty2, -160px)) translateX(var(--tx2, -10px)) scale(0.3); opacity: 0; }
}

/* ============================================
   DATA STREAMS — cascading vertical lines
   ============================================ */
.data-streams {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.data-stream {
  position: absolute;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: stream-fall var(--sd, 6s) linear infinite var(--s-delay, 0s);
  opacity: 0;
  top: -80px;
}

@keyframes stream-fall {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 0.22; }
  80%  { opacity: 0.22; }
  100% { transform: translateY(120vh); opacity: 0; }
}

/* ============================================
   ENHANCED SERVICE CARDS
   ============================================ */
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(.4,0,.2,1);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__corner-tl,
.service-card__corner-br {
  position: absolute;
  width: 14px; height: 14px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scale(0.6);
}
.service-card__corner-tl {
  top: 14px; left: 14px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.service-card__corner-br {
  bottom: 14px; right: 14px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.service-card:hover .service-card__corner-tl,
.service-card:hover .service-card__corner-br {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   HERO ORBIT RING (extra layer)
   ============================================ */
.hero__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(251,188,4,0.18);
  pointer-events: none;
  animation: orbit-spin var(--os, 36s) linear infinite var(--or, normal);
}
.hero__orbit::after {
  content: "";
  position: absolute;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  top: -3.5px; left: 50%;
  box-shadow: 0 0 10px 3px rgba(251,188,4,0.5);
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   PAGE HERO DECORATIVE BRACKETS
   ============================================ */
.page-hero__corner {
  position: absolute;
  width: 24px; height: 24px;
  opacity: 0.35;
  pointer-events: none;
}
.page-hero__corner--tl { top: 60px; left: 32px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.page-hero__corner--tr { top: 60px; right: 32px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.page-hero__corner--bl { bottom: 20px; left: 32px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.page-hero__corner--br { bottom: 20px; right: 32px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

/* ============================================
   CTA BANNER — animated sweep
   ============================================ */
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(251,188,4,0.06) 50%, transparent 70%);
  animation: cta-sweep 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes cta-sweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ============================================
   HERO GLOW — second orb
   ============================================ */
.hero__glow-2 {
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(251,188,4,0.08), transparent 70%);
  filter: blur(50px);
  z-index: 0;
  animation: glow-pulse 12s ease-in-out infinite reverse;
  pointer-events: none;
}

/* ============================================
   STATS BAND — animated pulse on numbers
   ============================================ */
.stats-band__num {
  position: relative;
}
.stats-band__num::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251,188,4,0.12), transparent 70%);
  animation: num-pulse 3s ease-in-out infinite;
}
@keyframes num-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

/* ============================================
   TICKER — gold glow on hover
   ============================================ */
.ticker__track span:hover { color: var(--onyx); text-shadow: 0 0 8px rgba(0,0,0,0.2); }

/* ============================================
   NAV LINK — animated underline colour
   ============================================ */
.nav__links a::after { background: var(--gold); }

/* ============================================
   MODAL — pulsing border
   ============================================ */
.modal-overlay.active .modal {
  box-shadow: 0 0 0 1px rgba(251,188,4,0.25), 0 32px 80px rgba(0,0,0,0.6);
}

/* ============================================
   FOOTER LOGO MARK
   ============================================ */
.footer-brand__mark {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(251,188,4,0.35);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--onyx); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
