/* ==========================================================================
   SKYRA — main.css
   Design tokens, both themes, base type and all section layouts.
   ========================================================================== */

:root {
  /* Brand palette (required variables) */
  --skyra-black: #07080b;
  --skyra-white: #ffffff;
  --skyra-gold: #c8a15a;
  --skyra-purple: #7a5cfa;
  --skyra-grey: #6b6e76;
  --skyra-dark: #0a0f1e;
  --skyra-border: rgba(7, 8, 11, 0.1);
  --skyra-card: #ffffff;

  /* Extended tokens */
  --skyra-gold-deep: #94702c;
  --skyra-gold-soft: #e9d6ac;
  --skyra-gold-grad: linear-gradient(135deg, #e8cf94 0%, #c8a15a 48%, #a9803a 100%);
  --skyra-navy: #0b1226;

  /* Semantic (light theme) */
  --bg: #faf9f6;
  --bg-alt: #f1efea;
  --ink: var(--skyra-black);
  --ink-2: #33363d;
  --muted: #666a73;
  --gold-text: var(--skyra-gold-deep);
  --line: var(--skyra-border);
  --card: var(--skyra-card);
  --glass: rgba(255, 255, 255, 0.66);
  --glass-line: rgba(255, 255, 255, 0.8);
  --shadow-1: 0 1px 2px rgba(7, 8, 11, 0.06), 0 8px 24px -12px rgba(7, 8, 11, 0.18);
  --shadow-2: 0 2px 4px rgba(7, 8, 11, 0.06), 0 24px 48px -20px rgba(7, 8, 11, 0.32);
  --hero-fade: #faf9f6;

  /* Type */
  --font: "Archivo", "Helvetica Neue", Arial, system-ui, sans-serif;
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-h3: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  --fs-h2: clamp(2rem, 1.3rem + 3vw, 3.5rem);
  --fs-h1: clamp(2.5rem, 1rem + 5vw, 6rem);

  /* Space & shape */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 3rem + 6vw, 8.5rem);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

[data-theme="dark"],
.scene--dark {
  --bg: #05070d;
  --bg-alt: #0a1022;
  --ink: #f4f2ee;
  --ink-2: #c7c9d1;
  --muted: #8d92a2;
  --gold-text: #dcb86f;
  --line: rgba(255, 255, 255, 0.1);
  --skyra-border: rgba(255, 255, 255, 0.1);
  --card: #0d1325;
  --skyra-card: #0d1325;
  --glass: rgba(12, 17, 34, 0.62);
  --glass-line: rgba(255, 255, 255, 0.12);
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.4), 0 12px 32px -16px rgba(0, 0, 0, 0.8);
  --shadow-2: 0 2px 4px rgba(0, 0, 0, 0.4), 0 32px 64px -24px rgba(0, 0, 0, 0.9);
  --hero-fade: #05070d;
}
[data-theme="dark"] { color-scheme: dark; }

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

:root {
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd, figure { margin: 0; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 2px solid var(--skyra-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--ink); color: var(--bg); padding: .6rem 1rem; border-radius: var(--r-sm);
}
.skip-link:focus { top: 1rem; }

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

.i { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  font-stretch: 112%;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.section-copy {
  color: var(--ink-2);
  max-width: 52ch;
  text-wrap: pretty;
}
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
.gold {
  background: var(--skyra-gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.text-link {
  background: none; border: 0; padding: 0;
  color: var(--gold-text); font-weight: 600; text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad: .8rem 1.35rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: var(--btn-pad);
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  font-weight: 650;
  font-size: .95rem;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s, color .3s, border-color .3s;
}
.btn .i { transition: transform .35s var(--ease); }
.btn:hover .i:last-child { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--lg { --btn-pad: 1rem 1.6rem; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--gold {
  background: var(--skyra-gold-grad);
  color: #1a1306;
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 10px 24px -12px rgba(169,128,58,.8);
}
.btn--gold:hover { box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 16px 32px -12px rgba(169,128,58,.9); transform: translateY(-1px); }
.btn--ghost {
  background: var(--glass);
  color: var(--ink);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.btn--ghost:hover { border-color: var(--skyra-gold); }
.btn[disabled] { opacity: .6; pointer-events: none; }

.round-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card); color: var(--ink);
  border: 1px solid var(--line);
  transition: border-color .25s, background-color .25s, color .25s, transform .3s var(--ease);
}
.round-btn:hover { border-color: var(--skyra-gold); }
.round-btn--solid { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 100;
  padding: 14px var(--gutter) 0;
  transition: padding .45s var(--ease);
}
.site-header__bar {
  max-width: calc(var(--container) + 2.5rem);
  margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
  height: 64px;
  padding: 0 .75rem 0 1.1rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: height .45s var(--ease), background-color .45s, border-color .45s, box-shadow .45s;
}
.site-header.is-scrolled { padding-top: 8px; }
.site-header.is-scrolled .site-header__bar {
  height: 56px;
  background: var(--glass);
  border-color: var(--glass-line);
  box-shadow: var(--shadow-1);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); flex: none; }

.primary-nav { flex: 1; display: flex; justify-content: center; }
.primary-nav ul { display: flex; gap: .15rem; }
.primary-nav a[data-nav] {
  position: relative; display: block;
  padding: .55rem .8rem;
  font-size: .9rem; font-weight: 500;
  text-decoration: none; color: var(--ink-2);
  border-radius: var(--r-sm);
  transition: color .25s;
}
.primary-nav a[data-nav]::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .2rem; height: 2px;
  background: var(--skyra-gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.primary-nav a[data-nav]:hover { color: var(--ink); }
.primary-nav a[data-nav].is-active { color: var(--gold-text); }
.primary-nav a[data-nav].is-active::after { transform: scaleX(1); }
.primary-nav__cta { display: none; }

.site-header__actions { display: flex; align-items: center; gap: .6rem; flex: none; }

.theme-toggle { background: none; border: 0; padding: 0; border-radius: var(--r-pill); }
.theme-toggle__track {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  width: 68px; height: 36px; padding: 0 9px;
  border-radius: var(--r-pill);
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--muted);
}
.theme-toggle__track .i { width: 16px; height: 16px; position: relative; z-index: 1; transition: color .3s; }
.theme-toggle__thumb {
  position: absolute; top: 3px; left: 3px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--skyra-gold-grad);
  transition: transform .45s var(--ease);
}
.theme-toggle__sun { color: #1a1306; }
[data-theme="dark"] .theme-toggle__thumb { transform: translateX(32px); }
[data-theme="dark"] .theme-toggle__sun { color: var(--muted); }
[data-theme="dark"] .theme-toggle__moon { color: #1a1306; }

.campaign-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  height: 36px; padding: 0 .5rem 0 .8rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--skyra-gold);
  background: var(--card); color: var(--ink);
  font-size: .85rem; font-weight: 600;
}
.campaign-pill__count {
  display: inline-grid; place-items: center; min-width: 24px; height: 24px; padding: 0 .35rem;
  border-radius: var(--r-pill); background: var(--ink); color: var(--bg); font-size: .75rem;
}
.campaign-pill.is-bumped { animation: bump .5s var(--ease); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--card); border: 1px solid var(--line);
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink);
  transition: transform .35s var(--ease), top .35s var(--ease);
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  margin-top: calc(-1 * (var(--header-h) - 6px));
  padding-top: calc(var(--header-h) + clamp(2.5rem, 7vh, 5.5rem));
  isolation: isolate;
  z-index: 2; /* data strip overlaps the next section */
}
.hero__media {
  position: absolute; z-index: -1;
  top: 0; right: 0;
  width: min(58vw, 980px);
  height: calc(100% - 3.5rem);
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 55% 50%;
  transform: translate3d(0, var(--parallax, 0px), 0) scale(1.06);
}
.hero__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, var(--hero-fade) 0%, color-mix(in srgb, var(--hero-fade) 55%, transparent) 22%, transparent 48%),
    linear-gradient(0deg, var(--hero-fade) 0%, transparent 22%),
    linear-gradient(180deg, color-mix(in srgb, var(--hero-fade) 70%, transparent) 0%, transparent 18%);
}
[data-theme="dark"] .hero__media img { filter: brightness(.62) saturate(1.15) contrast(1.05); }
.hero__media-tag {
  position: absolute; z-index: 2; right: 1.25rem; bottom: 5.5rem;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: #fff; padding: .45rem .7rem; border-radius: 6px;
  background: rgba(7, 8, 11, .55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}

.hero__inner { position: relative; padding-bottom: clamp(3rem, 8vh, 6rem); }
.hero__title {
  font-size: var(--fs-h1);
  font-weight: 900;
  font-stretch: 125%;
  line-height: .9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__line { display: block; }
.hero__line--gold {
  background: var(--skyra-gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: .06em;
}
.hero__lede {
  font-size: clamp(1.2rem, 1rem + .9vw, 1.6rem);
  font-weight: 600; line-height: 1.25; letter-spacing: -0.01em;
  max-width: 24ch; margin-bottom: .9rem;
}
.hero__copy { color: var(--ink-2); max-width: 44ch; margin-bottom: 2rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .8rem; }

.data-strip {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  padding: 1.5rem .5rem;
  background: color-mix(in srgb, var(--card) 94%, transparent);
  margin-bottom: calc(-1 * clamp(3rem, 5vw, 4.5rem));
}
.data-strip__item {
  display: flex; align-items: center; gap: 1.1rem;
  padding: .25rem clamp(1rem, 2.5vw, 2.25rem);
}
.data-strip__item + .data-strip__item { border-left: 1px solid var(--line); }
.data-strip__icon { width: 48px; height: 48px; color: var(--gold-text); flex: none; }
.data-strip strong {
  display: block;
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
  font-weight: 800; font-stretch: 110%; letter-spacing: -0.02em; line-height: 1.1;
}
.data-strip span { display: block; font-size: var(--fs-small); color: var(--muted); line-height: 1.35; margin-top: .2rem; }

/* ==========================================================================
   Cities (always dark)
   ========================================================================== */
.cities {
  position: relative;
  background:
    radial-gradient(60% 80% at 45% 50%, rgba(122, 92, 250, .18), transparent 70%),
    linear-gradient(180deg, var(--skyra-navy), #05070d);
  color: var(--ink);
  padding: calc(var(--section-y) + clamp(3rem, 5vw, 4.5rem)) 0 var(--section-y);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 3vw));
}
.cities__intro .h2 { margin-bottom: 1.25rem; }
.cities__intro .section-copy { margin-bottom: 2rem; }
.cities__map { position: relative; aspect-ratio: 4 / 5; }
.cities__map svg { width: 100%; height: 100%; overflow: visible; }
.netmap__sea-bg { fill: rgba(122,92,250,.06); stroke: rgba(255,255,255,.08); }
.netmap__land { fill: url(#netmap-land); stroke: rgba(200,161,90,.7); stroke-width: 1.4; filter: drop-shadow(0 0 6px rgba(200,161,90,.45)); }
.netmap__arc { fill: none; stroke: url(#netmap-arc); stroke-width: 1.6; stroke-dasharray: 4 7; animation: dash 30s linear infinite; }
.netmap__glow { fill: url(#netmap-glow); }
.netmap__node { fill: #fff3d6; }
.netmap__ring { fill: none; stroke: var(--skyra-gold); stroke-width: 1.2; opacity: .8; }
.netmap__label { fill: #f4f2ee; font-family: var(--font); font-weight: 800; font-stretch: 115%; font-size: 17px; letter-spacing: .08em; text-transform: uppercase; }
.netmap__sub { fill: #8d92a2; font-family: var(--font); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; }
.netmap__sea { fill: rgba(141,146,162,.45); font-family: var(--font); font-size: 10px; letter-spacing: .5em; text-transform: uppercase; }
@keyframes dash { to { stroke-dashoffset: -440; } }


/* ==========================================================================
   Section heads (shared)
   ========================================================================== */
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head .section-copy { max-width: 44ch; }
.section-head__side { display: flex; align-items: end; gap: 1.5rem; }
.scroller-nav { display: flex; gap: .5rem; }

/* ==========================================================================
   Formats
   ========================================================================== */
.formats { padding: var(--section-y) 0; }
.format-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.format-card {
  position: relative; height: 100%;
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-align: left;
  padding: 0;
  box-shadow: var(--shadow-1);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
}
.format-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: color-mix(in srgb, var(--skyra-gold) 50%, transparent); }
.format-card__img { aspect-ratio: 5 / 3.4; overflow: hidden; background: var(--bg-alt); }
.format-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.format-card:hover .format-card__img img { transform: scale(1.06); }
.format-card__body {
  display: grid; grid-template-columns: auto 1fr auto; gap: .9rem; align-items: start;
  padding: 1.1rem 1.1rem 1.25rem;
  flex: 1;
}
.format-card__icon {
  width: 40px; height: 40px; padding: 8px; border-radius: var(--r-sm);
  background: color-mix(in srgb, var(--skyra-gold) 16%, transparent);
  color: var(--gold-text);
}
.format-card { color: var(--ink); width: 100%; }
.format-card__title { display: block; font-size: var(--fs-h3); font-weight: 700; line-height: 1.25; margin-bottom: .3rem; }
.format-card__desc { display: block; font-size: var(--fs-small); color: var(--muted); line-height: 1.45; }
.format-card__fig { display: block; margin-top: .7rem; padding-top: .7rem; border-top: 1px solid var(--line); font-size: .95rem; font-weight: 800; font-stretch: 110%; color: var(--gold-text); }
.format-card__figlabel { display: block; font-size: .75rem; font-weight: 500; font-stretch: 100%; color: var(--muted); }
.format-card .round-btn { width: 34px; height: 34px; }
.format-card:hover .round-btn { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ==========================================================================
   Solutions ladder
   ========================================================================== */
.solutions { padding: 0 0 var(--section-y); }
.ladder {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
  counter-reset: step;
}
.ladder__step {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
}
.ladder__step img { width: 100%; aspect-ratio: 6 / 5; object-fit: cover; }
.ladder__step > div { padding: 1rem 1.1rem 1.2rem; }
.ladder__n {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--skyra-gold-grad); color: #1a1306;
  font-size: .8rem; font-weight: 800; margin-bottom: .6rem;
}
.ladder__step h3 { margin-bottom: .3rem; }
.ladder__step p { font-size: var(--fs-small); color: var(--muted); line-height: 1.45; }
/* scale grows left to right: each step's image is a little taller */
.ladder__step:nth-child(1) { margin-top: 4rem; }
.ladder__step:nth-child(2) { margin-top: 3rem; }
.ladder__step:nth-child(3) { margin-top: 2rem; }
.ladder__step:nth-child(4) { margin-top: 1rem; }

/* ==========================================================================
   Future of OOH (always dark)
   ========================================================================== */
.future {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(50% 60% at 70% 45%, rgba(122, 92, 250, .35), transparent 70%),
    radial-gradient(40% 50% at 85% 80%, rgba(200, 161, 90, .18), transparent 70%),
    linear-gradient(180deg, #05070d 0%, #0a0f24 60%, #05070d 100%);
  color: var(--ink);
  padding: var(--section-y) 0;
  min-height: min(100vh, 880px);
  display: flex; align-items: center;
}
.future__stage {
  position: absolute; inset: 0; z-index: -1;
  perspective: 1400px;
}
.future__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 1.2s var(--ease);
}
.future.is-3d .future__canvas { opacity: 1; }
.future.is-3d .corner-screen { opacity: 0; }

.future__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; align-items: end;
  pointer-events: none;
}
.future__inner > * { pointer-events: auto; }
.future__copy { max-width: 34rem; }
.future__title {
  font-size: clamp(2.6rem, 1.4rem + 5vw, 5.4rem);
  font-weight: 900; font-stretch: 125%;
  line-height: .92; letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.future__title span { display: block; }
.future__copy .section-copy { margin-bottom: 2rem; font-size: 1.1rem; }
.future__status { margin-top: 1rem; font-size: var(--fs-small); color: var(--muted); min-height: 1.4em; }

.pillars { display: grid; gap: .75rem; justify-self: end; width: min(100%, 340px); }
.pillar {
  display: flex; gap: .9rem; align-items: center;
  padding: 1rem 1.1rem; border-radius: var(--r-md);
}
.pillar__icon { width: 40px; height: 40px; padding: 9px; border-radius: var(--r-sm); background: rgba(255,255,255,.06); color: var(--gold-text); }
.pillar h3 { font-size: .95rem; }
.pillar p { font-size: .8rem; color: var(--muted); line-height: 1.4; }

/* ==========================================================================
   Technology
   ========================================================================== */
.tech { padding: var(--section-y) 0; background: var(--bg-alt); }
.tech__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.tech-card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .4s;
}
.tech-card:hover { background: var(--card); }
.tech-card .i { width: 28px; height: 28px; color: var(--gold-text); margin-bottom: 1.4rem; }
.tech-card h3 { margin-bottom: .35rem; }
.tech-card p { color: var(--muted); font-size: .95rem; }

.roadmap {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 2rem; align-items: start;
}
.roadmap__head h3 { margin-bottom: .4rem; }
.roadmap__head p { color: var(--muted); font-size: var(--fs-small); max-width: 40ch; }
.roadmap__tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.roadmap__tags li {
  padding: .45rem .85rem; border-radius: var(--r-pill);
  border: 1px dashed color-mix(in srgb, var(--ink) 25%, transparent);
  font-size: .85rem; color: var(--ink-2);
}

/* ==========================================================================
   About
   ========================================================================== */
.about { padding: var(--section-y) 0; }
.about__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); }
.about__body p { color: var(--ink-2); margin-bottom: 1.1rem; max-width: 60ch; }
.about__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; border-top: 1px solid var(--line); padding-top: 1.5rem; }
.about__facts strong { display: block; font-size: 1.6rem; font-weight: 800; font-stretch: 115%; letter-spacing: -0.02em; }
.about__facts span { font-size: var(--fs-small); color: var(--muted); }

/* ==========================================================================
   Contact (always dark)
   ========================================================================== */
.contact {
  position: relative; overflow: hidden; isolation: isolate;
  background: #05070d; color: var(--ink);
  padding: var(--section-y) 0;
}
.contact__bg { position: absolute; inset: 0; z-index: -1; }
.contact__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; filter: blur(3px) saturate(1.1); transform: scale(1.05); }
.contact__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #05070d 25%, rgba(5,7,13,.7) 60%, rgba(5,7,13,.9));
}
.contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.contact__intro .section-copy { margin-bottom: 2rem; }

.lead-form { border-radius: var(--r-lg); padding: clamp(1.25rem, 3vw, 2rem); display: grid; gap: .9rem; }
.lead-form__title { font-size: 1.25rem; margin-bottom: .25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field-row--3 { grid-template-columns: repeat(3, 1fr); }
.field { display: grid; gap: .35rem; min-width: 0; }
.field label { font-size: .8rem; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .75rem .85rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 2rem; }
.field select option { background: #0d1325; color: #f4f2ee; }
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--skyra-gold); box-shadow: 0 0 0 3px rgba(200,161,90,.25); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #ff7a7a; }
.field__error { font-size: .78rem; color: #ff9b9b; min-height: 0; }
.field__error:empty { display: none; }
.lead-form__status { font-size: var(--fs-small); color: var(--ink-2); }
.lead-form__status.is-success { color: var(--gold-text); }
.lead-form__selected { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .8rem; color: var(--muted); }
.tag {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .6rem; border-radius: var(--r-pill);
  font-size: .75rem; font-weight: 600;
  background: color-mix(in srgb, var(--skyra-gold) 18%, transparent); color: var(--gold-text);
}
.tag--muted { background: color-mix(in srgb, var(--ink) 8%, transparent); color: var(--ink-2); }
.tag--digital { background: color-mix(in srgb, var(--skyra-purple) 20%, transparent); color: color-mix(in srgb, var(--skyra-purple) 70%, var(--ink)); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #05070d; color: #c7c9d1; padding: 3rem 0 calc(2rem + env(safe-area-inset-bottom, 0px)); border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; align-items: start; }
.site-footer__tag { font-size: var(--fs-small); max-width: 40ch; margin-top: .6rem; color: #8d92a2; }
.site-footer nav ul { display: grid; gap: .4rem; }
.site-footer a { text-decoration: none; font-size: .9rem; }
.site-footer a:hover { color: var(--skyra-gold); }
.site-footer__legal { font-size: .8rem; color: #8d92a2; justify-self: end; }

/* ==========================================================================
   Drawer, modal, toast
   ========================================================================== */
.drawer, .modal { position: fixed; inset: 0; z-index: 300; }
.drawer__scrim, .modal__scrim { position: absolute; inset: 0; background: rgba(3, 4, 8, .6); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  display: flex; flex-direction: column;
  background: var(--bg); color: var(--ink);
  box-shadow: var(--shadow-2);
  padding: calc(1.25rem + env(safe-area-inset-top, 0px)) 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
}
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.drawer__head h2 { font-size: 1.3rem; font-stretch: 112%; }
.drawer__list { flex: 1; overflow-y: auto; display: grid; align-content: start; gap: .6rem; }
.drawer__item { display: grid; grid-template-columns: 64px 1fr auto; gap: .8rem; align-items: center; padding: .5rem; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--card); }
.drawer__item img { width: 64px; height: 48px; object-fit: cover; border-radius: 6px; }
.drawer__item strong { display: block; font-size: .9rem; }
.drawer__item span { font-size: .78rem; color: var(--muted); }
.drawer__empty { color: var(--muted); font-size: var(--fs-small); padding: 1rem 0; }
.drawer__foot { display: grid; gap: .75rem; justify-items: center; padding-top: 1rem; border-top: 1px solid var(--line); }

.modal { display: grid; place-items: center; padding: max(1rem, env(safe-area-inset-top, 0px)) 1rem max(1rem, env(safe-area-inset-bottom, 0px)); }
.modal__panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  background: var(--bg); color: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
}
.modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 5; }
.modal__body { padding: clamp(1rem, 3vw, 1.75rem); }

.toast {
  position: fixed; left: 50%; bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px)); z-index: 400;
  transform: translate(-50%, 150%);
  padding: .8rem 1.2rem; border-radius: var(--r-pill);
  background: var(--ink); color: var(--bg);
  font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow-2);
  transition: transform .5s var(--ease), visibility 0s linear .5s;
  pointer-events: none;
  max-width: calc(100vw - 2rem);
  visibility: hidden;
}
.toast.is-visible { transform: translate(-50%, 0); visibility: visible; transition: transform .5s var(--ease); }

/* Media detail (modal content) */
.detail { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.detail__media { display: grid; gap: .75rem; align-content: start; }
.detail__hero { position: relative; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16 / 10; background: var(--bg-alt); }
.detail__hero img { width: 100%; height: 100%; object-fit: cover; }
.detail__tabs { position: absolute; left: .75rem; bottom: .75rem; display: flex; gap: .4rem; }
.detail__tabs button {
  padding: .4rem .8rem; border-radius: var(--r-pill); border: 0;
  background: rgba(7,8,11,.6); color: #fff; font-size: .78rem; font-weight: 600;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.detail__tabs button[aria-pressed="true"] { background: var(--skyra-gold-grad); color: #1a1306; }
.detail__360 {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 50%, #1a2140, #05070d); color: #c7c9d1; padding: 1.5rem;
}
.detail__360 .i { width: 56px; height: 56px; margin: 0 auto .75rem; color: var(--skyra-gold); animation: spin360 6s linear infinite; }
.detail__mini { border-radius: var(--r-md); overflow: hidden; height: 190px; border: 1px solid var(--line); position: relative; }
.detail__info h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.1rem); font-stretch: 112%; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: .4rem 0 .35rem; padding-right: 3rem; }
.detail__tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.detail__sub { color: var(--muted); margin-bottom: 1.2rem; }
.spec { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.spec > div { padding: .7rem 0; border-bottom: 1px solid var(--line); }
.spec > div:nth-child(odd) { padding-right: 1rem; }
.spec dt { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.spec dd { font-size: .92rem; font-weight: 600; }
.spec__wide { grid-column: 1 / -1; }
.detail__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: 1.25rem; }
.detail__note { font-size: .75rem; color: var(--muted); margin-top: .8rem; }

.video-stage { aspect-ratio: 16 / 9; border-radius: var(--r-md); overflow: hidden; background: #000; position: relative; }
.video-stage video, .video-stage canvas { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   v2 additions: logo, video banner, city cards, Leaflet
   ========================================================================== */

/* Logo: light artwork by default, inverted artwork in dark theme */
.brand__logo { height: 46px; width: auto; transition: height .45s var(--ease); }
.is-scrolled .brand__logo { height: 38px; }
.brand__logo--dark { display: none; }
[data-theme="dark"] .brand__logo--light { display: none; }
[data-theme="dark"] .brand__logo--dark { display: block; }
.site-footer__logo { height: 56px; width: auto; }

/* Hero video banner */
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
  transform: translate3d(0, var(--parallax, 0px), 0) scale(1.04);
  background: #0a0f24;
}
[data-theme="dark"] .hero__video { filter: brightness(.78) saturate(1.1); }
.hero__video-toggle {
  position: absolute; z-index: 3; right: 1.25rem; bottom: 5.25rem;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(7, 8, 11, .5); color: #fff;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: background-color .25s, transform .3s var(--ease);
}
.hero__video-toggle:hover { background: rgba(7, 8, 11, .75); transform: scale(1.06); }
.hero__video-toggle .i { width: 16px; height: 16px; }

.hero__caption {
  position: absolute; z-index: 3; right: 4.25rem; bottom: 5.1rem;
  display: grid; gap: .15rem; margin: 0;
  padding: .6rem .9rem .65rem; border-radius: var(--r-sm);
  background: rgba(7, 8, 11, .55); color: #fff; text-align: right;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 2px solid var(--skyra-gold);
  transition: opacity .25s ease, transform .25s ease;
}
.hero__caption.is-swapping { opacity: 0; transform: translateY(4px); }
.hero__caption-label { font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--skyra-gold-soft); }
.hero__caption-value { font-size: 1.05rem; font-weight: 800; font-stretch: 110%; letter-spacing: -0.01em; }

/* Cities: intro + network map on top, three illustrated cards below */
.cities__top {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.cities__top .cities__map { max-width: 360px; justify-self: end; width: 100%; }
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.city-card {
  display: flex; flex-direction: column; width: 100%; height: 100%;
  padding: 0; text-align: left; color: var(--ink);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .6s var(--ease), border-color .4s, box-shadow .6s var(--ease), background-color .4s;
}
.city-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--skyra-gold) 55%, transparent); box-shadow: 0 30px 60px -30px rgba(122, 92, 250, .55); background: rgba(255,255,255,.05); }
.city-card__art { display: block; aspect-ratio: 480 / 340; overflow: hidden; }
.city-card__art img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.city-card:hover .city-card__art img { transform: scale(1.05); }
.city-card__body { display: flex; flex-direction: column; gap: .55rem; padding: 1.25rem 1.35rem 1.4rem; flex: 1; }
.city-card__name { font-size: 1.6rem; font-weight: 800; font-stretch: 115%; letter-spacing: -0.02em; line-height: 1.1; }
.city-card__desc { color: var(--ink-2); font-size: .95rem; }
.city-card__tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.city-card__tags span { font-size: .72rem; padding: .2rem .55rem; border-radius: var(--r-pill); border: 1px solid var(--line); color: var(--muted); }
.city-card__formats { font-size: .82rem; color: var(--ink-2); }
.city-card__formats-label { color: var(--muted); font-weight: 600; margin-right: .25rem; }
.city-card__cta { margin-top: auto; padding-top: .5rem; display: inline-flex; gap: .4rem; align-items: center; color: var(--gold-text); font-weight: 650; font-size: .9rem; }
.city-card:hover .city-card__cta .i { transform: translateX(3px); }
.city-card__cta .i { transition: transform .35s var(--ease); }

/* Contact headline: 20% smaller than the Future headline so long words fit */
.contact__title { font-size: clamp(2.08rem, 1.12rem + 4vw, 4.32rem); }
.future__title, .hero__title { overflow-wrap: break-word; }

.modal-video__title { font-size: 1.4rem; font-weight: 800; font-stretch: 112%; margin-bottom: 1rem; padding-right: 3rem; }

/* Leaflet, themed to match */
.skyra-divicon { background: none; border: 0; }
.skyra-divicon .pin { position: static; display: block; margin: 0; }
.map-shell .leaflet-container { background: #e9e6df; font-family: var(--font); }
[data-theme="dark"] .map-shell .leaflet-container { background: #0b1226; }
.map-shell .leaflet-control-zoom { border: 0 !important; box-shadow: var(--shadow-1) !important; border-radius: var(--r-sm) !important; overflow: hidden; margin: .9rem .9rem 0 0 !important; }
.map-shell .leaflet-control-zoom a { width: 40px !important; height: 40px !important; line-height: 38px !important; background: rgba(255,255,255,.94); color: #07080b; border-bottom-color: rgba(7,8,11,.08) !important; }
[data-theme="dark"] .map-shell .leaflet-control-zoom a { background: rgba(12,17,34,.9); color: #f4f2ee; border-bottom-color: rgba(255,255,255,.1) !important; }
.map-shell .leaflet-control-attribution { background: rgba(255,255,255,.78) !important; font-size: 10px; }
[data-theme="dark"] .map-shell .leaflet-control-attribution { background: rgba(7,8,11,.7) !important; color: #8d92a2; }
[data-theme="dark"] .map-shell .leaflet-control-attribution a { color: #c7c9d1; }
.map-shell[data-provider="leaflet"] .map-card { bottom: 1.9rem; }
