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

:root {
  --navy: #0a0a0a;
  --navy2: #111111;
  --navy3: #181818;
  --navy4: #202020;
  --border: rgba(192,192,192,0.1);
  --border2: rgba(192,192,192,0.18);
  --white: #f0f0f0;
  --muted: rgba(240,240,240,0.5);
  --dim: rgba(240,240,240,0.28);
  --steel: #c0c0c0;
  --accent: #999999;
}

html { background: var(--navy); color: var(--white); scroll-behavior: smooth; }
body { font-family: 'Space Grotesk', sans-serif; overflow-x: hidden; }

/* ── PAGE ENTER ANIMATIONS ── */
@keyframes pgFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

nav {
  animation: pgFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero {
  animation: pgFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.page-hero {
  animation: pgFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}
.marquee-wrap {
  animation: pgFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}
.stats-bar {
  animation: pgFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}
.about-section, .services-grid, .metrics-section,
.network-section, .partners-section, .news-section,
.contact-section {
  animation: pgFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  height: 84px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-mark {
  width: auto; height: 56px; flex-shrink: 0;
  object-fit: contain;
  mix-blend-mode: screen;
  vertical-align: middle;
}
.nav-logo-text {
  display: none;
}
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--white) !important; color: var(--navy) !important;
  padding: 10px 22px; font-weight: 700 !important;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; cursor: pointer; gap: 6px;
  background: none; border: none; padding: 0; z-index: 300;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1),
              opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.drawer-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 250;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 260;
  width: min(320px, 85vw);
  background: var(--navy2);
  border-right: 1px solid var(--border2);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  height: 72px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  margin-left: -12px;
}
.drawer-logo .nav-logo-mark {
  height: 64px;
}
.drawer-logo-text {
  display: none;
}
.drawer-close {
  width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color 0.2s;
}
.drawer-close:hover { color: var(--white); }
.drawer-close svg { width: 18px; height: 18px; }

.drawer-nav {
  padding: 24px 28px 24px;
  display: flex; flex-direction: column;
}
.drawer-nav-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--muted);
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: color 0.2s, padding-left 0.2s,
              opacity 0.4s ease, transform 0.4s ease;
}
.drawer-nav-item:last-child { border-bottom: none; }
.drawer-nav-item:hover { color: var(--white); padding-left: 6px; }
.drawer-nav-item svg { width: 14px; height: 14px; opacity: 0.4; }

.drawer.open .drawer-nav-item { opacity: 1; transform: translateY(0); }
.drawer.open .drawer-nav-item:nth-child(1) { transition-delay: 0.12s; }
.drawer.open .drawer-nav-item:nth-child(2) { transition-delay: 0.18s; }
.drawer.open .drawer-nav-item:nth-child(3) { transition-delay: 0.24s; }
.drawer.open .drawer-nav-item:nth-child(4) { transition-delay: 0.30s; }
.drawer.open .drawer-nav-item:nth-child(5) { transition-delay: 0.36s; }

.drawer-cta {
  margin: 0 28px 28px;
  display: block; text-align: center;
  background: var(--white); color: var(--navy);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 16px;
  text-decoration: none; flex-shrink: 0;
  transition: opacity 0.2s;
}
.drawer-cta:hover { opacity: 0.88; }

.drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-footer-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 10px;
}
.drawer-footer-contact {
  font-size: 12px; color: var(--muted); line-height: 1.7;
}

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex; flex-direction: column;
  overflow: hidden;
  justify-content: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('about-ship.jpg');
  background-size: cover; background-position: center center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.85) 80%,
    rgba(0,0,0,1) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--steel);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--steel);
}
.hero h1 {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: var(--white);
}
.hero h1 em { font-style: normal; color: var(--steel); }
.hero-right { padding-bottom: 8px; }
.hero-desc {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  margin-bottom: 36px; max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; }
.btn-primary {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 30px; background: var(--white); color: var(--navy);
  text-decoration: none; transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 15px 30px; border: 1px solid var(--border2); color: var(--white);
  text-decoration: none; transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

/* ── SUBSIDIARY MARQUEE ── */
.marquee-wrap {
  background: var(--navy2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: 48px;
  padding: 0 48px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.marquee-item:last-child { border-right: none; }
.marquee-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--steel); flex-shrink: 0;
}

/* ── STATS BAR ── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 52px 48px; border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: 52px; font-weight: 700; letter-spacing: -0.03em;
  color: var(--steel); line-height: 1; margin-bottom: 8px;
}
.stat-num sup { font-size: 24px; font-weight: 500; }
.stat-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.stat-desc { font-size: 12px; color: var(--dim); margin-top: 6px; line-height: 1.5; }

/* ── COMMON SECTION ── */
.section { padding: 100px 60px; }
.section-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--steel);
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.section-label::after {
  content: ''; width: 36px; height: 1px; background: var(--steel); opacity: 0.4;
}
.section-title {
  font-size: clamp(34px, 4vw, 56px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.0; color: var(--white);
}
.section-body {
  font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 560px;
}

/* ── ABOUT ── */
.about-section { background: var(--navy2); border-top: 1px solid rgba(192,192,192,0.12); padding: 0; }
.about-hero-img {
  position: relative;
  width: 100%;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
  margin-top: 84px;
}
.about-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  filter: brightness(0.82);
}
.about-content-wrap {
  padding: 80px 60px;
  max-width: 900px;
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch;
}
.about-image {
  position: relative; min-height: 520px; overflow: hidden;
}
.about-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  filter: brightness(0.85);
}
.about-image-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,0.9));
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.about-text { padding: 16px 0; }
.about-body { font-size: 15px; color: var(--muted); line-height: 1.85; margin-top: 24px; }
.about-body + .about-body { margin-top: 16px; }
.about-divider {
  width: 40px; height: 2px; background: var(--steel);
  margin: 32px 0;
}
.about-founded {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--dim);
}

/* ── SERVICES ── */
.services-section { background: var(--navy); padding: 100px 0; }
.services-header { padding: 0 60px; margin-bottom: 48px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.service-card {
  position: relative; height: 380px; overflow: hidden;
  cursor: pointer;
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease; filter: brightness(0.55);
}
.service-card:hover img { transform: scale(1.06); filter: brightness(0.4); }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.service-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 30px;
}
.service-num {
  font-size: 9px; font-weight: 700; letter-spacing: 0.25em;
  color: var(--steel); margin-bottom: 10px;
}
.service-name {
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 10px;
}
.service-desc {
  font-size: 12px; color: var(--muted); line-height: 1.65;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease; opacity: 0;
}
.service-card:hover .service-desc { max-height: 100px; opacity: 1; }
.service-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--steel); margin-top: 16px;
  text-decoration: none;
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover .service-arrow { opacity: 1; }

/* ── NETWORK / ROUTE MAP ── */
.network-section {
  background: var(--navy2); border-top: 1px solid rgba(192,192,192,0.12);
  padding: 100px 60px;
}
.network-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.network-map-wrap {
  position: relative; background: var(--navy3);
  border: 1px solid rgba(192,192,192,0.18); padding: 40px;
}
.network-map-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--dim); margin-bottom: 24px;
}
.route-svg { width: 100%; height: auto; display: block; }
.network-right { }
.route-list { margin-top: 40px; }
.route-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.route-item:last-child { border-bottom: none; }
.route-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--steel); flex-shrink: 0;
}
.route-cities {
  font-size: 14px; font-weight: 700; color: var(--white); flex: 1;
}
.route-type {
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.route-mode {
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 4px 10px;
  border: 1px solid var(--border2); color: var(--steel);
}

/* ── PARTNERS ── */
.partners-section { background: var(--navy); padding: 100px 60px; }
.partners-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--border); margin-top: 60px;
}
.partner-card {
  background: var(--navy2); padding: 40px 28px;
  display: flex; flex-direction: column;
  border-right: none;
  transition: background 0.2s;
}
.partner-card:hover { background: var(--navy3); }
.partner-logo-box {
  height: 64px; display: flex; align-items: center;
  margin-bottom: 20px;
}
.partner-logo-text {
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--white);
}
.partner-logo-text.small { font-size: 14px; letter-spacing: 0.05em; }
.partner-sub {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 12px;
}
.partner-desc {
  font-size: 12px; color: var(--muted); line-height: 1.65; flex: 1;
}
.partner-sector {
  display: inline-block; font-size: 8px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid rgba(192,192,192,0.2); color: var(--accent);
  padding: 4px 8px; margin-top: 20px; align-self: flex-start;
}

/* ── METRICS / BAR CHART ── */
.metrics-section {
  background: var(--navy2); border-top: 1px solid rgba(192,192,192,0.14);
  border-bottom: 1px solid rgba(192,192,192,0.14);
  padding: 80px 60px;
}
.metrics-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.bar-chart { display: flex; flex-direction: column; gap: 20px; }
.bar-item-label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.bar-name {
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; color: var(--white);
}
.bar-pct {
  font-size: 12px; font-weight: 700; color: var(--steel);
}
.bar-track {
  height: 4px; background: rgba(192,192,192,0.1); border-radius: 2px; overflow: hidden;
}
.bar-fill {
  height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--steel), #999999);
  transition: width 1s ease;
}

/* ── NEWS ── */
.news-section { background: var(--navy); padding: 100px 60px; }
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); margin-top: 60px;
}
.news-card { background: var(--navy2); overflow: hidden; }
.news-img {
  height: 220px; overflow: hidden;
}
.news-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8);
  transition: transform 0.5s ease;
}
.news-card:hover .news-img img { transform: scale(1.04); }
.news-body-wrap { padding: 28px 28px 32px; }
.news-date {
  font-size: 9px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 12px;
}
.news-title {
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--white); line-height: 1.3; margin-bottom: 12px;
}
.news-excerpt {
  font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: 24px;
}
.news-readmore {
  font-size: 10px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--steel); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: gap 0.2s;
}
.news-readmore:hover { gap: 12px; }
.news-readmore::after { content: '→'; }

/* ── CONTACT ── */
.contact-section {
  background: var(--navy2); border-top: 1px solid var(--border); padding: 100px 60px;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-detail-group { margin-bottom: 36px; }
.contact-detail-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 10px;
}
.contact-detail-value {
  font-size: 15px; font-weight: 500; color: var(--white); line-height: 1.65;
}
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field {
  background: var(--navy3); border: 1px solid var(--border);
  color: var(--white); font-family: 'Space Grotesk', sans-serif;
  font-size: 13px; padding: 14px 18px; outline: none; width: 100%;
  transition: border-color 0.2s; resize: none;
}
.form-field::placeholder { color: var(--muted); }
.form-field:focus { border-color: var(--border2); }
textarea.form-field { min-height: 120px; }
.form-submit {
  background: var(--white); color: var(--navy); border: none;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 16px 36px; cursor: pointer; align-self: flex-start;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.88; }

/* ── SERVICES PREVIEW ── */
.services-preview {
  padding: 100px 0 0;
  background: var(--navy2);
  border-top: 1px solid var(--border);
}
.services-preview-header {
  padding: 0 60px;
}
.services-preview-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.services-preview-header h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 700; letter-spacing: -0.02em; }
.services-preview-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--steel); text-decoration: none;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  transition: gap 0.2s;
}
.services-preview-link:hover { gap: 14px; }
.services-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
}
.sp-card {
  background: var(--navy2); padding: 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.2s;
  text-decoration: none;
}
.sp-card:hover { background: var(--navy3); }
.sp-num {
  font-size: 9px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--steel);
}
.sp-name {
  font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: -0.01em;
}
.sp-desc {
  font-size: 13px; color: var(--muted); line-height: 1.75; flex: 1;
}
.sp-arrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--steel); display: flex; align-items: center; gap: 6px;
  margin-top: 8px; transition: gap 0.2s;
}
.sp-card:hover .sp-arrow { gap: 12px; }

/* ── WHY PRAETORIAN ── */
.why-section {
  padding: 100px 60px;
  background: var(--navy);
  border-top: 1px solid var(--border);
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); margin-top: 56px;
}
.why-card {
  background: var(--navy2); padding: 48px 40px;
  display: flex; flex-direction: column;
  transition: background 0.2s;
}
.why-card:hover { background: var(--navy3); }
.why-num {
  font-size: clamp(36px, 4vw, 52px); font-weight: 700;
  letter-spacing: -0.03em; color: var(--steel); line-height: 1;
  margin-bottom: 16px;
}
.why-num sup { font-size: 0.45em; vertical-align: super; }
.why-label {
  font-size: 13px; font-weight: 700; color: var(--white);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 12px;
}
.why-body { font-size: 12px; color: var(--muted); line-height: 1.75; flex: 1; }

/* ── NEWS TEASER ── */
.news-teaser {
  padding: 100px 60px 0;
  background: var(--navy2);
  border-top: 1px solid var(--border);
}
.news-teaser-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.news-teaser-header h2 { font-size: clamp(28px, 3vw, 42px); font-weight: 700; letter-spacing: -0.02em; }
.news-teaser-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--steel); text-decoration: none;
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  transition: gap 0.2s;
}
.news-teaser-link:hover { gap: 14px; }
.news-teaser-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border);
}
.nt-card {
  background: var(--navy2); display: flex; gap: 32px;
  padding: 36px; text-decoration: none; transition: background 0.2s;
  align-items: flex-start;
}
.nt-card:hover { background: var(--navy3); }
.nt-img {
  width: 120px; height: 90px; flex-shrink: 0; overflow: hidden;
}
.nt-img img { width: 100%; height: 100%; object-fit: cover; }
.nt-date {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 10px;
}
.nt-title {
  font-size: 15px; font-weight: 700; color: var(--white);
  line-height: 1.4; letter-spacing: -0.01em;
}
.nt-excerpt {
  font-size: 12px; color: var(--muted); line-height: 1.7; margin-top: 8px;
}

/* ── CONTACT CTA BANNER ── */
.cta-banner {
  padding: 120px 60px;
  background: var(--navy3);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 60px;
}
.cta-banner-left h2 {
  font-size: clamp(32px, 4vw, 56px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.05; color: var(--white);
}
.cta-banner-left p {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  margin-top: 16px; max-width: 480px;
}
.cta-banner-right { flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: #0d0d0d; border-top: 1px solid rgba(192,192,192,0.15);
  padding: 72px 60px 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 32px;
}
.footer-logo-text {
  font-size: 18px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px; color: var(--muted); line-height: 1.75; max-width: 300px;
  margin-bottom: 28px;
}
.footer-contact-mini {
  font-size: 12px; color: var(--dim); line-height: 1.8;
}
.footer-col-title {
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--steel); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 11px; color: var(--dim); }

/* ── DIVIDER ── */
.full-divider { height: 1px; background: var(--border); }


/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .drawer-overlay { display: block; }
  .hero-content { grid-template-columns: 1fr; padding: 0 24px 64px; gap: 32px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 24px; }
  .about-inner, .network-inner, .metrics-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-preview { padding: 72px 0 0; }
  .services-preview-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .services-preview-grid { grid-template-columns: 1fr; }
  .why-section { padding: 72px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .news-teaser { padding: 72px 24px; }
  .news-teaser-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .news-teaser-grid { grid-template-columns: 1fr; }
  .nt-card { flex-direction: column; gap: 20px; }
  .nt-img { width: 100%; height: 180px; }
  .cta-banner { padding: 80px 24px; flex-direction: column; align-items: flex-start; gap: 36px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); background: var(--navy); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  footer { padding: 48px 24px 32px; }
  .about-section.section, .services-header, .network-section, .partners-section, .news-section, .contact-section, .metrics-section { padding-left: 24px; padding-right: 24px; }
  .about-hero-img { height: 48vw; min-height: 260px; }
  .about-content-wrap { padding: 48px 24px; }
}

/* ── INNER PAGE HERO ── */
.page-hero {
  padding: 180px 60px 80px;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}
.page-hero-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--steel);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.page-hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--steel);
}
.page-hero h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--white);
}
.page-hero p {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  margin-top: 20px; max-width: 560px;
}
@media (max-width: 960px) {
  .page-hero { padding: 160px 24px 64px; }
}

/* ═══════════════════════════════════════════
   V2 ENHANCEMENT SYSTEM — Cinematic Edition
═══════════════════════════════════════════ */

/* ── HERO TYPOGRAPHY SCALE ── */
.hero h1 {
  font-size: clamp(56px, 8vw, 118px) !important;
  line-height: 0.93 !important;
  letter-spacing: -0.04em !important;
}
.hero h1 em { color: rgba(192,192,192,0.7) !important; }

/* ── HERO OVERLAY LAYERS ── */
.hero-grain {
  position: absolute; inset: 0; z-index: 3;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  animation: grain-anim 0.35s steps(1) infinite;
}
@keyframes grain-anim {
  0%  { background-position: 0px 0px; }
  12% { background-position: -55px 32px; }
  25% { background-position: 62px -18px; }
  37% { background-position: -28px 74px; }
  50% { background-position: 82px 48px; }
  62% { background-position: -64px -34px; }
  75% { background-position: 38px 82px; }
  87% { background-position: -82px 12px; }
}

.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(192,192,192,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,192,192,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0;
  animation: fade-in-slow 3s ease 0.6s forwards;
}
@keyframes fade-in-slow { to { opacity: 1; } }

.hero-scan-line {
  position: absolute; left: 0; right: 0; height: 1px; z-index: 4;
  background: linear-gradient(90deg, transparent 0%, rgba(192,192,192,0.25) 30%, rgba(192,192,192,0.5) 50%, rgba(192,192,192,0.25) 70%, transparent 100%);
  pointer-events: none;
  animation: scan-down 7s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes scan-down {
  0%   { top: 0; opacity: 0; }
  3%   { opacity: 1; }
  97%  { opacity: 0.2; }
  100% { top: 100%; opacity: 0; }
}

/* Corner brackets */
.hero-corner-tl, .hero-corner-tr, .hero-corner-br {
  position: absolute; z-index: 4; pointer-events: none;
  width: 28px; height: 28px;
  opacity: 0;
}
.hero-corner-tl {
  top: 100px; left: 60px;
  border-top: 1px solid rgba(192,192,192,0.45);
  border-left: 1px solid rgba(192,192,192,0.45);
  animation: fade-in-slow 0.6s ease 1s forwards;
}
.hero-corner-tr {
  top: 100px; right: 60px;
  border-top: 1px solid rgba(192,192,192,0.45);
  border-right: 1px solid rgba(192,192,192,0.45);
  animation: fade-in-slow 0.6s ease 1.15s forwards;
}
.hero-corner-br {
  bottom: 84px; right: 60px;
  border-bottom: 1px solid rgba(192,192,192,0.45);
  border-right: 1px solid rgba(192,192,192,0.45);
  animation: fade-in-slow 0.6s ease 1.3s forwards;
}

/* Status indicator */
.hero-status {
  position: absolute; top: 110px; right: 60px; z-index: 5;
  display: flex; align-items: center; gap: 8px;
  font-size: 8px; font-weight: 700; letter-spacing: 0.3em;
  color: rgba(192,192,192,0.45); text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  animation: fade-in-slow 0.6s ease 1.5s forwards;
}
.hero-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.8);
  animation: pulse-status 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-status {
  0%, 100% { box-shadow: 0 0 6px rgba(74,222,128,0.7); }
  50%       { box-shadow: 0 0 18px rgba(74,222,128,0.9); }
}

/* Route lines SVG */
.hero-route-lines {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0;
  animation: fade-in-slow 2.5s ease 0.4s forwards;
}

/* Parallax — hero bg */
.hero-bg {
  will-change: transform;
  transform-origin: center center;
}

/* ── NAVBAR SCROLL TRANSFORMATION ── */
nav {
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              backdrop-filter 0.4s ease;
}
nav.scrolled {
  height: 64px !important;
  background: rgba(0,0,0,0.98) !important;
  border-bottom-color: rgba(192,192,192,0.12) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
}
nav.scrolled .nav-logo-mark { height: 52px; }
nav.scrolled .nav-logo-text { font-size: 13px; }
.nav-logo-mark { transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }

/* Nav link active underline */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--steel);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after { transform: scaleX(1); }

/* ── SCROLL REVEAL SYSTEM ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.revealed > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.35s; }

/* ── SERVICE CARD ENHANCEMENTS ── */
.service-card {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.service-card:hover {
  box-shadow: 0 0 0 1px rgba(192,192,192,0.2), 0 24px 60px rgba(0,0,0,0.6);
  z-index: 2;
}

/* Corner brackets on service cards */
.sc-corner {
  position: absolute; z-index: 5; width: 18px; height: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.4s ease, height 0.4s ease;
}
.sc-corner--tl { top: 14px; left: 14px; border-top: 1px solid rgba(192,192,192,0.7); border-left: 1px solid rgba(192,192,192,0.7); }
.sc-corner--tr { top: 14px; right: 14px; border-top: 1px solid rgba(192,192,192,0.7); border-right: 1px solid rgba(192,192,192,0.7); }
.sc-corner--bl { bottom: 14px; left: 14px; border-bottom: 1px solid rgba(192,192,192,0.7); border-left: 1px solid rgba(192,192,192,0.7); }
.sc-corner--br { bottom: 14px; right: 14px; border-bottom: 1px solid rgba(192,192,192,0.7); border-right: 1px solid rgba(192,192,192,0.7); }
.service-card:hover .sc-corner { opacity: 1; width: 24px; height: 24px; }

/* Service meta tag */
.service-meta-tag {
  position: absolute; top: 18px; left: 18px; z-index: 6;
  font-size: 7px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(192,192,192,0.55);
  pointer-events: none;
}

/* Service card glow on hover */
.service-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 4;
  box-shadow: inset 0 0 60px rgba(192,192,192,0.04);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

/* ── NETWORK MAP ENHANCEMENTS ── */
.route-animated {
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
}
.city-pulse {
  transform-origin: center;
  animation: none;
}
.city-pulse.active {
  animation: city-ring-pulse 3s ease-out infinite;
}
.city-pulse:nth-child(2).active { animation-delay: 0.6s; }
@keyframes city-ring-pulse {
  0%   { opacity: 0; r: 14; }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.1; r: 36; }
  100% { opacity: 0; r: 36; }
}

/* ── WHY SECTION — BACKGROUND WORD ── */
.why-section { position: relative; overflow: hidden; }
.why-bg-word {
  position: absolute;
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.022);
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}

/* ── PARTNER CARD ENHANCEMENTS ── */
.partner-card {
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(192,192,192,0.12);
}
.partner-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,192,192,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.partner-card:hover::before { opacity: 1; }

/* ── CTA BANNER ENHANCEMENTS ── */
.cta-banner {
  position: relative; overflow: hidden;
}
.cta-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,192,192,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,192,192,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.cta-scan-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,192,192,0.15), transparent);
  pointer-events: none;
  animation: scan-down 9s ease-in-out infinite 2s;
}
.cta-route-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; opacity: 0.9;
}
.cta-banner-left,
.cta-banner-right { position: relative; z-index: 2; }
.cta-meta-label {
  font-size: 8px; font-weight: 700; letter-spacing: 0.35em;
  text-transform: uppercase; color: rgba(192,192,192,0.35);
  margin-bottom: 20px;
}
.cta-banner-left h2 {
  font-size: clamp(36px, 5vw, 72px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em !important;
}

/* ── BUTTON TRANSITIONS ── */
.btn-primary, .btn-ghost {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, box-shadow 0.25s ease !important;
}
.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(240,240,240,0.4), 0 8px 24px rgba(0,0,0,0.4);
}
.btn-ghost:hover {
  box-shadow: 0 0 0 1px rgba(192,192,192,0.25);
}

/* ── SECTION RHYTHM — tonal separation ── */
.about-section {
  background: linear-gradient(180deg, var(--navy2) 0%, #0e0e0e 100%);
}
.services-preview {
  background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%);
}
.network-section {
  background: linear-gradient(180deg, #0e0e0e 0%, var(--navy2) 100%);
}
.why-section {
  background: linear-gradient(180deg, var(--navy) 0%, #0d0d0d 100%);
}
.partners-section {
  background: linear-gradient(180deg, #0d0d0d 0%, var(--navy) 100%);
}
.cta-banner {
  background: linear-gradient(135deg, #0e0e0e 0%, #141414 50%, #0a0a0a 100%);
}

/* ── STATS BAR ENHANCED ── */
.stat { position: relative; }
.stat::after {
  content: '';
  position: absolute; bottom: 0; left: 48px; right: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,192,192,0.08), transparent);
}
.stat-num {
  background: linear-gradient(180deg, #e8e8e8 0%, #8a8a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ROUTE LIST HOVER ── */
.route-item {
  transition: padding-left 0.25s ease, background 0.25s ease;
  border-radius: 0;
}
.route-item:hover {
  padding-left: 8px;
  background: rgba(255,255,255,0.02);
}
.route-dot {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.route-item:hover .route-dot {
  box-shadow: 0 0 10px rgba(192,192,192,0.6);
  transform: scale(1.3);
}

/* ── MOBILE RESPONSIVE FIXES ── */
@media (max-width: 960px) {
  .hero h1 { font-size: clamp(44px, 10vw, 72px) !important; }
  .hero-corner-tl, .hero-corner-tr, .hero-corner-br { display: none; }
  .hero-status { top: 100px; right: 24px; }
  .why-bg-word { font-size: clamp(72px, 22vw, 130px); }
  .cta-banner-left h2 { font-size: clamp(32px, 8vw, 52px) !important; }
}

/* ── MOBILE HOME PAGE — hide non-essential sections (home only) ── */
@media (max-width: 960px) {
  .page-home .about-section,
  .page-home .services-preview,
  .page-home .why-section { display: none; }
}
