:root {
  --bg: #09090f;
  --panel: rgba(255,255,255,0.07);
  --panel-strong: rgba(255,255,255,0.12);
  --text: #f6f5ff;
  --muted: #b7b2d6;
  --pink: #ff4fd8;
  --blue: #71e3ff;
  --lime: #c6ff5e;
  --shadow: 0 24px 80px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,79,216,0.2), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(113,227,255,0.18), transparent 28%),
    linear-gradient(180deg, #0d0d17 0%, #08080c 100%);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255,255,255,0.7) 0.55px, transparent 0.55px);
  background-size: 10px 10px;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 42px);
  backdrop-filter: blur(18px);
  background: rgba(9,9,15,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.brand {
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: #09090f; font-weight: 900;
  box-shadow: 0 10px 40px rgba(255,79,216,0.35);
}
nav { display: flex; gap: 16px; flex-wrap: wrap; }
nav a { color: var(--muted); font-weight: 600; }
main { width: min(1180px, calc(100% - 28px)); margin: 0 auto; padding-bottom: 64px; }
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 32px 0 24px;
}
.eyebrow,.kicker {
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  margin: 0 0 10px;
}
h1 {
  margin: 0;
  font-size: clamp(3.4rem, 11vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.lead {
  max-width: 58ch;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.6;
  color: var(--muted);
  margin: 18px 0 0;
}
.hero-actions,.contact .cta { margin-top: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.primary {
  color: #09090f;
  background: linear-gradient(135deg, var(--pink), var(--lime));
  box-shadow: 0 14px 40px rgba(255,79,216,0.25);
}
.secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}
.hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
}
.orb-a { width: 220px; height: 220px; background: rgba(255,79,216,0.24); top: 8%; left: 10%; }
.orb-b { width: 260px; height: 260px; background: rgba(113,227,255,0.18); right: 5%; bottom: 16%; }
.orb-c { width: 100px; height: 100px; background: rgba(198,255,94,0.24); top: 15%; right: 18%; }
.portrait-card {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 0.88;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.portrait-ring {
  position: absolute; inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
}
.portrait-core {
  position: absolute; inset: 17%;
  border-radius: 32px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(255,79,216,0.95), rgba(113,227,255,0.95));
  color: #09090f;
  font-size: clamp(6rem, 16vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}
.tag, .floating-quote, .stat, .panel, .contact {
  backdrop-filter: blur(18px);
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.tag {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}
.tag-top { top: 20px; right: 20px; }
.tag-bottom { left: 20px; bottom: 20px; }
.floating-quote {
  position: absolute;
  right: -10px;
  bottom: 22px;
  width: min(250px, 56%);
  padding: 18px;
  border-radius: 22px;
  color: var(--muted);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 14px 0 24px;
}
.stat, .panel, .contact {
  border-radius: 28px;
  padding: 24px;
}
.stat strong {
  display: block;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
  margin-bottom: 6px;
}
.stat span { color: var(--muted); }
.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 18px 0 24px;
}
.panel.large { min-height: 280px; }
.panel h2, .contact h2 { margin: 0 0 12px; font-size: clamp(1.5rem, 4vw, 2.4rem); }
.panel p, .panel li, .contact p { color: var(--muted); line-height: 1.6; }
.panel ul { margin: 0; padding-left: 18px; }
.accent { background: linear-gradient(180deg, rgba(255,79,216,0.12), rgba(255,255,255,0.04)); }
.spotlight { background: linear-gradient(180deg, rgba(113,227,255,0.14), rgba(255,255,255,0.04)); }
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin: 20px 0;
}
.ticker {
  display: flex;
  gap: 36px;
  padding: 14px 0;
  width: max-content;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.not-found { display: grid; place-items: center; padding: 24px; }
.not-found-card {
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
}
.reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; }
@media (max-width: 900px) {
  .hero, .panel-grid, .stats { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 18px; }
  .hero-stage { min-height: 420px; }
  .floating-quote { right: 12px; width: min(220px, 62%); }
}
@media (max-width: 520px) {
  .topbar { padding: 14px; }
  nav { gap: 10px; font-size: 0.95rem; }
  main { width: min(100% - 16px, 1180px); }
  .hero-stage { min-height: 360px; }
  .portrait-card { border-radius: 24px; }
  .stat, .panel, .contact { padding: 18px; border-radius: 22px; }
  .hero-actions { flex-direction: column; }
  .cta { width: 100%; }
}
