/* ============================================================
   BanknBox — Main Stylesheet
   ============================================================ */

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

:root {
  --bg-dark:    #040921;
  --bg-navy:    #0B2265;
  --bg-card:    rgba(9, 28, 82, 0.55);
  --cyan:       #00B9E4;
  --blue:       #007AC9;
  --dark-blue:  #0B2265;
  --white:      #ffffff;
  --gray:       #d2d2d2;
  --muted:      #8f8f8f;
  --grad:       linear-gradient(66deg, #007AC9 0%, #00B9E4 100%);
  --font:       'Manrope', sans-serif;
  --nav-h:      80px;
  --max-w:      1200px;
  --radius:     16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
p  { color: var(--gray); line-height: 1.75; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0,198,183,.3);
  border-radius: 100px;
  padding: 5px 16px;
  background: rgba(0,198,183,.07);
  margin-bottom: 18px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,183,210,.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(0,183,210,.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-outline:hover { border-color: var(--cyan); background: rgba(255,255,255,.06); transform: translateY(-2px); }

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background .3s, backdrop-filter .3s;
}
nav.scrolled {
  background: rgba(4,9,33,.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  position: relative;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---- Limelight indicator ---- */
.nav-limelight {
  position: absolute;
  bottom: 0;
  left: -999px;
  width: 40px;
  height: 3px;
  border-radius: 100px;
  background: var(--cyan);
  box-shadow: 0 0 14px 3px rgba(0,185,228,.7);
  pointer-events: none;
  z-index: 50;
  transition: left .35s cubic-bezier(.4,0,.2,1);
}
.nav-limelight-cone {
  position: absolute;
  left: -40%;
  top: 3px;
  width: 180%;
  height: 56px;
  background: linear-gradient(to bottom, rgba(0,185,228,.18), transparent);
  clip-path: polygon(10% 100%, 22% 0, 78% 0, 90% 100%);
  pointer-events: none;
}
.nav-logo img { height: 46px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: .9375rem;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links .nav-cta a {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  padding: 9px 24px;
  border-radius: 100px;
  font-weight: 700;
}
.nav-links .nav-cta a:hover { opacity: .88; transform: translateY(-1px); display: inline-block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO — Spline 3D Card
   ============================================================ */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: #04050f;
}
.hero-bg { display: none; }

.hero-spline-container {
  position: absolute;
  inset: 0;
  top: var(--nav-h);
  padding: 0;
  max-width: 100%;
  width: 100%;
  height: calc(100vh - var(--nav-h));
}

/* ---- Card — full bleed ---- */
.spline-card {
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 15, 0.96);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  border: none;
  box-shadow: none;
}

/* ---- Aceternity Spotlight SVG ---- */
.spotlight-svg {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  height: 169%;
  width: 138%;
  top: -40px;
  left: 0;
  opacity: 0;
  animation: spotlight-in 2s ease 0.5s forwards;
}
@media (min-width: 768px) {
  .spotlight-svg { width: 84%; left: 240px; top: -80px; }
}
@keyframes spotlight-in {
  0%   { opacity: 0; transform: translate(-72%, -62%) scale(0.5); }
  100% { opacity: 1; transform: translate(-50%, -40%) scale(1); }
}

/* ---- Mouse-follow glow (ibelick Spotlight) ---- */
.spotlight-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,.08) 0%, transparent 80%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}
.spline-card:hover .spotlight-glow { opacity: 1; }

/* ---- Layout ---- */
.spline-layout {
  display: flex;
  width: 100%;
  height: 100%;
}
.spline-left {
  flex: 1;
  padding: 56px 48px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
.nexura-powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: .85;
}
.nexura-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  display: inline-block;
  animation: dot-blink 2s ease-in-out infinite;
  flex-shrink: 0;
}

.spline-heading {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}
.spline-grad {
  background: linear-gradient(to bottom, #ffffff 0%, rgba(180,180,200,.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.spline-desc {
  color: rgba(200,200,215,.75);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 420px;
}

/* buttons flush left, brand colors */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0;
  margin-left: 0;
}
.hero-btns .btn-outline {
  border-color: rgba(0,198,183,.45);
  color: var(--white);
  background: rgba(255,255,255,.04);
}
.hero-btns .btn-outline:hover {
  border-color: var(--cyan);
  background: rgba(0,198,183,.1);
  color: var(--cyan);
}
.hero-btns .btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 24px rgba(0,198,183,.35);
}
.hero-btns .btn-primary:hover {
  box-shadow: 0 0 40px rgba(0,198,183,.55);
}

/* ---- Spline right pane ---- */
.robot-chest-logo {
  position: absolute;
  left: 48%;
  top: 38%;
  width: 48px;
  height: 48px;
  object-fit: contain;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 0 10px rgba(0,185,228,.7)) drop-shadow(0 0 22px rgba(0,122,201,.5));
}
.spline-right {
  flex: 1;
  position: relative;
  touch-action: none;
}
spline-viewer {
  display: block;
  touch-action: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* ---- Loader ---- */
.spline-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}
.spin-loader {
  display: block;
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  /* Hero: auto height, no section padding leaking at bottom */
  .hero { height: auto; padding-bottom: 0; }
  .hero-spline-container { position: relative; inset: auto; top: 0; width: 100%; height: auto; }
  .spline-card   { height: auto; display: flex; flex-direction: column; }
  .spline-layout { flex-direction: column; height: auto; }

  /* Center all hero text */
  .spline-left {
    padding: 32px 24px 16px;
    flex: none;
    align-items: center;
    text-align: center;
  }
  .spline-desc      { text-align: center; max-width: 100%; }
  .hero-btns        { justify-content: center; }
  .nexura-powered   { justify-content: center; }

  /* Robot pane: viewport-proportional height so the full robot is visible */
  .spline-right { flex: none; width: 100%; height: 85vw; min-height: 320px; max-height: 520px; }
}

/* Description */
.hero-desc {
  font-size: 1.1rem;
  max-width: 560px;
  line-height: 1.75;
  color: var(--gray);
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dash-card {
  width: 100%;
  max-width: 420px;
  background: rgba(9,28,82,.6);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.dash-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  animation: dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink { 0%,100%{opacity:1;} 50%{opacity:.25;} }
.dash-title { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.dash-row:last-child { border-bottom: none; }
.dash-label { font-size: .875rem; color: var(--gray); }
.dash-val {
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  position: absolute;
  background: rgba(4,9,33,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,198,183,.28);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--cyan);
  white-space: nowrap;
}
.badge-1 { top: 8%; right: -12px; animation: float 3.2s ease-in-out infinite; }
.badge-2 { bottom: 12%; left: -24px; animation: float 3.2s ease-in-out infinite .8s; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

/* ============================================================
   SECTION BASE
   ============================================================ */
section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header p { margin-top: 14px; font-size: 1.05rem; }

/* divider line */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,198,183,.35), transparent);
  margin: 0;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #081b55 50%, var(--bg-dark) 100%);
  position: relative;
  overflow: hidden;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.m-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.m-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity .35s ease;
}
.m-card:hover { transform: translateY(-8px); border-color: rgba(0,198,183,.3); box-shadow: 0 28px 56px rgba(0,0,0,.35); }
.m-card:hover::before { opacity: 1; }
.m-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,122,201,.28), rgba(0,198,183,.28));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.m-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.m-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.m-card p  { font-size: .9375rem; }

/* ============================================================
   WHY BANKNBOX AI — BENTO GRID
   ============================================================ */
.why-section { background: var(--bg-dark); }

/* Grid layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bento-span-2 { grid-column: span 2; }

/* Card base */
.bento-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(9,28,82,.45);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  will-change: transform;
}
.bento-card:hover,
.bento-persistent {
  transform: translateY(-4px);
  border-color: rgba(0,185,228,.3);
  box-shadow: 0 2px 24px rgba(0,185,228,.07), 0 16px 40px rgba(0,0,0,.3);
}

/* Dot pattern overlay (from bento-grid component) */
.bento-dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(0,185,228,.045) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.bento-card:hover .bento-dot-pattern,
.bento-persistent .bento-dot-pattern { opacity: 1; }

/* Gradient glow border (inner) */
.bento-glow-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, transparent, rgba(0,185,228,.06), transparent);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 0;
}
.bento-card:hover .bento-glow-border,
.bento-persistent .bento-glow-border { opacity: 1; }

/* Card inner content */
.bento-inner {
  position: relative;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

/* Top row: icon + status */
.bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bento-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0,185,228,.1);
  border: 1px solid rgba(0,185,228,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  transition: background .3s ease;
}
.bento-card:hover .bento-icon {
  background: linear-gradient(135deg, rgba(0,122,201,.22), rgba(0,185,228,.22));
}
.bento-status {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
  transition: background .25s, color .25s;
}
.bento-card:hover .bento-status,
.bento-persistent .bento-status {
  background: rgba(0,185,228,.15);
  color: var(--cyan);
}

/* Body: title + desc */
.bento-body { flex: 1; }
.bento-title {
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
  tracking: tight;
}
.bento-meta {
  font-size: .72rem;
  font-weight: 400;
  color: rgba(255,255,255,.38);
  margin-left: 6px;
}
.bento-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.58);
  line-height: 1.65;
  margin: 0;
}

/* Footer: tags + cta */
.bento-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.bento-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bento-tag {
  font-size: .68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
  transition: background .2s, color .2s;
}
.bento-tag:hover {
  background: rgba(0,185,228,.14);
  color: var(--cyan);
}

/* Responsive */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-span-2 { grid-column: span 2; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 { grid-column: span 1; }
}

/* ============================================================
   BATTLE-TESTED
   ============================================================ */
.battle {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.battle-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.battle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,9,33,.72) 0%, rgba(4,9,33,.58) 50%, rgba(4,9,33,.72) 100%);
}
.battle .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}
.battle h2 {
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
  font-size: clamp(2rem, 4vw, 3rem);
}
.battle p  { font-size: 1.05rem; margin-bottom: 38px; color: rgba(220,220,220,.95); text-shadow: 0 1px 8px rgba(0,0,0,.4); }

/* ============================================================
   PRODUCT / AGENTS
   ============================================================ */
.product { background: var(--bg-dark); }

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.agent-card {
  background: linear-gradient(145deg, rgba(9,28,82,.85), rgba(4,9,33,.95));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.agent-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transition: transform .35s ease;
}
.agent-card:hover { transform: translateY(-8px); border-color: rgba(0,198,183,.22); box-shadow: 0 36px 72px rgba(0,0,0,.45); }
.agent-card:hover::after { transform: scaleX(1); }

.agent-num {
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.agent-card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.agent-card p  { font-size: .9375rem; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag {
  font-size: .72rem;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,198,183,.1);
  color: var(--cyan);
  border: 1px solid rgba(0,198,183,.2);
  font-weight: 700;
  letter-spacing: .03em;
}

/* ============================================================
   ORBITAL SECTION
   ============================================================ */
.orbital-section {
  background: var(--bg-dark);
  overflow: hidden;
  padding-bottom: 80px;
}

.orbital-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 48px 24px 0;
  text-align: center;
}
.orbital-cta-text {
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.65;
}

.orbital-scene {
  position: relative;
  width: 100%;
  height: 680px;
  margin-top: 20px;
  user-select: none;
}

.orb-center-el {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  pointer-events: none;
}

.orb-ping {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(0,198,183,.5);
  animation: orb-ping 2.4s ease-out infinite;
}
.orb-ping-1 { width: 72px; height: 72px; }
.orb-ping-2 { width: 72px; height: 72px; animation-delay: 1.2s; }

@keyframes orb-ping {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(3.2); opacity: 0; }
}

.orb-core {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #00C6B7, #007AC9 55%, rgba(0,60,140,.3) 100%);
  box-shadow:
    0 0 0 2px rgba(0,198,183,.25),
    0 0 24px rgba(0,198,183,.6),
    0 0 60px rgba(0,122,201,.35);
  position: relative;
  z-index: 2;
}

.orb-ring-el {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(0,198,183,.15);
  box-shadow: 0 0 40px rgba(0,198,183,.04) inset;
  pointer-events: none;
}

.orb-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  overflow: visible;
}

.orb-node {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  transition: opacity .35s ease;
}

.orb-node-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.orb-node-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(7,18,60,.92);
  color: var(--cyan);
  border: 2px solid rgba(0,198,183,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 0 14px rgba(0,198,183,.15);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.orb-node:hover .orb-node-icon,
.orb-node.active .orb-node-icon {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0,198,183,.55);
  transform: scale(1.12);
}
.orb-node.highlighted .orb-node-icon {
  border-color: rgba(0,185,228,.65);
  box-shadow: 0 0 18px rgba(0,185,228,.35);
}

.orb-node-label {
  font-size: .68rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  text-align: center;
  max-width: 90px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s;
}
.orb-node.active .orb-node-label { color: var(--cyan); }

.orb-card {
  position: absolute;
  width: 280px;
  background: rgba(7,20,70,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,198,183,.28);
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: 0 24px 72px rgba(0,0,0,.6), 0 0 40px rgba(0,198,183,.08);
  z-index: 200;
  animation: card-pop .22s cubic-bezier(.22,.68,0,1.2) forwards;
}
@keyframes card-pop {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

.orb-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding-right: 20px;
}
.orb-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,122,201,.4), rgba(0,198,183,.35));
  border: 1px solid rgba(0,198,183,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.orb-card-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}
.orb-card-desc {
  font-size: .8rem;
  color: rgba(200,210,230,.72);
  line-height: 1.65;
  margin-bottom: 14px;
}
.orb-card-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.orb-status-badge {
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.orb-status-badge.active     { background: rgba(0,198,183,.12); color: var(--cyan); border: 1px solid rgba(0,198,183,.25); }
.orb-status-badge.processing { background: rgba(0,122,201,.12); color: #5bc4ff;     border: 1px solid rgba(0,122,201,.3); }
.orb-status-badge.standby    { background: rgba(255,255,255,.06); color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.1); }

.orb-energy-label {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 600;
}
.orb-energy-track {
  height: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin-top: 4px;
}
.orb-energy-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width .65s cubic-bezier(.22,.68,0,1);
  width: 0%;
}

.orb-close-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  line-height: 1;
}
.orb-close-btn:hover { background: rgba(255,255,255,.14); color: #fff; }

@media (max-width: 768px) {
  .orbital-scene { height: 520px; }
  .orb-ring-el   { width: 320px; height: 320px; }
  .orb-card      { width: 220px; padding: 18px 16px 14px; }
  .orb-node-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}

/* ============================================================
   EXPERTISE / VIDEO
   ============================================================ */
.expertise {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #061340 100%);
}
.video-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 48px 96px rgba(0,0,0,.55);
}
.video-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 80px;
}
.exp-card {
  text-align: center;
  padding: 40px 24px;
}
.exp-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,122,201,.2), rgba(0,198,183,.2));
  border: 1px solid rgba(0,198,183,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 22px;
  color: var(--cyan);
}
.exp-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.exp-card p  { font-size: .9375rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.contact-shader-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,122,201,.13) 0%, transparent 70%);
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; text-align: center; }
.contact-box {
  background: linear-gradient(135deg, rgba(11,34,101,.8), rgba(9,28,82,.55));
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 80px 60px;
  max-width: 820px;
  margin: 0 auto;
}
.contact-box h2 { margin-bottom: 14px; }

/* Typewriter reveal */
.tw-heading {
  clip-path: inset(0 100% 0 0);
}
.tw-heading.tw-revealed {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.tw-cursor {
  display: inline-block;
  width: 3px;
  height: 0.72em;
  background: var(--cyan);
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 6px;
  animation: tw-blink 0.8s ease-in-out infinite;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Mobile nav animations */
@keyframes mnSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mnItemIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contact-box p  { font-size: 1.05rem; margin-bottom: 38px; }
.contact-btns   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: linear-gradient(180deg, #061340 0%, #040921 100%);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 32px;
}
.footer-logo img { height: 46px; width: auto; object-fit: contain; margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: .9375rem;
  transition: color .2s;
}
.footer-link:hover { color: var(--cyan); }
.footer-link svg { width:16px; height:16px; flex-shrink:0; opacity:.55; }

.footer-nav-wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  align-content: start;
}
.fnav-group h4 {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.fnav-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fnav-group a { color: var(--gray); font-size: .9375rem; transition: color .2s; }
.fnav-group a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .875rem; color: var(--muted); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,185,228,.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s ease, transform .3s ease, box-shadow .25s ease;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  box-shadow: 0 8px 32px rgba(0,185,228,.55);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  #back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ============================================================
   JOIN-US PAGE
   ============================================================ */
.join-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background:
    radial-gradient(ellipse 70% 60% at 30% 60%, rgba(0,122,201,.2) 0%, transparent 65%),
    linear-gradient(150deg, #040921 0%, #0B2265 60%, #040921 100%);
}
.join-hero .container { padding-top: 60px; padding-bottom: 60px; }
.join-hero h1 { margin-bottom: 20px; }
.join-hero p  { font-size: 1.05rem; max-width: 640px; }

.team-section { background: var(--bg-dark); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 16px;
}
.team-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-photo:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,.45); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.apply-section { background: linear-gradient(180deg, var(--bg-dark) 0%, #081b55 100%); }

.apply-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 24px;
  padding: 56px 48px;
}

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

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font);
  font-size: .9375rem;
  padding: 13px 18px;
  outline: none;
  transition: border-color .25s ease, background .25s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(0,198,183,.06);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.upload-zone {
  border: 2px dashed rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease;
  margin-bottom: 20px;
}
.upload-zone:hover { border-color: var(--cyan); background: rgba(0,198,183,.05); }
.upload-icon { font-size: 2rem; margin-bottom: 10px; }
.upload-zone p { font-size: .875rem; color: var(--muted); margin: 0; }
.upload-zone strong { color: var(--cyan); }
.upload-zone input { display: none; }

.form-submit { width: 100%; padding: 16px; font-size: 1rem; border-radius: 12px; margin-top: 8px; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .mission-grid, .agents-grid, .exp-grid { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(4,1fr); }
}

/* ============================================================
   AI VALUE CREATION
   ============================================================ */
.ai-value-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #081b55 50%, var(--bg-dark) 100%);
}
.av-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.av-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.av-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity .35s ease;
}
.av-card:hover { transform: translateY(-6px); border-color: rgba(0,198,183,.3); box-shadow: 0 24px 48px rgba(0,0,0,.3); }
.av-card:hover::before { opacity: 1; }
.av-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 10px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.av-cx { background: rgba(0,122,201,.2);  color: #5bc4ff;   border: 1px solid rgba(0,122,201,.3); }
.av-op { background: rgba(0,198,183,.15); color: var(--cyan); border: 1px solid rgba(0,198,183,.25); }
.av-rk { background: rgba(120,60,200,.2); color: #b89cff;  border: 1px solid rgba(120,60,200,.3); }
.av-gr { background: rgba(0,180,100,.15); color: #5de6a0;  border: 1px solid rgba(0,180,100,.25); }
.av-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.av-card > p { font-size: .9375rem; margin-bottom: 18px; }
.av-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.av-list li {
  font-size: .875rem;
  color: rgba(200,220,230,.75);
  padding-left: 18px;
  position: relative;
}
.av-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: .75rem;
}
.av-note {
  background: rgba(0,198,183,.06);
  border: 1px solid rgba(0,198,183,.2);
  border-radius: 12px;
  padding: 18px 28px;
  font-size: .9375rem;
  color: var(--gray);
  text-align: center;
}
.av-note span { color: var(--cyan); font-weight: 700; }

/* ============================================================
   USE CASE LANDSCAPE
   ============================================================ */
.landscape-section { background: var(--bg-dark); }
.landscape-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ls-col {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  transition: transform .3s ease, border-color .3s ease;
}
.ls-col:hover { transform: translateY(-4px); border-color: rgba(0,198,183,.25); }
.ls-header {
  padding: 18px 28px;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.ls-front { background: linear-gradient(135deg, rgba(0,122,201,.6), rgba(0,90,180,.4)); }
.ls-mid   { background: linear-gradient(135deg, rgba(0,185,228,.55), rgba(0,140,200,.35)); }
.ls-back  { background: linear-gradient(135deg, rgba(11,34,101,.8), rgba(0,122,201,.35)); }
.ls-list { list-style: none; padding: 22px 28px 28px; display: flex; flex-direction: column; gap: 14px; }
.ls-list li {
  font-size: .9rem;
  color: var(--gray);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.ls-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: .7;
}

/* ============================================================
   USE CASES DEEP DIVE (TABS)
   ============================================================ */
.uc-detail-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #081b55 60%, var(--bg-dark) 100%);
}
.uc-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.uc-tab {
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.6);
  transition: all .25s ease;
}
.uc-tab:hover { border-color: var(--cyan); color: var(--white); background: rgba(0,198,183,.08); }
.uc-tab.active {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0,183,210,.3);
}
.uc-panel { display: none; }
.uc-panel.active {
  display: block;
  animation: panel-fade .3s ease;
}
@keyframes panel-fade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.uc-panel-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.uc-panel-header h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 10px; }
.uc-panel-header > p { font-size: 1rem; }
.uc-outcome {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(0,198,183,.08);
  border: 1px solid rgba(0,198,183,.22);
  font-size: .85rem;
  font-weight: 600;
  color: var(--cyan);
}
.uc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.uc-card {
  background: rgba(9,28,82,.5);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  transition: transform .3s ease, border-color .3s ease;
}
.uc-card:hover { transform: translateY(-4px); border-color: rgba(0,198,183,.25); }
.uc-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}
.uc-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.uc-card p  { font-size: .875rem; line-height: 1.65; }

/* ============================================================
   IMPLEMENTATION ROADMAP
   ============================================================ */
.roadmap-section { background: var(--bg-dark); }
.rm-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.rm-step {
  flex: 1;
  background: rgba(9,28,82,.5);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform .35s ease, border-color .35s ease;
}
.rm-step:hover { transform: translateY(-6px); border-color: rgba(0,198,183,.3); }
.rm-phase {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.rm-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,122,201,.25), rgba(0,198,183,.25));
  border: 1px solid rgba(0,198,183,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--cyan);
}
.rm-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.rm-step p  { font-size: .875rem; line-height: 1.6; }
.rm-connector {
  flex: 0 0 40px;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,198,183,.35), rgba(0,122,201,.35));
  position: relative;
  flex-shrink: 0;
}
.rm-connector::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(0,198,183,.55);
}

/* ============================================================
   AI PRIORITY MAP
   ============================================================ */
.priority-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #061340 100%);
}
.pm-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.pm-item {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(9,28,82,.5);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.pm-item:hover {
  transform: translateX(6px);
  border-color: rgba(0,198,183,.3);
  box-shadow: -4px 0 20px rgba(0,198,183,.07);
}
.pm-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 50px;
  text-align: center;
  line-height: 1;
}
.pm-body { flex: 1; }
.pm-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.pm-body p  { font-size: .875rem; line-height: 1.55; }
.pm-tags { display: flex; flex-wrap: wrap; gap: 6px; flex-shrink: 0; }
.pm-note {
  max-width: 900px;
  margin: 32px auto 0;
  text-align: center;
  padding: 18px 28px;
  background: rgba(0,198,183,.06);
  border: 1px solid rgba(0,198,183,.2);
  border-radius: 12px;
  font-size: .9375rem;
  color: var(--gray);
}
.pm-note strong { color: var(--cyan); }

/* ============================================================
   RESPONSIVE (new sections)
   ============================================================ */
@media (max-width: 768px) {
  .av-grid { grid-template-columns: 1fr; }
  .landscape-grid { grid-template-columns: 1fr; }
  .uc-cards { grid-template-columns: 1fr; }
  .rm-steps { flex-direction: column; align-items: stretch; }
  .rm-connector {
    flex: 0 0 24px;
    width: 2px;
    height: 24px;
    align-self: center;
    background: linear-gradient(180deg, rgba(0,198,183,.35), rgba(0,122,201,.35));
  }
  .rm-connector::after {
    right: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid rgba(0,198,183,.55);
    border-bottom: none;
  }
  .pm-item { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pm-tags { width: 100%; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  nav { padding: 0 20px; }

  .nav-limelight { display: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    transform: none;
    background: var(--dark-blue);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 18px 32px; font-size: 1.05rem; font-weight: 600; }
  .nav-links .nav-cta a {
    margin: 8px 24px 4px;
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 100px;
    background: var(--grad);
    color: #fff;
    font-weight: 700;
  }
  .nav-toggle { display: flex; }

  .mission-grid, .agents-grid, .exp-grid { grid-template-columns: 1fr; }
  .contact-box { padding: 48px 28px; }
  .footer-nav-wrap { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .apply-form { padding: 36px 24px; }

  /* Footer mobile centering */
  .footer-main { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-links { align-items: center; }
  .footer-nav-wrap { justify-items: center; }
  .fnav-group { text-align: center; }
  .fnav-group ul { align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  footer img { margin: 0 auto 22px; }
}
