/* ==========================================================================
   Future Islands Initiative — shared design system
   Cinematic, calm, tactile. Cyan + gold on deep ink.
   ========================================================================== */

:root {
  --bg-deep: #04070d;
  --bg-dusk: #0a1422;
  --bg-dusk-2: #0d1827;

  --cyan: #3fd1ff;
  --cyan-soft: rgba(63, 209, 255, 0.6);
  --gold: #d4af6a;
  --gold-bright: #e8c987;

  --ink: #e6f1ff;
  --ink-soft: rgba(200, 222, 245, 0.72);
  --ink-faint: rgba(160, 200, 235, 0.45);

  --line: rgba(80, 160, 220, 0.18);
  --line-gold: rgba(212, 175, 106, 0.22);

  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;

  --maxw: 1120px;
  --nav-h: 74px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  min-height: 100svh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: var(--nav-h);
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: rgba(63, 209, 255, 0.25); color: #fff; }

/* ---- shared background wash: soft starfield + drifting nebula ---- */
.stars,
.drift {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.stars {
  background-image:
    radial-gradient(1px 1px at 18% 24%, rgba(120, 200, 255, 0.42) 50%, transparent 50%),
    radial-gradient(1px 1px at 72% 16%, rgba(120, 200, 255, 0.32) 50%, transparent 50%),
    radial-gradient(1.4px 1.4px at 52% 64%, rgba(120, 200, 255, 0.28) 50%, transparent 50%),
    radial-gradient(1px 1px at 86% 72%, rgba(120, 200, 255, 0.24) 50%, transparent 50%),
    radial-gradient(1px 1px at 33% 82%, rgba(232, 201, 135, 0.26) 50%, transparent 50%),
    radial-gradient(1px 1px at 64% 90%, rgba(232, 201, 135, 0.22) 50%, transparent 50%);
  animation: twinkle 9s ease-in-out infinite alternate;
  opacity: 0.6;
}
.drift {
  z-index: -3;
  inset: -30%;
  background:
    radial-gradient(ellipse 42% 38% at 26% 26%, rgba(63, 209, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 44% at 76% 72%, rgba(212, 175, 106, 0.06) 0%, transparent 70%);
  animation: drift 60s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes twinkle { from { opacity: 0.4; } to { opacity: 0.72; } }
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-4%, 5%) scale(1.1); }
  100% { transform: translate(5%, 4%) scale(1); }
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.wrap { width: min(var(--maxw), 100%); margin: 0 auto; padding: 0 24px; }

section { position: relative; }

.section-pad { padding: clamp(64px, 11vw, 128px) 0; }

.divider {
  width: 100%; height: 1px; border: 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ---- reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ==========================================================================
   Typography primitives
   ========================================================================== */
.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}
.kicker--center { justify-content: center; }
.kicker--center::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

h1, h2, h3 { font-family: var(--font-display); letter-spacing: 0.01em; }

.h-gradient {
  background: linear-gradient(180deg, #fff 30%, #cfe0f0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.section-title {
  font-weight: 800;
  font-size: clamp(1.9rem, 4.6vw, 2.9rem);
  line-height: 1.08;
  margin-bottom: clamp(18px, 3vw, 26px);
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  line-height: 1.85;
  max-width: 42em;
}
.lead + .lead { margin-top: 16px; }
.lead strong { color: var(--ink); font-weight: 500; }

.muted { color: var(--ink-soft); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 4vw, 38px); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease,
              color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.btn svg { width: 16px; height: 16px; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.btn--primary {
  color: var(--bg-deep);
  background: linear-gradient(90deg, rgba(212, 175, 106, 0.95), rgba(232, 201, 135, 0.98), rgba(212, 175, 106, 0.95));
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35), 0 0 34px rgba(212, 175, 106, 0.2);
}
.btn--primary svg { stroke: var(--bg-deep); }
.btn--primary:hover {
  transform: translateY(-2px); filter: brightness(1.06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 44px rgba(212, 175, 106, 0.3);
}

.btn--ghost {
  color: var(--ink);
  background: rgba(8, 16, 28, 0.5);
  border-color: var(--line-gold);
  backdrop-filter: blur(8px);
}
.btn--ghost svg { stroke: currentColor; }
.btn--ghost:hover { transform: translateY(-2px); color: var(--gold-bright); border-color: var(--gold); }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 11, 20, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--ink);
}
.brand__mark {
  width: 30px; height: 30px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-gold);
  background: radial-gradient(circle at 50% 35%, rgba(63, 209, 255, 0.25), rgba(8, 16, 28, 0.9));
}
.brand__mark svg { width: 16px; height: 16px; stroke: var(--gold-bright); fill: none; stroke-width: 2; }
.brand small {
  display: block; font-size: 0.56rem; letter-spacing: 0.28em;
  color: var(--gold-bright); font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--gold-bright); }
.nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.nav .btn { margin-left: 8px; padding: 11px 22px; }
.nav a.btn--primary,
.nav a.btn--primary:hover,
.nav a.btn--primary.active { color: #000; }
.nav a.btn--primary.active::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 16, 28, 0.5);
  color: var(--ink);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 24px 26px;
    background: rgba(6, 11, 20, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav a { padding: 14px 12px; font-size: 0.82rem; }
  .nav a.active::after { display: none; }
  .nav .btn { margin: 8px 0 0; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 22px clamp(90px, 15vh, 150px);
  overflow: hidden;
}
.hero--short { min-height: 62svh; }

.hero__media {
  position: absolute; inset: 0; z-index: -3;
  background: linear-gradient(135deg, #0a1826, #0c1420 60%, #061019);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92) contrast(1.06) brightness(0.66); transform: scale(1.04); }
.hero::before, .hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.hero::before {
  z-index: -2;
  background: linear-gradient(180deg, rgba(4, 7, 13, 0.42) 0%, transparent 26%, transparent 66%, var(--bg-deep) 100%);
}
.hero::after {
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 46%, rgba(4, 7, 13, 0.55) 0%, rgba(4, 7, 13, 0.2) 48%, transparent 78%),
    radial-gradient(ellipse 80% 40% at 50% 84%, rgba(63, 209, 255, 0.12) 0%, transparent 60%);
}

.hero__inner { position: relative; z-index: 1; max-width: min(60rem, 94vw); }

.hero .eyebrow {
  font-size: 0.68rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--cyan); font-weight: 600; margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 7.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 20px;
  max-width: 100%;
  background: linear-gradient(168deg, #ffffff 0%, #eaf3ff 45%, #b9d4ec 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.55));
}
.hero .rule {
  width: clamp(120px, 22vw, 220px); height: 1px;
  margin: clamp(20px, 4vw, 30px) auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero .subhead {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(0.92rem, 2.2vw, 1.2rem);
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-bright);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}
.hero .welcome {
  margin: clamp(24px, 4vw, 34px) auto 0;
  max-width: 34em; color: #fff;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem); font-weight: 300;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}
.hero .actions { justify-content: center; }

.scroll-cue {
  position: absolute; left: 50%; bottom: clamp(22px, 5vh, 42px);
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.56rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ink-faint);
}
.scroll-cue span:last-child {
  width: 1px; height: clamp(26px, 5vh, 46px);
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cuepulse 2.4s ease-in-out infinite;
}
@keyframes cuepulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ==========================================================================
   Media placeholders (images to be generated later)
   ========================================================================== */
.media-placeholder {
  position: relative;
  border-radius: 18px;
  border: 1px dashed var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(63, 209, 255, 0.04) 0 12px, transparent 12px 24px),
    rgba(8, 16, 28, 0.5);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  min-height: 220px;
  color: var(--ink-faint);
  overflow: hidden;
}
.media-placeholder::before {
  content: "IMAGE";
  position: absolute; top: 14px; left: 16px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.56rem; letter-spacing: 0.3em; color: var(--cyan);
}
.media-placeholder span {
  max-width: 30em; font-size: 0.9rem; line-height: 1.6;
  font-style: italic; color: var(--ink-soft);
}
.media-placeholder svg { width: 34px; height: 34px; stroke: var(--ink-faint); fill: none; stroke-width: 1.4; margin-bottom: 12px; }
.media-placeholder--wide { aspect-ratio: 16 / 8; min-height: 0; }
.media-placeholder--tall { aspect-ratio: 3 / 4; min-height: 0; }
.media-placeholder--square { aspect-ratio: 1; min-height: 0; }

/* ---- real images (rounded, framed, aspect-locked) ---- */
.media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(8, 16, 28, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--wide { aspect-ratio: 16 / 9; }
.media--tall { aspect-ratio: 3 / 4; }
.media--square { aspect-ratio: 1; }
.media--gold { border-color: var(--line-gold); }

/* ==========================================================================
   Generic panels & grids
   ========================================================================== */
.panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(26px, 4vw, 46px);
  background: rgba(8, 16, 28, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(120, 200, 255, 0.06);
}

.grid { display: grid; gap: clamp(16px, 2.4vw, 24px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.split--narrow-media { grid-template-columns: 0.85fr 1.15fr; }
@media (max-width: 860px) {
  .split, .split--narrow-media { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 40px); }
}

/* ---- feature card ---- */
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(8, 16, 28, 0.45);
  backdrop-filter: blur(8px);
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  height: 100%;
}
.card:hover {
  border-color: var(--cyan-soft);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(63, 209, 255, 0.08);
}
.card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  border: 1px solid var(--line-gold);
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 106, 0.14), rgba(8, 16, 28, 0.5));
}
.card__icon svg { width: 22px; height: 22px; stroke: var(--gold-bright); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 {
  font-weight: 700; font-size: 1.08rem; letter-spacing: 0.02em;
  color: var(--ink); margin-bottom: 8px;
}
.card p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.65; }

/* ---- gold tile (numbered frontier) ---- */
.tile {
  position: relative; overflow: hidden; height: 100%;
  padding: clamp(22px, 3vw, 30px) clamp(18px, 2.4vw, 24px);
  border: 1px solid var(--line-gold);
  border-radius: 16px;
  background: rgba(232, 201, 135, 0.04);
  backdrop-filter: blur(8px);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.tile .tnum {
  font-family: var(--font-display); font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.16em; color: var(--gold); opacity: 0.7;
  display: block; margin-bottom: 12px;
}
.tile .ttitle {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(0.98rem, 2vw, 1.14rem); line-height: 1.25;
  color: var(--ink); margin-bottom: 8px;
}
.tile p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }
.tile::after {
  content: ""; position: absolute; right: -30%; top: -60%;
  width: 80%; height: 140%; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 106, 0.16), transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.tile:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45), 0 0 36px rgba(212, 175, 106, 0.12);
}
.tile:hover::after { opacity: 1; }
.tile:hover .ttitle { color: var(--gold-bright); }

/* ---- simple check list ---- */
.check-list { list-style: none; display: grid; gap: 10px; }
.check-list li {
  position: relative; padding-left: 30px;
  color: var(--ink-soft); font-size: clamp(0.96rem, 1.9vw, 1.06rem); line-height: 1.6;
}
.check-list li::before {
  content: ""; position: absolute; left: 4px; top: 0.5em;
  width: 6px; height: 11px;
  border: solid var(--cyan); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---- numbered step list ---- */
.step-list { list-style: none; counter-reset: step; display: grid; gap: 20px; }
.step-list li {
  position: relative; padding-left: 52px;
  color: var(--ink-soft); font-size: clamp(0.98rem, 2vw, 1.08rem); line-height: 1.6;
}
.step-list li strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }
.step-list li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  color: var(--gold-bright);
  border: 1px solid var(--line-gold);
  background: radial-gradient(circle at 50% 30%, rgba(212, 175, 106, 0.14), rgba(8, 16, 28, 0.6));
}

/* ---- pill row (tags) ---- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-soft);
  background: rgba(8, 16, 28, 0.4);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.pill:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ==========================================================================
   Vision list (large aspirational lines)
   ========================================================================== */
.vision-list { list-style: none; display: grid; gap: clamp(10px, 1.6vw, 16px); max-width: 30em; margin: 0 auto; text-align: center; }
.vision-list li {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.1rem, 2.8vw, 1.65rem); line-height: 1.35;
  color: var(--ink-soft);
  text-wrap: balance;
}
.vision-list li em {
  font-style: normal; white-space: nowrap;
  background: linear-gradient(90deg, var(--cyan), var(--gold-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Interactive locations map
   ========================================================================== */
.map-block { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 4vw, 44px); align-items: stretch; }
@media (max-width: 860px) { .map-block { grid-template-columns: 1fr; } }

.map {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(63, 209, 255, 0.08), transparent 70%),
    rgba(6, 12, 22, 0.6);
  min-height: 340px;
  aspect-ratio: 16 / 10;
}
.map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map__land { fill: rgba(90, 150, 200, 0.16); stroke: rgba(120, 190, 240, 0.22); stroke-width: 0.4; }
.map__dot {
  cursor: pointer;
}
.map__dot circle.core { fill: var(--cyan); }
.map__dot circle.ring { fill: none; stroke: var(--cyan); stroke-width: 1; opacity: 0.5; transform-box: fill-box; transform-origin: center; animation: ping 2.6s ease-out infinite; }
.map__dot.future circle.core { fill: var(--gold-bright); }
.map__dot.future circle.ring { stroke: var(--gold-bright); }
.map__dot.active circle.core { r: 4; }
@keyframes ping {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(3.4); opacity: 0; }
}
.map__label {
  position: absolute;
  transform: translate(-50%, -160%);
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); background: rgba(6, 12, 22, 0.85);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 4px 10px; white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.25s;
}
.map__label.show { opacity: 1; }

.map-list { display: grid; gap: 10px; align-content: start; }
.map-loc {
  text-align: left; width: 100%;
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(8, 16, 28, 0.45);
  padding: 16px 18px; cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  display: flex; align-items: center; gap: 14px;
}
.map-loc:hover, .map-loc.active { border-color: var(--cyan-soft); transform: translateX(3px); }
.map-loc.future:hover, .map-loc.future.active { border-color: var(--gold); }
.map-loc__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); flex: none; box-shadow: 0 0 12px var(--cyan); }
.map-loc.future .map-loc__dot { background: var(--gold-bright); box-shadow: 0 0 12px var(--gold-bright); }
.map-loc__name { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; color: var(--ink); }
.map-loc__meta { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.map-legend { display: flex; gap: 20px; margin-top: 14px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
.map-legend i.future { background: var(--gold-bright); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band .panel {
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(212, 175, 106, 0.12), transparent 66%),
    rgba(8, 16, 28, 0.6);
  border-color: var(--line-gold);
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band .actions { justify-content: center; }

/* ==========================================================================
   Page hero for interior pages (breadcrumb-ish)
   ========================================================================== */
.page-intro { max-width: 44em; }
.page-intro h1 {
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 3.8rem); line-height: 1.02; margin-bottom: 18px;
  background: linear-gradient(180deg, #fff 30%, #cfe0f0 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Timeline (initiatives / model)
   ========================================================================== */
.stack { display: grid; gap: clamp(20px, 3vw, 32px); }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.feature-row:nth-child(even) .feature-row__media { order: 2; }
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; gap: 24px; }
  .feature-row:nth-child(even) .feature-row__media { order: 0; }
}

/* ==========================================================================
   News
   ========================================================================== */
.article-card {
  display: flex; flex-direction: column; height: 100%;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: rgba(8, 16, 28, 0.45);
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.article-card:hover { border-color: var(--cyan-soft); transform: translateY(-4px); box-shadow: 0 22px 56px rgba(0, 0, 0, 0.4); }
.article-card .media-placeholder { border: 0; border-radius: 0; border-bottom: 1px solid var(--line); aspect-ratio: 16 / 9; min-height: 0; }
.article-card__img { aspect-ratio: 16 / 9; border-bottom: 1px solid var(--line); overflow: hidden; }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.article-card:hover .article-card__img img { transform: scale(1.04); }
.article-card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.article-card__tag { font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.article-card h3 { font-weight: 700; font-size: 1.1rem; line-height: 1.3; margin-bottom: 10px; }
.article-card p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.6; flex: 1; }
.article-card__date { margin-top: 16px; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--font-display); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px;
  border: 1px solid rgba(90, 170, 220, 0.28); border-radius: 12px;
  background: rgba(4, 10, 18, 0.68); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem;
  padding: 13px 16px; outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(160, 200, 235, 0.42); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--cyan); background: rgba(4, 10, 18, 0.82);
  box-shadow: 0 0 0 3px rgba(63, 209, 255, 0.12), 0 0 28px rgba(63, 209, 255, 0.08);
}
.field select { appearance: none; cursor: pointer; }
.form .btn { justify-self: start; }
.form-note { font-size: 0.82rem; color: var(--ink-faint); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 88px) 0 40px;
  background: linear-gradient(180deg, transparent, rgba(10, 20, 34, 0.5));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--ink-soft); font-size: 0.92rem; max-width: 26em; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--ink-soft); font-size: 0.92rem; padding: 5px 0; transition: color 0.25s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: clamp(40px, 6vw, 64px); padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  font-size: 0.74rem; color: var(--ink-faint); letter-spacing: 0.06em;
}
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  transition: border-color 0.3s, color 0.3s;
}
.footer-bottom .socials a:hover { border-color: var(--gold); color: var(--gold-bright); }
.footer-bottom .socials svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ==========================================================================
   Mobile refinements
   ========================================================================== */
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero h1 { letter-spacing: 0.01em; }
  .hero .eyebrow,
  .hero .subhead { letter-spacing: 0.24em; }
  .actions { gap: 12px; }
  .actions .btn { width: 100%; }
  .map { min-height: 260px; aspect-ratio: 4 / 3; }
  .footer-bottom { justify-content: flex-start; }
  .vision-list li em { white-space: normal; }
  /* only allow breaking long uppercase words when the screen is truly narrow */
  .hero h1 { overflow-wrap: break-word; }
}

.pill, .btn { overflow-wrap: anywhere; }

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .stars, .drift, .scroll-cue span:last-child, .map__dot circle.ring { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
