@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-vf.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #0a1322;
  color: #d7dfe9;
  overflow-x: hidden;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#gl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: transform, opacity;
}
body.gl-ready #gl { opacity: 1; }

main { position: relative; z-index: 1; }
#hero-space { height: 100vh; }

/* ---------- overlay chrome ---------- */

.top-fade {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 130px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity .7s ease;
  background: linear-gradient(180deg, rgba(10, 19, 34, .92), rgba(10, 19, 34, 0));
}
body.scrolled .top-fade { opacity: 1; }

.ui {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 42px) clamp(22px, 4.5vw, 52px);
  pointer-events: none;
}

.bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: #dbe4ee;
  font-size: 12px;
  letter-spacing: .42em;
  pointer-events: auto;
}
.wordmark .dim { color: #7e90a5; }
.x-glyph {
  height: 15px;
  width: auto;
  opacity: .95;
  transform: translateY(-1px);
}

.menu {
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: 0;
  color: #9fb0c4;
  font: inherit;
  font-size: 10px;
  letter-spacing: .34em;
  pointer-events: auto;
  cursor: pointer;
}
.menu-lines { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.menu-lines i {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, #c9d6e4, rgba(201, 214, 228, .25));
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.menu:hover .menu-lines i:last-child { transform: scaleX(.65); transform-origin: left; }

.foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.rule {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(150, 175, 205, 0), rgba(150, 175, 205, .55), rgba(150, 175, 205, 0));
}
.tagline {
  font-size: 11px;
  letter-spacing: .6em;
  text-indent: .6em;
  color: #93a5ba;
}
.scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: 2px;
  text-decoration: none;
  pointer-events: auto;
}
.scroll > span:first-child {
  font-size: 9px;
  letter-spacing: .4em;
  text-indent: .4em;
  color: #5d6d80;
}
.scroll-line {
  width: 1px;
  height: 30px;
  overflow: hidden;
  display: block;
  background: rgba(120, 145, 175, .14);
}
.scroll-line i {
  display: block;
  width: 100%;
  height: 12px;
  background: rgba(190, 210, 235, .7);
  animation: drip 2.6s cubic-bezier(.4, 0, .2, 1) infinite;
}
@keyframes drip {
  0% { transform: translateY(-14px); }
  60%, 100% { transform: translateY(32px); }
}

/* ---------- intro reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.5s ease var(--d, 0s), transform 1.5s cubic-bezier(.16, .68, .22, 1) var(--d, 0s);
}
.bar .reveal { transform: translateY(-10px); }
body.ready .reveal { opacity: 1; transform: none; }

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

/* ---------- custom cursor ---------- */

@media (pointer: fine) {
  body, .menu, .wordmark { cursor: none; }
}
#cursor, #cursor-dot {
  position: fixed;
  left: 0; top: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 50;
}
#cursor {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(165, 195, 230, .35);
}
#cursor-dot {
  width: 4px; height: 4px;
  margin: -2px 0 0 -2px;
  background: #d3e2f4;
}
#cursor.on, #cursor.on ~ #cursor-dot { opacity: 1; }

/* ---------- no-WebGL fallback ---------- */

#fallback { display: none; }
body.no-gl #gl, body.no-gl #cursor, body.no-gl #cursor-dot { display: none; }
body.no-gl #fallback {
  display: flex;
  position: fixed;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: radial-gradient(60% 60% at 50% 45%, #0a1018 0%, #0a1322 70%);
}
body.no-gl .reveal { opacity: 1; transform: none; }
#fallback img { width: min(46vw, 320px); opacity: .92; }
#fallback p {
  font-size: 11px;
  letter-spacing: .6em;
  text-indent: .6em;
  color: #93a5ba;
}

/* ---------- about ---------- */

.about { position: relative; background: #0a1322; }

.about-intro {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20vh clamp(24px, 8vw, 120px) 10vh;
  background:
    radial-gradient(130% 100% at 50% 0%, rgba(9, 14, 22, 0) 0%, rgba(10, 19, 34, .72) 68%),
    repeating-radial-gradient(circle at 50% 32%, rgba(120, 150, 190, .042) 0 1px, transparent 1px 72px),
    #0a1322;
}

.kicker {
  font-size: 10px;
  letter-spacing: .52em;
  text-indent: .52em;
  color: #6c7f95;
  display: flex;
  align-items: center;
  gap: 18px;
}
.kicker::before, .kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140, 165, 195, .5));
}
.kicker::after { transform: scaleX(-1); }

.about-title {
  margin: 34px 0 44px;
  font-size: clamp(26px, 4.4vw, 52px);
  font-weight: 200;
  letter-spacing: .045em;
  line-height: 1.3;
  color: #e2eaf3;
}

.about-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 58px);
  max-width: 1020px;
  text-align: left;
}
.about-copy p {
  font-size: 14.5px;
  line-height: 1.95;
  letter-spacing: .015em;
  color: #93a3b6;
}
.divisions-kicker { margin-top: 11vh; }

.a-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1.4s ease, transform 1.4s cubic-bezier(.16, .68, .22, 1);
}
.a-reveal.in { opacity: 1; transform: none; }

/* ---------- division morph stage ---------- */

.divisions-track { height: 790vh; position: relative; }

.divisions-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0a1424;
}
.divisions-stage::before,
.divisions-stage::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 16vh;
  z-index: 2;
  pointer-events: none;
}
.divisions-stage::before { top: 0; background: linear-gradient(180deg, #0a1322, transparent); }
.divisions-stage::after { bottom: 0; background: linear-gradient(0deg, #0a1322, transparent); }

#morph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.divisions-stage.morph-fallback #morph { display: none; }
.divisions-stage.morph-fallback { transition: background-image .6s ease; }

.stage-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(58% 68% at 22% 76%, rgba(8, 14, 26, .78), rgba(8, 14, 26, 0) 72%),
    linear-gradient(75deg, rgba(8, 14, 26, .5) 0%, rgba(8, 14, 26, 0) 42%);
}

.division-card {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 7vw, 110px);
  bottom: 15vh;
  max-width: 480px;
  opacity: 0;
  transform: translateY(26px);
  will-change: opacity, transform;
  pointer-events: none;
  text-shadow: 0 1px 22px rgba(8, 14, 26, .95), 0 0 3px rgba(8, 14, 26, .8);
}
.division-card .num {
  display: block;
  font-size: 10px;
  letter-spacing: .5em;
  color: #6c7f95;
  margin-bottom: 16px;
}
.division-card h3 {
  font-size: clamp(25px, 3.2vw, 40px);
  font-weight: 250;
  letter-spacing: .06em;
  color: #e6edf5;
  margin-bottom: 16px;
}
.division-card p {
  font-size: 14px;
  line-height: 1.85;
  color: #9aa9bb;
}
.division-card.caption { max-width: 380px; }
.division-card.caption h3 { font-size: clamp(20px, 2.4vw, 30px); }
.division-card.caption p { font-size: 13px; color: #8b9aac; }

#water {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
}

.division-index {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.division-index i {
  width: 1px;
  height: 26px;
  background: rgba(140, 165, 195, .22);
  transition: background .5s ease, height .5s ease;
}
.division-index i.on {
  background: rgba(215, 230, 248, .95);
  height: 40px;
}

.about-end {
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.about-end img { height: 32px; opacity: .85; }
.about-end p {
  font-size: 10px;
  letter-spacing: .5em;
  text-indent: .5em;
  color: #5f7086;
}

/* ---------- card → division-page links ---------- */

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: .42em;
  color: #cfe0f5;
  text-decoration: none;
  border-bottom: 1px solid rgba(160, 190, 230, .35);
  padding-bottom: 6px;
  pointer-events: none;
  transition: color .4s ease, border-color .4s ease, gap .4s ease;
}
.card-link::after { content: "\2192"; letter-spacing: 0; }
.card-link:hover { color: #ffffff; border-color: rgba(215, 232, 250, .9); gap: 14px; }
.division-card.live .card-link { pointer-events: auto; }

/* ---------- division pages ---------- */

.division-page main { opacity: 0; transition: opacity .9s ease; }
.division-page.page-in main { opacity: 1; }

.sub-ui {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 4vw, 42px) clamp(22px, 4.5vw, 52px);
  pointer-events: none;
}
.sub-ui a { pointer-events: auto; }
.back-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .34em;
  color: #9fb0c4;
  text-decoration: none;
  transition: color .4s ease;
}
.back-link::before { content: "\2190"; letter-spacing: 0; }
.back-link:hover { color: #dbe4ee; }

.div-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a1322;
}
.div-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.div-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 19, 34, .55) 0%, rgba(10, 19, 34, .12) 42%, rgba(10, 19, 34, .94) 100%);
}
.div-hero-content {
  position: relative;
  z-index: 2;
  padding: 22vh clamp(24px, 7vw, 110px) 11vh;
  max-width: 900px;
}
.div-hero-content .num {
  display: block;
  font-size: 10px;
  letter-spacing: .5em;
  color: #8fa5bd;
  margin-bottom: 18px;
}
.div-hero-content h1 {
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 200;
  letter-spacing: .05em;
  line-height: 1.15;
  color: #e9eff7;
  margin-bottom: 22px;
}
.div-hero-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #a7b5c7;
  max-width: 660px;
}

.div-band {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.div-band video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.div-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 19, 34, .9) 0%, rgba(10, 19, 34, .15) 35%, rgba(10, 19, 34, .9) 100%);
}
.div-band-caption {
  position: relative;
  z-index: 2;
  padding: 0 clamp(24px, 7vw, 110px) 9vh;
  max-width: 560px;
}
.div-band-caption .num {
  display: block;
  font-size: 10px;
  letter-spacing: .5em;
  color: #8fa5bd;
  margin-bottom: 14px;
}
.div-band-caption h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 250;
  letter-spacing: .06em;
  color: #e6edf5;
  margin-bottom: 12px;
}
.div-band-caption p { font-size: 13.5px; line-height: 1.8; color: #9aa9bb; }

.partners {
  padding: 15vh clamp(24px, 7vw, 110px) 13vh;
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.partners .kicker { justify-content: center; }
.partners h2 {
  margin: 30px 0 14px;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 200;
  letter-spacing: .05em;
  color: #e2eaf3;
}
.partners .lead {
  font-size: 13.5px;
  line-height: 1.85;
  color: #8b9aac;
  max-width: 560px;
  margin: 0 auto;
}
.partner-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.partner-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 38px 20px;
  border: 1px solid rgba(120, 145, 175, .16);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(19, 30, 48, .65), rgba(12, 20, 34, .65));
  transition: border-color .5s ease, transform .5s ease;
}
.partner-tile:hover { border-color: rgba(160, 190, 230, .4); transform: translateY(-3px); }
.partner-tile img.glyph { height: 26px; opacity: .22; }
.partner-tile span { font-size: 10px; letter-spacing: .35em; color: #61728a; }

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.16, .68, .22, 1);
}
.rv.in { opacity: 1; transform: none; }

/* ---------- retail: stores, partners, distributorships ---------- */

.section-block {
  padding: 13vh clamp(24px, 7vw, 110px);
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.section-block .kicker { justify-content: center; }
.section-block h2 {
  margin: 30px 0 18px;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 200;
  letter-spacing: .05em;
  color: #e2eaf3;
}
.section-block .lead {
  font-size: 14px;
  line-height: 1.95;
  color: #93a3b6;
  max-width: 780px;
  margin: 0 auto;
}
.section-block .lead + .lead { margin-top: 20px; }
.atmo-band.qargo { background-image: url('../assets/img/partners/qargo-underwater.jpg'); }
.atmo-band.jetgo { background-image: url('../assets/img/partners/jetgo-wake.jpg'); }

.logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 108px;
  padding: 16px;
  border-radius: 12px;
  background: #f2f5f9;
  box-shadow: inset 0 0 0 1px rgba(10, 19, 34, .06);
}
.logo-chip img { max-height: 74px; max-width: 82%; object-fit: contain; }
.logo-chip.text-chip span {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: .28em;
  text-indent: .28em;
  color: #10161f;
}

.store-grid, .chip-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.store-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 20px 26px;
  border: 1px solid rgba(120, 145, 175, .16);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(19, 30, 48, .65), rgba(12, 20, 34, .65));
  text-align: left;
  transition: border-color .5s ease, transform .5s ease;
}
.store-card:hover { border-color: rgba(160, 190, 230, .4); transform: translateY(-3px); }
.store-card h3 {
  font-size: 15px;
  font-weight: 250;
  letter-spacing: .14em;
  color: #dfe7f0;
}
.store-card p { font-size: 12.5px; line-height: 1.75; color: #8b9aac; }

.atmo-band {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../assets/img/partners/xtoy-underwater.jpg') center / cover no-repeat #0a1322;
}
.atmo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 19, 34, .96) 0%, rgba(10, 19, 34, .35) 45%, rgba(10, 19, 34, .96) 100%);
}
.atmo-band .atmo-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
}
.atmo-band .kicker { justify-content: center; }
.atmo-band h2 {
  margin-top: 26px;
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 200;
  letter-spacing: .05em;
  color: #eef3fa;
}
.atmo-band p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #a7b5c7;
}

.dist-list { margin-top: 26px; text-align: left; }
.dist-block {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  padding: 52px 0;
  border-top: 1px solid rgba(120, 145, 175, .14);
}
.dist-block:first-child { border-top: 0; }
.dist-block h3 {
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 250;
  letter-spacing: .08em;
  color: #e6edf5;
  margin-bottom: 14px;
}
.dist-block p { font-size: 13.5px; line-height: 1.9; color: #93a3b6; max-width: 640px; }
.theme-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  align-items: center;
}
.theme-row .label {
  width: 100%;
  font-size: 9.5px;
  letter-spacing: .4em;
  color: #61728a;
}
.theme-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 58px;
  padding: 8px;
  border-radius: 8px;
  background: #f2f5f9;
}
.theme-chip img { max-height: 42px; max-width: 88%; object-fit: contain; }
.dist-note {
  margin: 60px auto 0;
  max-width: 720px;
  font-size: 13px;
  line-height: 1.9;
  color: #7f90a4;
  text-align: center;
}

@media (max-width: 820px) {
  .dist-block { grid-template-columns: 1fr; }
  .dist-block .logo-chip { max-width: 260px; }
}

.div-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10vh 0 13vh;
}
.div-end img { height: 30px; opacity: .85; }
.div-end p { font-size: 10px; letter-spacing: .5em; text-indent: .5em; color: #5f7086; }
.div-end .back-link { margin-top: 10px; }

@media (max-width: 720px) {
  .about-copy { grid-template-columns: 1fr; }
  .division-card { left: 24px; right: 24px; bottom: 11vh; max-width: none; }
  .division-index { display: none; }
  .div-hero { min-height: 80vh; }
}

@media (prefers-reduced-motion: reduce) {
  .rv { transition: none; opacity: 1; transform: none; }
  .division-page main { transition: none; opacity: 1; }
}

/* =====================================================================
   TYPOGRAPHY PASS — Space Grotesk everywhere, visibility first.
   Headings carry the signature "liquid silver" shimmer; body copy is
   solid, brighter, and heavier so nothing reads as faint.
   ===================================================================== */

body {
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #dfe6ee;
}

/* --- liquid silver headings: bright metallic gradient, slow shimmer --- */
.about-title,
.section-block h2,
.partners h2,
.atmo-band h2,
.div-hero-content h1,
.div-band-caption h2,
.division-card h3,
.dist-block h3,
.store-card h3 {
  font-weight: 600;
  background: linear-gradient(105deg,
    #ffffff 0%, #f4f8fe 30%, #e9f1fc 48%, #ffffff 62%, #ffffff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f2f7fd; /* fallback when clip unsupported */
  filter: drop-shadow(0 0 16px rgba(110, 160, 230, 0.45)) drop-shadow(0 1px 2px rgba(6, 12, 24, 0.6));
  animation: silver-pan 9s ease-in-out infinite;
}
@keyframes silver-pan {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .about-title, .section-block h2, .partners h2, .atmo-band h2,
  .div-hero-content h1, .div-band-caption h2, .division-card h3,
  .dist-block h3, .store-card h3 { animation: none; }
}

/* --- headline tuning for the new face --- */
.about-title { letter-spacing: .015em; }
.div-hero-content h1 { letter-spacing: .012em; }
.section-block h2, .partners h2, .atmo-band h2 { letter-spacing: .02em; }
.division-card h3 { letter-spacing: .04em; }

/* --- chrome & labels: brighter, weightier --- */
.wordmark { color: #eef4fa; font-weight: 500; }
.wordmark .dim { color: #a9bacd; }
.menu { color: #c3d0e0; font-weight: 500; }
.back-link { color: #c3d0e0; font-weight: 500; }
.back-link:hover { color: #ffffff; }
.tagline { color: #c2cfdf; font-weight: 500; }
.scroll > span:first-child { color: #8b9cb0; }
.kicker { color: #97abc3; font-weight: 500; }
.division-card .num, .div-hero-content .num, .div-band-caption .num { color: #a4b8d0; font-weight: 500; }
.card-link { color: #eaf2fb; font-size: 11px; font-weight: 500; border-bottom-color: rgba(180, 205, 235, .5); }
.division-index i { background: rgba(150, 175, 205, .35); }
.division-index i.on { background: #e6eff9; }

/* --- body copy: bigger, brighter, solid --- */
.about-copy p { font-size: 15.5px; color: #b7c3d3; }
.division-card p { font-size: 15px; color: #bac6d5; }
.division-card.caption p { font-size: 14px; color: #adbaca; }
.div-hero-content p { font-size: 16px; color: #c4cfde; }
.div-band-caption p { font-size: 14.5px; color: #b7c3d3; }
.section-block .lead { font-size: 15.5px; color: #b7c3d3; }
.atmo-band p { font-size: 15px; color: #c4cfde; }
.partners .lead { color: #adbaca; font-size: 14.5px; }
.store-card p { font-size: 14px; color: #b0bdcd; }
.dist-block p { font-size: 15px; color: #b7c3d3; }
.dist-note { font-size: 14px; color: #a2b2c5; }
.partner-tile span { color: #8fa1b6; }
.theme-row .label { color: #8b9db2; }
.div-end p, .about-end p { color: #8b9cb0; }

/* =====================================================================
   VISUAL EFFECTS PASS — gauge, veil, boot, cursor, scan-ins, route map
   ===================================================================== */

/* division pages get a normal cursor (custom dot lives on index only) */
.division-page, .division-page a, .division-page button { cursor: auto; }
.division-page a, .division-page .back-link, .division-page .wordmark { cursor: pointer; }

/* --- depth gauge (replaces the side ticks) --- */
.depth-gauge {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 5vw, 60px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.dg-num {
  font-size: 11px;
  letter-spacing: .3em;
  text-indent: .3em;
  font-weight: 500;
  color: #cdd9e8;
}
.dg-track {
  position: relative;
  width: 1px;
  height: 150px;
  background: rgba(140, 165, 195, .2);
}
.dg-track i {
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 0%;
  background: linear-gradient(180deg, #dbe8f8, rgba(120, 160, 220, .4));
  box-shadow: 0 0 12px rgba(140, 180, 240, .5);
}
@media (max-width: 720px) { .depth-gauge { display: none; } }

/* ring-field background for text pages (hero shader, no X) */
#rings {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* --- legal pages --- */
.legal-wrap {
  text-align: left;
  max-width: 780px;
}
.legal-wrap .legal-updated {
  font-size: 11px;
  letter-spacing: .3em;
  color: #8fa4bc;
  margin-bottom: 40px;
}
.legal-wrap h2 {
  font-size: clamp(18px, 2.1vw, 24px);
  text-align: left;
  margin: 44px 0 14px;
}
.legal-wrap p, .legal-wrap li {
  font-size: 14.5px;
  line-height: 1.95;
  color: #cfd9e6;
}
.legal-wrap ul { margin: 10px 0 10px 22px; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap a { color: #9fc0ec; text-decoration: none; }
.legal-wrap a:hover { color: #ffffff; }

/* --- news list --- */
.news-wrap { text-align: left; max-width: 1080px; }
.news-item {
  display: grid;
  grid-template-columns: 150px 1fr 190px;
  gap: clamp(20px, 3.5vw, 48px);
  align-items: center;
  padding: 46px 0;
  border-top: 1px solid rgba(120, 145, 175, .16);
}
.news-item:first-child { border-top: 0; }
.news-meta { display: flex; flex-direction: column; gap: 10px; }
.news-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  color: #e9f1fb;
}
.news-cat {
  font-size: 9.5px;
  letter-spacing: .34em;
  color: #8fa4bc;
}
.news-badge {
  display: inline-block;
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid rgba(160, 195, 240, .4);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: .3em;
  text-indent: .3em;
  color: #cfe0f5;
}
.news-item h2 {
  font-size: clamp(19px, 2.3vw, 27px);
  margin: 0 0 12px;
  text-align: left;
}
.news-item .news-copy {
  font-size: 14.5px;
  line-height: 1.9;
  color: #dee7f2;
  max-width: 560px;
}
.news-chip { height: 96px; }
.news-thumb {
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .news-item { grid-template-columns: 1fr; gap: 16px; }
  .news-chip, .news-thumb { max-width: 220px; }
}

.finale-hint {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 11vh;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: .5em;
  text-indent: .5em;
  color: #b4c7dd;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  animation: hint-pulse 2.4s ease-in-out infinite;
}
.finale-hint.show { opacity: 1; }
@keyframes hint-pulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

/* --- nanobot page veil (transitions between pages) --- */
.page-veil {
  position: fixed;
  inset: 0;
  background: #0a1322;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
body.leaving .page-veil { opacity: 1; pointer-events: auto; }
.division-page .page-veil { opacity: 1; transition: opacity .8s ease .1s; }
.division-page.arrived .page-veil { opacity: 0; }

/* --- first-visit boot --- */
#boot {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #0a1322;
  transition: opacity .7s ease;
}
body.booted #boot { opacity: 0; pointer-events: none; }
.boot-core {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e9f1fb;
  box-shadow: 0 0 18px rgba(140, 180, 240, .9), 0 0 44px rgba(90, 140, 210, .5);
  animation: boot-pulse 1.2s ease-in-out infinite;
}
@keyframes boot-pulse {
  0%, 100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.7); opacity: 1; }
}
#boot-num {
  font-size: 10px;
  letter-spacing: .5em;
  text-indent: .5em;
  color: #93a7bf;
}

/* --- living cursor: ring becomes an X over links --- */
#cursor::before, #cursor::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 1.5px;
  background: #e9eff7;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: opacity .25s ease;
}
#cursor::after { transform: translate(-50%, -50%) rotate(-45deg); }
#cursor.link {
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-color: rgba(230, 240, 252, .9);
  background: rgba(120, 160, 220, .1);
}
#cursor.link::before, #cursor.link::after { opacity: 1; }
#cursor { transition: opacity .6s ease, width .3s ease, height .3s ease, margin .3s ease, border-color .3s ease, background .3s ease; }

/* --- hologram scan-in for logo chips --- */
.rv .logo-chip { position: relative; overflow: hidden; }
.rv .logo-chip img, .rv .logo-chip span { clip-path: inset(0 0 100% 0); }
.rv.in .logo-chip img, .rv.in .logo-chip span {
  animation: chip-reveal .9s cubic-bezier(.3, .7, .2, 1) .15s forwards;
}
@keyframes chip-reveal { to { clip-path: inset(0 0 -2% 0); } }
.rv.in .logo-chip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(150, 190, 240, .95), transparent);
  animation: chip-scan .9s cubic-bezier(.3, .7, .2, 1) .15s forwards;
}
@keyframes chip-scan {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* --- QARGO route map --- */
.route-map { margin-top: 50px; }
.route-map svg { width: 100%; height: auto; overflow: visible; }
.route-line {
  fill: none;
  stroke: rgba(140, 165, 195, .18);
  stroke-width: 1.5;
}
.route-glow {
  fill: none;
  stroke: #bcd4f2;
  stroke-width: 1.8;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(140, 180, 240, .8));
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
}
.rv.in .route-glow { transition: stroke-dashoffset 2.6s cubic-bezier(.4, 0, .2, 1) .3s; stroke-dashoffset: 0; }
.route-node { fill: #0a0f16; stroke: #cfe0f5; stroke-width: 1.5; }
.route-node-core { fill: #e9f1fb; animation: node-pulse 2.6s ease-in-out infinite; }
@keyframes node-pulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}
.route-label {
  fill: #9db1c9;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-anchor: middle;
}
.route-dot { fill: #ffffff; filter: drop-shadow(0 0 7px rgba(160, 200, 250, 1)); }

.page-head { padding-top: 28vh; min-height: 62vh; }
.page-head .about-title { margin-bottom: 22px; }

/* --- site footer (all pages) --- */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(120, 145, 175, .16);
  background: #0a1322;
  padding: 9vh clamp(24px, 6vw, 90px) 5vh;
}
.sf-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  max-width: 1240px;
  margin: 0 auto;
}
.sf-brand .wordmark { pointer-events: auto; margin-bottom: 20px; }
.sf-brand p {
  font-size: 13.5px;
  line-height: 1.85;
  color: #9fadbf;
  max-width: 300px;
}
.sf-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .34em;
  color: #e9f1fb;
  margin-bottom: 20px;
}
.sf-col p, .sf-col a {
  display: block;
  font-size: 13.5px;
  line-height: 2.05;
  color: #9fadbf;
  text-decoration: none;
}
.sf-col a { transition: color .35s ease; }
.sf-col a:hover { color: #eef4fb; }
.sf-social {
  display: flex;
  gap: 10px;
  max-width: 1240px;
  margin: 44px auto 0;
}
.sf-social a { display: block; transition: transform .35s ease, opacity .35s ease; opacity: .9; }
.sf-social a:hover { transform: translateY(-3px); opacity: 1; }
.sf-social img { width: 24px; height: 24px; display: block; }
.sf-legal {
  max-width: 1240px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(120, 145, 175, .12);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: #7d8ea3;
}
@media (max-width: 900px) { .sf-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sf-grid { grid-template-columns: 1fr; } }

/* --- top menu overlay --- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(10, 19, 34, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0 clamp(28px, 10vw, 160px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility 0s linear .5s;
}
body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease;
}
body.menu-open { overflow: hidden; }
.menu-nav { display: flex; flex-direction: column; gap: clamp(6px, 1.4vh, 14px); }
.menu-nav a {
  font-size: clamp(24px, 4.2vh, 40px);
  font-weight: 500;
  letter-spacing: .03em;
  color: #dfe8f2;
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.16, .68, .22, 1), color .3s ease;
}
body.menu-open .menu-nav a { opacity: 1; transform: none; }
.menu-nav a:hover { color: #ffffff; text-shadow: 0 0 22px rgba(120, 165, 235, .55); }
.menu-nav a:nth-child(1) { transition-delay: .06s; }
.menu-nav a:nth-child(2) { transition-delay: .1s; }
.menu-nav a:nth-child(3) { transition-delay: .14s; }
.menu-nav a:nth-child(4) { transition-delay: .18s; }
.menu-nav a:nth-child(5) { transition-delay: .22s; }
.menu-nav a:nth-child(6) { transition-delay: .26s; }
.menu-nav a:nth-child(7) { transition-delay: .3s; }
.menu-nav a:nth-child(8) { transition-delay: .34s; }
.menu-nav a:nth-child(9) { transition-delay: .38s; }
.menu-nav .menu-sub {
  font-size: 10px;
  letter-spacing: .5em;
  color: #7d90a6;
  margin: 14px 0 4px;
}
.menu-close-hint {
  position: absolute;
  top: clamp(20px, 4vw, 42px);
  right: clamp(22px, 4.5vw, 52px);
  font-size: 10px;
  letter-spacing: .34em;
  color: #c3d0e0;
  background: none;
  border: 0;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
}
.sub-ui .menu { pointer-events: auto; margin-left: auto; margin-right: 26px; }
.sub-ui .right-group { display: flex; align-items: center; }

/* videos: richer chroma so the holograms pop against the blue */
.div-hero video, .div-band video {
  filter: saturate(1.18) contrast(1.05) brightness(1.06);
}

/* --- palette lift: deep ocean blue base, luminous near-white text --- */
body { color: #eef3f9; }
.about-copy p, .section-block .lead, .dist-block p, .div-band-caption p {
  color: #dee7f2;
  text-shadow: 0 0 16px rgba(120, 165, 235, .22);
}
.division-card p { color: #e0e9f3; }
.div-hero-content p, .atmo-band p {
  color: #e3ebf5;
  text-shadow: 0 1px 18px rgba(8, 14, 26, .9), 0 0 14px rgba(120, 165, 235, .18);
}
.store-card p { color: #d6e1ee; }
.partners .lead { color: #d6e1ee; text-shadow: 0 0 16px rgba(120, 165, 235, .2); }
.dist-note { color: #c6d3e2; }
.kicker { color: #b4c7dd; }
.division-card .num, .div-hero-content .num, .div-band-caption .num { color: #c0d0e4; }
.partner-tile span { color: #a8b9cc; }
.theme-row .label { color: #a3b4c8; }
.sf-brand p, .sf-col p, .sf-col a { color: #c2cfdf; }
.sf-col a:hover { color: #ffffff; }
.sf-legal { color: #93a5ba; }
.partner-tile { border-color: rgba(140, 168, 200, .22); }
.store-card { border-color: rgba(140, 168, 200, .22); }

@media (prefers-reduced-motion: reduce) {
  .menu-nav a { transition: none; }
  .boot-core, .route-node-core { animation: none; }
  .rv .logo-chip img, .rv .logo-chip span { clip-path: none; animation: none; }
  .rv.in .logo-chip::after { animation: none; }
  .route-glow, .rv.in .route-glow { stroke-dashoffset: 0; transition: none; }
  .page-veil, .division-page .page-veil { transition: none; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, #gl, .a-reveal { transition: none; }
  .a-reveal { opacity: 1; transform: none; }
  .scroll-line i { animation: none; }
}

/* --- unpacked top navigation ---------------------------------------- */
.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.6vw, 25px);
  pointer-events: auto;
}
.top-nav a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  color: #b6c6d9;
  text-decoration: none;
  white-space: nowrap;
  transition: color .35s ease, text-shadow .35s ease;
}
.top-nav a:hover { color: #ffffff; text-shadow: 0 0 16px rgba(125, 170, 240, .65); }
.top-nav a[aria-current="page"] { color: #ffffff; text-shadow: 0 0 13px rgba(140, 180, 240, .5); }
.sub-ui .top-nav { margin-left: auto; }

/* wide screens: links live on the bar, the MENU button retires */
@media (max-width: 1099px) {
  .top-nav { display: none; }
}
@media (min-width: 1100px) {
  .bar .menu, .sub-ui .menu { display: none; }
  .sub-ui .top-nav { margin-right: clamp(24px, 3vw, 44px); }
}
