/* ══════════════════════════════════════════════
   UNIVERANCE LABS — Design System v2
   Style: OLED Dark + Liquid Glass + Ambient Glow
   Typography: Bodoni Moda (display) / Jost (body)
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── Tokens ── */
:root {
  --black: #0a0a0a;
  --black-pure: #000000;
  --surface: #111111;
  --surface-2: #161616;
  --border: #1e1e1e;
  --border-hover: #2a2a2a;
  --white: #f0f0f0;
  --white-dim: #c8c8c8;
  --gray: #7a7a7a;
  --gray-muted: #4a4a4a;
  --gold: #c9a84c;
  --gold-bright: #e0c068;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-glow: rgba(201,168,76,0.3);
  --green: #22C55E;
  --heading: 'Bodoni Moda', Georgia, serif;
  --body: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0, 1);
  --radius: 16px;
  --radius-sm: 8px;
  --nav-h: 64px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 2rem);
  cursor: none;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── Focus States ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ── Noise / Grain Overlay ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ── Custom Cursor ── */
.cursor {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(201,168,76,0.6);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transition: width 0.3s var(--ease-smooth), height 0.3s var(--ease-smooth),
              border-color 0.3s, opacity 0.3s;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  backdrop-filter: invert(0.05);
}
.cursor-dot {
  width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear, opacity 0.2s;
}
.cursor.hover {
  width: 56px; height: 56px;
  border-color: rgba(255,255,255,0.3);
  opacity: 0.6;
}
.cursor.hover + .cursor-dot { opacity: 0; }

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--gold));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  z-index: 10000; width: 0%;
  transition: width 0.08s linear;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Nav ── */
nav {
  position: fixed; top: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2.5rem;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(30px) saturate(1.4);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.4s, border-color 0.4s;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  border-bottom-color: rgba(255,255,255,0.06);
}

.logo {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s;
}
a.logo:hover { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease), background 0.25s;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--white); }
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}
.hamburger svg { display: block; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(40px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--heading);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.25s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: menuReveal 0.4s var(--ease-out) forwards;
}
.mobile-menu.open a:nth-child(2) { animation-delay: 0.05s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.1s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.15s; }
.mobile-menu.open a:nth-child(5) { animation-delay: 0.2s; }
@keyframes menuReveal {
  to { opacity: 1; transform: translateY(0); }
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Animated mesh gradient background */
.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-mesh .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite alternate;
}
.hero-mesh .orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.25), transparent 70%);
  top: -10%; left: -5%;
  animation-duration: 22s;
}
.hero-mesh .orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 70%);
  bottom: -15%; right: -10%;
  animation-duration: 18s;
  animation-delay: -8s;
}
.hero-mesh .orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
  top: 40%; left: 50%;
  animation-duration: 25s;
  animation-delay: -12s;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -40px) scale(1.05); }
  66%  { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(15px, -15px) scale(1.02); }
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.4) 45%,
    rgba(10,10,10,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 820px;
}

/* Text reveal animation */
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(3.2rem, 7.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.text-reveal {
  display: inline-block;
  overflow: hidden;
}
.text-reveal-inner {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 0.9s var(--ease-smooth);
}
.text-reveal-inner.revealed {
  transform: translateY(0);
}

.gold { color: var(--gold); }

.hero p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 460px;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.4s var(--ease-out), transform 0.7s 0.4s var(--ease-out);
}
.hero p.revealed { opacity: 1; transform: translateY(0); }

.hero .cta {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s 0.6s var(--ease-out), transform 0.6s 0.6s var(--ease-out),
              background 0.25s, color 0.25s;
}
.hero .cta.revealed { opacity: 1; transform: translateY(0); }

/* ── CTA Button ── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.85rem 1.8rem;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  text-decoration: none;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.04);
  position: relative;
}
.cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,0.2);
  transform: translateY(-1px);
}
.cta svg {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease);
}
.cta:hover svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════════════ */
section {
  padding: 6rem 4rem;
  position: relative;
}
.section-label {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
section h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 0.75rem;
}
section > p {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}

/* Ambient glow between sections */
.ambient-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
  pointer-events: none;
  z-index: -1;
}
.ambient-glow.gold-glow {
  background: var(--gold);
}
.ambient-glow.white-glow {
  background: white;
}

/* ── About ── */
.about { border-bottom: 1px solid var(--border); }

/* ── Marquee Strip ── */
.marquee-section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-track span .dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 1rem;
  vertical-align: middle;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   PRODUCT CARDS — Glowing Glass
   ══════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  max-width: 860px;
}

.product-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}
/* Animated gradient border */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(201,168,76,0.0) 0%,
    rgba(201,168,76,0.15) 50%,
    rgba(201,168,76,0.0) 100%
  );
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background-size 0.6s, opacity 0.4s;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}
.product-card:hover::before {
  background-size: 100% 100%;
  opacity: 1;
  animation: borderGlow 3s linear infinite;
}
@keyframes borderGlow {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.4),
    0 0 40px rgba(201,168,76,0.06);
}

/* Inner glow on hover */
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(201,168,76,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  border-radius: var(--radius) var(--radius) 0 0;
}
.product-card:hover::after { opacity: 1; }

.product-visual {
  aspect-ratio: 16 / 8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-visual .icon-wrap {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.product-visual .icon-wrap svg {
  width: 24px; height: 24px;
  stroke-width: 1.5;
}

/* Sentinel visual */
.sentinel-visual {
  background: radial-gradient(circle, #0a1a0a 0%, var(--surface) 100%);
}
.radar-ring {
  position: absolute;
  border: 1px solid rgba(34,197,94,0.1);
  border-radius: 50%;
  width: 80px; height: 80px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.radar-ring.r2 { width: 140px; height: 140px; }
.radar-ring.r3 { width: 200px; height: 200px; }
.radar-sweep {
  position: absolute;
  width: 100px; height: 1.5px;
  top: 50%; left: 50%;
  background: linear-gradient(90deg, rgba(34,197,94,0.4), transparent);
  transform-origin: left center;
  animation: sweep 4s linear infinite;
}
@keyframes sweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Eastworld visual */
.eastworld-visual {
  background: radial-gradient(circle, #0a0a14 0%, var(--surface) 100%);
}
.planet {
  width: 60px; height: 60px;
  border-radius: 50%;
  position: absolute;
  background: radial-gradient(circle at 35% 35%, #1a3a2a, #050a08);
  box-shadow: 0 0 30px rgba(5,150,105,0.12);
}
.orbit-ring {
  position: absolute;
  width: 120px; height: 120px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateX(60deg);
}
.orbit-ring.o2 {
  width: 170px; height: 170px;
  transform: translate(-50%, -50%) rotateX(60deg) rotate(30deg);
}

.product-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-number {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 0.4rem;
}
.product-card h3 {
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.product-tagline {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.product-card-body > p:not(.product-tagline) {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.82rem;
  font-weight: 300;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.product-features span {
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gray-muted);
  letter-spacing: 0.02em;
  transition: border-color 0.25s, color 0.25s;
}
.product-card:hover .product-features span {
  border-color: var(--border-hover);
  color: var(--gray);
}

.product-card-body .card-arrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-muted);
  transition: color 0.3s, gap 0.3s;
}
.card-arrow svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.product-card:hover .card-arrow {
  color: var(--gold);
}
.product-card:hover .card-arrow svg {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  max-width: 680px;
}
.team-member {
  text-align: center;
  cursor: default;
}
.portrait {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
}
.portrait::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: border-color 0.4s;
}
.portrait span {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.team-member:hover .portrait {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 40px rgba(201,168,76,0.08);
  transform: translateY(-3px);
}
.team-member:hover .portrait::after {
  border-color: rgba(201,168,76,0.15);
}
.team-member h3 {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.team-member p {
  font-size: 0.75rem;
  color: var(--gray-muted);
  font-weight: 400;
}

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact .ambient-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.contact .email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s, letter-spacing 0.3s;
  margin-top: 1.5rem;
  cursor: pointer;
}
.contact .email-link:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--white);
  letter-spacing: 0.04em;
}
.contact .email-link svg {
  width: 18px; height: 18px;
  stroke-width: 1.5;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
  padding: 3rem 4rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  gap: 3rem;
}
.footer-brand {
  flex: 1;
}
.footer-brand .logo {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.75rem;
  color: var(--gray-muted);
  max-width: 260px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 3rem;
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-muted);
  text-decoration: none;
  padding: 0.2rem 0;
  transition: color 0.25s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.7rem;
  color: var(--gray-muted);
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  color: var(--gray-muted);
  transition: color 0.25s;
  cursor: pointer;
}
.footer-socials a:hover { color: var(--gold); }
.footer-socials svg {
  width: 16px; height: 16px;
}

/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-in-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.fade-in-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.fade-in-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax helper (set via JS) */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ══════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in, .fade-in-stagger > * { opacity: 1; transform: none; }
  .text-reveal-inner { transform: none; }
  .hero p, .hero .cta { opacity: 1; transform: none; }
  .cursor, .cursor-dot { display: none; }
  html, body { cursor: auto; }
  .marquee-track { animation: none; }
  .hero-mesh .orb { animation: none; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid { gap: 1rem; }
  section { padding: 5rem 3rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
}

@media (max-width: 768px) {
  html, body { cursor: auto; }
  .cursor, .cursor-dot { display: none; }
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-content, section { padding-left: 1.5rem; padding-right: 1.5rem; }
  section { padding-top: 4rem; padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .hero-mesh .orb { filter: blur(80px); }
  .hero-mesh .orb-1 { width: 350px; height: 350px; }
  .hero-mesh .orb-2 { width: 300px; height: 300px; }
  .products-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .footer-links { gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  nav { padding: 0 1rem; }
  .hero-content, section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero p { font-size: 1rem; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
}
