:root {
  --bg: #07070b;
  --bg-soft: #0f0f18;
  --ink: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;
  --white: #ffffff;
  --primary: #4f46e5;
  --accent: #06b6d4;
  --violet: #a855f7;
  --pink: #ec4899;
  --gold: #e0a83a;
  --gold-light: #f5d97a;
  --radius: 24px;
  --shadow: 0 30px 80px -24px rgba(79, 70, 229, 0.55);
  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: rgba(79, 70, 229, 0.28);
}

.container {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.container.narrow {
  width: min(100%, 980px);
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--violet));
  box-shadow: 0 0 14px rgba(6, 182, 212, 0.75);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  padding-block: 1.2rem;
  transition: padding 0.35s ease, background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px) saturate(150%);
}

.nav-shell {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.45);
  animation: pulseGlow 3s ease-in-out infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-meta,
.label {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-link {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.is-active {
  color: #05050a;
  background: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  width: min(calc(100% - 2rem), 480px);
  margin: 0.9rem auto 0;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
  animation: fadeUp 0.3s ease both;
}

.mobile-nav a {
  display: block;
  padding: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav .btn {
  justify-content: center;
  margin-top: 0.65rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 2.8rem;
  padding: 0.9rem 1.55rem;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-position 0.4s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-120%) skewX(-20deg);
  transition: transform 0.75s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(220%) skewX(-20deg);
}

.btn-small {
  min-height: 2.35rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.86rem;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(120deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% auto;
  box-shadow: 0 12px 42px -14px rgba(79, 70, 229, 0.8);
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 20px 60px -18px rgba(6, 182, 212, 0.85);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: rgba(6, 182, 212, 0.75);
  background: rgba(6, 182, 212, 0.12);
}

.btn-gold {
  color: #1a1300;
  background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--gold-light));
  background-size: 200% auto;
  box-shadow: 0 14px 48px -18px rgba(224, 168, 58, 0.8);
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.section-dark {
  background: var(--bg);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: 78vh;
  align-items: flex-end;
  overflow: hidden;
  padding-block: 10rem 5rem;
}

.hero.full {
  min-height: 100vh;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-title,
.section-title {
  margin: 0;
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 6.5rem);
}

.section-title {
  max-width: 850px;
  font-size: clamp(2.25rem, 5vw, 5rem);
}

.section-title.small {
  font-size: clamp(2rem, 4vw, 4rem);
}

.body-copy,
.hero-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.72;
}

.hero-copy {
  max-width: 690px;
  margin: 1.8rem 0 0;
}

.section-light .body-copy,
.section-light .hero-copy {
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.55);
  animation: pulseGlow 2.6s ease-in-out infinite;
}

.text-gradient {
  background: linear-gradient(120deg, #fff 0%, #c7d2fe 34%, #67e8f9 68%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
}

.text-gradient-dark {
  background: linear-gradient(120deg, var(--ink), var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gold {
  background: linear-gradient(120deg, var(--gold-light), #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-aurora,
.bg-grid,
.bg-mesh,
.bg-stars,
.bg-noise,
.hero-media,
.background-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-aurora {
  background:
    radial-gradient(at 20% 30%, rgba(79, 70, 229, 0.55) 0, transparent 50%),
    radial-gradient(at 80% 20%, rgba(6, 182, 212, 0.45) 0, transparent 50%),
    radial-gradient(at 60% 80%, rgba(168, 85, 247, 0.4) 0, transparent 55%),
    radial-gradient(at 10% 90%, rgba(236, 72, 153, 0.35) 0, transparent 50%),
    #07070b;
  background-size: 200% 200%;
  animation: aurora 18s ease infinite;
}

.bg-mesh {
  background:
    radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.12) 0, transparent 50%),
    radial-gradient(at 100% 0%, rgba(6, 182, 212, 0.13) 0, transparent 50%),
    radial-gradient(at 50% 100%, rgba(168, 85, 247, 0.1) 0, transparent 50%),
    #fff;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.26;
  animation: gridDrift 20s linear infinite;
}

.section-light .bg-grid,
.bg-grid.light {
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.06) 1px, transparent 1px);
  opacity: 0.5;
}

.bg-stars {
  background-image:
    radial-gradient(1px 1px at 20% 30%, #fff, transparent),
    radial-gradient(1px 1px at 60% 70%, #fff, transparent),
    radial-gradient(2px 2px at 80% 20%, #fff, transparent),
    radial-gradient(1px 1px at 40% 90%, #fff, transparent),
    radial-gradient(1px 1px at 90% 60%, #fff, transparent);
  background-size: 200px 200px;
  opacity: 0.55;
  animation: stars 90s linear infinite;
}

.bg-noise {
  inset: -50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.055;
  animation: noise 1s steps(8) infinite;
}

.hero-media {
  background-size: cover;
  background-position: center;
  opacity: 0.36;
  mix-blend-mode: luminosity;
}

.orb {
  position: absolute;
  width: var(--size, 360px);
  height: var(--size, 360px);
  border-radius: 999px;
  background: var(--orb, var(--primary));
  filter: blur(45px);
  opacity: var(--opacity, 0.25);
  pointer-events: none;
  animation: blob 14s ease-in-out infinite;
}

.floating-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glass,
.card.glass {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(20px) saturate(140%);
}

.glow-ring {
  box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.38), 0 0 46px rgba(79, 70, 229, 0.42);
}

.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -100%;
  width: 60%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  animation: shine 3.8s linear infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.hover-lift {
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease, border-color 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.01);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split.three {
  grid-template-columns: 0.8fr 1.4fr;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.auto {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(4rem, 9vw, 7rem);
}

.stat-card,
.card {
  position: relative;
  border-radius: var(--radius);
}

.stat-card {
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.counter,
.stat-number {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 950;
  line-height: 1;
}

.stat-label {
  margin-top: 0.65rem;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--ink);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.68);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.chip:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.chip::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.phone-mock {
  position: relative;
  max-width: 360px;
  margin-inline: auto;
}

.phone-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 2.5rem;
  background: #000;
}

.phone-frame img,
.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-caption,
.image-caption {
  position: absolute;
  inset: auto 1.4rem 1.4rem;
  z-index: 2;
  color: var(--white);
}

.phone-frame::before,
.image-card::before,
.speaker-card::before,
.feature-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.22), transparent);
  pointer-events: none;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  transform: translate(-50%, -50%);
  animation: pulseGlow 3s ease-in-out infinite;
}

.float-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 1rem;
  color: var(--white);
  animation: float 6s ease-in-out infinite;
}

.card {
  height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.card-luxe {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  transition: transform 0.45s ease, border-color 0.3s ease, box-shadow 0.45s ease;
}

.card-luxe::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.65), rgba(6, 182, 212, 0.65), transparent 60%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-luxe:hover {
  border-color: rgba(6, 182, 212, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card-luxe:hover::before {
  opacity: 1;
}

.icon-tile {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.35), rgba(6, 182, 212, 0.35));
  color: var(--white);
  font-size: 1.45rem;
}

.card h3,
.feature-card h3 {
  margin: 1rem 0 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.card p,
.feature-card p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

.section-light .card p,
.section-light .feature-card p {
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 1rem;
  width: 1px;
  background: linear-gradient(var(--primary), var(--accent), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
}

.timeline-dot {
  position: absolute;
  left: 0.56rem;
  top: 0.42rem;
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid var(--primary);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 8px rgba(79, 70, 229, 0.12);
}

.timeline-time {
  color: var(--accent);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.image-card,
.speaker-card,
.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.image-card {
  min-height: 330px;
}

.image-card img,
.speaker-card img,
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.image-card:hover img,
.speaker-card:hover img,
.feature-image:hover img {
  transform: scale(1.08);
}

.image-caption {
  inset: auto 1.25rem 1.25rem;
}

.speaker-card {
  aspect-ratio: 4 / 5;
  color: var(--white);
}

.speaker-info {
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  z-index: 2;
}

.social-pills {
  position: absolute;
  inset: 1rem 1rem auto auto;
  z-index: 3;
  display: grid;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.speaker-card:hover .social-pills {
  opacity: 1;
  transform: translateY(0);
}

.social-pills span,
.social-link {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 35s linear infinite;
}

.marquee-item {
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 950;
  white-space: nowrap;
  transition: color 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}

.marquee-item:hover {
  color: var(--white);
  filter: drop-shadow(0 0 18px rgba(6, 182, 212, 0.72));
  transform: scale(1.05);
}

.testimonial-card {
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border-radius: var(--radius);
}

.quote-mark {
  color: var(--accent);
  font-size: 4rem;
  line-height: 0.75;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  margin-top: 3.4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.05);
}

.feature-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.feature-card.dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.track-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.track-list span {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.4rem;
}

.journey-card,
.light-card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.88);
}

.journey-card strong {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink);
}

.journey-card p,
.light-card p {
  color: var(--muted);
  line-height: 1.6;
}

.gold-glow {
  box-shadow: inset 0 0 0 1px rgba(245, 217, 122, 0.38), 0 30px 80px -22px rgba(224, 168, 58, 0.5);
}

.trophy {
  width: 3.8rem;
  height: 3.8rem;
  color: var(--gold-light);
  animation: float 4s ease-in-out infinite;
}

.stage-showcase {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 2rem;
}

.stage-showcase img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.stage-copy {
  position: absolute;
  inset: auto 2rem 2rem;
  z-index: 2;
}

.spotlights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.spotlights span {
  position: absolute;
  top: 0;
  left: var(--x);
  width: var(--w);
  height: 120vh;
  background: linear-gradient(180deg, var(--c), transparent 70%);
  filter: blur(42px);
  opacity: 0.7;
  mix-blend-mode: screen;
  transform: translateX(-50%) rotate(var(--r));
  transform-origin: top;
  animation: spotlight var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
}

.network-graph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}

.network-graph line {
  animation: connectionPulse 4s ease-in-out infinite;
}

.network-graph circle {
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.9));
  animation: connectionPulse 3s ease-in-out infinite;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 8rem);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 2.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.check-list span {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 0.75rem;
}

.form-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 2rem;
}

.tab-switch {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.tab-button {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font-weight: 750;
  transition: background 0.2s ease, color 0.2s ease;
}

.tab-button.is-active {
  color: #05050a;
  background: var(--white);
}

.form-panel {
  display: none;
}

.form-panel.is-active {
  display: block;
  animation: fadeUp 0.35s ease both;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.field {
  position: relative;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  outline: 0;
  padding: 1.45rem 1rem 0.55rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field select option {
  background: #05050a;
}

.field input:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.field label {
  position: absolute;
  left: 1rem;
  top: 0.48rem;
  color: rgba(255, 255, 255, 0.54);
  pointer-events: none;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.form-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.divider {
  position: relative;
  margin-block: 1.5rem;
  text-align: center;
}

.divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider span {
  position: relative;
  padding-inline: 0.75rem;
  background: #101018;
}

.social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.social-buttons button {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.9rem;
  padding: 0.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  transition: background 0.2s ease;
}

.social-buttons button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.success-panel {
  display: none;
  text-align: center;
  padding-block: 2.5rem;
}

.success-panel.is-active {
  display: block;
  animation: fadeUp 0.35s ease both;
}

.success-icon {
  display: grid;
  width: 5rem;
  height: 5rem;
  margin-inline: auto;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 2rem;
  animation: pulseGlow 3s ease-in-out infinite;
}

.otp-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.otp-row input {
  width: 2.6rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  text-align: center;
  outline: 0;
  font-family: var(--font-mono);
  font-size: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 999px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--white);
  outline: 0;
  padding-inline: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  color: var(--white);
}

.footer-inner {
  position: relative;
  padding-block: 5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.25fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.footer-copy {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.8);
}

.social-row {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.link-underline {
  position: relative;
}

.link-underline::after {
  content: "";
  position: absolute;
  inset: auto 0 -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 45;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes aurora {
  0%, 100% { background-position: 0% 50%, 100% 50%, 50% 0%; }
  50% { background-position: 100% 50%, 0% 50%, 50% 100%; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4), 0 0 30px rgba(79, 70, 229, 0.35); }
  50% { box-shadow: 0 0 0 18px rgba(6, 182, 212, 0), 0 0 56px rgba(6, 182, 212, 0.55); }
}

@keyframes shimmer {
  from { background-position: -200% 0; }
  to { background-position: 200% 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes blob {
  0%, 100% { border-radius: 42% 58% 65% 35% / 45% 50% 50% 55%; transform: translate(0, 0) rotate(0); }
  33% { border-radius: 60% 40% 35% 65% / 55% 60% 40% 45%; transform: translate(20px, -30px) rotate(20deg); }
  66% { border-radius: 35% 65% 55% 45% / 60% 35% 65% 40%; transform: translate(-25px, 15px) rotate(-15deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes shine {
  from { transform: translateX(0) skewX(-20deg); }
  to { transform: translateX(380%) skewX(-20deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

@keyframes stars {
  from { transform: translateY(0); }
  to { transform: translateY(-1000px); }
}

@keyframes noise {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
  100% { transform: translate(0, 0); }
}

@keyframes spotlight {
  0%, 100% { transform: translateX(-50%) rotate(var(--r)) scale(1); opacity: 0.58; }
  50% { transform: translateX(-50%) rotate(calc(var(--r) + 5deg)) scale(1.12); opacity: 0.9; }
}

@keyframes connectionPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

@media (min-width: 820px) {
  .timeline.centered::before {
    left: 50%;
  }

  .timeline.centered .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-left: 0;
  }

  .timeline.centered .timeline-item:nth-child(odd) .timeline-card {
    grid-column: 1;
    text-align: right;
  }

  .timeline.centered .timeline-item:nth-child(even) .timeline-card {
    grid-column: 2;
  }

  .timeline.centered .timeline-dot {
    left: calc(50% - 0.45rem);
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-actions > .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .grid.four,
  .image-grid,
  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.three,
  .access-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    min-height: 72vh;
    padding-block: 8rem 4rem;
  }

  .hero.full {
    min-height: auto;
  }

  .stat-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .image-grid,
  .gallery,
  .journey-grid,
  .form-grid.two,
  .chip-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-auto-rows: 230px;
  }

  .gallery-item.big,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom,
  .form-row {
    flex-direction: column;
  }

  .social-buttons {
    grid-template-columns: 1fr;
  }

  .stage-copy {
    inset: auto 1.2rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
