/* Rhythm Orbits — marketing site
   Palette + type scale mirror the in-game look: aurora night, fire/ice accents. */

:root {
  --ice: #6ad1ff;
  --ice-dim: #9fe0ff;
  --fire: #ff6a3d;
  --fire-dim: #ff9a70;
  --bg: #05080f;
  --bg-2: #080e1a;
  --line: rgba(140, 190, 230, 0.14);
  --line-str: rgba(140, 190, 230, 0.3);
  --txt: #e2effa;
  --txt-2: #a8c2d6;
  --txt-3: #7d99b0;

  --wrap: 1180px;
  --r: 16px;
  --ease: cubic-bezier(0.22, 0.7, 0.28, 1);
  --sec-y: clamp(72px, 10vw, 150px);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video, canvas { display: block; max-width: 100%; }
/* width/height attributes reserve layout space — but never let the height
   attribute survive as a real height, or scaled images end up stretched. */
img[width][height] { height: auto; }
.shot-img { width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(106, 209, 255, 0.28); }

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

.skip {
  position: absolute; left: 50%; top: -120px; transform: translateX(-50%);
  background: var(--ice); color: #041018; padding: 10px 18px; border-radius: 0 0 10px 10px;
  z-index: 200; font-weight: 600; transition: top 0.2s;
}
.skip:focus { top: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.wrap.narrow { max-width: 780px; }
.center { text-align: center; }
.muted { color: var(--txt-2); }
.small { font-size: 14.5px; }

/* ── Type ─────────────────────────────────────────────────────────────── */

.h1, .h2, .h3, h1, h2, h3 {
  font-family: 'Chakra Petch', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0.005em;
}
.h1 { font-size: clamp(38px, 6vw, 68px); }
.h2 { font-size: clamp(30px, 4.4vw, 52px); letter-spacing: -0.005em; }
.h2--xl { font-size: clamp(34px, 6vw, 68px); }
.h3 { font-size: clamp(22px, 2.6vw, 28px); margin-top: 54px; margin-bottom: 14px; }

.eyebrow {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ice); margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 26px; height: 1px; margin-right: 12px;
  vertical-align: middle; background: linear-gradient(90deg, transparent, var(--ice));
}
.lead { color: var(--txt-2); font-size: clamp(16.5px, 1.5vw, 19px); max-width: 58ch; margin-top: 20px; }

/* ── Buttons ──────────────────────────────────────────────────────────── */

.btn {
  --btn-bg: linear-gradient(135deg, #ff7a45, #ff5b2e);
  position: relative; display: inline-flex; align-items: center; gap: 11px;
  padding: 14px 26px; border-radius: 999px;
  background: var(--btn-bg); color: #14060224;
  color: #1a0703;
  font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 15px;
  letter-spacing: 0.09em; text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 10px 34px -14px rgba(255, 106, 61, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(255, 106, 61, 1); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 17px 34px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--ghost {
  background: rgba(120, 190, 235, 0.06); color: var(--txt);
  border: 1px solid var(--line-str); box-shadow: none;
}
.btn--ghost:hover { background: rgba(120, 190, 235, 0.12); box-shadow: none; }
.btn__dot {
  width: 9px; height: 9px; border-radius: 50%; background: #2a0d04;
  box-shadow: 0 0 0 0 rgba(42, 13, 4, 0.5); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42, 13, 4, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(42, 13, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(42, 13, 4, 0); }
}
/* German labels are long — let the pill wrap instead of running off-screen. */
@media (max-width: 520px) {
  .btn { white-space: normal; text-align: center; justify-content: center; }
  .btn--lg { padding: 15px 22px; font-size: 14.5px; letter-spacing: 0.06em; }
  .hero__cta .btn--lg, .sec--cta .btn--lg { width: 100%; }
  .badge-store { width: 100%; justify-content: center; }
}

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; align-items: center; }
.btn-row--center { justify-content: center; }

.badge-store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 20px 10px 16px; border-radius: 14px;
  border: 1px solid var(--line-str); background: rgba(10, 20, 34, 0.6);
  backdrop-filter: blur(10px); transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.badge-store:hover { border-color: rgba(140, 200, 240, 0.5); background: rgba(14, 28, 46, 0.75); transform: translateY(-2px); }
/* Primary CTA now that there is nothing to click through to yet. */
.badge-store--lg {
  padding: 13px 24px 13px 20px; border-radius: 16px;
  border-color: rgba(150, 210, 245, 0.42);
  background: linear-gradient(150deg, rgba(20, 40, 62, 0.86), rgba(10, 20, 34, 0.86));
  box-shadow: 0 14px 40px -20px rgba(106, 209, 255, 0.85);
}
.badge-store--lg .badge-store__glyph { width: 30px; height: 30px; }
.badge-store--lg .badge-store__bottom { font-size: 19px; }
.badge-store__glyph { width: 26px; height: 26px; fill: var(--ice-dim); flex: none; }
.badge-store__txt { display: flex; flex-direction: column; line-height: 1.15; }
.badge-store__top { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--txt-3); }
.badge-store__bottom { font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: 0.02em; }
.badge-store__soon {
  margin-left: 4px; padding: 4px 10px; border-radius: 999px; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(106, 209, 255, 0.14); color: var(--ice); border: 1px solid rgba(106, 209, 255, 0.28);
}

.link-arrow {
  font-family: 'Chakra Petch', sans-serif; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ice); border-bottom: 1px solid rgba(106, 209, 255, 0.35); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: #fff; border-color: #fff; }
.link-arrow span { display: inline-block; transition: transform 0.25s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* ── Nav ──────────────────────────────────────────────────────────────── */

.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(5, 8, 15, 0.82); backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--line);
}
.nav__in {
  max-width: var(--wrap); margin-inline: auto; padding: 14px clamp(20px, 5vw, 40px);
  display: flex; align-items: center; gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { border-radius: 10px; box-shadow: 0 0 22px -6px rgba(106, 209, 255, 0.6); }
.brand__txt {
  font-family: 'Chakra Petch', sans-serif; font-weight: 700; line-height: 0.98;
  letter-spacing: 0.14em; text-transform: uppercase; font-size: 15px;
}
.brand__a { display: block; color: var(--fire-dim); }
.brand__b { display: block; color: var(--ice-dim); }

.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  font-size: 14.5px; color: var(--txt-2); position: relative; padding: 4px 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--ice); transition: right 0.3s var(--ease);
}
.nav__links a:hover { color: var(--txt); }
.nav__links a:hover::after { right: 0; }

.nav__end { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav__links + .nav__end { margin-left: 0; }
.lang {
  font-family: 'Chakra Petch', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.14em;
  padding: 8px 11px; border: 1px solid var(--line); border-radius: 9px; color: var(--txt-2);
  transition: border-color 0.2s, color 0.2s;
}
.lang:hover { border-color: var(--line-str); color: var(--txt); }

.burger { display: none; width: 40px; height: 40px; place-items: center; }
.burger span { display: block; width: 20px; height: 1.5px; background: var(--txt); transition: transform 0.3s var(--ease), opacity 0.2s; }
.burger span + span { margin-top: 6px; }
.burger[aria-expanded='true'] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded='true'] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.nav__mobile { display: none; flex-direction: column; padding: 8px clamp(20px, 5vw, 40px) 22px; gap: 4px; }
.nav__mobile a { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .burger { display: grid; }
  .nav__mobile:not([hidden]) { display: flex; }
  .nav.is-open { background: rgba(5, 8, 15, 0.96); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
}
@media (max-width: 460px) { .nav__end .btn--sm { display: none; } }

/* ── Hero ─────────────────────────────────────────────────────────────── */

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__art { position: absolute; inset: -6% 0 0; z-index: 0; will-change: transform; }
.hero__img { width: 100%; height: 100%; object-fit: cover; opacity: 0; animation: heroIn 1.6s var(--ease) 0.1s forwards; }
@keyframes heroIn { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1); } }
.hero__orbit { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(85% 60% at 50% 22%, rgba(5, 8, 15, 0) 40%, rgba(5, 8, 15, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 8, 15, 0.72) 0%, rgba(5, 8, 15, 0.15) 32%, rgba(5, 8, 15, 0.86) 78%, var(--bg) 100%);
}
.hero__in { position: relative; z-index: 2; padding-block: 132px 92px; }
.hero__title {
  font-family: 'Chakra Petch', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(46px, 9.2vw, 116px); line-height: 0.92; letter-spacing: 0.01em;
  background: linear-gradient(176deg, #ffffff 4%, #dff2ff 34%, var(--ice-dim) 72%, #59b5e6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 46px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 34px rgba(106, 209, 255, 0.22));
}
.hero__lead { max-width: 46ch; margin-top: 26px; font-size: clamp(16.5px, 1.7vw, 20px); color: #c4dcee; }
.hero__lead em { color: var(--fire-dim); font-style: normal; font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 36px; }
.hero__note { margin-top: 16px; font-size: 13.5px; color: var(--txt-3); max-width: 46ch; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 40px; list-style: none;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.hero__facts li {
  font-family: 'Chakra Petch', sans-serif; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--txt-2);
  display: flex; align-items: center; gap: 9px;
}
.hero__facts li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--fire); box-shadow: 0 0 10px var(--fire); }

.hero__scroll { position: absolute; left: 50%; bottom: 22px; z-index: 3; width: 24px; height: 38px; margin-left: -12px; border: 1px solid var(--line-str); border-radius: 14px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: var(--ice); animation: scrollDot 1.9s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
@media (max-width: 700px) { .hero__scroll { display: none; } }

/* ── Sections ─────────────────────────────────────────────────────────── */

.sec { position: relative; padding-block: var(--sec-y); }
.sec__head { max-width: 720px; margin-bottom: clamp(38px, 5vw, 60px); }
.sec--showcase { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.sec--features { background: var(--bg-2); }
.sec--features::before,
.sec--faq::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 12% 0%, rgba(106, 209, 255, 0.07), transparent 70%),
              radial-gradient(50% 45% at 92% 100%, rgba(255, 106, 61, 0.06), transparent 70%);
}
.sec--faq { background: var(--bg-2); }
.sec--daily { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }

.band-art { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.band-art__img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.band-art::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(5, 8, 15, 0.72) 30%, rgba(5, 8, 15, 0.82) 70%, var(--bg) 100%);
}
.band-art--soft .band-art__img { opacity: 0.22; }
.sec--worlds > .wrap, .sec--create > .wrap, .sec--cta > .wrap, .rail, .rail__hint { position: relative; z-index: 1; }

.grid-2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.grid-2--rev > *:last-child { order: 1; }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2--rev > *:last-child { order: 0; }
}

/* Steps */
.steps { list-style: none; margin-top: 38px; display: grid; gap: 24px; }
.step { display: flex; gap: 18px; }
.step__n {
  font-family: 'Chakra Petch', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.06em;
  color: var(--ice); flex: none; padding-top: 3px;
  width: 40px; border-right: 1px solid var(--line);
}
.step h3 { font-size: 18px; margin-bottom: 5px; }
.step p { color: var(--txt-2); font-size: 15.5px; }

/* Phone mockup */
.phone { display: grid; justify-items: center; }
.phone__frame {
  position: relative; width: min(300px, 78vw); aspect-ratio: 420 / 880;
  border-radius: 38px; padding: 9px; overflow: hidden;
  background: linear-gradient(160deg, #22303f, #0a1119 45%, #1b2836);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(160, 210, 240, 0.14),
              0 0 70px -20px rgba(106, 209, 255, 0.35);
}
.phone__frame::after {
  content: ''; position: absolute; inset: 9px; border-radius: 30px; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.phone__video { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; background: #05080f; }
.phone__notch {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 6px; border-radius: 4px; background: rgba(6, 12, 20, 0.9);
}
.phone figcaption { margin-top: 20px; font-size: 13.5px; color: var(--txt-3); text-align: center; letter-spacing: 0.04em; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; position: relative; }
.card {
  position: relative; padding: 30px 28px 32px; border-radius: var(--r);
  background: linear-gradient(165deg, rgba(20, 34, 52, 0.7), rgba(9, 16, 26, 0.72));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 209, 255, 0.55), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(140, 200, 240, 0.3); box-shadow: 0 28px 60px -34px rgba(0, 0, 0, 0.9); }
.card:hover::before { opacity: 1; }
.card__ico {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; margin-bottom: 18px;
  background: rgba(106, 209, 255, 0.1); border: 1px solid rgba(106, 209, 255, 0.22); color: var(--ice);
}
.ico { width: 22px; height: 22px; }
.card h3 { font-size: 19px; margin-bottom: 9px; }
.card p { color: var(--txt-2); font-size: 15.5px; }

/* Worlds rail */
.rail { margin-top: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab; }
.rail::-webkit-scrollbar { display: none; }
.rail.is-drag { cursor: grabbing; }
.rail__track {
  display: flex; gap: 20px; list-style: none;
  padding: 6px clamp(20px, 5vw, 40px) 10px;
  width: max-content; margin-inline: auto; max-width: none;
}
.wcard {
  scroll-snap-align: center; width: 300px; flex: none; border-radius: var(--r); overflow: hidden;
  background: linear-gradient(170deg, rgba(20, 34, 52, 0.78), rgba(8, 14, 24, 0.85));
  border: 1px solid var(--line); transition: transform 0.35s var(--ease), border-color 0.35s;
}
.wcard:hover { transform: translateY(-4px); border-color: rgba(140, 200, 240, 0.32); }
.wcard__img { aspect-ratio: 16 / 9; overflow: hidden; }
.wcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.wcard:hover .wcard__img img { transform: scale(1.05); }
.wcard__body { padding: 20px 22px 24px; }
.wcard__n {
  font-family: 'Chakra Petch', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--fire); display: block; margin-bottom: 7px;
}
.wcard h3 { font-size: 19px; margin-bottom: 7px; }
.wcard p { color: var(--txt-2); font-size: 14.5px; line-height: 1.55; }
.rail__hint { margin-top: 18px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-3); }
/* The rail already carries visual weight — don't stack two full section gaps after it. */
.sec--worlds { padding-bottom: clamp(48px, 6vw, 84px); }
.sec--create { padding-top: clamp(56px, 7vw, 96px); }

/* Ticks */
.ticks { list-style: none; margin-top: 34px; display: grid; gap: 20px; }
.ticks li { padding-left: 30px; position: relative; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 13px; height: 8px;
  border-left: 1.8px solid var(--ice); border-bottom: 1.8px solid var(--ice); transform: rotate(-45deg);
}
.ticks h3 { font-size: 17.5px; margin-bottom: 4px; }
.ticks p { color: var(--txt-2); font-size: 15.5px; }

/* Duo screenshots */
.duo { position: relative; display: grid; place-items: center; min-height: 460px; }
.duo__a, .duo__b { position: absolute; border-radius: 22px; overflow: hidden; border: 1px solid rgba(160, 210, 240, 0.16);
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.95); transition: transform 0.5s var(--ease); }
.duo__a { width: 56%; transform: translate(-26%, -6%) rotate(-5deg); z-index: 2; }
.duo__b { width: 56%; transform: translate(28%, 8%) rotate(5deg); }
.duo:hover .duo__a { transform: translate(-30%, -9%) rotate(-7deg); }
.duo:hover .duo__b { transform: translate(32%, 11%) rotate(7deg); }
.duo img { width: 100%; height: auto; }
@media (max-width: 700px) { .duo { min-height: 400px; } .duo__a, .duo__b { width: 60%; } }

/* Daily */
.daily { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.daily__shot { justify-self: center; width: min(260px, 70vw); border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(160, 210, 240, 0.16); box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.95); }
.daily__shot img { width: 100%; }
@media (max-width: 820px) { .daily { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px; }
.gallery--press { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); margin-top: 20px; }
.gallery__item { display: block; width: 100%; text-align: left; }
.gallery__img {
  width: 100%; height: auto; aspect-ratio: 450 / 940; object-fit: cover; border-radius: 14px;
  border: 1px solid var(--line); transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.gallery__img--wide { aspect-ratio: 16 / 9; }
.gallery__item:hover .gallery__img { transform: translateY(-4px) scale(1.015); border-color: rgba(140, 200, 240, 0.4); box-shadow: 0 26px 50px -30px rgba(0, 0, 0, 0.9); }
.gallery__cap { display: block; margin-top: 10px; font-size: 13px; color: var(--txt-3); letter-spacing: 0.03em; }
.sec--media .center { margin-top: 46px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
  background: rgba(3, 6, 11, 0.93); backdrop-filter: blur(8px); padding: 5vh 5vw; }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 84vh; width: auto; border-radius: 16px; border: 1px solid var(--line-str); }
.lightbox figcaption { margin-top: 14px; text-align: center; color: var(--txt-2); font-size: 14px; }
.lightbox__close { position: absolute; top: 18px; right: 24px; font-size: 34px; line-height: 1; color: var(--txt-2); }
.lightbox__close:hover { color: #fff; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: 14px; background: rgba(12, 22, 36, 0.55);
  transition: border-color 0.3s, background 0.3s;
}
.faq details[open] { border-color: rgba(140, 200, 240, 0.3); background: rgba(16, 28, 44, 0.7); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-family: 'Chakra Petch', sans-serif; font-weight: 600; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__x { position: absolute; right: 24px; top: 50%; width: 13px; height: 13px; margin-top: -6px; }
.faq__x::before, .faq__x::after {
  content: ''; position: absolute; inset: 50% 0 auto; height: 1.6px; background: var(--ice);
  transition: transform 0.3s var(--ease);
}
.faq__x::after { transform: rotate(90deg); }
.faq details[open] .faq__x::after { transform: rotate(0deg); }
.faq__a { padding: 0 24px 22px; color: var(--txt-2); font-size: 15.5px; }

/* Final CTA */
.sec--cta { padding-block: clamp(90px, 12vw, 170px); }
.sec--cta .lead { margin-inline: auto; }
.sec--cta .btn-row { margin-top: 36px; }
.sec--cta .small { margin-top: 22px; }

/* ── Sub pages ────────────────────────────────────────────────────────── */

.page { padding-top: 140px; padding-bottom: 40px; }
.page .wrap + .wrap { margin-top: 26px; }
.prose h2 { font-size: clamp(20px, 2.4vw, 26px); margin-top: 38px; margin-bottom: 10px; }
.prose h3 { font-size: 17px; margin-top: 26px; margin-bottom: 6px; color: var(--ice-dim); }
.prose p { color: var(--txt-2); }
.prose a { color: var(--ice); border-bottom: 1px solid rgba(106, 209, 255, 0.4); }
.facts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.facts > div { display: grid; grid-template-columns: 180px 1fr; gap: 16px; background: rgba(10, 18, 30, 0.9); padding: 15px 20px; }
.facts dt { font-family: 'Chakra Petch', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-3); }
.facts dd { color: var(--txt); }
@media (max-width: 620px) { .facts > div { grid-template-columns: 1fr; gap: 4px; } }

/* ── Footer ───────────────────────────────────────────────────────────── */

.foot { border-top: 1px solid var(--line); background: #03060b; padding-top: 64px; }
.foot__in { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px);
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 52px; }
.foot__brand p { color: var(--txt-3); font-size: 15px; margin-top: 16px; max-width: 38ch; }
.foot__col { display: flex; flex-direction: column; gap: 11px; }
.foot__col h3 { font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 4px; }
.foot__col a { color: var(--txt-2); font-size: 15px; transition: color 0.2s; }
.foot__col a:hover { color: var(--ice); }
.foot__bar {
  border-top: 1px solid var(--line); padding: 20px clamp(20px, 5vw, 40px);
  max-width: var(--wrap); margin-inline: auto; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; font-size: 13.5px; color: var(--txt-3);
}
@media (max-width: 760px) { .foot__in { grid-template-columns: 1fr 1fr; } .foot__brand { grid-column: 1 / -1; } }

/* ── Motion ───────────────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease) var(--d, 0ms), transform 0.7s var(--ease) var(--d, 0ms); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__img { opacity: 1; }
}
