/* ============================================================
   GG ECOSYSTEM — STYLES
   ============================================================ */

:root {
  --bg:       #080808;
  --bg2:      #0e0e0e;
  --bg3:      #111111;
  --red:      #CC1010;
  --red-glow: rgba(204,16,16,0.35);
  --red-dim:  rgba(204,16,16,0.15);
  --cyan:     #00D4FF;
  --cyan-dim: rgba(0,212,255,0.12);
  --green:    #00FF66;
  --white:    #F5F5F5;
  --gray:     rgba(255,255,255,0.55);
  --gray2:    rgba(255,255,255,0.25);
  --card-bg:  rgba(255,255,255,0.03);
  --card-bd:  rgba(255,255,255,0.08);
  --red-bd:   rgba(204,16,16,0.4);
  --cyan-bd:  rgba(0,212,255,0.4);
  --green-bd: rgba(0,255,102,0.4);
  --radius:   12px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.t-red   { color: var(--red); }
.t-white { color: #fff; }
.t-green { color: var(--green); }
.fw-bold { font-weight: 700; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }

/* ---- FONTS ---- */
.section-title, .hero-title, .tourn-title, .growth-title {
  font-family: 'Bebas Neue', 'Montserrat', sans-serif;
  line-height: 0.95;
  letter-spacing: 1px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 64px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo-svg { height: 44px; width: auto; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   SECTIONS — COMMON
   ============================================================ */
.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

/* HUD corner brackets */
.hud-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hc {
  position: absolute;
  width: 36px;
  height: 36px;
}
.hud-corners.red .hc  { border-color: var(--red); }
.hud-corners.cyan .hc { border-color: var(--cyan); }
.hud-corners.green .hc { border-color: var(--green); }

.hc.tl { top: 24px; left: 24px; border-top: 2px solid; border-left: 2px solid; }
.hc.tr { top: 24px; right: 24px; border-top: 2px solid; border-right: 2px solid; }
.hc.bl { bottom: 24px; left: 24px; border-bottom: 2px solid; border-left: 2px solid; }
.hc.br { bottom: 24px; right: 24px; border-bottom: 2px solid; border-right: 2px solid; }

.hud-label {
  position: absolute;
  font-family: 'Inter', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.35;
  color: var(--white);
}
.hud-label.tl { top: 12px; left: 68px; }
.hud-label.br { bottom: 12px; right: 68px; }

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.d2 { transition-delay: 0.15s; }
.fade-in.d3 { transition-delay: 0.3s; }
.fade-in.d4 { transition-delay: 0.45s; }

/* Brands row */
.brands-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.brands-row.small { margin-top: 24px; }
.br-item {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.br-sep { color: rgba(255,255,255,0.2); font-size: 12px; }

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.s-hero {
  background: radial-gradient(ellipse 70% 80% at 75% 50%, rgba(180,10,10,0.22) 0%, transparent 65%),
              radial-gradient(ellipse 50% 60% at 20% 60%, rgba(140,0,0,0.1) 0%, transparent 55%),
              var(--bg);
  padding-bottom: 60px;
}
.hero-bg-glow {
  position: absolute;
  top: 0; right: 0;
  width: 65%;
  height: 100%;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(200,10,10,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 80vh;
}
.hero-title {
  font-size: clamp(48px, 6.5vw, 90px);
  margin-bottom: 36px;
  line-height: 0.92;
}
.hero-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.brand-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition);
}
.brand-pill:hover {
  border-color: var(--red-bd);
  color: var(--white);
}
.hero-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray2);
  margin-top: 8px;
}
.hero-right { position: relative; }
.hero-photo {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  object-position: center top;
}
.hero-photo-frame {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(204,16,16,0.2);
  border-radius: 6px;
  pointer-events: none;
}

/* ============================================================
   SECTION 2 — ECOSYSTEM
   ============================================================ */
.s-ecosystem {
  background: var(--bg);
}
.eco-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 60px;
  min-height: 80vh;
}
.eco-left {}
.section-title {
  font-size: clamp(42px, 5vw, 72px);
  margin-bottom: 24px;
}
.eco-desc {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.8;
  color: var(--gray);
  text-transform: uppercase;
}

/* Ecosystem Diagram */
.eco-right { display: flex; justify-content: center; }
.eco-diagram {
  position: relative;
  width: 520px;
  height: 420px;
  flex-shrink: 0;
}
.eco-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Center Gamer ID */
.eco-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 30%, 100% 70%, 75% 100%, 25% 100%, 0% 70%, 0% 30%);
  background: linear-gradient(160deg, #2a0000 0%, #1a0000 50%, #300000 100%);
  border: none;
  z-index: 3;
  box-shadow: 0 0 60px rgba(204,16,16,0.5), 0 0 120px rgba(204,16,16,0.2);
}
.eco-center::before {
  content: '';
  position: absolute;
  inset: 2px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 30%, 100% 70%, 75% 100%, 25% 100%, 0% 70%, 0% 30%);
  border: 1.5px solid rgba(204,16,16,0.6);
}
.eco-center-inner {
  text-align: center;
  z-index: 1;
}
.eco-center-icon { margin-bottom: 6px; }
.eco-center-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.eco-center-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gray2);
  text-transform: uppercase;
  line-height: 1.5;
}

/* Satellite nodes */
.eco-node {
  position: absolute;
  width: 150px;
  background: rgba(15,15,15,0.9);
  border: 1px solid var(--red-bd);
  border-radius: 10px;
  padding: 14px 12px;
  z-index: 3;
}
.eco-node-tl { top: 10px; left: 10px; }
.eco-node-tr { top: 10px; right: 10px; }
.eco-node-br { bottom: 10px; right: 10px; }
.eco-node-bl { bottom: 10px; left: 10px; }

.eco-node-logo { margin-bottom: 6px; }
.eco-node-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
}
.eco-node-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 4px;
}
.eco-node-text {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.6;
  color: var(--gray);
  text-transform: uppercase;
}

/* ============================================================
   SECTION 3 — GAMER ID
   ============================================================ */
.s-gamerid {
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(0,180,220,0.07) 0%, transparent 60%),
    var(--bg);
}
.gid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 20px 0;
}
.gid-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.gid-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 4px;
}
.gid-title {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.gid-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.gid-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gid-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--gray);
}
.gid-icon { flex-shrink: 0; margin-top: 1px; }

/* Gamer ID right cards */
.gid-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.gid-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.gid-card:hover { border-color: rgba(0,212,255,0.3); }
.gid-card.social {
  display: flex;
  align-items: center;
  gap: 20px;
  border-color: rgba(0,212,255,0.2);
}
.gid-card.social h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
}
.monetize-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.monetize-header h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--red);
}
.monetize-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.monetize-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--card-bd);
}
.monetize-list li:last-child { border-bottom: none; padding-bottom: 0; }

/* ============================================================
   SECTION 4 — GG CLUBS
   ============================================================ */
.s-clubs {
  background:
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(180,10,10,0.12) 0%, transparent 60%),
    var(--bg);
}
.clubs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.clubs-logo-row { margin-bottom: 10px; }
.clubs-gg-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 4px;
  line-height: 1;
}
.clubs-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 8px;
}
.clubs-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}
.clubs-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 14px;
}
.clubs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.clubs-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--gray);
}
.clubs-list li svg { flex-shrink: 0; margin-top: 2px; }
.clubs-feature-box {
  background: rgba(204,16,16,0.06);
  border: 1px solid rgba(204,16,16,0.25);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 24px;
}
.cfb-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.clubs-feature-box p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--gray);
}
.clubs-footer-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--gray);
}
/* Clubs photo */
.clubs-photo-wrap {
  position: relative;
  margin-top: 20px;
}
.clubs-photo {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.clubs-photo-frame {
  position: absolute;
  inset: -10px;
  border: 1.5px solid rgba(204,16,16,0.25);
  border-radius: 6px;
  pointer-events: none;
}
.clubs-photo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  border: 1.5px solid rgba(204,16,16,0.5);
  border-radius: 8px;
  padding: 8px 16px;
}
.clubs-gg-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
}

/* ============================================================
   SECTION 5 — TOURNAMENTS
   ============================================================ */
.s-tournaments {
  background: var(--bg);
}
.tourn-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
}
.tourn-title {
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.9;
  margin-bottom: 20px;
  color: var(--white);
}
.tourn-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 40px;
}
.tourn-bracket { opacity: 0.85; margin-bottom: 16px; }

/* Tournaments grid */
.tourn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.tourn-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition), background var(--transition);
}
.tourn-card:hover {
  background: rgba(0,255,102,0.03);
  border-color: var(--green-bd);
}
.tourn-card.highlight-green {
  border-color: rgba(0,255,102,0.2);
}
.tc-icon { width: 36px; height: 36px; }
.tourn-card p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.65;
  color: var(--gray);
}

/* ============================================================
   SECTION 6 — OMIS MEDIA
   ============================================================ */
.s-omis {
  background: var(--bg);
}
.omis-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}
.omis-logo { margin-bottom: 12px; }
.omis-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 2px;
  line-height: 1;
}
.omis-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.omis-divider-red {
  width: 3px;
  height: 36px;
  background: var(--red);
  margin-bottom: 16px;
}
.omis-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 24px;
}
.omis-photo-wrap { position: relative; margin-bottom: 20px; }
.omis-photo {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-height: 200px;
}
.omis-photo-frame {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(204,16,16,0.2);
  border-radius: 6px;
  pointer-events: none;
}
.omis-footer-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(204,16,16,0.05);
  border: 1px solid rgba(204,16,16,0.2);
  border-radius: 8px;
}
.omis-footer-box p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--gray);
}

/* OmiS cards */
.omis-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.omis-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition);
}
.omis-card:hover { border-color: var(--red-bd); }
.oc-icon { width: 40px; height: 40px; }
.omis-card p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--gray);
}

/* ============================================================
   SECTION 7 — CRM
   ============================================================ */
.s-crm {
  background:
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(0,180,220,0.06) 0%, transparent 55%),
    var(--bg);
}
.crm-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
.crm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: 2px;
  line-height: 1;
}
.crm-cards-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}
.crm-main-card {
  background: var(--card-bg);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 200px;
  transition: border-color var(--transition);
}
.crm-main-card:hover { border-color: var(--cyan-bd); }
.crm-main-card h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.35;
}
.crm-plus {
  font-size: 32px;
  color: rgba(0,212,255,0.4);
  text-align: center;
  font-weight: 300;
}

/* CRM Flow */
.crm-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.crm-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  min-width: 130px;
  text-align: center;
}
.crm-flow-item.active {
  border-color: rgba(204,16,16,0.5);
  background: rgba(204,16,16,0.06);
}
.cfi-icon { height: 28px; display: flex; align-items: center; }
.crm-flow-item span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1.4;
}
.crm-flow-item.active span { color: var(--white); }
.crm-flow-note {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray2);
}

/* ============================================================
   SECTION 8 — GROWTH
   ============================================================ */
.s-growth {
  background: var(--bg);
}
.growth-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.growth-title {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 20px;
}
.growth-principle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 24px;
}
.growth-rules {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.growth-rule {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.gr-icon { flex-shrink: 0; margin-top: 2px; }
.growth-rule p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Growth diagram */
.growth-diagram { display: flex; justify-content: center; }
.gd-wrap {
  position: relative;
  width: 440px;
  height: 360px;
}
.gd-arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Growth nodes */
.gd-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.gdn-hex {
  width: 72px;
  height: 72px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 30%, 100% 70%, 75% 100%, 25% 100%, 0% 70%, 0% 30%);
  background: rgba(30,5,5,0.95);
  border: 1.5px solid rgba(204,16,16,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow var(--transition);
}
.gdn-hex.gid-hex {
  clip-path: polygon(25% 0%, 75% 0%, 100% 30%, 100% 70%, 75% 100%, 25% 100%, 0% 70%, 0% 30%);
  background: rgba(170,0,0,0.5);
  border-color: rgba(204,16,16,0.8);
  box-shadow: 0 0 30px rgba(204,16,16,0.4);
}
.gd-node:hover .gdn-hex {
  box-shadow: 0 0 24px rgba(204,16,16,0.5);
}

.gdn-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
}
.gdn-desc {
  font-size: 9px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  max-width: 110px;
}

/* node positions */
.crm-node   { top: 20px;  left: 20px;  }
.omis-node  { top: 20px;  right: 20px; }
.gid-node   { top: 50%;   left: 50%;   transform: translate(-50%, -50%); }
.gg-node    { bottom: 20px; right: 40px; }
.tourn-node { bottom: 20px; left: 40px;  }

.gid-node.center .gdn-hex { width: 88px; height: 88px; }

/* Growth footer */
.growth-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.gf-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(204,16,16,0.05);
  border: 1px solid rgba(204,16,16,0.2);
  border-radius: 10px;
  max-width: 760px;
}
.gf-box p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: rgba(0,0,0,0.8);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 4px;
}
.footer-copy {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  .eco-layout { grid-template-columns: 1fr; }
  .eco-right { display: none; }
  .growth-layout { grid-template-columns: 1fr; }
  .growth-diagram { margin-top: 24px; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0 60px; min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .gid-layout { grid-template-columns: 1fr; gap: 36px; }
  .clubs-layout { grid-template-columns: 1fr; }
  .clubs-right { display: none; }
  .omis-layout { grid-template-columns: 1fr; }
  .crm-cards-row { grid-template-columns: 1fr; }
  .crm-plus { display: none; }
  .tourn-layout { grid-template-columns: 1fr; }
  .tourn-bracket { display: none; }
  .tourn-grid { grid-template-columns: 1fr 1fr; }
  .omis-cards { grid-template-columns: 1fr; }
  .crm-flow { flex-direction: column; gap: 8px; }
  .crm-flow-arrow { transform: rotate(90deg); }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 12px 28px; }
  .gd-wrap { width: 100%; max-width: 340px; height: 300px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .tourn-grid { grid-template-columns: 1fr; }
  .hero-logos-row { gap: 8px; }
  .brand-pill { padding: 6px 10px; font-size: 10px; }
  .hc { width: 24px; height: 24px; }
  .hud-label { display: none; }
}
