/* ============================================
   LUSSA - Main Stylesheet
   Modern CSS with native nesting & layers
   ============================================ */

/* CSS Layers for cascade management */
@layer reset, base, layout, sections, utilities;

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Core Colors */
  --bg-primary: #060606;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #111111;
  --bg-elevated: #151515;

  /* Accent - Tactical Gold */
  --accent-primary: #ffea00;
  --accent-secondary: #ffd000;
  --accent-glow: rgba(255, 234, 0, 0.4);
  --accent-dim: #b8a900;
  --accent-muted: rgba(255, 234, 0, 0.1);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #555555;
  --text-dim: #333333;

  /* Glass Effect */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);

  /* Gradients */
  --gradient-radial: radial-gradient(ellipse at 50% 0%, var(--bg-tertiary) 0%, var(--bg-primary) 70%);
  --gradient-accent: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);

  /* Typography */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;

  /* Sizing */
  --container-max: 1400px;
  --container-padding: clamp(1rem, 5vw, 3rem);
  --section-padding: clamp(4rem, 10vh, 8rem);
  --nav-anchor-offset: 104px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index scale */
  --z-background: -1;
  --z-default: 1;
  --z-elevated: 10;
  --z-nav: 100;
  --z-modal: 200;
  --z-cursor: 300;
  --z-loader: 400;
}

/* ============================================
   RESET LAYER
   ============================================ */
@layer reset {

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

  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
  }

  /* Smooth scroll with Lenis override */
  html.lenis,
  html.lenis body {
    height: auto;
  }

  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }

  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }

  .lenis.lenis-stopped {
    overflow: hidden;
  }

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

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

  button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
  }

  ul,
  ol {
    list-style: none;
  }

  /* Selection */
  ::selection {
    background: var(--accent-primary);
    color: var(--bg-primary);
  }

  /* Focus visible */
  :focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
  }

  /* 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;
    }
  }
}

/* ============================================
   BASE LAYER
   ============================================ */
@layer base {

  /* Typography */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  h1 {
    font-size: clamp(3rem, 10vw, 8rem);
  }

  h2 {
    font-size: clamp(2rem, 6vw, 4rem);
  }

  h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  h4 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }

  p {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-secondary);
  }

  /* Monospace text */
  .mono {
    font-family: var(--font-mono);
  }
}

/* ============================================
   LAYOUT LAYER
   ============================================ */
@layer layout {
  .container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
  }

  section {
    position: relative;
    padding-block: var(--section-padding);
    overflow: hidden;
  }

  main > section[id]:not(#home) {
    scroll-margin-top: var(--nav-anchor-offset);
  }

  /* Skip offscreen rendering work for below-the-fold sections. */
  main > section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }

  /* Section backgrounds */
  .section-bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-background);
    pointer-events: none;
    overflow: hidden;
  }

  .bg-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-radial);
    opacity: 0.5;
  }

  .bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  }

  .bg-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.15) 2px,
        rgba(0, 0, 0, 0.15) 4px);
    pointer-events: none;
    opacity: 0.3;
  }

  .bg-tactical-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--accent-muted) 1px, transparent 1px),
      linear-gradient(90deg, var(--accent-muted) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.3;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }

  .bg-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.3;
  }
}

/* ============================================
   SECTIONS LAYER
   ============================================ */
@layer sections {

  /* Section Header */
  .section-header {
    margin-bottom: clamp(2rem, 5vw, 4rem);
  }

  .section-header-center {
    text-align: center;
  }

  .section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    opacity: 0.8;
  }

  .section-title {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .section-header-center .section-title {
    align-items: center;
  }

  .title-accent {
    font-size: 0.5em;
    color: var(--accent-primary);
    letter-spacing: 0.3em;
  }

  .title-main {
    font-size: 1em;
    color: var(--text-primary);
    background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .section-desc {
    max-width: 600px;
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
  }

  .section-header-center .section-desc {
    margin-inline: auto;
  }

  /* ==================== NAVIGATION ==================== */
  .nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: 1rem 0;
    transition: all 0.4s var(--ease-out-expo);
  }

  .nav-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
    gap: 2rem;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.3s;
  }

  .nav-logo:hover {
    opacity: 0.8;
  }

  /* Keep the nav logo small without affecting partner/backer logo images. */
  .nav-logo .logo-img {
    height: 32px;
    width: auto;
  }

  .logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
  }

  .nav-link {
    position: relative;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    transition: color 0.3s;
    white-space: nowrap;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s var(--ease-out-expo);
  }

  .nav-link:hover {
    color: var(--text-primary);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link.active {
    color: var(--accent-primary);
  }

  .nav-link.active::after {
    width: 100%;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--bg-primary);
    background: var(--accent-primary);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all 0.3s var(--ease-out-expo);
  }

  .nav-cta:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
  }

  .nav-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
  }

  .nav-cta:hover svg {
    transform: translateX(4px);
  }

  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: calc(var(--z-nav) - 1);
    background: var(--bg-primary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
  }

  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .mobile-nav-list a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    transition: color 0.3s;
  }

.mobile-nav-list a:hover {
  color: var(--accent-primary);
}

.mobile-nav-list a.active {
  color: var(--accent-primary);
}

  .mobile-cta {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: var(--accent-primary);
    color: var(--bg-primary) !important;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  }

  /* ==================== HERO ==================== */
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
  }

  /* Hero Background Image System */
  .hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
  }

  .hero-bg-image {
    position: absolute;
    inset: -50px;
    background-image: url('../assets/images/image1-1920.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation:
      cinematicMovement 40s cubic-bezier(0.45, 0, 0.55, 1) infinite,
      cinematicColor 20s ease-in-out infinite alternate;
    will-change: transform, filter;
    transform-origin: center center;
  }

  /* Cinematic camera movement - zoom, pan, and subtle rotation */
  @keyframes cinematicMovement {
    0% {
      transform: scale(1.0) translate(0, 0) rotate(0deg);
      transform-origin: 30% 40%;
    }

    25% {
      transform: scale(1.15) translate(-3%, -2%) rotate(0.5deg);
      transform-origin: 60% 50%;
    }

    50% {
      transform: scale(1.3) translate(-5%, 3%) rotate(-0.3deg);
      transform-origin: 70% 60%;
    }

    75% {
      transform: scale(1.2) translate(2%, -4%) rotate(0.4deg);
      transform-origin: 40% 30%;
    }

    100% {
      transform: scale(1.0) translate(0, 0) rotate(0deg);
      transform-origin: 30% 40%;
    }
  }

  /* Cinematic color grading and lighting effects */
  @keyframes cinematicColor {

    0%,
    100% {
      filter: brightness(0.95) contrast(1.1) saturate(1.1);
    }

    33% {
      filter: brightness(1.0) contrast(1.05) saturate(1.15);
    }

    66% {
      filter: brightness(0.97) contrast(1.08) saturate(1.12);
    }
  }

  .hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,
        rgba(6, 6, 6, 0.3) 0%,
        rgba(6, 6, 6, 0.15) 25%,
        rgba(6, 6, 6, 0.25) 50%,
        rgba(6, 6, 6, 0.7) 80%,
        rgba(6, 6, 6, 0.95) 100%),
      linear-gradient(90deg,
        rgba(6, 6, 6, 0.5) 0%,
        transparent 20%,
        transparent 80%,
        rgba(6, 6, 6, 0.5) 100%);
    z-index: 1;
  }

  .hero-bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(6, 6, 6, 0.4) 100%);
    z-index: 2;
  }

  .hero-bg-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px);
    z-index: 3;
    opacity: 0.5;
    pointer-events: none;
  }

  /* Gold/Yellow tint overlay for brand consistency */
  .hero-bg-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 234, 0, 0.06) 0%,
        transparent 50%,
        rgba(255, 234, 0, 0.02) 100%);
    z-index: 4;
    opacity: 0.65;
    pointer-events: none;
  }

  .hero-particles {
    position: absolute;
    inset: 0;
    z-index: 5;
    perspective: 1200px;
    transform-style: preserve-3d;
    pointer-events: none;
    overflow: hidden;
  }

  /* 3D Particle Base */
  .particle-3d {
    position: absolute;
    transform-style: preserve-3d;
    will-change: transform;
    pointer-events: none;
  }

  /* Cube Particles - Optimized */
  .particle-cube {
    width: 40px;
    height: 40px;
    background: rgba(255, 234, 0, 0.05);
    border: 1px solid rgba(255, 234, 0, 0.25);
    box-shadow: 0 0 15px rgba(255, 234, 0, 0.15);
  }

  /* Hexagon Particles - Optimized */
  .particle-hex {
    width: 50px;
    height: 50px;
    background: rgba(255, 234, 0, 0.06);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    box-shadow: 0 0 15px rgba(255, 234, 0, 0.15);
  }

  .hero-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 6;
    background:
      radial-gradient(ellipse at 50% 20%, transparent 0%, transparent 70%),
      radial-gradient(ellipse at 30% 80%, var(--accent-glow) 0%, transparent 30%),
      radial-gradient(ellipse at 70% 60%, rgba(255, 234, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
  }

  .hero-grid-lines {
    position: absolute;
    inset: 0;
    z-index: 7;
    background-image:
      linear-gradient(rgba(255, 234, 0, 0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 234, 0, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--container-padding);
    padding-top: 120px;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 1rem;
    margin-bottom: 2rem;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.25);
    border-radius: 2rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--accent-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }

  .hero-title {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .title-line {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .title-line-1 {
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
  }

  .hero-logo-img {
    width: clamp(240px, 45vw, 500px);
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 25px var(--accent-glow));
    animation: heroLogoGlow 4s ease-in-out infinite;
  }

  @keyframes heroLogoGlow {

    0%,
    100% {
      filter: drop-shadow(0 0 20px var(--accent-glow));
    }

    50% {
      filter: drop-shadow(0 0 40px var(--accent-glow)) drop-shadow(0 0 60px rgba(255, 234, 0, 0.3));
    }
  }

  .title-line-2 {
    margin-top: 0.5rem;
  }

  .subtitle-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 0.5em;
    color: var(--text-secondary);
  }

  .hero-description {
    display: block;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-secondary);
  }

  .hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  /* Hero Partners */
  .hero-partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .partners-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  .partners-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .partner-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.15),
      0 0 0 1px rgba(255, 234, 0, 0.1);
    transition: all 0.3s var(--ease-out-expo);
  }

  .partner-badge:hover {
    transform: translateY(-4px);
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.25),
      0 0 0 1px rgba(255, 234, 0, 0.3);
    background: rgba(255, 255, 255, 1);
  }

  .partner-badge img {
    height: 28px;
    width: auto;
    display: block;
  }

  .partner-logo-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }

  .partner-logo-wrapper:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  }

  .partner-logo {
    height: 32px;
    width: auto;
    opacity: 1;
    filter: none;
    transition: all 0.3s ease;
  }

  .hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--accent-primary);
  }

  .stat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.25rem;
  }

  .stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
  }

  /* Hero HUD Corners */
  .hud-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 10;
    pointer-events: none;
  }

  .hud-corner::before,
  .hud-corner::after {
    content: '';
    position: absolute;
    background: var(--accent-primary);
    opacity: 0.3;
  }

  .hud-corner-tl {
    top: 2rem;
    left: 2rem;
  }

  .hud-corner-tl::before {
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
  }

  .hud-corner-tl::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
  }

  .hud-corner-tr {
    top: 2rem;
    right: 2rem;
  }

  .hud-corner-tr::before {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
  }

  .hud-corner-tr::after {
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
  }

  .hud-corner-bl {
    bottom: 2rem;
    left: 2rem;
  }

  .hud-corner-bl::before {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 100%;
  }

  .hud-corner-bl::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
  }

  .hud-corner-br {
    bottom: 2rem;
    right: 2rem;
  }

  .hud-corner-br::before {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 100%;
  }

  .hud-corner-br::after {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
  }

  /* Scroll Indicator */
  .hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
  }

  .scroll-text {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    position: relative;
  }

  .scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: scroll-bounce 2s ease-in-out infinite;
  }

  /* ==================== NEW CINEMATIC HERO ==================== */
  .hero-cinematic {
    background: linear-gradient(180deg, #050508 0%, #0a0a12 50%, #060606 100%);
  }

  /* Hero Background Layers */
  .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 234, 0, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 234, 0, 0.08) 0%, transparent 40%),
      radial-gradient(ellipse 50% 30% at 20% 90%, rgba(255, 200, 0, 0.05) 0%, transparent 30%);
    z-index: 1;
  }

  .hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 234, 0, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 234, 0, 0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, black 32%, transparent 74%);
    -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, black 32%, transparent 74%);
    z-index: 2;
    opacity: 0.52;
  }

  @keyframes gridPulse {

    0%,
    100% {
      opacity: 0.5;
    }

    50% {
      opacity: 1;
    }
  }

  .hero-bg-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(255, 234, 0, 0.11) 0%, transparent 62%);
    z-index: 3;
    animation: heroGlowPulse 10s ease-in-out infinite;
  }

  @keyframes heroGlowPulse {

    0%,
    100% {
      opacity: 0.34;
    }

    50% {
      opacity: 0.56;
    }
  }

  /* Floating Elements */
  .hero-floating-elements {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
  }

  .float-element {
    position: absolute;
    opacity: 0.4;
    transition: transform 0.3s ease-out;
  }

  .float-hex {
    width: 30px;
    height: 34px;
    background: linear-gradient(135deg, transparent 25%, rgba(255, 234, 0, 0.3) 25%, rgba(255, 234, 0, 0.3) 75%, transparent 75%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  }

  .float-hex:nth-child(1) {
    top: 15%;
    left: 10%;
    animation: floatHex 12s ease-in-out infinite;
  }

  .float-hex:nth-child(2) {
    top: 60%;
    right: 15%;
    animation: floatHex 15s ease-in-out infinite reverse;
  }

  .float-cube {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 234, 0, 0.4);
    transform: rotate(45deg);
  }

  .float-cube:nth-child(3) {
    top: 25%;
    right: 20%;
    animation: floatCube 10s ease-in-out infinite;
  }

  .float-cube:nth-child(4) {
    bottom: 30%;
    left: 8%;
    animation: floatCube 14s ease-in-out infinite reverse;
  }

  .float-ring {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 234, 0, 0.2);
    border-radius: 50%;
  }

  .float-ring:nth-child(5) {
    top: 40%;
    left: 5%;
    animation: floatRing 18s linear infinite;
  }

  .float-ring:nth-child(6) {
    top: 70%;
    right: 8%;
    animation: floatRing 16s linear infinite reverse;
  }

  .float-dot {
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
  }

  .float-dot:nth-child(7) {
    top: 20%;
    right: 30%;
    animation: floatDot 8s ease-in-out infinite;
  }

  .float-dot:nth-child(8) {
    bottom: 25%;
    left: 25%;
    animation: floatDot 10s ease-in-out infinite reverse;
  }

  .float-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 234, 0, 0.4), transparent);
  }

  .float-line:nth-child(9) {
    top: 35%;
    left: 15%;
    transform: rotate(-20deg);
    animation: floatLine 12s ease-in-out infinite;
  }

  .float-line:nth-child(10) {
    bottom: 40%;
    right: 12%;
    transform: rotate(15deg);
    animation: floatLine 14s ease-in-out infinite reverse;
  }

  @keyframes floatHex {

    0%,
    100% {
      transform: translateY(0) rotate(0deg);
    }

    50% {
      transform: translateY(-30px) rotate(180deg);
    }
  }

  @keyframes floatCube {

    0%,
    100% {
      transform: rotate(45deg) translateY(0);
    }

    50% {
      transform: rotate(225deg) translateY(-20px);
    }
  }

  @keyframes floatRing {
    0% {
      transform: rotate(0deg) scale(1);
      opacity: 0.3;
    }

    50% {
      transform: rotate(180deg) scale(1.2);
      opacity: 0.6;
    }

    100% {
      transform: rotate(360deg) scale(1);
      opacity: 0.3;
    }
  }

  @keyframes floatDot {

    0%,
    100% {
      transform: translateY(0) scale(1);
    }

    50% {
      transform: translateY(-15px) scale(1.5);
    }
  }

  @keyframes floatLine {

    0%,
    100% {
      transform: translateX(0) scaleX(1);
      opacity: 0.3;
    }

    50% {
      transform: translateX(20px) scaleX(1.5);
      opacity: 0.6;
    }
  }

  /* Energy Lines */
  .hero-energy-lines {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
  }

  .energy-svg {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .energy-line {
    fill: none;
    stroke: url(#energyGrad1);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: energyFlow 8s linear infinite;
  }

  .energy-line-2 {
    animation-delay: 2s;
    stroke-width: 0.5;
  }

  .energy-line-3 {
    animation-delay: 4s;
    stroke-width: 0.8;
  }

  @keyframes energyFlow {
    0% {
      stroke-dashoffset: 1000;
      opacity: 0;
    }

    10% {
      opacity: 1;
    }

    90% {
      opacity: 1;
    }

    100% {
      stroke-dashoffset: -1000;
      opacity: 0;
    }
  }

  /* Hero Content Wrapper - Split Layout */
  .hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 120px var(--container-padding) 60px;
    min-height: 100vh;
  }

  /* Text Side */
  .hero-text-side {
    padding-right: 2rem;
  }

  .hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 234, 0, 0.08);
    border: 1px solid rgba(255, 234, 0, 0.3);
    border-radius: 50px;
    overflow: hidden;
  }

  .badge-pulse {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 234, 0, 0.2), transparent);
    animation: badgePulse 3s ease-in-out infinite;
  }

  @keyframes badgePulse {

    0%,
    100% {
      transform: translateX(-100%);
    }

    50% {
      transform: translateX(100%);
    }
  }

  .badge-dot {
    position: relative;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-glow);
  }

  .badge-text {
    position: relative;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    font-weight: 500;
  }

  .hero-title-new {
    margin-bottom: 1.5rem;
  }

  .hero-title-new .hero-logo-img {
    width: clamp(280px, 40vw, 450px);
    height: auto;
    filter: drop-shadow(0 0 30px var(--accent-glow));
    animation: logoFloat 6s ease-in-out infinite;
  }

  @keyframes logoFloat {

    0%,
    100% {
      transform: translateY(0);
      filter: drop-shadow(0 0 30px var(--accent-glow));
    }

    50% {
      transform: translateY(-10px);
      filter: drop-shadow(0 0 50px var(--accent-glow)) drop-shadow(0 0 80px rgba(255, 234, 0, 0.3));
    }
  }

  /* Animated Tagline */
  .hero-tagline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .tagline-word {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    position: relative;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
  }

  .tagline-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.4s var(--ease-out-expo);
  }

  .tagline-word:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 20px var(--accent-glow);
  }

  .tagline-word:hover::after {
    width: 100%;
  }

  .tagline-separator {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--accent-primary);
    font-weight: 700;
  }

  .hero-description-new {
    max-width: 500px;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
  }

  /* New CTA Buttons */
  .hero-cta-group-new {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .btn-hero-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
  }

  .btn-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    transition: all 0.4s var(--ease-out-expo);
  }

  .btn-hero-border {
    position: absolute;
    inset: 0;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .btn-hero-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--bg-primary);
    transition: color 0.3s ease;
  }

  .btn-hero-content svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: none;
  }

  .btn-hero-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: btnShine 4s ease-in-out infinite;
  }

  @keyframes btnShine {

    0%,
    100% {
      left: -100%;
    }

    50% {
      left: 150%;
    }
  }

  .btn-hero-primary:hover .btn-hero-bg {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--accent-glow), 0 10px 40px rgba(255, 234, 0, 0.3);
  }

  .btn-hero-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
  }

  .btn-hero-secondary .btn-hero-content {
    color: var(--text-primary);
  }

  .btn-hero-secondary .btn-hero-content svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    transition: transform 0.3s ease;
  }

  .btn-hero-secondary:hover {
    background: rgba(255, 234, 0, 0.1);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
  }

  .btn-hero-secondary:hover .btn-hero-content svg {
    transform: translateX(4px);
  }

  /* New Partner Badges */
  .hero-partners-new {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .partners-logos-new {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .partner-badge-new {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    border: 1px solid rgba(255, 234, 0, 0.2);
    transition: all 0.3s var(--ease-out-expo);
  }

  .partner-badge-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 234, 0, 0.3);
  }

  .partner-badge-new img {
    height: 24px;
    width: auto;
    display: block;
  }

  /* Character Side */
  .hero-character-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
  }

  .character-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
  }

  .character-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 234, 0, 0.2) 0%, transparent 60%);
    filter: blur(40px);
    animation: characterGlow 4s ease-in-out infinite;
  }

  @keyframes characterGlow {

    0%,
    100% {
      opacity: 0.6;
      transform: translate(-50%, -50%) scale(1);
    }

    50% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.1);
    }
  }

  .character-energy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 1px solid rgba(255, 234, 0, 0.3);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
  }

  .character-energy-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-glow);
  }

  .character-energy-ring-2 {
    width: 100%;
    height: 100%;
    border-style: dashed;
    animation-direction: reverse;
    animation-duration: 30s;
  }

  @keyframes ringRotate {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }

  .character-img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 60px rgba(255, 234, 0, 0.2));
    animation: characterFloat 6s ease-in-out infinite;
  }

  @keyframes characterFloat {

    0%,
    100% {
      transform: translateY(0) scale(1);
    }

    50% {
      transform: translateY(-15px) scale(1.02);
    }
  }

  /* Character Particles */
  .character-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
  }

  .character-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-glow);
    animation: particleRise 3s ease-in-out infinite;
  }

  .character-particles span:nth-child(1) {
    left: 20%;
    bottom: 10%;
    animation-delay: 0s;
  }

  .character-particles span:nth-child(2) {
    left: 35%;
    bottom: 5%;
    animation-delay: 0.3s;
  }

  .character-particles span:nth-child(3) {
    left: 50%;
    bottom: 8%;
    animation-delay: 0.6s;
  }

  .character-particles span:nth-child(4) {
    left: 65%;
    bottom: 12%;
    animation-delay: 0.9s;
  }

  .character-particles span:nth-child(5) {
    left: 80%;
    bottom: 6%;
    animation-delay: 1.2s;
  }

  .character-particles span:nth-child(6) {
    left: 25%;
    bottom: 15%;
    animation-delay: 1.5s;
  }

  .character-particles span:nth-child(7) {
    left: 45%;
    bottom: 3%;
    animation-delay: 1.8s;
  }

  .character-particles span:nth-child(8) {
    left: 60%;
    bottom: 18%;
    animation-delay: 2.1s;
  }

  .character-particles span:nth-child(9) {
    left: 75%;
    bottom: 10%;
    animation-delay: 2.4s;
  }

  .character-particles span:nth-child(10) {
    left: 40%;
    bottom: 7%;
    animation-delay: 2.7s;
  }

  @keyframes particleRise {
    0% {
      transform: translateY(0) scale(1);
      opacity: 0;
    }

    20% {
      opacity: 1;
    }

    80% {
      opacity: 1;
    }

    100% {
      transform: translateY(-100px) scale(0);
      opacity: 0;
    }
  }

  /* Character HUD Stats */
  .character-hud {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
  }

  .hud-stat {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem 0.75rem;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 234, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }

  .hud-stat-1 {
    top: 15%;
    left: -10%;
    animation: hudFadeIn 0.5s ease-out 0.5s both;
  }

  .hud-stat-2 {
    top: 40%;
    right: -15%;
    animation: hudFadeIn 0.5s ease-out 0.8s both;
  }

  .hud-stat-3 {
    bottom: 20%;
    left: -5%;
    animation: hudFadeIn 0.5s ease-out 1.1s both;
  }

  @keyframes hudFadeIn {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .hud-stat-label {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
  }

  .hud-stat-value {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .status-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
    animation: statusPulse 1.5s ease-in-out infinite;
  }

  @keyframes statusPulse {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.5;
    }
  }

  /* Interactive 3D Element */
  .hero-3d-element {
    position: absolute;
    bottom: 15%;
    right: 10%;
    z-index: 8;
    perspective: 1000px;
  }

  .cube-3d {
    width: 60px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 20s linear infinite;
  }

  .cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 234, 0, 0.4);
    background: rgba(255, 234, 0, 0.05);
    backdrop-filter: blur(5px);
  }

  .cube-front {
    transform: translateZ(30px);
  }

  .cube-back {
    transform: rotateY(180deg) translateZ(30px);
  }

  .cube-left {
    transform: rotateY(-90deg) translateZ(30px);
  }

  .cube-right {
    transform: rotateY(90deg) translateZ(30px);
  }

  .cube-top {
    transform: rotateX(90deg) translateZ(30px);
  }

  .cube-bottom {
    transform: rotateX(-90deg) translateZ(30px);
  }

  @keyframes cubeRotate {
    from {
      transform: rotateX(0deg) rotateY(0deg);
    }

    to {
      transform: rotateX(360deg) rotateY(360deg);
    }
  }

  /* New Scroll Indicator */
  .hero-scroll-indicator-new {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
  }

  .scroll-wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
  }

  @keyframes scrollWheel {

    0%,
    100% {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    50% {
      transform: translateX(-50%) translateY(10px);
      opacity: 0.3;
    }
  }

  .scroll-text-new {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
  }

  .scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .scroll-arrows span {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-primary);
    border-bottom: 2px solid var(--accent-primary);
    transform: rotate(45deg);
    animation: arrowBounce 1.5s ease-in-out infinite;
  }

  .scroll-arrows span:nth-child(2) {
    animation-delay: 0.15s;
    opacity: 0.5;
  }

  @keyframes arrowBounce {

    0%,
    100% {
      transform: rotate(45deg) translateY(0);
    }

    50% {
      transform: rotate(45deg) translateY(5px);
    }
  }

  /* Scan Line Effect */
  .hero-scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 234, 0, 0.3), transparent);
    z-index: 20;
    animation: scanLine 8s linear infinite;
    pointer-events: none;
  }

  @keyframes scanLine {
    0% {
      top: 0;
      opacity: 0;
    }

    5% {
      opacity: 1;
    }

    95% {
      opacity: 1;
    }

    100% {
      top: 100%;
      opacity: 0;
    }
  }

  /* ==================== INTRODUCING SECTION ==================== */
  .introducing {
    position: relative;
    background: var(--bg-secondary);
  }

  .introducing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  /* Visual Frame */
  .introducing-visual {
    position: relative;
  }

  .visual-frame {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    transition: all 0.4s var(--ease-out-expo);
  }

  .visual-frame:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
  }

  /* Frame HUD */
  .frame-hud {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hud-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
  }

  .hud-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
  }

  .hud-dot.pulse {
    animation: pulse-dot 2s ease-in-out infinite;
  }

  .hud-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
  }

  .hud-code {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 0.375rem 0.75rem;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
  }

  /* Visual Image */
  .visual-img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
  }

  .visual-overlay {
    position: absolute;
    inset: 1rem;
    background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(6, 6, 6, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
  }

  /* Visual Badge */
  .visual-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
  }

  .visual-badge .badge-logo {
    height: 20px;
    width: auto;
    filter: brightness(1.2);
  }

  .visual-badge span {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
  }

  /* HUD Corners */
  .visual-frame .hud-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-primary);
    opacity: 0.6;
    transition: opacity 0.3s;
  }

  .visual-frame:hover .hud-corner {
    opacity: 1;
  }

  .hud-corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
  }

  .hud-corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
  }

  .hud-corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
  }

  .hud-corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
  }

  /* Info Cards */
  .introducing-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .intro-card {
    position: relative;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
  }

  .intro-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-muted) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
  }

  .intro-card:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
  }

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

  /* Card Header */
  .intro-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .card-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-muted);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    transition: all 0.3s;
  }

  .intro-card:hover .card-icon-wrapper {
    background: var(--accent-primary);
    color: var(--bg-primary);
  }

  .card-icon {
    width: 20px;
    height: 20px;
  }

  .card-label {
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    text-transform: uppercase;
  }

  /* Card Text */
  .intro-card-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
  }

  .intro-card-text strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  /* Highlight Card */
  .intro-card-highlight {
    background: linear-gradient(135deg, rgba(255, 234, 0, 0.05) 0%, var(--glass-bg) 50%);
    border-color: rgba(255, 234, 0, 0.3);
  }

  .intro-card-highlight .intro-card-text {
    margin-bottom: 1rem;
  }

  /* Intro CTA */
  .intro-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--bg-primary);
    background: var(--accent-primary);
    border: none;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all 0.3s var(--ease-out-expo);
  }

  .intro-cta:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
  }

  .intro-cta svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
  }

  .intro-cta:hover svg {
    transform: translateX(4px);
  }

  /* Card Borders */
  .intro-card .card-border {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
  }

  .intro-card .card-border::before,
  .intro-card .card-border::after {
    content: '';
    position: absolute;
    background: var(--accent-primary);
    transition: all 0.4s var(--ease-out-expo);
  }

  .intro-card .card-border::before {
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
  }

  .intro-card .card-border::after {
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
  }

  .intro-card:hover .card-border::before,
  .intro-card:hover .card-border::after {
    width: 40px;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .introducing-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .visual-frame {
      max-width: 600px;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .frame-hud {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .visual-badge {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .intro-card {
      padding: 1.25rem;
    }
  }


  /* ==================== NVIDIA SECTION ==================== */
  .nvidia-section {
    position: relative;
    background: var(--bg-secondary);
  }

  .nvidia-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
  }

  .nvidia-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(118, 185, 0, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .nvidia-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
  }

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

  /* HUD Corners */
  .nvidia-card .hud-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-primary);
    opacity: 0.6;
    transition: opacity 0.3s;
  }

  .nvidia-card:hover .hud-corner {
    opacity: 1;
  }

  .nvidia-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
  }

  .nvidia-badge {
    position: relative;
  }

  .badge-inner {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    border: 2px solid rgba(118, 185, 0, 0.3);
    text-align: center;
    transition: all 0.3s;
  }

  .nvidia-card:hover .badge-inner {
    border-color: rgba(118, 185, 0, 0.6);
    box-shadow: 0 0 30px rgba(118, 185, 0, 0.2);
  }

  .nvidia-logo {
    width: 100%;
    height: auto;
    max-width: 200px;
    margin-bottom: 1rem;
  }

  .badge-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--bg-primary);
    text-transform: uppercase;
  }

  .nvidia-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
  }

  .nvidia-text p:last-child {
    margin-bottom: 0;
  }

  .nvidia-text strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .nvidia-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .badge-inner {
      max-width: 300px;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .nvidia-card {
      padding: 2rem 1.5rem;
    }
  }


  /* ==================== ECOSYSTEM ==================== */
  .ecosystem {
    position: relative;
    background: var(--bg-primary);
  }

  .ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .ecosystem-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
  }

  .ecosystem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-muted) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .ecosystem-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
  }

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

  /* HUD Corners */
  .ecosystem-card .hud-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-primary);
    opacity: 0.4;
    transition: opacity 0.3s;
  }

  .ecosystem-card:hover .hud-corner {
    opacity: 1;
  }

  .ecosystem-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-muted);
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    transition: all 0.3s;
  }

  .ecosystem-card:hover .ecosystem-icon {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--accent-glow);
  }

  .ecosystem-icon svg {
    width: 32px;
    height: 32px;
  }

  .ecosystem-card-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1rem;
  }

  .ecosystem-card-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
  }

  .ecosystem-card-text strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .ecosystem-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      max-width: 600px;
      margin: 0 auto;
    }
  }


  /* ==================== PARTNERS SECTION ==================== */
  .partners-section {
    position: relative;
    background: var(--bg-primary);
    padding-block: clamp(4rem, 8vh, 6rem);
  }

  .partners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 234, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
  }

  .partners-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }

  .backers-title {
    margin-top: 5rem;
  }

  .dot-accent {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 12px var(--accent-primary);
    animation: pulse-dot 2s ease-in-out infinite;
  }

  .partners-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .slider-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
    flex-shrink: 0;
  }

  .slider-arrow:hover {
    color: var(--accent-primary);
    border-color: var(--accent-primary);
    background: var(--glass-bg-hover);
    box-shadow: 0 0 20px rgba(255, 234, 0, 0.2);
  }

  .slider-arrow svg {
    width: 24px;
    height: 24px;
  }

  .partners-track {
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .partner-card {
    position: relative;
    width: 240px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    transition: all 0.4s var(--ease-out-expo);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
    overflow: hidden;
    flex-shrink: 0;
  }

  .partner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 234, 0, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .partner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--accent-primary), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
  }


  .partner-card.active,
  .partner-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-4px);
  }

  .partner-card.active::before,
  .partner-card:hover::before {
    opacity: 1;
  }

  .partner-card img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
  }

  .partner-card.active img,
  .partner-card:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
  }

  /* HUD Corners for active card */
  .partner-card.active::before {
    background: linear-gradient(135deg, rgba(255, 234, 0, 0.08) 0%, transparent 60%);
  }

  .slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .slider-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.3;
    transition: all 0.3s;
    cursor: pointer;
  }

  .slider-indicators .indicator:hover {
    opacity: 0.6;
    transform: scale(1.2);
  }

  .slider-indicators .indicator.active {
    background: var(--accent-primary);
    opacity: 1;
    box-shadow: 0 0 10px var(--accent-primary);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .partner-card {
      width: 200px;
      height: 120px;
      padding: 1.5rem;
    }

    .partner-card img {
      max-height: 60px;
    }
  }

  @media (max-width: 768px) {
    .partners-slider {
      gap: 1rem;
    }

    .slider-arrow {
      width: 40px;
      height: 40px;
    }

    .partners-track {
      gap: 1rem;
    }

    .partner-card {
      width: 160px;
      height: 100px;
      padding: 1rem;
    }

    .partner-card img {
      max-height: 50px;
    }
  }


  /* ==================== LATEST NEWS ==================== */
  .latest-news {
    position: relative;
    background: var(--bg-secondary);
  }

  .news-card {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
    text-align: center;
  }

  .news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 234, 0, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .news-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
  }

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

  /* HUD Corners */
  .news-card .hud-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--accent-primary);
    opacity: 0.5;
    transition: opacity 0.3s;
  }

  .news-card:hover .hud-corner {
    opacity: 1;
  }

  .news-content {
    position: relative;
    z-index: 1;
  }

  .news-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
    background: var(--accent-muted);
    border: 1px solid var(--accent-primary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-primary);
  }

  .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }

  .badge-text {
    color: var(--text-primary);
  }

  .news-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
  }

  .news-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    background: transparent;
    border: 2px solid var(--glass-border);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s var(--ease-out-expo);
  }

  .news-cta:hover {
    border-color: var(--accent-primary);
    background: var(--accent-muted);
    color: var(--accent-primary);
    box-shadow: 0 0 20px var(--accent-glow);
  }

  .news-cta .medium-icon {
    width: 20px;
    height: 20px;
  }

  .news-cta svg:last-child {
    width: 18px;
    height: 18px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .news-card {
      padding: 2rem 1.5rem;
    }

    .news-cta {
      padding: 0.875rem 1.5rem;
      font-size: 0.8125rem;
    }
  }


  /* ==================== STAY AHEAD ==================== */
  .stay-ahead {
    position: relative;
    padding-block: clamp(4rem, 8vh, 6rem);
    overflow: hidden;
  }

  .stay-ahead-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .stay-ahead-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .stay-ahead-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(6, 6, 6, 0.95) 0%,
        rgba(6, 6, 6, 0.8) 40%,
        rgba(6, 6, 6, 0.4) 100%);
  }

  .stay-ahead .container {
    position: relative;
    z-index: 1;
  }

  .stay-ahead-content {
    max-width: 500px;
  }

  .stay-ahead-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .stay-ahead-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 2rem;
  }

  .newsletter-form {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    max-width: 450px;
  }

  .newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50px 0 0 50px;
    outline: none;
  }

  .newsletter-input::placeholder {
    color: var(--text-muted);
    letter-spacing: 0.1em;
  }

  .newsletter-btn {
    padding: 1rem 1.5rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--bg-primary);
    background: var(--accent-primary);
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: all 0.3s;
  }

  .newsletter-btn:hover {
    background: var(--text-primary);
  }

  .newsletter-note {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 400px;
  }

  /* ==================== FEATURES ==================== */
  .features {
    background: var(--bg-secondary);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .feature-card-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .feature-card-wide {
    grid-column: span 2;
  }

  /* HUD Corners for feature cards */
  .feature-card .hud-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid var(--accent-primary);
    opacity: 0.4;
    transition: opacity 0.3s;
  }

  .feature-card:hover .hud-corner {
    opacity: 1;
  }

  /* ==================== GAMEPLAY ==================== */
  .gameplay {
    background: var(--bg-primary);
  }

  .gameplay-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .video-container {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    overflow: hidden;
  }

  .video-hud {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
  }

  /* Game Modes Grid */
  .game-modes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mode-card {
    position: relative;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
    transition: all 0.3s var(--ease-out-expo);
    overflow: hidden;
  }

  .mode-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-muted) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .mode-card:hover {
    border-color: var(--accent-primary);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(255, 234, 0, 0.15);
  }

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

  .mode-card .hud-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-primary);
    opacity: 0.3;
    transition: opacity 0.3s;
  }

  .mode-card:hover .hud-corner {
    opacity: 1;
  }

  .mode-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-muted);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    transition: all 0.3s;
  }

  .mode-card:hover .mode-icon {
    background: var(--accent-primary);
    color: var(--bg-primary);
  }

  .mode-icon svg {
    width: 20px;
    height: 20px;
  }

  .mode-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
  }

  .mode-desc {
    position: relative;
    z-index: 1;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-secondary);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .gameplay-showcase {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

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

  @media (max-width: 768px) {
    .game-modes {
      grid-template-columns: 1fr;
    }
  }

  .hud-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-primary);
  }

  .hud-label {
    padding: 0.125rem 0.375rem;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    font-size: 0.625rem;
  }

  .hud-dot {
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
  }

  .hud-dot.blink {
    animation: blink 1s ease-in-out infinite;
  }

  .hud-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
  }

  .hud-crosshair::before,
  .hud-crosshair::after {
    content: '';
    position: absolute;
    background: var(--accent-primary);
    opacity: 0.6;
  }

  .hud-crosshair::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    transform: translateY(-50%);
  }

  .hud-crosshair::after {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
  }

  .hud-bottom {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
  }

  .video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .placeholder-content {
    position: relative;
    z-index: 1;
    text-align: center;
  }

  .play-button {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: var(--accent-primary);
    border-radius: 50%;
    color: var(--bg-primary);
    transition: all 0.3s var(--ease-out-expo);
    pointer-events: auto;
  }

  .play-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
  }

  .play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
  }

  .placeholder-text {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
  }

  .placeholder-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
  }

  .video-corners .corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-primary);
    opacity: 0.5;
  }

  .corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
  }

  .corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
  }

  .corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
  }

  .corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
  }

  .gameplay-info {
    position: sticky;
    top: 100px;
  }

  .info-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
  }

  .info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
  }

  .info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-muted);
    color: var(--accent-primary);
  }

  .info-icon svg {
    width: 20px;
    height: 20px;
  }

  .info-header h3 {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .mode-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mode-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
  }

  .mode-item:hover,
  .mode-item.active {
    border-color: var(--accent-primary);
    background: var(--accent-muted);
  }

  .mode-name {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  .mode-players {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-primary);
  }

  /* ==================== LOADOUT ==================== */
  .loadout {
    background: var(--bg-secondary);
  }

  .loadout-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
  }

  .tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease-out-expo);
  }

  .tab-btn svg {
    width: 20px;
    height: 20px;
  }

  .tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--glass-border-hover);
  }

  .tab-btn.active {
    color: var(--bg-primary);
    background: var(--accent-primary);
    border-color: var(--accent-primary);
  }

  .tab-panel {
    display: none;
  }

  .tab-panel.active {
    display: block;
    animation: fadeIn 0.5s var(--ease-out-expo);
  }

  /* Weapons Grid */
  .weapons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .weapon-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    transition: all 0.3s var(--ease-out-expo);
  }

  .weapon-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
  }

  .weapon-card .hud-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-primary);
    opacity: 0.3;
    transition: opacity 0.3s;
  }

  .weapon-card:hover .hud-corner,
  .weapon-card.active .hud-corner {
    opacity: 1;
  }

  .weapon-image {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: var(--bg-tertiary);
  }

  .weapon-silhouette {
    width: 80%;
    height: 40px;
    background: var(--accent-dim);
    opacity: 0.3;
    clip-path: polygon(0 40%, 5% 30%, 70% 30%, 75% 0, 100% 0, 100% 60%, 95% 70%, 20% 70%, 15% 100%, 0 100%);
  }

  .smg-silhouette {
    width: 60%;
    clip-path: polygon(0 30%, 10% 20%, 60% 20%, 65% 0, 100% 0, 100% 50%, 90% 60%, 20% 60%, 10% 100%, 0 100%);
  }

  .sniper-silhouette {
    width: 90%;
    height: 30px;
    clip-path: polygon(0 40%, 3% 30%, 85% 30%, 87% 10%, 100% 10%, 100% 50%, 98% 60%, 10% 60%, 8% 100%, 0 100%);
  }

  .weapon-class {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
  }

  .weapon-name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .weapon-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .stat-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .stat-bar .stat-label {
    flex: 0 0 70px;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
  }

  .stat-bar .bar {
    flex: 1;
    height: 4px;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
  }

  .bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--fill);
    background: var(--gradient-accent);
    transition: width 1s var(--ease-out-expo);
  }

  /* Operators Grid */
  .operators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .operator-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
  }

  .operator-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
  }

  .operator-avatar {
    width: 180px;
    height: 220px;
    margin: 0 auto 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--glass-border);
    transition: all 0.4s var(--ease-out-expo);
  }

  .operator-card:hover .operator-avatar {
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px var(--accent-glow);
  }

  .operator-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s var(--ease-out-expo);
  }

  .operator-card:hover .operator-img {
    transform: scale(1.05);
  }

  .avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--text-muted);
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-elevated));
  }

  .operator-info {
    position: relative;
    z-index: 1;
  }

  .operator-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .operator-role {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    background: var(--accent-muted);
    border: 1px solid var(--accent-primary);
  }

  .operator-info p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* Equipment Grid */
  .equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .equipment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
  }

  .equipment-item:hover {
    border-color: var(--accent-primary);
    background: var(--accent-muted);
  }

  .equipment-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
  }

  .equipment-icon svg {
    width: 100%;
    height: 100%;
  }

  .equipment-item span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-align: center;
  }

  /* ==================== STATS SECTION ==================== */
  .stats-section {
    padding: 3rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
  }

  .stats-marquee {
    overflow: hidden;
    margin-bottom: 3rem;
  }

  .marquee-content {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
  }

  .marquee-divider {
    color: var(--accent-primary);
    opacity: 0.5;
  }

  .community-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .community-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--ease-out-expo);
  }

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

  .community-card .card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .community-card .card-icon svg {
    width: 32px;
    height: 32px;
  }

  .discord-card .card-icon {
    color: #5865F2;
  }

  .steam-card .card-icon {
    color: var(--text-primary);
  }

  .community-card .card-info {
    flex: 1;
  }

  .community-card .card-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
  }

  .community-card .card-count {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
  }

  .community-card .card-arrow {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: all 0.3s;
  }

  .community-card:hover .card-arrow {
    color: var(--accent-primary);
    transform: translate(2px, -2px);
  }

  /* ==================== ROADMAP ==================== */
  .roadmap {
    background: var(--bg-secondary);
  }

  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
  }

  .timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 12px;
    width: 2px;
    background: var(--bg-tertiary);
  }

  .timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--gradient-accent);
  }

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

  .timeline-item:last-child {
    padding-bottom: 0;
  }

  .timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 2px solid var(--bg-tertiary);
    border-radius: 50%;
  }

  .timeline-item.completed .timeline-marker {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
  }

  .timeline-item.completed .timeline-marker svg {
    width: 14px;
    height: 14px;
  }

  .timeline-item.active .timeline-marker {
    border-color: var(--accent-primary);
  }

  .marker-pulse {
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }

  .timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    transition: all 0.3s;
  }

  .timeline-item:hover .timeline-content {
    border-color: var(--glass-border-hover);
  }

  .timeline-item.active .timeline-content {
    border-color: var(--accent-primary);
  }

  .timeline-date {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
  }

  .timeline-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .timeline-desc {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .timeline-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
  }

  .timeline-status.completed {
    background: rgba(0, 255, 100, 0.1);
    color: #00ff64;
  }

  .timeline-status.active {
    background: var(--accent-muted);
    color: var(--accent-primary);
  }

  .timeline-status.upcoming {
    background: var(--glass-bg);
    color: var(--text-muted);
  }

  /* ==================== DOWNLOAD ==================== */
  .download {
    background: var(--bg-primary);
    text-align: center;
    padding-block: clamp(6rem, 15vh, 10rem);
  }

  .download-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .download-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
  }

  .download-title {
    margin-bottom: 1rem;
  }

  .download-title .title-line {
    display: block;
    font-size: clamp(2rem, 6vw, 4rem);
  }

  .download-title .title-accent {
    color: var(--accent-primary);
    font-size: clamp(2.5rem, 8vw, 5rem);
  }

  .download-desc {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }

  .download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .download-btn {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s var(--ease-out-expo);
  }

  .download-btn .btn-glow {
    position: absolute;
    inset: -4px;
    background: var(--accent-primary);
    filter: blur(20px);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.3s;
  }

  .download-btn:hover .btn-glow {
    opacity: 0.5;
  }

  .download-btn .btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .download-btn .btn-icon {
    width: 32px;
    height: 32px;
  }

  .download-btn .btn-text {
    text-align: left;
  }

  .download-btn .btn-label {
    display: block;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
  }

  .download-btn .btn-platform {
    display: block;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
  }

  .download-btn.primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  }

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

  .download-btn.secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
  }

  .download-btn.secondary:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
  }

  /* System Requirements */
  .system-requirements {
    max-width: 600px;
    margin: 0 auto;
  }

  .requirements-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
  }

  .requirements-toggle:hover {
    color: var(--text-primary);
    border-color: var(--glass-border-hover);
  }

  .requirements-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
  }

  .requirements-toggle.active svg {
    transform: rotate(180deg);
  }

  .requirements-content {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top: none;
    text-align: left;
  }

  .requirements-content.active {
    display: grid;
  }

  .req-column h5 {
    font-size: 0.875rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
  }

  .req-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .req-column li {
    font-size: 0.875rem;
    color: var(--text-secondary);
  }

  .req-column li strong {
    color: var(--text-primary);
  }

  /* ==================== FOOTER ==================== */
  .footer {
    position: relative;
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
  }

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

  .footer-brand {
    display: flex;
    flex-direction: column;
  }

  .footer-logo {
    display: inline-block;
    margin-bottom: 0.5rem;
  }

  .footer-logo-img {
    height: 32px;
    width: auto;
  }

  .footer-tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
  }

  .footer-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
  }

  .link-group h6 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }

  .link-group a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
  }

  .link-group a:hover {
    color: var(--accent-primary);
  }

  .footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    transition: all 0.3s;
  }

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

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
  }

  .copyright {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
  }

  .footer-legal {
    display: flex;
    gap: 2rem;
  }

  .footer-legal a {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: color 0.3s;
  }

  .footer-legal a:hover {
    color: var(--text-secondary);
  }

  /* Back to Top */
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-primary);
    color: var(--bg-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-out-expo);
    z-index: var(--z-elevated);
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
  }

  .back-to-top svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================
   UTILITIES LAYER
   ============================================ */
@layer utilities {
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .text-accent {
    color: var(--accent-primary);
  }

  .text-muted {
    color: var(--text-muted);
  }

  .uppercase {
    text-transform: uppercase;
  }

  .tracking-wide {
    letter-spacing: 0.1em;
  }
}

/* ============================================
   NEW SECTIONS - LUSSA ECOSYSTEM
   ============================================ */

/* ==================== NAV UPDATES ==================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown .nav-link svg {
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  padding: 0.5rem 0;
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out-expo);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.dropdown-menu a:hover {
  color: var(--accent-primary);
  background: var(--accent-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-wallet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bg-primary);
  background: var(--accent-primary);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  text-decoration: none;
}

.nav-wallet svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.nav-wallet:hover {
  background: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(234, 179, 8, 0.3);
}

/* ==================== HERO PILLARS ==================== */
.hero-pillars {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0 2.5rem;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-3px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
}

.pillar:hover .pillar-icon {
  background: rgba(234, 179, 8, 0.2);
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px var(--accent-glow);
}

.pillar-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.pillar:hover .pillar-text {
  color: var(--accent-primary);
}

.pillar-line {
  width: 24px;
  height: 2px;
  background: rgba(234, 179, 8, 0.3);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.pillar:hover .pillar-line {
  width: 40px;
  background: var(--accent-primary);
}

/* Hero Live Stats */
.hero-live-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.live-stat {
  text-align: center;
}

.live-stat .stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--accent-primary);
}

.live-stat .stat-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ==================== WHAT IS LUSSA ==================== */
.what-is-lussa {
  padding-block: clamp(6rem, 12vh, 10rem);
}

.what-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.what-visual {
  display: flex;
  justify-content: center;
}

.visual-orb {
  position: relative;
  width: 300px;
  height: 300px;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
  opacity: 0.3;
  transition: all 0.3s ease;
  will-change: transform, opacity, box-shadow;
}

.orb-ring-1 {
  inset: 0;
  border-width: 2px;
}

.orb-ring-2 {
  inset: 30px;
  border-width: 2px;
}

.orb-ring-3 {
  inset: 60px;
  border-width: 2.5px;
}


.orb-core {
  position: absolute;
  inset: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 60px var(--accent-glow);
}

.orb-logo {
  width: 60px;
  height: auto;
}

.what-text .section-tag {
  margin-bottom: 1rem;
}

.what-title {
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}

.what-title .title-line {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-primary);
}

.what-title .title-line.accent {
  color: var(--accent-primary);
}

.what-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.what-desc strong {
  color: var(--text-primary);
}

.what-features {
  display: flex;
  gap: 2rem;
}

.mini-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.feature-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ==================== EXPLORE PATHS ==================== */
.explore-paths {
  padding-block: clamp(6rem, 12vh, 10rem);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.5s var(--ease-out-expo);
}

.path-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-8px);
}

.path-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.path-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.path-card:hover .path-bg img {
  transform: scale(1.1);
}

.path-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(6, 6, 6, 0.3) 0%,
      rgba(6, 6, 6, 0.7) 50%,
      rgba(6, 6, 6, 0.95) 100%);
}

.path-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}

.path-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  transition: all 0.4s var(--ease-out-expo);
}

.path-icon svg {
  width: 28px;
  height: 28px;
}

.path-card:hover .path-icon {
  background: var(--accent-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 30px var(--accent-glow);
}

.path-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.path-subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.path-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.path-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  transition: gap 0.3s;
}

.path-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.path-card:hover .path-cta {
  gap: 1rem;
}

.path-card:hover .path-cta svg {
  transform: translateX(4px);
}

.path-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2rem;
  padding: 1.5rem 2.5rem;
  background: rgba(6, 6, 6, 0.8);
  border-top: 1px solid var(--glass-border);
}

.path-stat .stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.path-stat .stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ==================== GAME SECTION ==================== */
.game-section {
  position: relative;
  padding-block: clamp(6rem, 12vh, 10rem);
  background-color: var(--bg-primary);
}

/* Game Section Background - Blueprint Style */
.game-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/Sketch_mood04.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: grayscale(0.8) blur(1px);
  z-index: -1;
  pointer-events: none;
}

/* Game Section Decorative Weapon - Bottom Right */
.game-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(40vw, 600px);
  height: min(30vw, 450px);
  background-image: url('../assets/images/gun3.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.08;
  filter: brightness(0.6);
  z-index: 0;
  pointer-events: none;
}

.game-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.showcase-main {
  display: flex;
}

.showcase-video {
  position: relative;
  display: flex;
}

.video-frame {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.video-frame .showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-hud {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  z-index: 2;
}

.hud-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hud-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
}

.hud-dot.pulse {
  animation: pulse-dot 2s ease-in-out infinite;
}

.hud-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
}

.hud-code {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(6, 6, 6, 0.5);
  transition: background 0.3s;
}

.play-overlay:hover {
  background: rgba(6, 6, 6, 0.7);
}

.play-btn {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-primary);
  border-radius: 50%;
  color: var(--bg-primary);
  transition: all 0.4s var(--ease-out-expo);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--accent-glow);
}

.play-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.video-frame .hud-corner {
  width: 30px;
  height: 30px;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

@media (min-width: 1025px) {
  .showcase-main {
    height: 100%;
  }

  .showcase-video {
    flex: 1;
    height: 100%;
  }

  .video-frame {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.game-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.3s var(--ease-out-expo);
  flex: 1;
}

.game-feature:hover {
  border-color: var(--accent-primary);
  background: var(--accent-muted);
}

.game-feature .feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-primary);
}

.game-feature .feature-icon svg {
  width: 24px;
  height: 24px;
}

.game-feature .feature-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.game-feature .feature-info h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.game-feature .feature-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Operators Section */
.operators-section {
  margin-bottom: 4rem;
  padding: 3rem 0;
}

.operators-header {
  text-align: center;
  margin-bottom: 3rem;
}

.operators-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.operators-title::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--accent-primary);
  box-shadow: 0 0 10px var(--accent-glow);
}

.operators-subtitle {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

.operators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
}

.operator-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.operator-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-muted) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}

.operator-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(255, 234, 0, 0.2);
}

.operator-card:hover::before {
  opacity: 0.4;
}

.operator-card .hud-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 3;
}

.operator-card:hover .hud-corner {
  opacity: 1;
}

.operator-image-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.operator-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out-expo), filter 0.5s;
}

.operator-card:hover .operator-image {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.operator-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(6, 6, 6, 0) 0%,
      rgba(6, 6, 6, 0.2) 40%,
      rgba(6, 6, 6, 0.95) 100%);
  z-index: 1;
}

.operator-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  text-align: center;
  z-index: 2;
}

.operator-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  background: rgba(6, 6, 6, 0.8);
  border: 1px solid var(--accent-primary);
  margin-bottom: 0.75rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.operator-card:hover .operator-badge {
  background: var(--accent-primary);
  color: var(--bg-primary);
  box-shadow: 0 0 20px var(--accent-glow);
}

.operator-name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: all 0.3s;
}

.operator-card:hover .operator-name {
  color: var(--accent-primary);
  text-shadow: 0 0 20px var(--accent-glow);
}

.operator-specialty {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Game CTA */
.game-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ==================== PLATFORM SECTION ==================== */
.platform-section {
  padding-block: clamp(6rem, 12vh, 10rem);
}

.platform-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.platform-card {
  position: relative;
  padding: 2.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-out-expo);
}

.platform-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.platform-card .hud-corner {
  width: 20px;
  height: 20px;
}

.platform-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
}

.platform-icon svg {
  width: 48px;
  height: 48px;
}

.platform-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.platform-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.platform-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-primary);
  transition: gap 0.3s;
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.card-link:hover {
  gap: 0.75rem;
}

.card-link:hover svg {
  transform: translateX(4px);
}

.platform-cta {
  display: flex;
  justify-content: center;
}

/* ==================== AI SECTION ==================== */
.ai-section {
  position: relative;
  padding-block: clamp(6rem, 12vh, 10rem);
  background: var(--bg-secondary);
}

/* AI Studio Background - Futuristic Mood */
.ai-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/MoodTest01-1400.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  filter: brightness(0.7) blur(2px);
  z-index: -1;
  pointer-events: none;
}

/* AI Section Decorative Weapon - Top Left */
.ai-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: min(35vw, 500px);
  height: min(25vw, 350px);
  background-image: url('../assets/images/Smallgun_08.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  opacity: 0.06;
  filter: brightness(0.5);
  z-index: 0;
  pointer-events: none;
}

.ai-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.ai-visual {
  display: flex;
  justify-content: center;
}

.ai-brain {
  position: relative;
  width: 300px;
  height: 300px;
}

.brain-pulse {
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  animation: brainPulse 3s ease-in-out infinite;
}

@keyframes brainPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

.brain-core {
  position: absolute;
  inset: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
}

.brain-svg {
  width: 200px;
  height: 200px;
  animation: brainRotate 30s linear infinite;
}

@keyframes brainRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ai-label {
  position: absolute;
  bottom: 40%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-primary);
}

.ai-title {
  margin-bottom: 1.5rem;
}

.ai-title .title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
}

.ai-title .title-line.accent {
  color: var(--accent-primary);
}

.ai-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.ai-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ai-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-features-list li svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.ai-features-list li span {
  font-size: 1rem;
  color: var(--text-secondary);
}

/* ==================== PARTNERS SECTION ==================== */
.partners-section {
  padding-block: clamp(4rem, 8vh, 6rem);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.partner-item .partner-logo-wrapper {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  transition: all 0.3s;
}

.partner-item .partner-logo-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.partner-item .partner-logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-name {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding-block: clamp(6rem, 12vh, 10rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.testimonials-grid--duo {
  max-width: 960px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.testimonial-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.quote-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--accent-primary);
  opacity: 0.5;
}

.quote-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  overflow-wrap: anywhere;
}

.testimonial-author {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 48px;
  background: var(--accent-muted);
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.author-avatar--image {
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 234, 0, 0.18), rgba(255, 234, 0, 0.04) 62%),
    rgba(255, 255, 255, 0.02);
}

.author-avatar-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.06);
}

.author-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.author-name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-role {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (max-width: 840px) {
  .testimonials-grid--duo {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==================== COMMUNITY SECTION ==================== */
.community-section {
  padding-block: clamp(6rem, 12vh, 10rem);
}

.community-stats {
  max-width: 980px;
  margin: 0 auto 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.community-stats.community-stats--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.6rem;
}

.community-stats.community-stats--grid .comm-stat {
  padding: 1.1rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
}

.community-stats.community-stats--grid .comm-value {
  font-size: clamp(1.15rem, 2.8vw, 1.9rem);
}

.community-register {
  margin-top: 2.3rem;
  display: flex;
  justify-content: center;
}

.comm-stat {
  padding: 1.1rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
}

.comm-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--accent-primary);
}

.comm-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--accent-primary);
}

.comm-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.community-links {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.comm-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: all 0.3s var(--ease-out-expo);
}

.comm-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.comm-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comm-icon svg {
  width: 32px;
  height: 32px;
}

.comm-card.discord .comm-icon {
  color: #5865F2;
}

.comm-card.twitter .comm-icon {
  color: #fff;
}

.comm-card.telegram .comm-icon {
  color: #0088cc;
}

.comm-card.youtube .comm-icon {
  color: #ff0000;
}

.comm-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.comm-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.comm-count {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.comm-arrow {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: all 0.3s;
}

.comm-card:hover .comm-arrow {
  color: var(--accent-primary);
  transform: translate(2px, -2px);
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
  position: relative;
  padding-block: clamp(6rem, 12vh, 10rem);
}

.newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.newsletter-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(6, 6, 6, 0.95) 0%,
      rgba(6, 6, 6, 0.85) 50%,
      rgba(6, 6, 6, 0.7) 100%);
}

.newsletter-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.newsletter-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.newsletter-form .form-group {
  display: flex;
  gap: 0;
  margin-bottom: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-right: none;
  outline: none;
  transition: all 0.3s;
}

.newsletter-input:focus {
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--bg-primary);
  background: var(--accent-primary);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  background: var(--text-primary);
}

.newsletter-btn svg {
  width: 18px;
  height: 18px;
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==================== FOOTER UPDATES ==================== */
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: none;
}

.footer-brand {
  max-width: 300px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-primary);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.link-column h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
}

.link-column a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.link-column a:hover {
  color: var(--accent-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: none;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--text-primary);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

/* ==================== BUTTON UPDATES ==================== */
.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}

.btn-glow {
  box-shadow: 0 0 30px var(--accent-glow);
}

.btn-glow:hover {
  box-shadow: 0 0 50px var(--accent-glow);
}

/* ==================== SCROLL PROGRESS BAR ==================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: calc(var(--z-nav) + 1);
  background: var(--bg-tertiary);
}

.scroll-progress-bar {
  height: 100%;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left center;
}

/* ============================================
   EPIC HERO SECTION - CINEMATIC FPS THEME
   ============================================ */

/* Full-screen parallax background */
.hero-bg-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-bg-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
  mix-blend-mode: normal;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom,
      rgba(6, 6, 6, 0.58) 0%,
      rgba(6, 6, 6, 0.34) 40%,
      rgba(6, 6, 6, 0.54) 70%,
      rgba(6, 6, 6, 0.78) 100%);
}

/* Tactical grid overlay */
.tactical-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(255, 234, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 234, 0, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.24;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-glow,
  .hero-bg-grid,
  .tactical-grid-overlay,
  .hero-content-center {
    animation: none !important;
    transform: none !important;
  }
}

/* Centered hero content */
.hero-content-center {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  padding: var(--container-padding);
  opacity: 1;
  animation: none;
}

@keyframes heroContentReveal {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Tactical badge */
.hero-badge-tactical {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent-primary);
  opacity: 1;
  animation: none;
}

@keyframes badgeFadeIn {
  to {
    opacity: 1;
  }
}

.badge-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

/* Glitch title */
.hero-title-glitch {
  position: relative;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 1;
  animation: none;
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-main {
  position: relative;
  z-index: 1;
  color: var(--text-primary);
  text-shadow:
    0 0 16px var(--accent-glow),
    0 0 32px var(--accent-glow);
}

/* Glitch layers */
.title-glitch-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
}

/* Epic subtitle */
.hero-subtitle-epic {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
  opacity: 1;
  animation: none;
}

@keyframes subtitleFadeIn {
  to {
    opacity: 1;
  }
}

/* Epic CTA button */
.hero-cta-epic {
  margin-top: 1rem;
  opacity: 1;
  animation: none;
}

@keyframes ctaPopIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-play-epic {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--bg-primary);
  background: var(--accent-primary);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-play-epic:hover {
  transform: translateY(-4px) scale(1.02);
  background: var(--text-primary);
  box-shadow: 0 20px 60px rgba(255, 234, 0, 0.5);
}

.btn-bg-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-play-epic:hover .btn-bg-glow {
  opacity: 1;
  animation: btnGlowPulse 2s ease-in-out infinite;
}

@keyframes btnGlowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.btn-border-animated {
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, transparent, var(--text-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.btn-play-epic:hover .btn-border-animated {
  opacity: 1;
  animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
  to {
    transform: rotate(360deg);
  }
}

.btn-content-epic {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
}

.btn-icon-play {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.btn-play-epic:hover .btn-icon-play {
  transform: translateX(4px) scale(1.1);
}

.btn-shine-sweep {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shineSweep 3s ease-in-out infinite;
}

@keyframes shineSweep {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 200%;
  }
}

/* Hero register + social bar */
.hero-engagement-bar {
  width: min(980px, 92vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 234, 0, 0.25);
  backdrop-filter: blur(9px);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  opacity: 0;
  animation: hudFadeIn 1s ease-out 1.2s forwards;
}

@keyframes hudFadeIn {
  to {
    opacity: 1;
  }
}

.hero-register-btn {
  min-width: 0;
  max-width: 560px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: var(--accent-primary);
  color: #080808;
  border: 1px solid rgba(255, 234, 0, 0.65);
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hero-register-btn svg {
  width: 20px;
  height: 20px;
}

.hero-register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 234, 0, 0.28);
  filter: brightness(1.05);
}

.hero-social-mock {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-right: 0.2rem;
}

.hero-social-btn {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.62);
  color: rgba(255, 234, 0, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 234, 0, 0.09) inset;
  opacity: 0.95;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.hero-social-btn svg {
  width: 23px;
  height: 23px;
}

.hero-social-btn:hover,
.hero-social-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 234, 0, 0.45);
  color: var(--accent-primary);
  background: rgba(0, 0, 0, 0.74);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 234, 0, 0.16) inset;
  outline: none;
}

/* Scroll indicator */
.hero-scroll-epic {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: scrollFadeIn 1s ease-out 2s forwards;
}

@keyframes scrollFadeIn {
  to {
    opacity: 1;
  }
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
  animation: scrollLineGrow 2s ease-in-out infinite;
}

@keyframes scrollLineGrow {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.3;
  }

  50% {
    transform: scaleY(1.5);
    opacity: 1;
  }
}

.scroll-text-epic {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent-primary);
}

.scroll-arrows-epic {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.scroll-arrows-epic span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--accent-primary);
  border-bottom: 2px solid var(--accent-primary);
  transform: rotate(45deg);
  animation: arrowBounce 2s ease-in-out infinite;
}

.scroll-arrows-epic span:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-arrows-epic span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes arrowBounce {

  0%,
  100% {
    opacity: 0;
    transform: rotate(45deg) translateY(-10px);
  }

  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(0);
  }
}

/* HUD corner brackets */
.hud-bracket {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 10;
  pointer-events: none;
}

.hud-bracket::before,
.hud-bracket::after {
  content: '';
  position: absolute;
  background: var(--accent-primary);
  opacity: 0.6;
}

.hud-bracket::before {
  width: 100%;
  height: 2px;
}

.hud-bracket::after {
  width: 2px;
  height: 100%;
}

.hud-bracket-tl {
  top: 2rem;
  left: 2rem;
}

.hud-bracket-tl::before {
  top: 0;
  left: 0;
}

.hud-bracket-tl::after {
  top: 0;
  left: 0;
}

.hud-bracket-tr {
  top: 2rem;
  right: 2rem;
}

.hud-bracket-tr::before {
  top: 0;
  right: 0;
}

.hud-bracket-tr::after {
  top: 0;
  right: 0;
}

.hud-bracket-bl {
  bottom: 2rem;
  left: 2rem;
}

.hud-bracket-bl::before {
  bottom: 0;
  left: 0;
}

.hud-bracket-bl::after {
  bottom: 0;
  left: 0;
}

.hud-bracket-br {
  bottom: 2rem;
  right: 2rem;
}

.hud-bracket-br::before {
  bottom: 0;
  right: 0;
}

.hud-bracket-br::after {
  bottom: 0;
  right: 0;
}

/* Scanline sweep effect */
.scanline-sweep {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  z-index: 10;
  opacity: 0.3;
  animation: scanlineSweep 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanlineSweep {

  0%,
  100% {
    top: 0;
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  50% {
    top: 100%;
    opacity: 0.6;
  }

  90% {
    opacity: 0.4;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title-glitch {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-subtitle-epic {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .hero-engagement-bar {
    width: min(94vw, 560px);
    flex-direction: column;
    padding: 0.95rem;
    gap: 0.8rem;
  }

  .hero-register-btn {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }

  .hero-social-mock {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
  }

  .hero-social-btn {
    width: 48px;
    height: 48px;
  }

  .hero-social-btn svg {
    width: 19px;
    height: 19px;
  }

  .btn-play-epic {
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }

  .hud-bracket {
    width: 40px;
    height: 40px;
  }
}
/* ============================================
   NEWSLETTER REDESIGN (PREMIUM CYBERPUNK)
   ============================================ */
#newsletterSection .newsletter-content {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#newsletterSection .newsletter-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

#newsletterSection .newsletter-info {
  position: relative;
  z-index: 2;
}

#newsletterSection .newsletter-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

#newsletterSection .text-accent {
  color: var(--accent-primary);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

#newsletterSection .newsletter-actions-wrap {
  position: relative;
  z-index: 2;
}

#newsletterSection .newsletter-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

#newsletterSection .newsletter-action-card {
  min-height: 180px;
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.34);
  color: var(--text-primary);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

#newsletterSection .newsletter-action-card:hover,
#newsletterSection .newsletter-action-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  outline: none;
}

#newsletterSection .newsletter-action-card--primary {
  border-color: rgba(255, 215, 0, 0.38);
  background:
    radial-gradient(circle at top left, rgba(255, 215, 0, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.38);
}

#newsletterSection .newsletter-action-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.56);
  text-transform: uppercase;
}

#newsletterSection .newsletter-action-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#newsletterSection .newsletter-action-copy {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  font-size: 0.96rem;
  max-width: 30ch;
}

#newsletterSection .newsletter-action-arrow {
  margin-top: auto;
  color: var(--accent-primary);
  font-size: 1.2rem;
}

#newsletterSection .newsletter-status {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #newsletterSection .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
  }
  
  #newsletterSection .newsletter-actions {
    grid-template-columns: 1fr;
  }

  #newsletterSection .newsletter-action-card {
    min-height: 0;
    text-align: left;
  }

  #newsletterSection .newsletter-status {
    text-align: center;
  }
}

/* ============================================
   HERO SLOGAN MODE (Typography Fix)
   ============================================ */
.hero-title-glitch.hero-slogan-mode {
  /* Reduced size to fit longer text "PLAY / BUILD / LEARN" */
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: 0.05em;
  white-space: nowrap;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-title-glitch.hero-slogan-mode {
    font-size: clamp(1.8rem, 6vw, 3rem);
    white-space: normal; /* Allow wrapping on very small screens if needed */
    line-height: 1.1;
  }
}

/* ============================================
   NVIDIA INCEPTION MODAL
   ============================================ */
body.inception-open {
  overflow: hidden;
}

.inception-modal {
  position: fixed;
  inset: 0;
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.inception-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.inception-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(4px);
}

.inception-dialog {
  position: relative;
  width: min(360px, calc(100% - 2rem));
  padding: clamp(0.8rem, 2vw, 1.1rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(12, 12, 12, 0.98) 0%, rgba(6, 6, 6, 0.96) 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55), 0 0 35px rgba(255, 234, 0, 0.12);
  text-align: center;
}

.inception-dismiss {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 2rem;
  height: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  line-height: 1;
}

.inception-title {
  margin-top: 0.25rem;
  margin-bottom: 0.35rem;
  color: var(--accent-primary);
  font-size: clamp(0.84rem, 1.3vw, 1rem);
  letter-spacing: 0.06em;
}

.inception-description {
  max-width: 30ch;
  margin: 0 auto 0.6rem;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
}

.inception-logo-wrap {
  margin: 0 auto 1rem;
  width: min(220px, 82%);
  background: #fff;
  border-radius: 8px;
  padding: 0.4rem;
}

.inception-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.inception-confirm {
  min-width: 140px;
  padding: 0.7rem 1.1rem;
  font-size: 0.68rem;
  margin: 0 auto;
}

/* ============================================
   PARTNERS + BACKERS CAROUSELS
   ============================================ */
.partners-section .logo-carousel-stack {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.7rem);
}

.partners-section .section-header {
  margin-bottom: 1rem;
}

.partners-section .section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.partners-section .logo-carousel-block {
  padding: clamp(0.65rem, 1.2vw, 0.85rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.partners-section .logo-carousel-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
  font-size: clamp(0.95rem, 1.8vw, 1.45rem);
  font-family: var(--font-display);
  letter-spacing: 0.075em;
}

.partners-section .title-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 8px rgba(255, 234, 0, 0.38);
}

.partners-section .logo-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.38rem;
}

.partners-section .logo-carousel-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.partners-section .logo-carousel-arrow:hover {
  transform: scale(1.05);
  border-color: rgba(255, 234, 0, 0.55);
  color: var(--accent-primary);
}

.partners-section .logo-carousel-arrow svg {
  width: 0.9rem;
  height: 0.9rem;
}

.partners-section .logo-carousel-viewport {
  overflow: hidden;
  border-radius: 10px;
}

.partners-section .logo-carousel-track {
  --per-view: 3;
  display: flex;
  gap: 0.65rem;
  transition: transform 0.6s var(--ease-in-out);
  will-change: transform;
}

.partners-section .logo-slide {
  flex: 0 0 calc((100% - (0.65rem * (var(--per-view) - 1))) / var(--per-view));
  min-height: clamp(152px, 15vw, 172px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(4, 5, 9, 0.9) 0%, rgba(0, 0, 0, 0.74) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.85rem, 1.8vw, 1.15rem) clamp(1rem, 2.2vw, 1.35rem);
  overflow: hidden;
}

.partners-section .logo-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: none;
}

.partners-section .logo-carousel-dots {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.partners-section .logo-dot {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.partners-section .logo-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.partners-section .logo-dot.active {
  transform: scale(1.05);
}

.partners-section .logo-dot.active::before {
  background: var(--accent-primary);
  transform: scale(1.15);
}

.partners-section .logo-dot:focus-visible {
  outline: 1px solid var(--accent-primary);
  outline-offset: 2px;
}

@media (max-width: 1040px) {
  .partners-section .logo-carousel-track {
    --per-view: 2;
  }
}

@media (max-width: 700px) {
  .partners-section .logo-carousel-shell {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .partners-section .logo-carousel-arrow {
    display: none;
  }

  .partners-section .logo-carousel-track {
    --per-view: 1;
    gap: 0.55rem;
  }

  .partners-section .logo-slide {
    min-height: 126px;
    padding: 0.7rem 0.8rem;
  }

  .partners-section .logo-slide img {
    width: min(74%, 240px);
    max-width: 240px;
    max-height: 70px;
    --logo-scale: 1.12;
  }
}
