/* ============================================
   BRAZ4 — Lusion-inspired 3D experience
   ============================================ */

:root {
  /* Palette */
  --bg: #07050d;
  --bg-2: #0d0817;
  --ink: #ffffff;
  --ink-2: rgba(255, 255, 255, 0.72);
  --ink-3: rgba(255, 255, 255, 0.5);
  --ink-4: rgba(255, 255, 255, 0.28);
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.18);

  /* Brand accents */
  --pink: #ff4dd2;
  --violet: #8b5cff;
  --magenta: #d633a6;
  --grad: linear-gradient(135deg, var(--pink) 0%, var(--violet) 100%);

  /* Type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --container: 1320px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --section-y: clamp(5rem, 10vw, 9rem);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --t: 180ms var(--ease-out);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (hover: none) {
  body { cursor: auto; }
  .cursor, .cursor-dot { display: none !important; }
}

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

img, svg { display: block; max-width: 100%; }

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1000;
  display: grid;
  place-items: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner {
  text-align: center;
  width: min(420px, 70vw);
}
.loader__counter {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.loader__percent {
  font-size: 0.4em;
  vertical-align: top;
  margin-left: 0.2em;
  -webkit-text-fill-color: var(--ink-3);
}
.loader__bar {
  margin: 2rem 0 1rem;
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.loader__progress {
  height: 100%;
  background: var(--grad);
  width: 0%;
  transition: width 0.1s linear;
}
.loader__label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============================================
   CURSOR
   ============================================ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink-2);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor.is-hover {
  width: 72px;
  height: 72px;
  background: rgba(255, 77, 210, 0.15);
  border-color: var(--pink);
}

/* ============================================
   3D CANVAS + GRAIN
   ============================================ */
#webgl {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

main, .nav, .footer { position: relative; z-index: 2; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  transition: backdrop-filter 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(7, 5, 13, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 84px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 16px rgba(139, 92, 255, 0.4));
  transition: filter var(--t), transform var(--t);
}
@media (max-width: 600px) {
  .nav__logo img { height: 56px; }
}
.nav__logo:hover img {
  filter: drop-shadow(0 0 18px rgba(255, 77, 210, 0.45));
  transform: scale(1.04);
}
.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--ink-2);
}
.nav__links a {
  position: relative;
  transition: color var(--t);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.nav__cta:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 8rem var(--gutter) 4rem;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 2rem;
  align-self: flex-start;
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.hero__eyebrow .dot,
.footer__live .dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 7.5vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: 2rem;
  max-width: 68%;
  position: relative;
  z-index: 3;
  word-break: keep-all;
  hyphens: none;
}
@media (max-width: 900px) {
  .hero__title {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 4rem);
    line-height: 1.12;
  }
  .hero__title .line {
    padding: 0.02em 0.15em 0.06em 0.02em;
  }
  .hero__title .line--accent {
    padding-top: 0.08em;
    padding-bottom: 0.08em;
  }
  .hero__title .line__inner {
    padding: 0.02em 0.12em 0.04em 0.02em;
  }
}
.hero__title .line {
  display: block;
  overflow: visible;
  padding: 0 0.2em 0.04em 0.02em;
  margin: 0;
}
.hero__title .line--accent {
  padding-top: 0.06em;
  padding-bottom: 0.06em;
}
.hero__title .line__inner {
  padding: 0 0.15em 0.04em 0.02em;
  margin: 0;
  line-height: 1;
}
.hero__title .line > span,
.line__inner {
  display: inline-block;
  transform: translateY(110%);
  animation: line-up 1.1s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) .line__inner { animation-delay: 0.1s; }
.hero__title .line:nth-child(2) .line__inner { animation-delay: 0.2s; }
.hero__title .line:nth-child(3) .line__inner { animation-delay: 0.3s; }
.hero__title .line:nth-child(4) .line__inner { animation-delay: 0.4s; }

@keyframes line-up {
  to { transform: translateY(0); }
}

.line--accent .line__inner {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
}

.hero__sub {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--ink-2);
  max-width: 38ch;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.6s forwards;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.75s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out),
              color 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn--lg { padding: 1.125rem 2rem; font-size: 1rem; }

.btn--primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 8px 32px rgba(255, 77, 210, 0.25), 0 0 0 1px rgba(255, 77, 210, 0.3) inset;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255, 77, 210, 0.4), 0 0 0 1px rgba(255, 77, 210, 0.5) inset;
}
.btn--ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--ink-3); transform: translateY(-2px); }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 640px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 0.9s forwards;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: 0.75rem;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out) 1.1s forwards;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
  overflow: hidden;
  background: rgba(13, 8, 23, 0.4);
  backdrop-filter: blur(10px);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  animation: marquee 40s linear infinite;
}
.marquee__track span:not(.dot-sep) {
  color: var(--ink);
}
.marquee__track .dot-sep {
  color: var(--pink);
  font-size: 0.5em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION SCAFFOLDING
   ============================================ */
section {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.services, .why, .ba, .who, .cta-band, .faq {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.section__head { margin-bottom: 4rem; }
.section__num {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 6vw, 5rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.section__lead {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--ink-2);
  max-width: 56ch;
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.service {
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(13, 8, 23, 0.6);
  backdrop-filter: blur(20px);
  transition: background 0.5s var(--ease-out);
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 77, 210, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.service:hover::before { opacity: 1; }
.service:hover {
  background: rgba(20, 12, 34, 0.85);
}
.service__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--pink);
  margin-bottom: 3.5rem;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.service p {
  color: var(--ink-2);
  font-size: 0.9375rem;
  max-width: 32ch;
}
.service__arrow {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: transform 0.5s var(--ease-out), background 0.5s var(--ease-out), color 0.5s var(--ease-out);
}
.service:hover .service__arrow {
  background: var(--grad);
  color: white;
  transform: translate(4px, -4px) rotate(-12deg);
  border-color: transparent;
}

/* ============================================
   WHY US (3 pillars)
   ============================================ */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.pillar {
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(13, 8, 23, 0.5);
  backdrop-filter: blur(20px);
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
}
.pillar__icon {
  color: var(--pink);
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 16px rgba(255, 77, 210, 0.35));
  animation: spin-slow 32s linear infinite;
  transform-origin: 32px 32px;
  width: 64px;
  height: 64px;
  display: block;
}
.pillar:nth-child(2) .pillar__icon { animation-direction: reverse; animation-duration: 26s; }
.pillar:nth-child(3) .pillar__icon { animation-duration: 40s; }

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.pillar h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.pillar p { color: var(--ink-2); font-size: 0.9375rem; }

/* ============================================
   BEFORE / AFTER
   ============================================ */
.ba__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 3rem;
  background: rgba(13, 8, 23, 0.5);
  backdrop-filter: blur(20px);
}
.ba__col { display: flex; flex-direction: column; }
.ba__label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
}
.ba__col--before .ba__label { color: var(--ink-4); }
.ba__col--after .ba__label { color: var(--pink); }
.ba__col ul { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.ba__col li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1.0625rem;
}
.ba__col--before li { color: var(--ink-3); }
.ba__col--after li { color: var(--ink); }
.ba__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 600;
}
.ba__icon--x { background: rgba(255, 255, 255, 0.05); color: var(--ink-4); }
.ba__icon--check { background: var(--grad); color: white; }
.ba__divider {
  color: var(--pink);
  align-self: center;
  filter: drop-shadow(0 0 16px rgba(255, 77, 210, 0.5));
}

@media (max-width: 760px) {
  .ba__grid { grid-template-columns: 1fr; padding: 2rem; }
  .ba__divider { display: none; }
}

/* ============================================
   WHO WE HELP
   ============================================ */
.who__list { display: flex; flex-direction: column; }
.who__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  transition: padding 0.4s var(--ease-out);
}
.who__item:last-child { border-bottom: 1px solid var(--line); }
.who__item:hover { padding-left: 1rem; }
.who__bullet {
  font-family: var(--font-display);
  color: var(--pink);
  font-size: 1.25rem;
  transition: transform 0.4s var(--ease-out);
}
.who__item:hover .who__bullet { transform: translateX(4px); }
.who__item p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band__inner {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 77, 210, 0.18), rgba(139, 92, 255, 0.18));
  border: 1px solid rgba(255, 77, 210, 0.25);
  overflow: hidden;
  text-align: center;
}
.cta-band__inner::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 77, 210, 0.5) 30%, transparent 60%);
  z-index: -1;
  animation: rotate-conic 8s linear infinite;
}
.cta-band__inner::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--bg);
  border-radius: 30px;
  z-index: -1;
}
@keyframes rotate-conic {
  to { transform: rotate(360deg); }
}

.cta-band__inner h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.cta-band__inner p {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}
.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FAQ
   ============================================ */
.faq__list { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--line);
  padding: 0.5rem 0;
  transition: padding 0.4s var(--ease-out);
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.125rem, 1.75vw, 1.5rem);
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  transition: color var(--t);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--pink); }
.faq__plus {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: transform 0.4s var(--ease-out);
}
.faq__plus::before { width: 18px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__plus::after  { width: 1.5px; height: 18px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__item p {
  padding: 0 0 1.75rem;
  color: var(--ink-2);
  max-width: 70ch;
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 4rem var(--gutter) 2rem;
  background: var(--bg-2);
}
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; flex-direction: column; gap: 1.5rem; }
.footer__logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 16px rgba(139, 92, 255, 0.35));
  align-self: flex-start;
  margin-left: -12px;
}
.footer__tag {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}
.footer__tag span:last-child {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.footer__col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer__col a {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--ink-2);
  transition: color var(--t), transform var(--t);
}
.footer__col a:hover { color: var(--pink); transform: translateX(4px); }

.footer__bottom {
  max-width: var(--container);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--ink-3);
}
.footer__live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ============================================
   REVEAL (on scroll)
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__title .line > span, .line__inner { transform: none; }
  .marquee__track { animation: none; }
}
