/* ============================================
   AOG INDIA — DESIGN SYSTEM & STYLES
   Theme: BGMI Tactical Orange + Military HUD
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Chakra+Petch:wght@400;500;600;700&family=Bebas+Neue&family=JetBrains+Mono:wght@400;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-0: #070806;
  --bg-1: #0d100c;
  --bg-2: #141812;
  --bg-primary: #070806;
  --bg-surface: #0d100c;
  --bg-surface-alt: #141812;
  --ink: #f4ead4;
  --ink-dim: #a8a08a;
  --accent: #ff7a1a;
  --accent-glow: rgba(255, 122, 26, 0.35);
  --accent-2: #ffc23a;
  --danger: #ff2d2d;
  --olive: #3a4a26;
  --olive-2: #5b6f33;
  --line: rgba(255, 122, 26, 0.35);
  --text-primary: #f4ead4;
  --text-muted: #a8a08a;
  --text-dim: #6b6450;
  --border-color: rgba(255, 122, 26, 0.15);
  --gradient-accent: linear-gradient(135deg, #ff7a1a, #ffc23a);
  --gradient-bg: linear-gradient(180deg, #070806 0%, #0d100c 50%, #070806 100%);

  /* Typography */
  --font-heading: 'Black Ops One', sans-serif;
  --font-body: 'Chakra Petch', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1140px;
  --border-radius: 4px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ============================================
   GLOBAL BACKGROUND EFFECTS
   ============================================ */

/* Hex grid background */
.bg-hex {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'><polygon points='30,1 58,16 58,40 30,52 2,40 2,16' fill='none' stroke='%23ff7a1a' stroke-width='0.6' opacity='0.12'/></svg>");
  background-size: 60px 52px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 80%);
  opacity: 0.6;
}

/* Diagonal scan stripes */
.bg-scan {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(135deg, transparent 0 24px, rgba(255, 122, 26, 0.02) 24px 25px);
}

/* Grain texture */
.bg-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.2;
}

/* Smoke blob decorations */
.bg-smoke {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.bg-smoke.s1 {
  width: 600px;
  height: 600px;
  left: -200px;
  top: -150px;
  background: rgba(255, 122, 26, 0.12);
}

.bg-smoke.s2 {
  width: 500px;
  height: 500px;
  right: -200px;
  top: 40%;
  background: rgba(255, 45, 45, 0.08);
}

.bg-smoke.s3 {
  width: 650px;
  height: 650px;
  left: -200px;
  bottom: -200px;
  background: rgba(91, 111, 51, 0.15);
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.section-heading h2 span {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(255, 122, 26, 0.4);
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-body);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition-med), padding var(--transition-med), box-shadow var(--transition-med);
}

.navbar.scrolled {
  background: rgba(7, 8, 6, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 122, 26, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.nav-logo .brand-hex {
  width: 40px;
  height: 40px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  color: #0a0b08;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(255, 122, 26, 0.5);
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--accent);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

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

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 10%, rgba(255, 122, 26, 0.12), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(91, 111, 51, 0.15), transparent 60%),
    linear-gradient(180deg, #0a0b08 0%, #050604 100%);
  z-index: 1;
}

/* Animated gradient orbs — now orange/olive */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
}

.hero::before {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  width: 400px;
  height: 400px;
  background: var(--olive-2);
  bottom: -80px;
  left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}

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

/* Crosshair decoration in hero */
.hero-crosshair {
  position: absolute;
  right: 8%;
  top: 18%;
  width: 100px;
  height: 100px;
  z-index: 3;
  opacity: 0.4;
  animation: crosshairPulse 4s ease-in-out infinite;
}

@keyframes crosshairPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 24px;
  border: 1px solid var(--accent);
  padding: 8px 20px;
  background: rgba(255, 122, 26, 0.08);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.hero-tag::before {
  content: '▶';
  font-size: 0.7rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-shadow: 0 0 60px rgba(255, 122, 26, 0.15);
}

.hero h1 span {
  display: block;
}

.hero h1 .accent-text {
  color: var(--accent);
  text-shadow:
    0 0 30px rgba(255, 122, 26, 0.6),
    4px 4px 0 rgba(0, 0, 0, 0.5);
}

.hero h1 .outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--text-primary);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.7;
  font-family: var(--font-body);
  font-weight: 500;
}

.hero-sub-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-sub-line::before {
  content: '';
  width: 50px;
  height: 3px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-sub-line b {
  color: var(--accent-2);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 36px;
  background: var(--accent);
  color: #0a0b08;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  box-shadow: 0 0 40px rgba(255, 122, 26, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  border: none;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 122, 26, 0.6);
}

.hero-cta i {
  font-size: 1.1rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--bg-surface);
  position: relative;
  z-index: 1;
}

/* Top accent line */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.about-text h2 span {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 122, 26, 0.3);
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-highlight-card {
  position: relative;
  background: rgba(15, 17, 12, 0.7);
  border: 1px solid var(--border-color);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

/* Corner bracket decoration */
.about-highlight-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.about-highlight-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.about-highlight-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 122, 26, 0.1);
}

.about-highlight-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 12px;
  filter: drop-shadow(0 0 8px rgba(255, 122, 26, 0.4));
}

.about-highlight-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--accent-2);
}

.about-highlight-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--gradient-bg);
  position: relative;
  z-index: 1;
}

.services-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.services-columns > div > h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-2);
}

.services-columns > div > h3::before {
  content: '';
  width: 4px;
  height: 28px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.service-card {
  position: relative;
  background: rgba(15, 17, 12, 0.7);
  border: 1px solid var(--border-color);
  padding: 24px;
  margin-bottom: 18px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

/* Corner marks on service cards */
.service-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 18px;
  height: 18px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 122, 26, 0.08);
}

.service-card .service-icon {
  font-size: 1.6rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.service-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 1px;
  color: var(--accent-2);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   CREATORS
   ============================================ */
.creators {
  padding: var(--section-padding);
  background: var(--bg-surface);
  position: relative;
  z-index: 1;
}

.creators::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.creator-card {
  position: relative;
  background: rgba(15, 17, 12, 0.8);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: border-color var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-med);
}

/* Corner brackets on creator cards */
.creator-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 24px;
  height: 24px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  z-index: 5;
}

.creator-card::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  z-index: 5;
}

.creator-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 122, 26, 0.15);
}

/* --- Onboarding Status Card --- */
.creator-card.onboarding {
  border-color: rgba(255, 194, 58, 0.25);
}

.creator-card.onboarding:hover {
  border-color: var(--accent-2);
  box-shadow: 0 12px 40px rgba(255, 194, 58, 0.15);
}

.onboarding-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255, 194, 58, 0.15);
  border: 1px solid rgba(255, 194, 58, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-2);
  animation: badgePulse 2.5s ease-in-out infinite;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.onboarding-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 6px rgba(255, 194, 58, 0.6);
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.creator-img {
  width: 100%;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creator-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform var(--transition-med);
}

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

.creator-initials {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: transform var(--transition-med), text-shadow var(--transition-med);
}

.creator-card:hover .creator-initials {
  transform: scale(1.08);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* --- Gradient Mesh Backgrounds — warm/tactical tones --- */
.gradient-1 {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 122, 26, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(255, 194, 58, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(91, 111, 51, 0.3) 0%, transparent 50%),
    #0a0b08;
}

.gradient-2 {
  background:
    radial-gradient(ellipse at 75% 20%, rgba(255, 45, 45, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 122, 26, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(200, 80, 50, 0.25) 0%, transparent 50%),
    #0a0b08;
}

.gradient-3 {
  background:
    radial-gradient(ellipse at 25% 75%, rgba(91, 111, 51, 0.6) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 122, 26, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(58, 74, 38, 0.3) 0%, transparent 50%),
    #0a0b08;
}

.gradient-4 {
  background:
    radial-gradient(ellipse at 20% 25%, rgba(255, 194, 58, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 75%, rgba(255, 122, 26, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(200, 120, 40, 0.25) 0%, transparent 50%),
    #0a0b08;
}

.gradient-5 {
  background:
    radial-gradient(ellipse at 80% 25%, rgba(255, 122, 26, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 70%, rgba(91, 111, 51, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(100, 140, 50, 0.2) 0%, transparent 50%),
    #0a0b08;
}

.gradient-6 {
  background:
    radial-gradient(ellipse at 70% 80%, rgba(255, 45, 45, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 15%, rgba(255, 194, 58, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, rgba(200, 100, 40, 0.25) 0%, transparent 50%),
    #0a0b08;
}

.creator-info {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border-color);
}

.creator-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.creator-subs {
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.creator-subs i {
  font-size: 1rem;
}

.creator-ig {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.creator-ig i {
  font-size: 1rem;
}

.creator-socials {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.creator-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid rgba(255, 122, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.creator-socials a:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
  z-index: 1;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  position: relative;
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.08), rgba(255, 122, 26, 0));
  border: 1px solid var(--border-color);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

/* Left accent bar */
.stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 28px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

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

.stat-card .stat-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(255, 122, 26, 0.4));
}

.stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 122, 26, 0.3);
  margin-bottom: 6px;
}

.stat-card .stat-label {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 400;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--bg-surface);
  position: relative;
  z-index: 1;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.contact-info h2 span {
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 122, 26, 0.3);
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: rgba(255, 122, 26, 0.04);
  border: 1px solid rgba(255, 122, 26, 0.1);
  border-left: 3px solid var(--accent);
  transition: background var(--transition-fast);
}

.contact-item:hover {
  background: rgba(255, 122, 26, 0.08);
}

.contact-item .contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.contact-item .contact-detail h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 2px;
}

.contact-item .contact-detail a,
.contact-item .contact-detail p {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-item .contact-detail a:hover {
  color: var(--accent-2);
}

/* Contact Form */
.contact-form {
  position: relative;
  background: rgba(15, 17, 12, 0.8);
  border: 1px solid var(--border-color);
  padding: 36px;
}

/* Corner bracket decorations */
.contact-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 24px;
  height: 24px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
}

.contact-form::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 2px;
  color: var(--accent-2);
}

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

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(7, 8, 6, 0.8);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(255, 122, 26, 0.15);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  border: none;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 0 30px rgba(255, 122, 26, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 122, 26, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0 24px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-logo .logo-a {
  color: var(--accent);
  text-shadow: 0 0 15px rgba(255, 122, 26, 0.5);
}

.footer-logo .logo-o {
  color: var(--accent-2);
  text-shadow: 0 0 15px rgba(255, 194, 58, 0.5);
}

.footer-logo .logo-g {
  color: var(--accent);
  text-shadow: 0 0 15px rgba(255, 122, 26, 0.5);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 122, 26, 0.08);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  /* Mobile Nav */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition-med);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .creators-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

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

  .hero-crosshair {
    display: none;
  }

  /* Fix hero layout on mobile */
  .hero {
    padding: 0 16px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-tag {
    clip-path: none;
    font-size: 0.65rem;
    letter-spacing: 2px;
    padding: 6px 14px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    word-break: break-word;
  }

  .hero-sub-line {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.85rem;
    gap: 8px;
    text-align: center;
  }

  .hero-sub-line::before {
    width: 30px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    padding: 0 8px;
  }

  .hero-cta {
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    font-size: 0.8rem;
    padding: 14px 28px;
  }

  /* Make all sections stretch full width */
  .container {
    width: 92%;
  }

  .section-heading h2 {
    font-size: 1.6rem;
  }

  .about-text h2,
  .contact-info h2 {
    font-size: 1.5rem;
  }

  /* Smoke blobs - reduce size on mobile */
  .bg-smoke.s1 {
    width: 300px;
    height: 300px;
    left: -100px;
  }

  .bg-smoke.s2 {
    width: 250px;
    height: 250px;
    right: -100px;
  }

  .bg-smoke.s3 {
    width: 300px;
    height: 300px;
    left: -100px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .hero-sub-line {
    font-size: 0.8rem;
  }

  .service-card {
    flex-direction: column;
    gap: 12px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* --- Mobile Nav Overlay --- */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   UTILITY / SCROLL ANIMATIONS
   ============================================ */

/* Glowing section divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.25;
}