/* =========================================================
   DeltaTech Innovations — global styles
   Brand: dark navy + signature yellow
   ========================================================= */

:root {
  /* ----- shared tokens (don't change per theme) ----- */
  --yellow: #ffd028;
  --yellow-soft: #ffe27a;
  --yellow-glow: rgba(255, 208, 40, 0.45);
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;

  /* ----- DARK theme (default) ----- */
  --navy-900: #07090f;
  --navy-800: #0b0f1c;
  --navy-700: #131829;
  --navy-600: #1c2238;
  --navy-500: #2a3150;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f3f4f7;
  --text-dim: #aab0c0;
  --text-faint: #7a8095;
  --surface-card: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  --surface-card-strong: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  --input-bg: rgba(255,255,255,0.04);
  --input-bg-focus: rgba(255,255,255,0.06);
  --nav-bg: rgba(7, 9, 15, 0.78);
  --nav-bg-scrolled: rgba(7, 9, 15, 0.92);
  --blob-1: rgba(255, 208, 40, 0.55);
  --blob-2: rgba(72, 100, 255, 0.35);
  --blob-3: rgba(255, 100, 80, 0.22);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--navy-900);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
fieldset { border: 0; margin: 0; padding: 0; }
legend { padding: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =========================================================
   Decorative backdrop (CSS only — paints instantly, blurred while 3D loads)
   ========================================================= */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(255, 208, 40, 0.06), transparent 60%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
  animation: blobFloat 22s ease-in-out infinite;
}
.blob-1 { width: 540px; height: 540px; top: -120px; left: -120px;  background: radial-gradient(circle, var(--blob-1), transparent 70%); animation-delay: 0s; }
.blob-2 { width: 520px; height: 520px; bottom: 10%; right: -80px;   background: radial-gradient(circle, var(--blob-2), transparent 70%); animation-delay: -6s; }
.blob-3 { width: 420px; height: 420px; top: 55%; left: 30%;          background: radial-gradient(circle, var(--blob-3), transparent 70%); animation-delay: -12s; }

@keyframes blobFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33%      { transform: translate3d(40px, -30px, 0) scale(1.05); }
  66%      { transform: translate3d(-30px, 40px, 0) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  opacity: 0.7;
}

/* =========================================================
   Loader
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  width: 64px; height: 64px;
  animation: pulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 24px var(--yellow-glow));
}
.loader-bar {
  position: absolute;
  bottom: 20%;
  width: 160px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  width: 40%; height: 100%;
  background: var(--yellow);
  animation: loaderSlide 1.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.92); opacity: 0.7; }
}
@keyframes loaderSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* =========================================================
   Nav
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  background: var(--nav-bg-scrolled);
  box-shadow: 0 8px 32px -16px rgba(0, 0, 0, 0.6);
  border-bottom-color: var(--line-strong);
}

.nav-brand img {
  background: #fff;
  padding: 4px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nav-brand img { border-radius: 8px; }
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--font-display);
}
.nav-brand-text strong { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.nav-brand-text em {
  font-style: normal; font-size: 11px; color: var(--text-faint); margin-top: 2px;
  letter-spacing: 0.18em; text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  color: var(--text-dim);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: #0c111d;
  font-weight: 600;
  font-size: 14px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px var(--yellow-glow);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 860px) {
  .nav-actions .nav-cta { display: none; }
  .nav-actions { gap: 4px; }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text);
  margin: 4px 0; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--nav-bg-scrolled);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s var(--ease);
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
  user-select: none;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy-900);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px var(--yellow-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--yellow);
}

/* =========================================================
   Shared typography / reveal
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 208, 40, 0.15);
  animation: dotPulse 2.2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 208, 40, 0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 208, 40, 0.0); }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  font-weight: 600;
}
.section-title em {
  font-style: normal;
  color: var(--yellow);
  background: linear-gradient(180deg, var(--yellow), var(--yellow-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head { margin-bottom: 56px; }

/* Reveal helpers (JS removes the initial state via .is-in) */
.reveal, .reveal-up, .reveal-line span {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.is-in, .reveal-up.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-line { display: block; overflow: hidden; }
.reveal-line span {
  display: inline-block;
  transition: transform 1s var(--ease-out), opacity 1s var(--ease-out);
}
.reveal-line.is-in span { opacity: 1; transform: translateY(0); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 140px var(--gutter) 80px;
}
.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  font-weight: 600;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: normal;
  background: linear-gradient(180deg, var(--yellow), var(--yellow-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 620px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  margin: 0 0 36px;
}

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

.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: inline-flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.marquee-track span:nth-child(even) { color: var(--yellow); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
  background-size: 1px 200%;
  animation: scrollLine 2.2s linear infinite;
}
@keyframes scrollLine {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0  100%; }
}
@media (max-width: 720px) {
  .hero-scroll { display: none; }
}

/* =========================================================
   Pillars
   ========================================================= */
.pillars {
  padding: 80px 0 60px;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pillar {
  position: relative;
  padding: 36px 28px;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at var(--mx, 50%) var(--my, -10%), rgba(255, 208, 40, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surface-card-strong);
}
.pillar:hover::before { opacity: 1; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--yellow);
  letter-spacing: 0.2em;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 16px 0 10px;
}
.pillar p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   About
   ========================================================= */
.about {
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-copy p {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 0 22px;
}
.about-copy strong { color: var(--text); font-weight: 500; }

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--text) !important;
  letter-spacing: -0.01em;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 32px !important;
}
.big-quote em {
  font-style: normal;
  color: var(--yellow);
  font-weight: 500;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.stat {
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--surface-card);
  text-align: left;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--text), var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   Why
   ========================================================= */
.why {
  padding: 80px 0 140px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.why-card::after {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 40, 0.15), transparent 70%);
  top: -60px; right: -60px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}
.why-card:hover::after { opacity: 1; }
.why-icon {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  background: rgba(255, 208, 40, 0.1);
  color: var(--yellow);
  border-radius: 12px;
  font-size: 18px;
  margin-bottom: 18px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.why-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Globe section
   ========================================================= */
.globe-section {
  position: relative;
  padding: 80px 0 140px;
  overflow: hidden;
  isolation: isolate;
  /* Opaque section background so the page-wide blob gradients don't bleed in */
  background:
    radial-gradient(ellipse at 65% 50%, rgba(40, 60, 110, 0.18), transparent 55%),
    var(--navy-900);
}
.globe-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.globe-copy .globe-lead {
  font-size: 18px;
  color: var(--text-dim);
  margin: 0 0 40px;
}

.globe-clients {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
  counter-reset: ci;
}
.globe-client {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-card);
  cursor: pointer;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.globe-client:hover { transform: translateX(4px); border-color: var(--line-strong); }
.globe-client.is-active {
  border-color: var(--yellow);
  background: rgba(255, 208, 40, 0.06);
}
.globe-client-flag {
  font-size: 28px;
  line-height: 1;
  align-self: center;
}
.globe-client h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.globe-tag {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 208, 40, 0.12);
  border: 1px solid rgba(255, 208, 40, 0.35);
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}
.globe-client p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.55;
}

.globe-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}
.globe-stage-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
#globeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.globe-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
}
.globe-fallback-orb {
  display: none;
}
@keyframes orbFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.05) translateY(-12px); }
}
/* .globe-glow removed — atmosphere is now done by the WebGL shader only,
   so there's no rectangular CSS halo bleeding around the canvas. */

/* Globe tooltip — shown when a pin is clicked */
.globe-tooltip {
  position: absolute;
  z-index: 6;
  padding: 10px 14px;
  background: rgba(11, 15, 28, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--yellow);
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px)) scale(0.95);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.6),
              0 0 24px -4px rgba(255, 208, 40, 0.25);
}
.globe-tooltip::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 10px; height: 10px;
  background: rgba(11, 15, 28, 0.92);
  border-right: 1px solid var(--yellow);
  border-bottom: 1px solid var(--yellow);
  transform: translateX(-50%) rotate(45deg);
}
.globe-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 14px)) scale(1);
}
.globe-tooltip strong {
  color: var(--yellow);
  font-weight: 600;
  margin-right: 6px;
}

.globe-hint {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 5;
}
.globe-hint-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: dotPulse 2.2s ease-in-out infinite;
}

#globeCanvas { cursor: grab; }
#globeCanvas.is-hovering-pin { cursor: pointer; }
#globeCanvas.is-dragging { cursor: grabbing; }

@media (max-width: 980px) {
  .globe-container { grid-template-columns: 1fr; gap: 32px; }
  .globe-stage { max-width: 420px; }
}

/* =========================================================
   Contact / Form
   ========================================================= */
.contact {
  padding: 60px 0 100px;
  position: relative;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-copy p { color: var(--text-dim); font-size: 17px; margin: 0 0 28px; }

.contact-details {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid;
  gap: 4px;
}
.contact-details li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-details li:last-child { border-bottom: 1px solid var(--line); }
.contact-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 4px;
}
.contact-details a {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  transition: color .2s var(--ease);
  border-bottom: 1px dashed rgba(255,255,255,0.18);
  padding-bottom: 2px;
}
.contact-details a:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.contact-details address { font-style: normal; font-size: 15px; line-height: 1.6; color: var(--text-dim); }

/* Form */
.contact-form {
  padding: 36px;
  background: var(--surface-card-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 208, 40, 0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.contact-form-title {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}
.field label small { font-size: 11px; color: var(--text-faint); text-transform: none; letter-spacing: 0; }
.field .req { color: var(--yellow); }

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--input-bg-focus);
  box-shadow: 0 0 0 4px rgba(255, 208, 40, 0.12);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field select option { background: var(--navy-700); color: var(--text); }

.field-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-radio legend {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.contact-radio {
  display: grid;
  gap: 8px;
}
.contact-radio > label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--input-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-radio > label:has(input:checked) {
  border-color: var(--yellow);
  background: rgba(255, 208, 40, 0.08);
}
.contact-radio input { accent-color: var(--yellow); margin: 0; }

.urgency-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.urgency-row label {
  display: grid;
  place-items: center;
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--input-bg);
  font-size: 14px;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.urgency-row label input { display: none; }
.urgency-row label:has(input:checked) {
  border-color: var(--yellow);
  background: rgba(255, 208, 40, 0.12);
  color: var(--yellow);
  font-weight: 600;
}

.contact-submit {
  grid-column: 1 / -1;
  position: relative;
  width: 100%;
  padding: 16px;
  font-size: 16px;
}
.contact-submit.is-loading .btn-label { opacity: 0; }
.contact-submit.is-loading .btn-spinner { opacity: 1; }
.btn-spinner {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(7, 9, 15, 0.3);
  border-top-color: var(--navy-900);
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.contact-status {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 22px;
  font-size: 14px;
  color: var(--text-dim);
}
.contact-status.is-success { color: var(--yellow); }
.contact-status.is-error { color: #ff7a7a; }

@media (max-width: 980px) {
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .field-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-details li { grid-template-columns: 90px 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  margin: 0;
  font-size: 13px;
  color: var(--text-faint);
}
.footer-vivid {
  margin: 0;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--yellow);
}

/* =========================================================
   Selection
   ========================================================= */
::selection {
  background: var(--yellow);
  color: #0c111d;
}

