:root {
  --ink: #050505;
  --ink-alt: #0a0a0a;
  --charcoal: #131313;
  --white: #f7f7f7;
  --white-dim: #aeaeae;
  --white-faint: #757575;
  --glass-bg: linear-gradient(165deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
  --glass-bg-hover: linear-gradient(165deg, rgba(255,255,255,0.15), rgba(255,255,255,0.04));
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-border-hover: rgba(143, 216, 255, 0.45);
  --glass-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -1px 0 rgba(255,255,255,0.03);
  --crimson: #e42248;
  --crimson-dim: #8f1428;
  --crimson-glow: rgba(228, 34, 72, 0.4);
  --ice: #8fd8ff;
  --ice-glow: rgba(143, 216, 255, 0.4);
  --ice-soft: rgba(143, 216, 255, 0.08);
  --heading: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 22px;
  --r-md: 32px;
  --r-lg: 48px;
  --r-xl: 64px;
  --r-pill: 999px;
}

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

html { scroll-behavior: auto; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 860px), (hover: none) {
  body { cursor: auto; }
}

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

::selection { background: var(--crimson); color: var(--white); }

/* ---------- Liquid glass base ---------- */
.glass {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.glass::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.glass:hover::after { opacity: 1; }
.glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

/* Lite glass: same look, no backdrop-filter — for elements over flat/plain backgrounds
   where there's nothing interesting behind them to blur. Cheap to render in bulk. */
.glass-flat {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.glass-flat::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,0.14), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.glass-flat:hover::after { opacity: 1; }
.glass-flat:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}

/* ---------- Ambient blobs ---------- */
.blob {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.3;
  mix-blend-mode: screen;
  /* Soft-edged via radial-gradient falloff rather than filter:blur — far cheaper to composite */
}
#blob-crimson {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, var(--crimson) 0%, rgba(228,34,72,0.4) 35%, transparent 68%);
  top: -16vw; left: -18vw;
}
#blob-ice {
  width: 44vw; height: 44vw;
  background: radial-gradient(circle, var(--ice) 0%, rgba(143,216,255,0.35) 35%, transparent 68%);
  bottom: -16vw; right: -14vw;
}
@media (max-width: 860px) { .blob { display: none; } }

/* ---------- Custom cursor ---------- */
#cursor-dot, #cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9998;
  transform: translate(-50%, -50%);
}
#cursor-dot {
  width: 7px; height: 7px;
  background: var(--white);
  mix-blend-mode: difference;
  z-index: 9998;
}
#cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(245,245,245,0.4);
  z-index: 9997;
  transition: width .25s ease, height .25s ease, border-color .25s ease, box-shadow .25s ease;
}
#cursor-ring.hover {
  width: 64px; height: 64px;
  border-color: var(--ice);
  box-shadow: 0 0 26px var(--ice-glow);
}
@media (max-width: 860px), (hover: none) {
  #cursor-dot, #cursor-ring { display: none; }
}

/* ---------- Ambient overlays ---------- */
#film-grain {
  position: fixed; inset: 0;
  z-index: 100;
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: overlay;
}
#vignette {
  position: fixed; inset: 0;
  z-index: 99;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(5,5,5,0.55) 100%);
}
#particles-canvas {
  position: fixed; inset: 0;
  z-index: 15;
  pointer-events: none;
}

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 26px;
  transition: opacity 0.9s ease, filter 0.9s ease;
}
#loader.hidden { opacity: 0; filter: blur(8px); pointer-events: none; }
.loader-line { width: 44px; height: 1px; background: var(--white-faint); border-radius: var(--r-pill); }
#loader .brand-mark {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding-left: 0.5em;
}
.loader-bar {
  width: 160px; height: 3px;
  background: rgba(245,245,245,0.12);
  border-radius: var(--r-pill);
  position: relative;
  overflow: hidden;
}
.loader-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--crimson), var(--ice));
  transition: width 0.2s ease;
}
#loader-pct {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--white-faint);
}

/* ---------- Nav (floating pill) ---------- */
#nav {
  position: fixed; top: 20px; left: 20px; right: 20px;
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 14px 16px 30px;
  border-radius: var(--r-pill);
  background: rgba(10,10,10,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
#nav.scrolled {
  background: rgba(10,10,10,0.55);
  border-color: var(--glass-border);
  box-shadow: var(--glass-shadow);
}
#nav .logo {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
#nav .logo span { color: var(--crimson); }
#nav-links {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white-dim);
}
#nav-links a {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  transition: color 0.25s ease, background 0.25s ease;
}
#nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
#nav-links .nav-cta {
  color: var(--white);
  background: var(--crimson);
  margin-left: 8px;
}
#nav-links .nav-cta:hover { background: var(--white); color: var(--ink); }
@media (max-width: 760px) { #nav-links a:not(.nav-cta) { display: none; } }

/* ---------- Chapter markers ---------- */
#chapter-markers {
  position: fixed;
  right: 26px; top: 50%; transform: translateY(-50%);
  z-index: 50;
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
  padding: 20px 10px;
  border-radius: var(--r-pill);
  background: rgba(10,10,10,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
}
.marker-dot-wrap {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.marker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(245,245,245,0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.marker-dot.active {
  background: var(--ice);
  box-shadow: 0 0 14px var(--ice-glow);
  transform: scale(1.35);
}
.marker-line {
  width: 1px; height: 24px;
  background: rgba(245,245,245,0.14);
  position: relative;
  overflow: hidden;
}
.marker-line-fill {
  position: absolute; top: 0; left: 0; right: 0;
  height: 0%;
  background: var(--ice);
  transition: height 0.2s linear;
}
.marker-label {
  position: absolute; right: 26px; top: 50%; transform: translateY(-50%);
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white-dim);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  background: rgba(10,10,10,0.7);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.08);
  transition: opacity 0.2s ease;
}
.marker-dot-wrap:hover .marker-label { opacity: 1; }
@media (max-width: 900px) { #chapter-markers { display: none; } }

/* ---------- Animation section ---------- */
#animation-section {
  position: relative;
  height: 800vh;
}
#canvas-container {
  position: sticky; top: 0;
  width: 100%; height: 100vh;
  overflow: hidden;
  background: var(--ink);
}
#scroll-canvas {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.canvas-gradient-left {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5,5,5,0.78) 0%, rgba(5,5,5,0.18) 44%, transparent 68%);
  pointer-events: none;
}
.canvas-gradient-bottom {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(5,5,5,0.85) 0%, transparent 30%);
  pointer-events: none;
}
#tint-overlay {
  position: absolute; inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(135deg, var(--crimson-glow) 0%, transparent 55%);
  opacity: 0.05;
  transition: opacity 0.6s ease;
}

/* ---------- Scroll text overlays ---------- */
.scroll-text {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10;
  display: flex; align-items: center;
  padding: 100px 6% 40px;
  opacity: 0;
  filter: blur(8px);
  transform: translateX(-28px);
  transition: opacity 0.7s ease, filter 0.7s ease, transform 0.7s ease;
  pointer-events: none;
}
.scroll-text.visible { opacity: 1; filter: blur(0); transform: translateX(0); pointer-events: auto; }
.scroll-text .inner { max-width: 620px; }
.scroll-text.centered { justify-content: center; text-align: center; }
.scroll-text.centered .inner { max-width: 680px; }
.scroll-text.wide .inner { max-width: 760px; }

.overline {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 22px;
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  background: rgba(143,216,255,0.08);
  border: 1px solid rgba(143,216,255,0.18);
}
.overline.crimson { color: var(--crimson); background: rgba(228,34,72,0.08); border-color: rgba(228,34,72,0.2); }

.section-title {
  font-family: var(--heading);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(52px, 8.4vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.hero-title .char { display: inline-block; opacity: 0; transform: translateY(36px); transition: opacity 0.5s ease, transform 0.5s ease; }
.hero-title .char.shown { opacity: 1; transform: translateY(0); }
.hero-title .accent { color: var(--crimson); }

.body-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--white-dim);
  font-weight: 300;
  max-width: 500px;
}
.tagline {
  font-size: 19px;
  color: var(--white-dim);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 460px;
}

/* Glass stat bar (hero) — floating chips, not a joined strip */
.stat-bar {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 44px;
}
.stat-item {
  padding: 22px 28px;
  border-radius: var(--r-md);
  min-width: 140px;
}
.stat-icon-well {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.stat-icon { width: 18px; height: 18px; opacity: 0.9; object-fit: contain; border-radius: 50%; }
.stat-value {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 26px;
  color: var(--white);
}
.stat-unit { font-size: 12px; color: var(--white-faint); margin-left: 2px; }
.stat-label {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white-faint); margin-top: 6px;
}
@media (max-width: 700px) { .stat-item { min-width: calc(50% - 7px); } }

/* Vision (quote) section */
.quote-mark {
  font-family: var(--heading);
  font-size: 76px;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.9;
}
.quote-text {
  font-family: var(--heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 28px;
}
.quote-divider { width: 50px; height: 2px; border-radius: var(--r-pill); background: var(--ice); margin-bottom: 18px; }
.quote-attribution { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-faint); }

/* Feature list — rounded glass rows */
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.feature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 22px;
  border-radius: var(--r-pill);
}
.feature-item .icon-well {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-item img { width: 18px; height: 18px; object-fit: contain; opacity: 0.9; border-radius: 50%; }
.feature-item span { font-size: 14px; color: var(--white-dim); letter-spacing: 0.02em; }

/* Grid section - glass amenity grid */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
  max-width: 680px;
}
.glass-cell {
  padding: 24px;
}
.glass-cell .cell-title { font-family: var(--heading); font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.glass-cell .cell-desc { font-size: 13px; color: var(--white-faint); line-height: 1.6; font-weight: 300; }
.glass-cell:hover { transform: translateY(-3px); }
@media (max-width: 700px) { .glass-grid { grid-template-columns: 1fr; } }

/* Context section - detail chips */
.detail-list { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; max-width: 460px; }
.detail-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 14px; color: var(--white-dim);
}
.detail-row .value { color: var(--white); font-weight: 500; }

/* CTA section */
.cta-title { font-family: var(--heading); font-weight: 500; font-size: clamp(36px, 5vw, 68px); margin-bottom: 18px; }
.cta-title em { font-style: italic; color: var(--crimson); }
.cta-subtitle { font-size: 17px; color: var(--white-dim); font-weight: 300; margin-bottom: 42px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 44px; flex-wrap: wrap; }
.btn {
  padding: 18px 36px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}
.btn-primary {
  background: var(--crimson);
  color: var(--white);
  border: 1px solid var(--crimson);
}
.btn-primary:hover { background: var(--white); color: var(--ink); border-color: var(--white); box-shadow: 0 0 40px var(--crimson-glow); transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  color: var(--white);
  border: 1px solid var(--glass-border);
}
.btn-secondary:hover { border-color: var(--glass-border-hover); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.contact-card {
  display: inline-flex; flex-direction: column; gap: 6px;
  padding: 24px 38px;
  border-radius: var(--r-lg);
}
.contact-card .contact-name { font-family: var(--heading); font-size: 14px; letter-spacing: 0.1em; }
.contact-card .contact-info { font-size: 13px; color: var(--white-faint); }

/* ---------- Section shell (rounded floating sheet) ---------- */
.page-section {
  position: relative;
  z-index: 3;
  margin: 24px 20px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  padding: 130px 6%;
}
.section-header { text-align: center; margin-bottom: 70px; }
.section-header .overline { display: inline-block; }
.section-header .section-title { font-size: clamp(32px, 4vw, 54px); }
.section-header .section-sub { font-size: 16px; color: var(--white-faint); font-weight: 300; max-width: 560px; margin: 0 auto; }
@media (max-width: 700px) { .page-section { padding: 90px 6%; border-radius: var(--r-lg); margin: 14px 12px; } }

/* ---------- Specs table (rounded rows, no cells) ---------- */
.spec-table { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.spec-group-title {
  font-family: var(--heading); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ice); margin: 36px 0 14px; padding-left: 22px;
}
.spec-group-title:first-child { margin-top: 0; }
.spec-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 30px;
  border-radius: var(--r-pill);
}
.spec-row .spec-label { font-size: 14px; color: var(--white-dim); letter-spacing: 0.02em; }
.spec-row .spec-value { font-family: var(--heading); font-size: 15px; font-weight: 600; color: var(--white); text-align: right; }
@media (max-width: 600px) {
  .spec-row { flex-direction: column; align-items: flex-start; gap: 6px; border-radius: var(--r-md); }
  .spec-row .spec-value { text-align: left; }
}

/* ---------- Configurator (color swatches) ---------- */
.configurator { max-width: 1100px; margin: 0 auto; }
.swatch-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 20px;
}
.swatch-card {
  padding: 18px;
  border-radius: var(--r-lg);
  cursor: pointer;
  text-align: center;
}
.swatch-card.active { border-color: var(--ice); box-shadow: var(--glass-shadow), 0 0 0 2px var(--ice-glow); }
.swatch-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--r-md); display: block; margin-bottom: 16px; }
.swatch-name { font-family: var(--heading); font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.swatch-code { font-size: 11px; color: var(--white-faint); letter-spacing: 0.08em; }
.swatch-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
@media (max-width: 860px) { .swatch-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Interior / Tech split layout ---------- */
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.split-layout img { width: 100%; border-radius: var(--r-xl); display: block; }
.split-layout .split-text .section-title { text-align: left; }
@media (max-width: 900px) { .split-layout { grid-template-columns: 1fr; gap: 36px; } .split-layout .split-text { text-align: center; } .split-layout .split-text .section-title { text-align: center; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4 / 3;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.gallery-item.in-view { opacity: 1; transform: translateY(0); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 4 / 6; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  will-change: transform;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  background: rgba(8,8,8,0.72);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white-dim);
}
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
footer {
  position: relative; z-index: 3;
  margin: 24px 20px 30px;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 56px 6%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer .brand { font-family: var(--heading); font-weight: 600; font-size: 15px; letter-spacing: 0.2em; }
footer .brand span { color: var(--crimson); }
footer .legal { font-size: 12px; color: var(--white-faint); }
footer .foot-links { display: flex; gap: 10px; }
footer .foot-links a { padding: 10px 18px; border-radius: var(--r-pill); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-dim); transition: background 0.25s ease, color 0.25s ease; }
footer .foot-links a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scroll-text, .hero-title .char, .gallery-item, .glass-cell, .blob { transition: none !important; animation: none !important; }
}
