:root {
  --black: #050505;
  --charcoal: #111315;
  --gray: #aeb4bb;
  --white: #ffffff;
  --yellow: #ffd400;
  --yellow-dark: #d6a900;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, Arial, sans-serif; background: var(--black); color: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.nav { position: sticky; top: 0; z-index: 10; display: flex; justify-content: space-between; align-items: center; padding: 22px 7vw; background: rgba(5,5,5,.86); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,.08); }
.brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    align-self: center;
    margin-left: 5px;
}
.nav nav { display: flex; gap: 28px; color: var(--gray); font-size: .95rem; }
.nav nav a:hover { color: var(--yellow); }
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; padding: 92px 7vw 64px; min-height: 86vh; background: radial-gradient(circle at 75% 15%, rgba(255,212,0,.2), transparent 28%), linear-gradient(135deg, #050505 0%, #121212 100%); }
.eyebrow { color: var(--yellow); text-transform: uppercase; font-size: .78rem; letter-spacing: .16em; font-weight: 800; }
h1 { font-size: clamp(2.8rem, 5vw, 5.8rem); line-height: 1; margin: 16px 0 24px; letter-spacing: -.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.02; margin: 8px 0 22px; letter-spacing: -.04em; }
h3 { font-size: 1.7rem; margin: 22px 0 10px; }
h4 { font-size: 1.2rem; margin-bottom: 6px; }
.lead { font-size: 1.25rem; color: #d6d8da; max-width: 720px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; border-radius: 999px; font-weight: 800; }
.primary { background: var(--yellow); color: #111; box-shadow: 0 10px 30px rgba(255,212,0,.28); }
.secondary { border: 1px solid rgba(255,255,255,.22); color: var(--white); }
.hero-visual img, .split img { width: 100%; filter: drop-shadow(0 30px 70px rgba(0,0,0,.45)); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.1); border-top: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); }
.stats div { background: #0c0c0c; padding: 34px 7vw; }
.stats strong { display: block; color: var(--yellow); font-size: 2.2rem; line-height: 1; }
.stats span { color: var(--gray); }
.section { padding: 88px 7vw; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.card { background: #101214; border: 1px solid rgba(255,255,255,.09); border-radius: 28px; padding: 28px; min-height: 480px; transition: transform .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(255,212,0,.55); }
.card.yellow { background: linear-gradient(160deg, #ffd400, #b99100); color: #111; }
.card img { width: 100%; height: 210px; object-fit: contain; }
.card p, .feature-grid p, .split p, li { color: #cfd3d6; }
.card.yellow p { color: #211b00; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.dark-panel { background: #0d0f10; }
ul { padding-left: 20px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 34px; }
.feature-grid div { padding: 24px; background: #101214; border-radius: 22px; border: 1px solid rgba(255,255,255,.08); }
.contact { margin: 40px 7vw 80px; padding: 70px; border-radius: 36px; background: radial-gradient(circle at 85% 20%, rgba(255,212,0,.34), transparent 30%), linear-gradient(135deg, #151515, #050505); border: 1px solid rgba(255,212,0,.28); text-align: center; }
.contact h2 { max-width: 980px; margin-left: auto; margin-right: auto; }
footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px 7vw; color: var(--gray); border-top: 1px solid rgba(255,255,255,.08); }

/* —— Live animations —— */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-text, .hero-visual { position: relative; z-index: 1; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .45;
  animation: drift 14s ease-in-out infinite;
}
.orb-1 { width: 320px; height: 320px; background: rgba(255,212,0,.35); top: 8%; right: 12%; animation-delay: 0s; }
.orb-2 { width: 220px; height: 220px; background: rgba(255,212,0,.18); bottom: 18%; left: 6%; animation-delay: -4s; }
.orb-3 { width: 160px; height: 160px; background: rgba(255,255,255,.06); top: 42%; left: 38%; animation-delay: -7s; }

.grid-pulse {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 20%, transparent 75%);
  animation: grid-fade 6s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  inset: 10% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,212,0,.22), transparent 65%);
  animation: glow-pulse 4s ease-in-out infinite;
}

.hero-visual img.float-visual,
.split img.float-visual {
  animation: float 6s ease-in-out infinite;
}

.shimmer {
  background: linear-gradient(90deg, var(--yellow) 0%, #fff6b0 45%, var(--yellow) 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}

.pulse-cta {
  animation: cta-glow 2.8s ease-in-out infinite;
}

.contact {
  animation: contact-glow 5s ease-in-out infinite;
}

.card img {
  transition: transform .35s ease;
}
.card:hover img {
  transform: scale(1.04) translateY(-4px);
}

.feature-grid div {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(255,212,0,.4);
  box-shadow: 0 12px 32px rgba(255,212,0,.08);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

.page-load .nav.reveal { opacity: 0; transform: translateY(-12px); }
body.loaded .nav.reveal.is-visible,
body.loaded .hero .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.loaded .hero .reveal { transition-delay: 0s; }
body.loaded .hero .reveal-delay-2 { transition-delay: .25s; }

.stats strong {
  transition: color .3s ease;
}
.stats div.is-visible strong {
  animation: stat-flash .6s ease .1s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.05); }
  66% { transform: translate(-16px, 12px) scale(.96); }
}
@keyframes grid-fade {
  0%, 100% { opacity: .35; }
  50% { opacity: .7; }
}
@keyframes glow-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 10px 30px rgba(255,212,0,.28); }
  50% { box-shadow: 0 10px 42px rgba(255,212,0,.5), 0 0 0 4px rgba(255,212,0,.12); }
}
@keyframes contact-glow {
  0%, 100% { border-color: rgba(255,212,0,.28); }
  50% { border-color: rgba(255,212,0,.55); }
}
@keyframes stat-flash {
  0% { color: var(--white); }
  40% { color: #fff; text-shadow: 0 0 20px rgba(255,212,0,.6); }
  100% { color: var(--yellow); }
}

@media (prefers-reduced-motion: reduce) {
  .orb, .grid-pulse, .hero-glow, .hero-visual img.float-visual, .split img.float-visual,
  .shimmer, .pulse-cta, .contact { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .shimmer { color: var(--yellow); background: none; -webkit-text-fill-color: unset; }
}
@media (max-width: 900px) { .hero, .split, .cards, .feature-grid, .stats { grid-template-columns: 1fr; } .nav { align-items: flex-start; gap: 14px; flex-direction: column; } .contact { padding: 40px 24px; margin-left: 5vw; margin-right: 5vw; } }
