/* ROOT SYSTEM - CYBER GLOSSY NEON DESIGN */
:root {
  --color-bg-primary: #020617;     /* ultra-deep space blue */
  --color-bg-secondary: #070d1e;   /* slightly layered dark space blue */
  --color-surface: #0b1329;        /* navy canvas surfaces */
  --color-surface-alt: #111a36;    /* medium navy surfaces */
  --color-paper: #e0f2fe;          /* bright icy glossy paper backdrop */
  --color-accent-primary: #FAFF00;  /* neon yellow */
  --color-accent-secondary: #00E5FF;/* neon blue */
  --color-accent-tertiary: #0284c7; /* deep cyber blue */
  --color-border: rgba(0, 229, 255, 0.15); /* faint neon blue borders */
  --color-border-solid: #1e293b;
  
  --color-text-primary: #f8fafc;    /* crisp ice-white text */
  --color-text-secondary: #93c5fd;  /* vibrant soft blue */
  --color-text-muted: #64748b;      /* deep slate grey */
  --color-text-dark: #020617;       /* deep space black for paper grids */
  --color-text-dark-muted: #1e3a8a; /* deep navy for paper details */

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition-fast: 0.15s cubic-bezier(0.2, 0, 0, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* GLOBAL SPACING LAYOUT */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 32px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 32px;
  gap: 32px;
}

.section-tag {
  display: inline-block;
  color: var(--color-accent-primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(250, 255, 0, 0.3);
}

.section-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.section-desc {
  max-width: 440px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* STICKY HEADER - SLIM, FLUID & HIGHLY GLOSSY */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  transition: var(--transition-normal);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Neon bottom sheen line on header */
.main-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-primary) 0%, var(--color-accent-secondary) 50%, var(--color-accent-primary) 100%);
  opacity: 0.8;
}

.header-container {
  max-width: 1400px; /* Align with standard page boundaries for balanced layout grid */
  width: 100%;
  margin: 0 auto;
  padding: 8px 32px; /* Slimmer header padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px; /* Restrict min-height to maintain slim profile */
}

.brand-logo {
  font-family: var(--font-display);
  font-size: 1.45rem; /* Slightly tighter logo scale */
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.logo-accent {
  color: var(--color-accent-primary);
  font-style: italic;
  text-shadow: 0 0 10px rgba(250, 255, 0, 0.5);
}

.nav-menu {
  display: flex;
  gap: 20px; /* Optimized layout gap to prevent wrapping and look orderly */
  align-items: center;
}

.nav-link {
  font-size: 0.7rem; /* Clean and crisp navigation sizing */
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

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

.nav-link:hover {
  color: var(--color-accent-secondary);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-header {
  font-family: var(--font-mono);
  background-color: transparent;
  color: var(--color-accent-primary);
  padding: 6px 14px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.68rem; /* Scaled slightly down to match slim layout */
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid var(--color-accent-primary);
  box-shadow: inset 0 0 4px rgba(250, 255, 0, 0.2), 0 0 8px rgba(250, 255, 0, 0.1);
  transition: var(--transition-fast);
}

.cta-header:hover {
  background-color: var(--color-accent-primary);
  color: var(--color-text-dark);
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 15px rgba(250, 255, 0, 0.6);
  transform: scale(1.03);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger .bar {
  height: 2px;
  width: 100%;
  background-color: var(--color-accent-secondary);
  box-shadow: 0 0 4px var(--color-accent-secondary);
  transition: var(--transition-fast);
}

/* HERO SECTION - GLOSSY RADIAL NEON GRADIENT POP */
.hero-section {
  position: relative;
  background-color: var(--color-bg-primary);
  padding: 160px 32px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.hero-bg-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 160%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(250, 255, 0, 0.05) 45%, rgba(2, 6, 23, 0) 75%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 6px 18px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-secondary);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
  margin-bottom: 32px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -2.5px;
  margin-bottom: 32px;
  text-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.highlight-text {
  color: var(--color-accent-primary);
  font-style: italic;
  text-shadow: 0 0 20px rgba(250, 255, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 48px auto;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.btn {
  padding: 16px 36px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: var(--transition-fast);
  display: inline-block;
}

.btn-primary {
  background-color: var(--color-accent-primary);
  color: var(--color-text-dark);
  box-shadow: 0 4px 15px rgba(250, 255, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
  background-color: #faff66;
  box-shadow: 0 6px 25px rgba(250, 255, 0, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.1);
}

.btn-secondary:hover {
  background-color: rgba(0, 229, 255, 0.05);
  border-color: var(--color-accent-secondary);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
  transform: translateY(-2px);
}

/* TITLE RACE STRIP */
.title-race-section {
  background-color: var(--color-bg-secondary);
}

.title-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.title-card {
  background: linear-gradient(135deg, var(--color-surface) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid var(--color-border);
  padding: 32px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition-normal);
}

.title-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-secondary);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.25);
}

.contender-rank {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(0, 229, 255, 0.08);
  line-height: 1;
}

.contender-info {
  margin-bottom: 24px;
}

.contender-country {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.contender-group {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.contender-stats {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-bottom: 20px;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.stat-label {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
}

.highlight-green {
  color: var(--color-accent-primary);
  text-shadow: 0 0 5px rgba(250, 255, 0, 0.5);
}

.chance-bar-container {
  height: 4px;
  background-color: rgba(2, 6, 23, 0.6);
  border-radius: 2px;
  overflow: hidden;
}

.chance-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-secondary) 0%, var(--color-accent-primary) 100%);
  box-shadow: 0 0 8px var(--color-accent-primary);
}

/* MATCHUPS GRID */
.matchups-section {
  background-color: var(--color-bg-primary);
}

.matchups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.matchup-card {
  background: linear-gradient(135deg, var(--color-surface-alt) 0%, rgba(11, 19, 41, 0.9) 100%);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
}

.matchup-card:hover {
  border-color: var(--color-accent-primary);
  transform: translateY(-4px);
  background-color: var(--color-surface);
  box-shadow: 0 15px 35px rgba(250, 255, 0, 0.15);
}

.matchup-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.matchup-group-badge {
  background-color: rgba(0, 229, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.matchup-edge-badge {
  color: var(--color-accent-primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 6px rgba(250, 255, 0, 0.4);
}

.matchup-vs {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.vs-text {
  font-family: var(--font-display);
  color: var(--color-accent-secondary);
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.matchup-compact-data {
  background-color: rgba(2, 6, 23, 0.6);
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 4px;
  border-left: 2px solid var(--color-accent-secondary);
  box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.05);
}

.team-compact-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.team-compact-row:first-child {
  margin-bottom: 8px;
}

.team-c-name {
  font-weight: 600;
}

.team-c-metrics {
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
}

.matchup-summary {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.matchup-card-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  align-self: flex-start;
  transition: var(--transition-fast);
  text-shadow: 0 0 6px rgba(0, 229, 255, 0.3);
}

.matchup-card-link:hover {
  color: var(--color-accent-primary);
  text-shadow: 0 0 8px rgba(250, 255, 0, 0.5);
  transform: translateX(4px);
}

/* EXPANDED PREVIEWS SECTION */
.expanded-previews-section {
  background-color: var(--color-bg-secondary);
}

.previews-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.preview-block {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  scroll-margin-top: 100px;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.p-group {
  display: inline-block;
  background-color: rgba(0, 229, 255, 0.05);
  color: var(--color-accent-secondary);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
  margin-bottom: 16px;
}

.p-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.p-edge-badge {
  background-color: transparent;
  border: 1px solid var(--color-accent-primary);
  color: var(--color-accent-primary);
  font-family: var(--font-mono);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 0 8px rgba(250, 255, 0, 0.4);
  box-shadow: 0 0 12px rgba(250, 255, 0, 0.1);
}

/* COMPARISON MODULE - STADIUM GLOSSY CYBER-ICE */
.comparison-module {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--color-paper) 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 8px;
  color: var(--color-text-dark);
  box-shadow: 0 15px 35px rgba(0, 229, 255, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.comp-team-card {
  text-align: center;
}

.comp-team-name {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--color-text-dark);
}

.comp-team-rank {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.comp-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.comp-metric-box {
  background-color: rgba(2, 6, 23, 0.05);
  padding: 16px 8px;
  border-radius: 4px;
  border: 1px solid rgba(2, 6, 23, 0.1);
}

.c-m-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-dark-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.c-m-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.comp-team-card .text-accent .c-m-val,
.comp-team-card .text-orange .c-m-val {
  color: var(--color-accent-tertiary);
}

.vs-divider {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent-primary);
  background-color: var(--color-bg-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--color-accent-secondary);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.preview-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.narrative-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--color-text-primary);
  border-left: 2px solid var(--color-accent-secondary);
  padding-left: 16px;
}

.narrative-col p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* GROUP RACE SNAPSHOT */
.groups-section {
  background-color: var(--color-bg-primary);
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.group-race-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.g-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.5px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.g-team-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.g-team-row:last-child {
  margin-bottom: 0;
}

.g-team-name {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.font-bold {
  font-weight: 600;
  color: var(--color-text-primary);
}

.g-percent {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
}

/* HOST NATIONS WATCH */
.hosts-section {
  background-color: var(--color-bg-secondary);
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.host-card {
  background: linear-gradient(135deg, var(--color-surface-alt) 0%, rgba(11, 19, 41, 0.9) 100%);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.host-badge {
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: var(--color-accent-secondary);
  color: var(--color-text-dark);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.host-name {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}

.host-meta {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
}

.host-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.h-lbl {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.h-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-accent-primary);
}

.host-stats {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

.host-stat-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.host-stat-row:last-child {
  margin-bottom: 0;
}

/* TOURNAMENT GUIDE */
.guide-section {
  background-color: var(--color-bg-primary);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.guide-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 36px;
  border-radius: 8px;
  border-left: 2px solid var(--color-accent-secondary);
}

.guide-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

/* FAQ SECTION */
.faq-section {
  background-color: var(--color-bg-secondary);
}

.faq-accordion {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: 24px 32px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-surface);
  transition: var(--transition-fast);
}

.faq-trigger:hover {
  background-color: var(--color-surface-alt);
  color: var(--color-accent-primary);
}

.faq-trigger::after {
  content: '→';
  font-size: 1.5rem;
  color: var(--color-accent-secondary);
  line-height: 1;
  transition: var(--transition-fast);
}

.faq-item.active .faq-trigger::after {
  transform: rotate(90deg);
  color: var(--color-accent-primary);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: rgba(2, 6, 23, 0.4);
}

.faq-panel p {
  padding: 24px 32px;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* POLICY PAGES STYLING */
.policy-section {
  background-color: var(--color-bg-secondary);
  min-height: calc(100vh - 200px);
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 32px;
}

.policy-title {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  letter-spacing: -2px;
  margin-bottom: 12px;
  color: var(--color-text-primary);
  line-height: 1.05;
}

.policy-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-accent-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
  font-weight: 500;
}

.policy-content {
  color: var(--color-text-secondary);
  line-height: 1.9;
  font-size: 1.05rem;
}

.policy-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-top: 56px;
  margin-bottom: 20px;
  letter-spacing: -1px;
  border-left: 2px solid var(--color-accent-secondary);
  padding-left: 18px;
}

.policy-content p {
  margin-bottom: 24px;
}

.policy-content ul {
  list-style: square;
  margin-left: 28px;
  margin-bottom: 32px;
  color: var(--color-text-secondary);
}

.policy-content li {
  margin-bottom: 12px;
}

/* FOOTER */
.main-footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: 120px 0 60px 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-brand-info {
  max-width: 480px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  color: var(--color-text-primary);
}

.footer-links-list li {
  margin-bottom: 16px;
}

.footer-links-list a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--color-accent-secondary);
  padding-left: 6px;
}

.footer-divider {
  height: 1px;
  background-color: var(--color-border);
  margin-bottom: 40px;
}

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

.copyright-text {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.address-block {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.8;
  font-family: var(--font-mono);
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 1200px) {
  .section-container {
    padding: 80px 24px;
  }
  
  .hero-title {
    font-size: 4.2rem;
  }
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 56px; /* Dynamically matches our slim sticky header height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 56px);
    background-color: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: var(--transition-normal);
    z-index: 999;
    border-top: 1px solid var(--color-border);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .header-actions {
    margin-right: 12px;
  }
  
  .nav-link {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 992px) {
  .preview-narrative {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .comparison-module {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px;
  }
  
  .vs-divider {
    margin: 16px auto;
  }
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 60px 16px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .p-title {
    font-size: 2.2rem;
  }
  
  .comp-team-name {
    font-size: 2.2rem;
  }
  
  .comp-metrics-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .header-actions .cta-header {
    display: none;
  }
  
  .policy-title {
    font-size: 3rem;
  }
}