/* ============================================================
   UMORA — brand system
   ============================================================ */
:root {
  --ink: #05070f;
  --ink-2: #0a0e1d;
  --ink-3: #101731;
  --text: #eef1fa;
  --text-dim: #9aa3bd;
  --blue: #2f7ee0;
  --cyan: #29c8e0;
  --violet: #7a4ff0;
  --magenta: #b44ff0;
  --grad: linear-gradient(100deg, var(--cyan), var(--blue) 45%, var(--violet));
  --radius: 22px;
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(122, 79, 240, 0.45); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--cyan), var(--violet));
  border-radius: 8px;
  border: 3px solid var(--ink);
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

/* ============================================================
   Preloader
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; }

.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }

.loader__mark {
  height: 74px;
  width: auto;
  animation: loaderPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 8px 40px rgba(41, 200, 224, 0.35));
}
@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

.loader__bar {
  width: 160px; height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 3px;
  background: var(--grad);
  animation: loaderSlide 1s ease-in-out infinite;
}
@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ============================================================
   Overlays: progress, grain, spotlight
   ============================================================ */
.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 120;
  pointer-events: none;
}
.progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad);
  transform-origin: left;
  transform: scaleX(0);
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(2) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

.spotlight {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 30%),
    rgba(47, 126, 224, 0.09), transparent 70%);
}

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 56px);
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.topbar.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(5, 7, 15, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.07);
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 1.02rem;
}
.topbar__brand img { height: 30px; width: auto; }

.topbar__nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-weight: 700;
  font-size: 0.9rem;
}

.topbar__nav a:not(.topbar__cta) {
  position: relative;
  color: var(--text-dim);
  transition: color 0.25s;
}
.topbar__nav a:not(.topbar__cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: right 0.3s var(--ease-out);
}
.topbar__nav a:not(.topbar__cta):hover { color: var(--text); }
.topbar__nav a:not(.topbar__cta):hover::after { right: 0; }

.topbar__cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 20px rgba(47, 126, 224, 0.3);
  transition: box-shadow 0.25s;
}
.topbar__cta:hover { box-shadow: 0 10px 30px rgba(47, 126, 224, 0.5); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 130px 24px 90px;
}

.hero__field {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: drift 16s ease-in-out infinite alternate;
}
.aurora--a {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(47, 126, 224, 0.5), transparent 65%);
  top: -160px; left: -120px;
}
.aurora--b {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(122, 79, 240, 0.45), transparent 65%);
  bottom: -180px; right: -100px;
  animation-delay: -6s;
}
.aurora--c {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(41, 200, 224, 0.28), transparent 65%);
  top: 30%; left: 55%;
  animation-delay: -11s;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(50px, 36px) scale(1.15); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

/* Crest: logo with orbiting rings */
.hero__crest {
  position: relative;
  width: clamp(110px, 15vw, 150px);
  height: clamp(110px, 15vw, 150px);
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo {
  height: 62%;
  width: auto;
  filter: drop-shadow(0 12px 45px rgba(41, 200, 224, 0.35));
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero__ring--a {
  border-top-color: rgba(41, 200, 224, 0.7);
  animation: spin 9s linear infinite;
}
.hero__ring--b {
  inset: -14%;
  border-bottom-color: rgba(122, 79, 240, 0.6);
  animation: spin 14s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 30px;
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(41, 200, 224, 0.6);
  animation: pulse 2s ease-out infinite;
  flex: none;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(41, 200, 224, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(41, 200, 224, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 200, 224, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.hero__title em { font-style: normal; }

/* Word-by-word reveal (spans injected by JS) */
.hero__title .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.hero__title .w > span {
  display: inline-block;
  transform: translateY(115%);
  animation: wordUp 0.85s var(--ease-out) forwards;
  animation-delay: var(--wd, 0s);
}
@keyframes wordUp { to { transform: translateY(0); } }

.hero__sub {
  margin: 26px auto 0;
  max-width: 600px;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--text-dim);
}

.hero__actions {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 15px 34px;
  border-radius: 999px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 34px rgba(47, 126, 224, 0.35);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn--primary:hover::before { transform: translateX(120%); }
.btn--primary:hover { box-shadow: 0 18px 48px rgba(47, 126, 224, 0.55); }

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--big {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  padding: 20px 46px;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--cyan);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   Ticker
   ============================================================ */
.ticker {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: tickerScroll 26s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(238, 241, 250, 0.4);
  white-space: nowrap;
  transition: color 0.3s;
}
.ticker__track span:hover { color: var(--text); }
.ticker__track i {
  font-style: normal;
  color: var(--violet);
  font-size: 0.8rem;
  opacity: 0.7;
}
@keyframes tickerScroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Load-in / scroll-reveal animation
   ============================================================ */
.rise {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   About
   ============================================================ */
.about {
  position: relative;
  background:
    radial-gradient(700px 380px at 85% 0%, rgba(122, 79, 240, 0.08), transparent 70%),
    var(--ink-2);
  padding: clamp(90px, 13vw, 160px) 24px;
}

.about__inner { max-width: 1020px; margin: 0 auto; }

.about__lede {
  max-width: 620px;
  margin-top: 22px;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.9vw, 1.14rem);
}

.about__beats {
  margin-top: clamp(44px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}

.beat {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 38px 32px;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.beat:hover {
  border-color: rgba(122, 79, 240, 0.4);
  background: rgba(255, 255, 255, 0.045);
}

.beat__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(320px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(47, 126, 224, 0.14), transparent 70%);
}
.beat:hover .beat__glow { opacity: 1; }

.beat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.beat h3 {
  font-family: var(--font-display);
  font-size: 1.42rem;
  margin: 14px 0 10px;
  letter-spacing: -0.01em;
}

.beat p { color: var(--text-dim); font-size: 1rem; }

/* ============================================================
   Products
   ============================================================ */
.products {
  position: relative;
  padding: clamp(90px, 13vw, 160px) 24px;
  background:
    radial-gradient(700px 380px at 10% 15%, rgba(41, 200, 224, 0.05), transparent 70%),
    var(--ink);
}

.products__inner { max-width: 1100px; margin: 0 auto; }

.products__grid {
  margin-top: clamp(44px, 6vw, 70px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}

.pcard {
  --accent: var(--cyan);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 28px 26px 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
}
a.pcard:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px -20px color-mix(in srgb, var(--accent) 45%, transparent);
}

.pcard__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(300px circle at var(--gx, 50%) var(--gy, 50%),
    color-mix(in srgb, var(--accent) 18%, transparent), transparent 72%);
}
a.pcard:hover .pcard__glow { opacity: 1; }

.pcard__badge {
  position: absolute;
  top: 20px; right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 7, 15, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.pcard__badge .pulse-dot { width: 6px; height: 6px; background: #3ee08f; box-shadow: 0 0 0 0 rgba(62, 224, 143, 0.6); animation-name: pulseGreen; }
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(62, 224, 143, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(62, 224, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(62, 224, 143, 0); }
}

.pcard__initial {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4.4rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 30%, #fff));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.9;
  margin-bottom: auto;
  transform: translateZ(30px);
}

.pcard__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 26px;
}

.pcard__domain {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-top: 3px;
}

.pcard__visit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--accent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.pcard__visit i { font-style: normal; transition: transform 0.3s; }
a.pcard:hover .pcard__visit { opacity: 1; transform: translateY(0); }
a.pcard:hover .pcard__visit i { transform: translate(2px, -2px); }

.pcard--soon {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  justify-content: flex-start;
}
.pcard--soon .pcard__initial {
  background: none;
  -webkit-text-fill-color: rgba(154, 163, 189, 0.35);
  color: rgba(154, 163, 189, 0.35);
}
.pcard--soon .pcard__name { color: var(--text-dim); }
.pcard__badge--soon { position: static; margin-top: 16px; align-self: flex-start; }

/* ============================================================
   Numbers
   ============================================================ */
.numbers {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--ink-2);
  padding: clamp(60px, 9vw, 100px) 24px;
}

.numbers__inner {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 36px;
  text-align: center;
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stat__label {
  display: block;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 14vw, 180px) 24px;
  text-align: center;
}

.cta__aurora {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 900px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(122, 79, 240, 0.18), rgba(47, 126, 224, 0.08) 55%, transparent);
  filter: blur(40px);
  pointer-events: none;
  animation: ctaBreathe 7s ease-in-out infinite;
}
@keyframes ctaBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.cta__inner { position: relative; max-width: 780px; margin: 0 auto; }

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.cta__sub {
  margin: 22px auto 40px;
  max-width: 480px;
  color: var(--text-dim);
  font-size: clamp(1rem, 2vw, 1.14rem);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 24px 130px;
}

.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}
.footer__logo img { height: 30px; width: auto; }

.footer__brand p {
  color: var(--text-dim);
  font-size: 0.94rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.footer__col a {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 600;
  width: fit-content;
  transition: color 0.25s;
}
.footer__col a:hover { color: var(--cyan); }

.footer__legal {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgba(154, 163, 189, 0.5);
  font-size: 0.82rem;
}

.footer__giant {
  position: absolute;
  left: 50%;
  bottom: -0.36em;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 19vw, 15rem);
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 700px) {
  .topbar__nav a:not(.topbar__cta) { display: none; }
  .footer { padding-bottom: 100px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise, .reveal { animation: none; transition: none; opacity: 1; transform: none; }
  .hero__title .w > span { transform: none; animation: none; }
  .aurora, .cta__aurora, .hero__logo, .hero__ring, .grain,
  .loader__mark, .loader__bar span, .pulse-dot, .hero__scroll span { animation: none; }
  .ticker__track { animation: none; }
  .card-3d { transform: none !important; }
}
