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

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

:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #151c2e;
  --bg-card-hover: #1a2338;
  --green-primary: #00e676;
  --green-secondary: #00c853;
  --green-dark: #00a843;
  --green-glow: rgba(0, 230, 118, 0.15);
  --green-glow-strong: rgba(0, 230, 118, 0.3);
  --text-primary: #e8eaf0;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border-color: rgba(0, 230, 118, 0.1);
  --border-active: rgba(0, 230, 118, 0.3);
  --warning-red: #ef4444;
  --warning-bg: rgba(239, 68, 68, 0.08);
  --warning-border: rgba(239, 68, 68, 0.2);
  --caution-orange: #f59e0b;
  --caution-bg: rgba(245, 158, 11, 0.08);
  --caution-border: rgba(245, 158, 11, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  caret-color: transparent;
}

/* Prevent image download on long press */
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

a img, .logo-area img {
  pointer-events: auto;
  -webkit-touch-callout: none;
}

/* Background Effects */
.bg-effects {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0;
  animation: orbFloat 20s ease-in-out infinite;
}

.bg-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,230,118,0.12), transparent 70%);
  top: -200px; right: -300px;
  animation-delay: 0s;
}

.bg-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,200,83,0.08), transparent 70%);
  bottom: -100px; left: -350px;
  animation-delay: -7s;
}

.bg-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,230,118,0.06), transparent 70%);
  top: -150px; right: -200px;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Grid pattern overlay */
.bg-grid {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(0,230,118,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,118,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.8rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border-active);
  box-shadow: 0 0 20px var(--green-glow);
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.logo-text span:first-child {
  color: var(--text-primary);
}

.logo-text span:last-child {
  color: var(--green-primary);
}

.header-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-primary);
  background: var(--green-glow);
  border: 1px solid var(--border-active);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px var(--green-glow-strong);
  animation: heroGlow 3s ease-in-out infinite alternate;
}

.hero-icon svg {
  width: 36px;
  height: 36px;
}

@keyframes heroGlow {
  from { box-shadow: 0 8px 40px var(--green-glow); }
  to { box-shadow: 0 8px 60px var(--green-glow-strong); }
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--green-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

.effective-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--green-primary);
  background: var(--green-glow);
  border: 1px solid var(--border-active);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}

/* Main Content */
.main-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
}

/* Sidebar / TOC */
.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.toc {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
}

.toc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.toc-list a:hover, .toc-list a.active {
  color: var(--green-primary);
  background: var(--green-glow);
}

.toc-list a .toc-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 22px;
}

.toc-list a:hover .toc-num, .toc-list a.active .toc-num {
  color: var(--green-primary);
}

/* Content */
.content {
  min-width: 0;
}

.section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  border-color: var(--border-active);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.03);
}

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

.section-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.2);
}

.section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-primary);
  margin: 1.8rem 0 0.8rem;
}

.section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.section ul, .section ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.section li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  padding-left: 0.3rem;
}

.section li::marker {
  color: var(--green-primary);
}

/* Alert Boxes */
.alert-box {
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.alert-box .alert-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-danger .alert-icon {
  background: rgba(239, 68, 68, 0.2);
  color: var(--warning-red);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.alert-warning .alert-icon {
  background: rgba(245, 158, 11, 0.2);
  color: var(--caution-orange);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.alert-info .alert-icon {
  background: rgba(0, 230, 118, 0.2);
  color: var(--green-primary);
  border: 1px solid rgba(0, 230, 118, 0.4);
}

.alert-box p {
  margin: 0;
}

.alert-danger {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
}

.alert-danger .alert-icon { color: var(--warning-red); }
.alert-danger p { color: #fca5a5; }
.alert-danger strong { color: var(--warning-red); }

.alert-warning {
  background: var(--caution-bg);
  border: 1px solid var(--caution-border);
}

.alert-warning .alert-icon { color: var(--caution-orange); }
.alert-warning p { color: #fcd34d; }
.alert-warning strong { color: var(--caution-orange); }

.alert-info {
  background: var(--green-glow);
  border: 1px solid var(--border-active);
}

.alert-info .alert-icon { color: var(--green-primary); }
.alert-info p { color: #86efac; }
.alert-info strong { color: var(--green-primary); }

/* Punishment Table */
.punishment-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.punishment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.punishment-table thead {
  background: rgba(0, 230, 118, 0.08);
}

.punishment-table th {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-primary);
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-active);
}

.punishment-table td {
  padding: 0.9rem 1.2rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.punishment-table tbody tr:hover {
  background: rgba(0, 230, 118, 0.03);
}

.severity-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.severity-critical {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.severity-high {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.severity-medium {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin: 0 auto 1.2rem;
  display: block;
  object-fit: cover;
  border: 1px solid var(--border-active);
  box-shadow: 0 0 20px var(--green-glow);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.footer a {
  color: var(--green-primary);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-active);
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 900px) {
  .main-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  .toc {
    max-height: 250px;
    overflow-y: auto;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .section {
    padding: 1.5rem;
    overflow-x: auto;
  }
  .section-header {
    flex-wrap: wrap;
  }
  .section h2 {
    font-size: 1.2rem;
  }
  .punishment-table {
    font-size: 0.8rem;
  }
  .punishment-table th,
  .punishment-table td {
    padding: 0.6rem 0.8rem;
  }
  .alert-box {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 0 1rem;
  }
  .header-badge {
    display: none;
  }
  .hero {
    padding: 3rem 1rem 2rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero .subtitle {
    font-size: 0.9rem;
  }
  .main-container {
    padding: 0.75rem;
  }
  .section {
    padding: 1.2rem;
    border-radius: 12px;
  }
  .section h2 {
    font-size: 1.1rem;
  }
  .section h3 {
    font-size: 1rem;
  }
  .section p, .section li {
    font-size: 0.85rem;
  }
  .effective-date {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  .footer {
    padding: 2rem 1rem;
  }
}

/* ===== NAVIGATION ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--green-primary);
  background: var(--green-glow);
}

.nav-link.active {
  color: var(--green-primary);
  background: var(--green-glow);
  border: 1px solid var(--border-active);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    gap: 0.25rem;
  }
  .main-nav.mobile-open { display: flex; }
  .nav-link { width: 100%; padding: 0.75rem 1rem; }
}

/* ===== HOME PAGE ===== */
.home-hero {
  position: relative;
  z-index: 1;
  padding: 7rem 2rem 4rem;
  text-align: center;
}

.home-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-trust-row {
  margin-bottom: 1.5rem;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-primary);
  background: var(--green-glow);
  border: 1px solid var(--border-active);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.home-hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  object-fit: cover;
  border: 2px solid var(--border-active);
  box-shadow: 0 0 60px var(--green-glow-strong);
  margin-bottom: 1.5rem;
  animation: heroGlow 3s ease-in-out infinite alternate;
}

.home-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.highlight {
  color: var(--green-primary);
}

.home-hero-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0.8;
}

.home-hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.home-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-sports-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sport-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.sport-tag:hover {
  color: var(--green-primary);
  border-color: var(--border-active);
  background: var(--green-glow);
}

.btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(0, 230, 118, 0.5);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 1px solid var(--border-active);
}

.btn-outline:hover {
  background: var(--green-glow);
  transform: translateY(-3px);
}

/* ===== STATS BANNER ===== */
.stats-banner {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.06), rgba(0, 168, 67, 0.03));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem;
}

.stats-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
}

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

.stat-item .stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-primary);
  display: inline;
  line-height: 1;
}

.stat-plus {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-primary);
}

.stat-item .stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 0.25rem;
}

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

/* ===== STEPS / HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 230, 118, 0.1);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
}

.step-line {
  display: none;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--green-glow);
  border: 1px solid var(--border-active);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin: 0.5rem auto 1.2rem;
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== HOME SECTIONS ===== */
.home-section {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
}

.home-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-primary);
  margin-bottom: 0.75rem;
}

.home-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* About Cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.about-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 230, 118, 0.1);
}

.about-card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-glow);
  border: 1px solid var(--border-active);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin-bottom: 1.2rem;
}

.about-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-story {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
}

.about-story h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-primary);
  margin-bottom: 1rem;
}

.about-story p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.feature-card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 230, 118, 0.1);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--green-glow);
  border: 1px solid var(--border-active);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== OWNER CTA ===== */
.owner-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 3rem;
}

.owner-cta-content .section-label { margin-bottom: 0.5rem; }
.owner-cta-content h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.owner-cta-content p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.8; }

.owner-benefits {
  list-style: none;
  margin-bottom: 2rem;
}

.owner-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

/* Mock Dashboard */
.mock-dashboard {
  background: #0d1220;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.2rem;
  overflow: hidden;
}

.mock-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}

.mock-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.3;
}

.mock-bar span:first-child { background: #ef4444; opacity: 0.6; }
.mock-bar span:nth-child(2) { background: #f59e0b; opacity: 0.6; }
.mock-bar span:nth-child(3) { background: #22c55e; opacity: 0.6; }

.mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.mock-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mock-stat-card strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  color: var(--green-primary);
  margin-top: 0.3rem;
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding-top: 0.5rem;
}

.mock-chart .bar {
  flex: 1;
  background: linear-gradient(to top, var(--green-dark), var(--green-primary));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.mock-dashboard:hover .mock-chart .bar { opacity: 1; }

/* Owner QR Wrapper */
.owner-qr-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 18px;
}

.owner-qr-link {
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.owner-qr-link:hover {
  transform: scale(1.05);
}

.owner-qr-img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  border: 4px solid #final; /* white border for QR code readability */
  border-color: #ffffff;
  display: block;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.owner-qr-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.qr-scan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(0, 230, 118, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

.qr-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem !important;
  line-height: 1.4;
}

/* ===== CONTACT CARDS ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.contact-card svg { margin-bottom: 1rem; }
.contact-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.contact-card p { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== SITE FOOTER ===== */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-color);
  background: rgba(0,0,0,0.2);
}

.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem 3rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border-active);
  box-shadow: 0 0 20px var(--green-glow);
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1;
}

.footer-logo-text span:last-child { color: var(--green-primary); }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.social-link:hover {
  color: var(--green-primary);
  border-color: var(--border-active);
  background: var(--green-glow);
}

.footer-links-group h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-group a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s ease;
}

.footer-links-group a:hover { color: var(--green-primary); }

.footer-bottom {
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding: 1.5rem 2rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE — HOME ===== */
@media (max-width: 900px) {
  .about-grid, .features-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .home-hero h1 { font-size: 2.8rem; }
  .owner-cta { grid-template-columns: 1fr; }
  .owner-cta-visual { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-cards { grid-template-columns: 1fr; max-width: 300px; }
}

@media (max-width: 600px) {
  .about-grid, .features-grid, .steps-grid { grid-template-columns: 1fr; }
  .home-hero { padding: 5rem 1.2rem 3rem; }
  .home-hero h1 { font-size: 2.2rem; }
  .home-section { padding: 3rem 1.2rem; }
  .home-section h2 { font-size: 1.8rem; }
  .stats-banner-inner { flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat-item .stat-num { font-size: 2rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .owner-cta { padding: 2rem 1.5rem; }
  .owner-cta-content h2 { font-size: 1.5rem; }
  .owner-qr-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    padding: 1.5rem 1rem;
  }
  .owner-qr-details {
    align-items: center;
  }
}

/* ===== BRAND SHOWCASE VIDEO SECTION ===== */
.brand-showcase-section {
  border-top: 1px solid var(--border-color);
  padding-bottom: 3rem;
}

.showcase-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: center;
}

.showcase-video-wrap {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border-active);
  box-shadow: 0 0 40px var(--green-glow-strong);
  position: relative;
  background: #0d1220;
}

.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.showcase-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.showcase-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.showcase-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.showcase-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.showcase-point svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.showcase-point h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.showcase-point p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    justify-items: center;
  }
  .showcase-content {
    align-items: center;
    text-align: center;
  }
  .showcase-point {
    text-align: left;
  }
}

