/* ============================
   SuperOAB — Modern Gaming Education Design
   2026 Design: Glassmorphism + Pixel Art Aesthetic + Professional
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&family=Nunito:wght@300;400;500;600;700;800&display=swap');

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

:root {
  /* Game-inspired Colors */
  --blue-primary: #0969DA;
  --navy-deep: #003262;
  --navy-darker: #001a3a;
  --red-accent: #D93025;
  --gold-accent: #FFD700;
  --gold-dark: #DAA520;
  --green-success: #10B981;
  --purple-accent: #7C3AED;
  
  /* Backgrounds */
  --bg-light: #F8F9FA;
  --bg-lighter: #FFFFFF;
  --bg-dark: #1A1D29;
  --bg-darker: #0F1117;
  
  /* Text */
  --text-primary: #2D3748;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --text-light: #A0AEC0;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
  --glow-blue: 0 0 24px rgba(9, 105, 218, 0.3);
  --glow-gold: 0 0 32px rgba(255, 215, 0, 0.4);
  
  /* Spacing */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Typography */
  --font-heading: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-logo .accent {
  color: var(--blue-primary);
  background: linear-gradient(135deg, var(--blue-primary), var(--purple-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo .icon {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(9, 105, 218, 0.2));
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-primary), var(--purple-accent));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--blue-primary);
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--blue-primary), var(--purple-accent)) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(9, 105, 218, 0.25);
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(9, 105, 218, 0.35) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0F1117 0%, #1A1D29 50%, #2D1B4E 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  overflow: hidden;
}

/* Animated gradient mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(9, 105, 218, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 10%, rgba(255, 215, 0, 0.08) 0%, transparent 40%);
  animation: gradientShift 15s ease infinite;
  opacity: 0.8;
}

@keyframes gradientShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

/* Pixel grid overlay */
.hero::after {
  content: '';
  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: 20px 20px;
  opacity: 0.4;
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(32px, 5vw, 64px);
  color: white;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 900px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-accent) 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.hero .subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin: 0 auto 32px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--radius);
  padding: 12px 28px;
  margin-bottom: 40px;
  color: var(--gold-accent);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}

.hero-price-tag .price {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
  color: var(--navy-darker);
  padding: 16px 40px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.45), var(--glow-gold);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 16px 40px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-screens {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-end;
  max-width: 900px;
  margin: 0 auto;
  perspective: 1000px;
}

.hero-screen {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  background: rgba(0, 0, 0, 0.2);
}

.hero-screen:nth-child(1) {
  transform: rotateY(8deg) scale(0.95);
}

.hero-screen:nth-child(2) {
  transform: scale(1.05);
  z-index: 2;
}

.hero-screen:nth-child(3) {
  transform: rotateY(-8deg) scale(0.95);
}

.hero-screen:hover {
  transform: scale(1.08) rotateY(0deg) translateY(-8px) !important;
  z-index: 3 !important;
  box-shadow: 
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 215, 0, 0.3),
    var(--glow-gold);
}

.hero-screen img {
  width: 160px;
  display: block;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: linear-gradient(135deg, #1A1D29 0%, #0F1117 100%);
  padding: 48px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 105, 218, 0.1), rgba(124, 58, 237, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 105, 218, 0.4);
  box-shadow: 0 12px 32px rgba(9, 105, 218, 0.2);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item .num {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-accent), #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: var(--font-heading);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.stat-item .label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 5%;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.6s ease;
}

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

.section-header .tag {
  display: inline-block;
  color: var(--blue-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 18px;
  background: rgba(9, 105, 218, 0.1);
  border-radius: 100px;
  border: 1px solid rgba(9, 105, 218, 0.2);
}

.section-header .tag::before,
.section-header .tag::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--blue-primary);
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: linear-gradient(180deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(9, 105, 218, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 105, 218, 0.05), rgba(124, 58, 237, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(9, 105, 218, 0.2);
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px rgba(9, 105, 218, 0.1);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(9, 105, 218, 0.1), rgba(124, 58, 237, 0.1));
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy-deep);
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots-section {
  background: linear-gradient(135deg, #0F1117 0%, #1A1D29 100%);
  position: relative;
  overflow: hidden;
}

.screenshots-section::before {
  content: '';
  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: 32px 32px;
  opacity: 0.3;
}

.screenshots-section .section-header .tag {
  color: var(--gold-accent);
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.screenshots-section .section-header h2 {
  color: white;
}

.screenshots-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.shot-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.shot-wrap::before {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 32px;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.shot-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9, 105, 218, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shot-wrap:hover {
  transform: scale(1.05);
  border-color: var(--blue-primary);
  box-shadow: 
    0 12px 32px rgba(9, 105, 218, 0.3),
    var(--glow-blue);
  z-index: 10;
}

.shot-wrap:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.shot-wrap:hover::after {
  opacity: 1;
}

.shot-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.shot-wrap:hover img {
  transform: scale(1.05);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
  font-weight: 300;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: var(--red-accent);
  transform: rotate(90deg) scale(1.1);
}

/* ===== OFFICES SECTION ===== */
.offices-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.offices-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 12px 0 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-primary) rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
}

.offices-carousel::-webkit-scrollbar {
  height: 6px;
}

.offices-carousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.offices-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--blue-primary), var(--purple-accent));
  border-radius: 3px;
}

.office-card {
  flex: 0 0 auto;
  width: 240px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.office-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 105, 218, 0.1), rgba(124, 58, 237, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.office-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--blue-primary);
  box-shadow: 
    var(--shadow-lg),
    0 0 0 1px var(--blue-primary),
    var(--glow-blue);
}

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

.office-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.office-card-label {
  padding: 16px;
  text-align: center;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  background: white;
}

/* ===== STORES/DOWNLOAD SECTION ===== */
.stores-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  text-align: center;
  padding: 100px 5%;
}

.store-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--navy-deep), var(--blue-primary));
  color: white;
  padding: 18px 36px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(9, 105, 218, 0.25);
  min-width: 220px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.store-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.store-btn:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 32px rgba(9, 105, 218, 0.35),
    var(--glow-blue);
}

.store-btn:hover::before {
  opacity: 1;
}

.store-btn .store-icon {
  font-size: 32px;
}

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

.store-btn .store-text small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 2px;
}

.store-btn .store-text span {
  font-size: 18px;
  font-weight: 800;
  display: block;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, #0F1117 0%, #1A1D29 50%, #2D1B4E 100%);
  text-align: center;
  padding: 100px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(9, 105, 218, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
}

.cta-strip > * {
  position: relative;
  z-index: 1;
}

.cta-strip h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
  color: var(--navy-darker);
  padding: 18px 48px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.35);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 12px 32px rgba(255, 215, 0, 0.45),
    var(--glow-gold);
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #0F1117 0%, #1A1D29 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 5% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto 56px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.footer-brand .logo-text .accent {
  background: linear-gradient(135deg, var(--blue-primary), var(--purple-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold-accent);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== PAGE HERO (Support/Contact) ===== */
.page-hero {
  background: linear-gradient(135deg, #0F1117 0%, #1A1D29 100%);
  padding: 140px 5% 72px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(9, 105, 218, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 100px;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SUPPORT PAGE ===== */
.support-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 5%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(9, 105, 218, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 24px 28px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--navy-deep);
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}

.faq-question:hover {
  background: rgba(9, 105, 218, 0.03);
  color: var(--blue-primary);
}

.faq-question .arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
  color: var(--blue-primary);
  flex-shrink: 0;
  margin-left: 16px;
  font-weight: 700;
}

.faq-item.open .faq-question {
  background: rgba(9, 105, 218, 0.05);
  color: var(--blue-primary);
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 20px;
  margin-top: 4px;
}

.faq-answer a {
  color: var(--blue-primary);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(9, 105, 218, 0.3);
  transition: text-decoration-color 0.3s ease;
}

.faq-answer a:hover {
  text-decoration-color: var(--blue-primary);
}

/* ===== CONTACT PAGE ===== */
.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--navy-deep);
  font-family: var(--font-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-primary);
  transition: all 0.3s ease;
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 4px rgba(9, 105, 218, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--blue-primary), var(--purple-accent));
  color: white;
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  box-shadow: 0 8px 24px rgba(9, 105, 218, 0.25);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 12px 32px rgba(9, 105, 218, 0.35),
    var(--glow-blue);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 48px;
}

.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 105, 218, 0.2);
  box-shadow: var(--shadow);
}

.contact-info-card .ci-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-info-card h4 {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.contact-info-card p {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
}

.contact-info-card a {
  color: var(--navy-deep);
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--blue-primary);
}

/* ===== UTILITY CLASSES ===== */
.section-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 32px 5%;
    gap: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: slideDown 0.3s ease;
  }

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

  .nav-links.open a {
    color: var(--navy-deep);
    font-size: 16px;
  }

  .hero-screens .hero-screen:nth-child(1),
  .hero-screens .hero-screen:nth-child(3) {
    display: none;
  }

  .hero-screen:nth-child(2) {
    transform: scale(1) !important;
  }

  .hero-screen img {
    width: 220px;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .shots-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  section {
    padding: 64px 5%;
  }

  .contact-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  nav {
    height: 64px;
  }

  .hero {
    padding: 100px 5% 60px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .contact-info-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stat-item .num {
    font-size: 32px;
  }
}

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

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 2px;
}
