/* ==========================================================================
   JJ99 GAME PAKISTAN — MASTER PRODUCTION STYLESHEET
   Obsidian-Emerald Luxury Gaming Palette • Gold Accents • Zero-CDN Architecture
   Mobile-First • Core Web Vitals Optimized • High-Contrast Accessibility
   ========================================================================== */

:root {
  /* Primary Obsidian-Emerald Palette */
  --bg-primary: #031C14;
  --bg-secondary: #05251B;
  --bg-tertiary: #073024;
  --bg-surface: #092F22;
  --bg-card: rgba(7, 48, 36, 0.75);
  --bg-card-hover: rgba(9, 47, 34, 0.95);
  --bg-elevated: #0d3b2c;
  
  /* Gold Luxury Accents */
  --gold-primary: #FACF20;
  --gold-bright: #FFD84D;
  --gold-accent: #F4D35E;
  --gold-dark: #EAB308;
  --gold-glow: rgba(250, 207, 32, 0.35);
  
  /* Emerald Supporting Accents */
  --emerald-primary: #10B981;
  --emerald-light: #34D399;
  --emerald-glow: rgba(16, 185, 129, 0.3);
  
  /* Typography Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #D6E4DD;
  --text-muted: #9FB5AA;
  --text-dim: #6e8a7d;
  
  /* Borders & Dividers */
  --border: rgba(244, 211, 94, 0.22);
  --border-hover: rgba(244, 211, 94, 0.6);
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-emerald: rgba(16, 185, 129, 0.35);
  
  /* High-Performance System Font Stack (Zero-CDN) */
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Dimensions & Spacing */
  --header-height: 72px;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  background-color: var(--bg-primary);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: 
    radial-gradient(ellipse 90% 60% at 50% -15%, rgba(14, 62, 45, 0.55), transparent 75%),
    radial-gradient(ellipse 70% 45% at 85% 35%, rgba(244, 211, 94, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 45% at 15% 75%, rgba(16, 185, 129, 0.08), transparent 60%),
    linear-gradient(180deg, #031C14 0%, #05251B 35%, #073024 70%, #031C14 100%);
  background-attachment: fixed;
  color: var(--text-secondary);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection {
  background-color: var(--gold-primary);
  color: #000000;
}

/* Focus Visibility for Accessibility */
:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(1.65rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }

p {
  margin-bottom: 0.9rem;
  overflow-wrap: break-word;
}
p:last-child { margin-bottom: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

input, select, textarea {
  font-family: inherit;
  font-size: 16px !important; /* Prevents iOS auto-zoom on focus */
}

/* ==========================================================================
   Header & Navigation Architecture
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(3, 28, 20, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

.site-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.site-logo-link:hover {
  transform: scale(1.03);
}

.site-logo-img {
  height: 38px;
  width: auto;
  aspect-ratio: 978 / 324;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(250, 207, 32, 0.3));
}

@media (min-width: 640px) {
  .site-nav-container {
    padding: 0.75rem 1.5rem;
  }
  .site-logo-img {
    height: 44px;
  }
}

.desktop-nav-tabs {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: rgba(5, 37, 27, 0.85);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

@media (min-width: 880px) {
  .desktop-nav-tabs {
    display: inline-flex;
  }
}

.nav-tab-item {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-secondary);
  border: 1px solid transparent;
  min-height: 40px;
}
.nav-tab-item:hover {
  color: var(--gold-primary);
  background: rgba(250, 207, 32, 0.12);
  border-color: rgba(250, 207, 32, 0.3);
}
.nav-tab-item.active {
  background: linear-gradient(135deg, #FFD84D 0%, #FACF20 100%);
  color: #000000 !important;
  border-color: #FFF085;
  box-shadow: 0 2px 12px rgba(250, 207, 32, 0.4);
}

.desktop-cta-container {
  display: none;
  align-items: center;
}
@media (min-width: 880px) {
  .desktop-cta-container {
    display: inline-flex;
  }
}

.mobile-menu-btn-wrap {
  display: flex;
  align-items: center;
}
@media (min-width: 880px) {
  .mobile-menu-btn-wrap {
    display: none;
  }
}

.mobile-toggle-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(5, 37, 27, 0.9);
  border: 1px solid var(--border);
  color: var(--gold-primary);
  transition: all var(--transition-fast);
}
.mobile-toggle-btn:hover, .mobile-toggle-btn:focus-visible {
  background: rgba(7, 48, 36, 1);
  border-color: var(--gold-bright);
}

/* Mobile Drawer Menu */
#mobile-menu {
  display: none;
  background: #05251B;
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}
#mobile-menu.open {
  display: block;
  animation: slideDown 0.22s cubic-bezier(0, 0, 0.2, 1) forwards;
}

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

/* ==========================================================================
   Luxury Visual Components & Cards
   ========================================================================== */
.gold-gradient-text {
  background: linear-gradient(135deg, #FFF6B3 0%, #FACF20 45%, #E5A50A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
  filter: drop-shadow(0 2px 10px rgba(250, 207, 32, 0.25));
}

.glass-panel {
  background: linear-gradient(180deg, rgba(7, 48, 36, 0.88) 0%, rgba(5, 33, 24, 0.96) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-card {
  background: rgba(7, 48, 36, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 24px -5px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}
.glass-card:hover {
  background: rgba(9, 58, 43, 0.9);
  border-color: var(--border-hover);
  box-shadow: 0 14px 34px -6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(250, 207, 32, 0.18);
  transform: translateY(-2px);
}

.badge-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(250, 207, 32, 0.12);
  color: var(--gold-primary);
  border: 1px solid rgba(250, 207, 32, 0.35);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-app-badge {
  width: 200px;
  height: 200px;
  max-width: 85vw;
  object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(250, 207, 32, 0.85));
  transition: transform var(--transition-normal), filter var(--transition-normal);
}
@media (min-width: 480px) {
  .hero-app-badge {
    width: 220px;
    height: 220px;
  }
}
@media (min-width: 640px) {
  .hero-app-badge {
    width: 195px;
    height: 195px;
  }
}
@media (min-width: 1024px) {
  .hero-app-badge {
    width: 215px;
    height: 215px;
  }
}
.hero-app-badge:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 0 45px rgba(250, 207, 32, 1));
}

/* ==========================================================================
   Luxury Interactive Buttons
   ========================================================================== */
.btn-gold {
  background: linear-gradient(135deg, #FFF18A 0%, #FACF20 50%, #D4A30B 100%);
  color: #000000 !important;
  font-weight: 900;
  letter-spacing: 0.02em;
  border: 1px solid #FFF5A5;
  box-shadow: 0 4px 18px rgba(250, 207, 32, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  cursor: pointer;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFE066 50%, #FACF20 100%);
  box-shadow: 0 6px 26px rgba(250, 207, 32, 0.65);
  transform: translateY(-2px);
}
.btn-gold:active {
  transform: translateY(1px) scale(0.98);
}

.btn-secondary-emerald {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-emerald);
  color: var(--emerald-light) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  min-height: 44px;
  transition: all var(--transition-fast);
}
.btn-secondary-emerald:hover {
  background: rgba(16, 185, 129, 0.28);
  border-color: var(--emerald-light);
  color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}
.btn-secondary-emerald:active {
  transform: translateY(1px) scale(0.98);
}

.shadow-glow-gold {
  box-shadow: 0 6px 24px rgba(250, 207, 32, 0.38);
}

/* ==========================================================================
   Table of Contents & Internal Jump Navigation
   ========================================================================== */
.toc-box {
  background: rgba(5, 37, 27, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.toc-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 0.75rem;
  list-style: none;
}
@media (min-width: 640px) {
  .toc-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .toc-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.toc-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(7, 48, 36, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}
.toc-item a:hover {
  background: rgba(250, 207, 32, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-bright);
  transform: translateX(3px);
}

/* ==========================================================================
   Breadcrumb Navigation
   ========================================================================== */
.breadcrumb-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  margin-bottom: 0.75rem;
}
.breadcrumb-bar a {
  color: var(--text-muted);
  text-decoration: underline;
}
.breadcrumb-bar a:hover {
  color: var(--gold-primary);
}
.breadcrumb-separator {
  color: var(--border);
  margin-inline: 0.15rem;
}
.breadcrumb-current {
  color: var(--gold-primary);
  font-weight: 700;
}

/* ==========================================================================
   FAQ Accordion System
   ========================================================================== */
.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: #05251B;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item:hover {
  border-color: var(--border);
}
.faq-toggle-btn {
  width: 100%;
  padding: 1.1rem 1.25rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.08rem;
  cursor: pointer;
  min-height: 48px;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}
.faq-toggle-btn:hover {
  color: var(--gold-bright);
  background: rgba(250, 207, 32, 0.05);
}
.faq-chevron {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.faq-toggle-btn[aria-expanded="true"] .faq-chevron {
  color: var(--gold-primary);
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0.4rem 1.25rem 1.25rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.78;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 28, 20, 0.85);
}

/* ==========================================================================
   Responsive Tables
   ========================================================================== */
.table-responsive-wrapper,
.overflow-x-auto {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
th, td {
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  vertical-align: middle;
  word-break: normal;
  overflow-wrap: normal;
}
@media (min-width: 640px) {
  th, td {
    padding: 0.85rem 1.15rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }
}
thead th {
  background: #05110c;
  color: var(--gold-primary);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color var(--transition-fast);
}
tbody tr:hover {
  background-color: rgba(250, 207, 32, 0.05);
}
tbody tr:last-child {
  border-bottom: none;
}

/* Comparison Table Specific Mobile Optimization */
.comparison-table {
  min-width: 540px;
  width: 100%;
}
.comparison-table th,
.comparison-table td {
  padding: 0.75rem 0.9rem;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.min-w-full {
  min-width: 100%;
}
.min-w-\[540px\] {
  min-width: 540px;
}


/* ==========================================================================
   Utility Classes & Layout Helpers (Preserving Existing Classes)
   ========================================================================== */
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.max-w-xs { max-width: 20rem; }
.max-w-full { max-width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-3\.5 { gap: 0.875rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-2\.5 > * + * { margin-top: 0.625rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-3\.5 > * + * { margin-top: 0.875rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-14 > * + * { margin-top: 3.5rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.space-y-20 > * + * { margin-top: 5rem; }
.space-y-24 > * + * { margin-top: 6rem; }
.space-y-28 > * + * { margin-top: 7rem; }
.space-y-32 > * + * { margin-top: 8rem; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.text-xs { font-size: 1rem; line-height: 1.7rem; }
.text-sm { font-size: 1.12rem; line-height: 1.82rem; }
.text-base { font-size: 1.25rem; line-height: 1.95rem; }
.text-lg { font-size: 1.4rem; line-height: 2.1rem; }
.text-xl { font-size: 1.55rem; line-height: 2.2rem; }
.text-2xl { font-size: 1.75rem; line-height: 2.3rem; }
.text-3xl { font-size: 2.1rem; line-height: 2.5rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.05; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-2\.5 { padding: 0.625rem; }
.p-3 { padding: 0.75rem; }
.p-3\.5 { padding: 0.875rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.pt-0\.5 { padding-top: 0.125rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-2\.5 { padding-top: 0.625rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-14 { padding-top: 3.5rem; }
.pt-16 { padding-top: 4rem; }

.pb-1 { padding-bottom: 0.25rem; }
.pb-1\.5 { padding-bottom: 0.375rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-2\.5 { padding-bottom: 0.625rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-14 { padding-bottom: 3.5rem; }
.pb-16 { padding-bottom: 4rem; }

.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-40 { width: 10rem; }
.w-44 { width: 11rem; }
.w-48 { width: 12rem; }

.h-auto { height: auto; }
.h-full { height: 100%; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-44 { height: 11rem; }
.h-48 { height: 12rem; }
.min-h-screen { min-height: 100vh; }

.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-x-auto { overflow-x: auto; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.underline { text-decoration: underline; }
.italic { font-style: italic; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* Colors */
.text-white { color: #ffffff; }
.text-black { color: #000000; }
.text-slate-100 { color: #f8fafc; }
.text-slate-200 { color: #e2e8f0; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-900 { color: #0f172a; }
.text-brand-gold, .text-\[\#FACF20\] { color: #FACF20; }
.text-emerald-300, .text-brand-emeraldLight { color: #34d399; }
.text-emerald-400 { color: #10b981; }
.text-purple-400 { color: #c084fc; }
.text-cyan-400 { color: #22d3ee; }
.text-blue-400 { color: #60a5fa; }
.text-amber-300 { color: #fcd34d; }
.text-amber-400 { color: #fbbf24; }
.text-yellow-300 { color: #fde047; }
.text-yellow-400 { color: #facc15; }

.bg-black { background-color: #000000; }
.bg-\[\#22674B\] { background-color: #031C14; }
.bg-\[\#143e2d\] { background-color: #092F22; }
.bg-\[\#103425\] { background-color: #073024; }
.bg-\[\#0e2a1e\] { background-color: #05251B; }
.bg-\[\#081a13\] { background-color: #031C14; }
.bg-\[\#05110c\] { background-color: #02120d; }
.bg-\[\#FACF20\] { background-color: #FACF20; }

.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-\[\#FACF20\]\/20 { background-color: rgba(250, 207, 32, 0.2); }
.bg-yellow-400\/15 { background-color: rgba(250, 204, 21, 0.15); }
.bg-amber-500\/20 { background-color: rgba(245, 158, 11, 0.2); }

.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }

.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-\[\#FACF20\] { border-color: #FACF20; }
.border-\[\#FACF20\]\/30 { border-color: rgba(250, 207, 32, 0.3); }
.border-\[\#FACF20\]\/40 { border-color: rgba(250, 207, 32, 0.4); }
.border-\[\#FACF20\]\/50 { border-color: rgba(250, 207, 32, 0.5); }
.border-l-\[\#FACF20\] { border-left-color: #FACF20; }
.border-emerald-500\/40 { border-color: rgba(16, 185, 129, 0.4); }
.border-amber-500\/40 { border-color: rgba(245, 158, 11, 0.4); }
.border-yellow-400\/40 { border-color: rgba(250, 204, 21, 0.4); }

.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-white\/10 > * + * { border-top-color: rgba(255, 255, 255, 0.1); }

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops, #092F22, #031C14));
}
.from-\[\#091e15\] { --tw-gradient-from: #031C14; }
.via-\[\#123929\] { --tw-gradient-stops: #031C14, #073024, #05251B; }
.to-\[\#1c573f\] { --tw-gradient-to: #05251B; }
.from-\[\#143e2d\] { --tw-gradient-from: #092F22; }
.to-\[\#0a2017\] { --tw-gradient-to: #031C14; }
.to-\[\#091e15\] { --tw-gradient-to: #031C14; }

/* Micro-Animations */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse {
  50% { opacity: .5; }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #031C14;
}
::-webkit-scrollbar-thumb {
  background: #FACF20;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFD84D;
}

/* ==========================================================================
   Responsive Breakpoint Rules
   ========================================================================== */
@media (min-width: 640px) {
  .sm\:hidden { display: none !important; }
  .sm\:flex { display: flex !important; }
  .sm\:block { display: block !important; }
  .sm\:inline { display: inline !important; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:w-auto { width: auto !important; }
  .sm\:w-32 { width: 8rem; }
  .sm\:h-32 { height: 8rem; }
  .sm\:w-36 { width: 9rem; }
  .sm\:h-36 { height: 9rem; }
  .sm\:w-40 { width: 10rem; }
  .sm\:h-40 { height: 10rem; }
  .sm\:w-44 { width: 11rem; }
  .sm\:h-44 { height: 11rem; }
  .sm\:text-left { text-align: left; }
  .sm\:text-center { text-align: center; }
  .sm\:text-xs { font-size: 0.95rem; line-height: 1.65rem; }
  .sm\:text-sm { font-size: 1.1rem; line-height: 1.8rem; }
  .sm\:text-base { font-size: 1.22rem; line-height: 1.9rem; }
  .sm\:text-lg { font-size: 1.35rem; line-height: 2rem; }
  .sm\:text-xl { font-size: 1.5rem; line-height: 2.2rem; }
  .sm\:text-2xl { font-size: 1.75rem; line-height: 2.3rem; }
  .sm\:text-3xl { font-size: 2.15rem; line-height: 2.55rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .sm\:p-5 { padding: 1.25rem; }
  .sm\:p-6 { padding: 1.5rem; }
  .sm\:p-7 { padding: 1.75rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:p-10 { padding: 2.5rem; }
  .sm\:p-12 { padding: 3rem; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:pt-12 { padding-top: 3rem; }
  .sm\:pt-16 { padding-top: 4rem; }
  .sm\:pb-16 { padding-bottom: 4rem; }
  .sm\:pb-24 { padding-bottom: 6rem; }
  .sm\:gap-5 { gap: 1.25rem; }
  .sm\:gap-6 { gap: 1.5rem; }
  .sm\:gap-8 { gap: 2rem; }
  .sm\:space-y-6 > * + * { margin-top: 1.5rem; }
  .sm\:space-y-14 > * + * { margin-top: 3.5rem; }
  .sm\:space-y-16 > * + * { margin-top: 4rem; }
  .sm\:space-y-24 > * + * { margin-top: 6rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:rounded-3xl { border-radius: 1.5rem; }
  .sm\:max-w-none { max-width: none; }
  .sm\:max-h-\[460px\] { max-height: 460px; }
  .sm\:h-12 { height: 3rem; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none !important; }
  .md\:flex { display: flex !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none !important; }
  .lg\:grid { display: grid !important; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1 / span 1; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-14 { gap: 3.5rem; }
  .lg\:space-y-24 > * + * { margin-top: 6rem; }
  .lg\:space-y-32 > * + * { margin-top: 8rem; }
}

@media (min-width: 1280px) {
  .xl\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .xl\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
}

/* ==========================================================================
   Reduced Motion Accessibility (Rule #44)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Luxury Bottom CTA Action Banner
   ========================================================================== */
.bottom-cta-banner {
  background: linear-gradient(180deg, rgba(9, 47, 34, 0.95) 0%, rgba(3, 28, 20, 0.98) 100%);
  border: 1px solid rgba(250, 207, 32, 0.35);
  box-shadow: 0 18px 45px -10px rgba(0, 0, 0, 0.65), 0 0 30px rgba(250, 207, 32, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.5rem;
  text-align: center;
  margin-block: 2.5rem 1.5rem;
}
@media (min-width: 640px) {
  .bottom-cta-banner {
    padding: 3rem 2.5rem;
    margin-block: 3.5rem 2rem;
  }
}
.btn-cta-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
  min-height: 44px;
}
.btn-cta-download:hover {
  background: rgba(250, 207, 32, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

/* Large High-Legibility Mobile Sizes */
.text-\[9px\] { font-size: 0.85rem !important; line-height: 1.4rem; }
.text-\[10px\] { font-size: 0.88rem !important; line-height: 1.45rem; }
.text-\[11px\] { font-size: 0.92rem !important; line-height: 1.5rem; }

/* ==========================================================================
   Perfect Balanced Typography System (Clean, Comfortable & Readable)
   ========================================================================== */
html {
  font-size: 15px;
}
@media (min-width: 640px) {
  html {
    font-size: 16px;
  }
}

body {
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--text-secondary);
}

p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.15rem;
  color: #F1F5F9;
  font-weight: 400;
}
p strong, p b {
  font-weight: 700;
  color: #FFFFFF;
}

p a, li a {
  color: var(--gold-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2.5px;
}
p a:hover, li a:hover {
  color: #FFFFFF;
}

li {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  color: #E2E8F0;
}

/* Utilities for Text Sizes */
.text-xs { font-size: 0.92rem !important; line-height: 1.55rem !important; }
.text-sm { font-size: 1.05rem !important; line-height: 1.75rem !important; }
.text-base { font-size: 1.18rem !important; line-height: 1.85rem !important; }
.text-lg { font-size: 1.3rem !important; line-height: 1.95rem !important; }
.text-xl { font-size: 1.45rem !important; line-height: 2.1rem !important; }
.text-2xl { font-size: 1.65rem !important; line-height: 2.2rem !important; }
.text-3xl { font-size: 1.95rem !important; line-height: 2.35rem !important; }
.text-4xl { font-size: 2.35rem !important; line-height: 2.75rem !important; }
.text-5xl { font-size: 2.85rem !important; line-height: 1.15 !important; }
.text-6xl { font-size: 3.4rem !important; line-height: 1.1 !important; }

/* Sm media queries */
@media (min-width: 640px) {
  .sm\:text-xs { font-size: 0.92rem !important; line-height: 1.55rem !important; }
  .sm\:text-sm { font-size: 1.05rem !important; line-height: 1.75rem !important; }
  .sm\:text-base { font-size: 1.18rem !important; line-height: 1.85rem !important; }
  .sm\:text-lg { font-size: 1.3rem !important; line-height: 1.95rem !important; }
  .sm\:text-xl { font-size: 1.45rem !important; line-height: 2.1rem !important; }
  .sm\:text-2xl { font-size: 1.65rem !important; line-height: 2.2rem !important; }
  .sm\:text-3xl { font-size: 2.05rem !important; line-height: 2.45rem !important; }
  .sm\:text-4xl { font-size: 2.45rem !important; line-height: 2.85rem !important; }
}

/* Arbitrary Badge text sizes */
.text-\[9px\] { font-size: 0.8rem !important; line-height: 1.3rem; }
.text-\[10px\] { font-size: 0.85rem !important; line-height: 1.35rem; }
.text-\[11px\] { font-size: 0.9rem !important; line-height: 1.45rem; }