/* ============================================================
   THE GO NETWORK — INVESTOR MICROSITE
   Design System & Global Styles
   ============================================================ */

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

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Backgrounds — deep navy palette from deck */
  --bg-void:       #050F1C;
  --bg-primary:    #071321;
  --bg-surface:    #0C1929;
  --bg-elevated:   #152236;
  --bg-panel:      #202B39;
  --bg-card:       #0D1B2A;
  --bg-input:      #08111E;

  /* Borders */
  --border-void:   rgba(143,164,190,0.06);
  --border-subtle: rgba(143,164,190,0.12);
  --border-default:rgba(143,164,190,0.18);
  --border-strong: rgba(143,164,190,0.28);
  --border-gold:   rgba(212,169,61,0.28);
  --border-gold-strong: rgba(212,169,61,0.50);
  --border-blue:   rgba(103,168,255,0.20);

  /* Typography */
  --text-primary:  #F2F4F7;
  --text-secondary:#8FA4BE;
  --text-muted:    #4A6280;
  --text-gold:     #D4A93D;
  --text-gold-light:#E8C77A;
  --text-blue:     #67A8FF;
  --text-green:    #4DDE86;

  /* Accent - Gold (restrained warm) */
  --gold:          #D4A93D;
  --gold-light:    #E8C77A;
  --gold-dim:      rgba(212,169,61,0.12);
  --gold-glow:     rgba(212,169,61,0.07);

  /* Accent - Blue (platform/tech) */
  --blue:          #67A8FF;
  --blue-light:    #90C0FF;
  --blue-dim:      rgba(103,168,255,0.10);

  /* Accent - Green (status/live) */
  --green:         #4DDE86;
  --green-dim:     rgba(77,222,134,0.10);
  --green-glow:    rgba(77,222,134,0.12);
  --text-green:    #4DDE86;
  --amber:         #D4A93D;

  /* Typography Scale */
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 48px;
  --space-3xl: 72px;
  --space-4xl: 96px;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;

  /* Transitions — slower, more considered */
  --ease-out:   cubic-bezier(0.0, 0, 0.2, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-std:   cubic-bezier(0.25, 0, 0.25, 1);
  --transition: 250ms var(--ease-std);
  --transition-slow: 500ms var(--ease-out);

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.65), 0 4px 20px rgba(0,0,0,0.45);
  --shadow-gold:0 0 40px rgba(212,169,61,0.07), 0 0 80px rgba(212,169,61,0.03);
  --shadow-glow:0 0 60px rgba(103,168,255,0.08);

  /* Layout */
  --container:  1200px;
  --container-narrow: 800px;
  --container-tight: 600px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.display-xl {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-family: var(--font-sans);
}

.display-lg {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.1;
  font-family: var(--font-sans);
}

.display-md {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.heading-lg {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.heading-md {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.heading-sm {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.body-lg {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.body-md {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.body-sm {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gold { color: var(--text-gold); }
.blue { color: var(--text-blue); }
.muted { color: var(--text-muted); }
.secondary { color: var(--text-secondary); }

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-tight {
  max-width: var(--container-tight);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

section {
  padding: var(--space-4xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background-color var(--transition), border-color var(--transition);
}

.nav.scrolled {
  background-color: rgba(7,19,33,0.94);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.nav-logo img,
.site-footer-brand img {
  transition: transform 260ms cubic-bezier(0.0, 0, 0.2, 1), filter 260ms cubic-bezier(0.0, 0, 0.2, 1);
}

.nav-logo:hover img,
.site-footer-brand a:hover img {
  transform: scale(1.08);
  filter: brightness(0.5) sepia(1) hue-rotate(100deg) saturate(5) brightness(1.35);
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(77,222,134,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(77,222,134,0.08), rgba(77,222,134,0.02));
}

.nav-logo-mark svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.nav-logo-text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.nav-logo-text span {
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
  background: rgba(255,255,255,0.05);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #4DDE86, #34C46A);
  color: #061018;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(77,222,134,0.40), 0 4px 24px rgba(77,222,134,0.22);
  transition: all 260ms cubic-bezier(0.0, 0, 0.2, 1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5DE892, #3FD478);
  box-shadow: 0 0 0 1px rgba(77,222,134,0.65), 0 8px 40px rgba(77,222,134,0.36), 0 0 0 4px rgba(77,222,134,0.08);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: rgba(143,164,190,0.35);
  background: var(--bg-elevated);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  padding: 10px 12px;
}

.btn-ghost:hover {
  color: var(--text-primary);
}

.btn-lg {
  padding: 13px 28px;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 7px 14px;
  font-size: 0.75rem;
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: rgba(13,27,42,0.92);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all 400ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(143,164,190,0.15), transparent);
  pointer-events: none;
}

.card:hover {
  border-color: rgba(143,164,190,0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-hover:hover {
  border-color: rgba(143,164,190,0.28);
  background: rgba(21,34,54,0.95);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ── Card colour variants — accent bar + border tint only ───── */
.card-blue {
  border-color: rgba(96,165,250,0.15);
  background: rgba(96,165,250,0.03);
}
.card-blue::before {
  background: linear-gradient(90deg, rgba(96,165,250,0.55) 0%, rgba(96,165,250,0.90) 8%, rgba(96,165,250,0.90) 92%, rgba(96,165,250,0.55) 100%);
}
.card-blue:hover {
  border-color: rgba(96,165,250,0.30);
  box-shadow: var(--shadow-md), 0 0 28px rgba(96,165,250,0.07);
}

.card-gold {
  border-color: rgba(212,169,61,0.20);
  background: rgba(212,169,61,0.03);
}
.card-gold::before {
  background: linear-gradient(90deg, rgba(212,169,61,0.55) 0%, rgba(212,169,61,0.88) 8%, rgba(212,169,61,0.88) 92%, rgba(212,169,61,0.55) 100%);
}
.card-gold:hover {
  border-color: rgba(212,169,61,0.35);
  box-shadow: var(--shadow-md), 0 0 28px rgba(212,169,61,0.07);
}

.card-green {
  border-color: rgba(74,223,129,0.18);
  background: rgba(74,223,129,0.03);
}
.card-green::before {
  background: linear-gradient(90deg, rgba(74,223,129,0.55) 0%, rgba(74,223,129,0.88) 8%, rgba(74,223,129,0.88) 92%, rgba(74,223,129,0.55) 100%);
}
.card-green:hover {
  border-color: rgba(74,223,129,0.32);
  box-shadow: var(--shadow-md), 0 0 28px rgba(74,223,129,0.07);
}

.card-locked {
  position: relative;
}

.card-locked-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,19,33,0.75);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10;
}

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(212,169,61,0.10);
  border: 1px solid rgba(212,169,61,0.22);
  color: var(--gold);
}

.badge-blue {
  background: var(--blue-dim);
  border: 1px solid rgba(103,168,255,0.20);
  color: var(--blue);
}

.badge-green {
  background: var(--green-dim);
  border: 1px solid rgba(77,222,134,0.22);
  color: var(--green);
}

.badge-muted {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.badge-dot::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(103,168,255,0.45);
  background: rgba(103,168,255,0.03);
  box-shadow: 0 0 0 3px rgba(103,168,255,0.08);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--border-strong);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23525259' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option {
  background: var(--bg-panel);
  color: var(--text-primary);
}

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

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.form-error {
  font-size: 0.75rem;
  color: #E05C5C;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}

.form-check-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-check-label a {
  color: var(--text-gold);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/* ── Dividers ──────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: var(--space-2xl) 0;
}

.divider-sm {
  height: 1px;
  background: var(--border-void);
  margin: var(--space-lg) 0;
}

/* ── Section Labels ────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.section-label-line {
  width: 24px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}

.section-label-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-gold);
}

/* ── Stat Blocks ───────────────────────────────────────────── */
.stat-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.stat-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.35;
}

.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.stat-detail {
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: var(--space-xs);
}

/* ── Grids ─────────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.grid-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* ── Confidentiality Banner ────────────────────────────────── */
.conf-banner {
  background: linear-gradient(135deg, rgba(103,168,255,0.05), rgba(103,168,255,0.02));
  border: 1px solid rgba(103,168,255,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.conf-banner-icon {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.conf-banner-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.conf-banner-text strong {
  color: var(--text-blue);
  font-weight: 500;
}

/* ── Summary Panel ─────────────────────────────────────────── */
.summary-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.summary-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(103,168,255,0.04), transparent 60%);
  pointer-events: none;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-item-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.summary-item-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.summary-item-detail {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Hero Background ───────────────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.hero-bg-glow-1 {
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(103,168,255,0.08), transparent);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-bg-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212,169,61,0.06), transparent);
  top: 200px;
  right: -100px;
  opacity: 1;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center top, black, transparent 70%);
}

/* ── Section Backgrounds ───────────────────────────────────── */
.bg-surface { background: var(--bg-surface); }
.bg-elevated { background: var(--bg-elevated); }
.bg-void { background: var(--bg-void); }

/* ── Problem/Solution Layout ───────────────────────────────── */
.problem-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-void);
}

.problem-item:last-child {
  border-bottom: none;
}

.problem-number {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  min-width: 28px;
  padding-top: 3px;
}

.problem-content h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.problem-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Solution Feature ──────────────────────────────────────── */
.solution-feature {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.solution-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  flex-shrink: 0;
}

.solution-icon svg {
  width: 18px;
  height: 18px;
}

/* ── Leadership ────────────────────────────────────────────── */
.leader-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.leader-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-panel));
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gold);
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-style: italic;
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

/* Slow circular drift for background motif */
@keyframes orbitDrift {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.015); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes orbitDriftReverse {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(-180deg) scale(0.985); }
  100% { transform: rotate(-360deg) scale(1); }
}

/* Accent bar slide-in */
@keyframes accentBar {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

.animate-in {
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.animate-delay-1 { animation-delay: 0.12s; }
.animate-delay-2 { animation-delay: 0.24s; }
.animate-delay-3 { animation-delay: 0.36s; }
.animate-delay-4 { animation-delay: 0.48s; }
.animate-delay-5 { animation-delay: 0.60s; }
.animate-delay-6 { animation-delay: 0.72s; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* Background orbital rings */
.orbital-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.orbital-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(143,164,190,0.14);
  top: 50%;
  left: 50%;
  transform-origin: center center;
}

.orbital-ring-1 {
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  border-color: rgba(74,223,129,0.18);
  animation: orbitDrift 75s linear infinite;
}

.orbital-ring-2 {
  width: 700px; height: 700px;
  margin: -350px 0 0 -350px;
  border-color: rgba(143,164,190,0.13);
  animation: orbitDriftReverse 105s linear infinite;
}

.orbital-ring-3 {
  width: 1020px; height: 1020px;
  margin: -510px 0 0 -510px;
  border-color: rgba(96,165,250,0.09);
  animation: orbitDrift 145s linear infinite;
}

.orbital-ring-4 {
  width: 1340px; height: 1340px;
  margin: -670px 0 0 -670px;
  border-color: rgba(74,223,129,0.06);
  animation: orbitDriftReverse 180s linear infinite;
}

.orbital-ring-5 {
  width: 1680px; height: 1680px;
  margin: -840px 0 0 -840px;
  border-color: rgba(143,164,190,0.045);
  animation: orbitDrift 230s linear infinite;
}

.orbital-ring-6 {
  width: 2040px; height: 2040px;
  margin: -1020px 0 0 -1020px;
  border-color: rgba(96,165,250,0.032);
  animation: orbitDriftReverse 290s linear infinite;
}

.orbital-ring-7 {
  width: 300px; height: 300px;
  margin: -150px 0 0 -150px;
  border-color: rgba(96,165,250,0.20);
  animation: orbitDriftReverse 55s linear infinite;
}

.orbital-ring-8 {
  width: 580px; height: 580px;
  margin: -290px 0 0 -290px;
  border-color: rgba(74,223,129,0.07);
  animation: orbitDrift 90s linear infinite;
}

/* ── Loading Skeleton ──────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-elevated) 25%, rgba(255,255,255,0.04) 50%, var(--bg-elevated) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ── Tags / Pills ──────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 500;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  color: var(--text-muted);
}

/* ── Progress / Steps ──────────────────────────────────────── */
.step-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-default);
  transition: background var(--transition);
}

.step-dot.active {
  background: var(--blue);
  box-shadow: 0 0 8px rgba(103,168,255,0.4);
}

.step-dot.complete {
  background: var(--green);
}

/* ── Secure Indicator ──────────────────────────────────────── */
.secure-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.secure-indicator svg {
  width: 11px;
  height: 11px;
  color: var(--green);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-void);
  padding: var(--space-2xl) 0;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-secondary);
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-strong);
}

/* ── Auth Pages ────────────────────────────────────────────── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-void);
  position: relative;
  overflow: hidden;
}

.auth-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(160px);
  background: radial-gradient(ellipse, rgba(103,168,255,0.06), transparent);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-void);
}

.auth-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl);
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  position: relative;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103,168,255,0.35), transparent);
}

.auth-form-wide {
  width: 100%;
  max-width: 600px;
}

.auth-title {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}

.auth-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.auth-footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-void);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Dashboard Layout ──────────────────────────────────────── */
.dashboard-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-void);
}

.dashboard-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,19,33,0.96);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.dashboard-main {
  flex: 1;
  padding: var(--space-2xl) 0;
}

.dashboard-section {
  margin-bottom: var(--space-2xl);
}

.dashboard-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

/* ── Access Card ───────────────────────────────────────────── */
.access-card {
  background: rgba(13,27,42,0.92);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transition: all 400ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.access-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(74,223,129,0.50) 0%, rgba(74,223,129,0.88) 8%, rgba(74,223,129,0.88) 92%, rgba(74,223,129,0.50) 100%);
  pointer-events: none;
}

.access-card.accent-gold::before {
  background: linear-gradient(90deg, rgba(212,169,61,0.50) 0%, rgba(212,169,61,0.88) 8%, rgba(212,169,61,0.88) 92%, rgba(212,169,61,0.50) 100%);
}

.access-card.accent-blue::before {
  background: linear-gradient(90deg, rgba(96,165,250,0.45) 0%, rgba(96,165,250,0.85) 8%, rgba(96,165,250,0.85) 92%, rgba(96,165,250,0.45) 100%);
}

.access-card:hover {
  border-color: rgba(74,223,129,0.28);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 24px rgba(74,223,129,0.07);
}

.access-card.accent-gold:hover {
  border-color: rgba(212,169,61,0.30);
  box-shadow: var(--shadow-md), 0 0 24px rgba(212,169,61,0.07);
}

.access-card.accent-blue:hover {
  border-color: rgba(96,165,250,0.28);
  box-shadow: var(--shadow-md), 0 0 24px rgba(96,165,250,0.07);
}

.access-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}

.access-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.access-card-icon svg {
  width: 20px;
  height: 20px;
}

.access-card-badge {
  margin-left: auto;
}

.access-card-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.access-card-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.access-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.access-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-void);
  gap: var(--space-md);
}

/* ── Data Room ─────────────────────────────────────────────── */
.data-room-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-void);
  gap: var(--space-md);
  transition: background var(--transition);
}

.data-room-item:last-child {
  border-bottom: none;
}

.data-room-item:hover {
  background: rgba(255,255,255,0.02);
}

.data-room-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.data-room-item-icon svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.data-room-item-content {
  flex: 1;
  min-width: 0;
}

.data-room-item-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.data-room-item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.data-room-item-action {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ── Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease both;
}

.modal-overlay.hidden {
  display: none;
}

.modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  animation: fadeInUp 0.3s var(--ease-out) both;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-size: 0.9375rem;
  font-weight: 500;
}

.modal-body {
  padding: var(--space-xl);
}

.modal-footer {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  justify-content: flex-end;
}

/* ── Viewer Pages ──────────────────────────────────────────── */
.viewer-layout {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: var(--bg-void);
  overflow: hidden;
}

.viewer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  height: 56px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(6,6,10,0.98);
  flex-shrink: 0;
}

.viewer-embed {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: var(--bg-void);
}

.viewer-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
  background: #111;
}

.viewer-placeholder {
  width: 100%;
  height: 100%;
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  background: var(--bg-surface);
  text-align: center;
}

/* ── Confirmation State ────────────────────────────────────── */
.confirmation-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid rgba(77,222,134,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.confirmation-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

/* ── Site Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-2xl) 0;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.site-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-footer-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.site-footer-entity {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-end;
}

.site-footer-contact a,
.site-footer-contact span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer-contact a:hover {
  color: var(--text-green);
}

.site-footer-divider {
  height: 1px;
  background: var(--border-void);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.site-footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.site-footer-reg {
  font-size: 0.6875rem;
  color: var(--text-muted);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .site-footer-top { flex-direction: column; }
  .site-footer-contact { align-items: flex-start; }
  .site-footer-bottom { flex-direction: column; gap: var(--space-sm); }
}

/* ── Mobile / Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --space-4xl: 80px;
    --space-3xl: 64px;
    --space-2xl: 48px;
  }

  .container,
  .container-narrow,
  .container-tight {
    padding: 0 var(--space-lg);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-stats,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-cta .btn-secondary {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .auth-card {
    padding: var(--space-xl);
  }
}

/* ── Utility ───────────────────────────────────────────────── */
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.text-center { text-align: center; }
.text-right  { text-align: right; }
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.items-center{ align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm      { gap: var(--space-sm); }
.gap-md      { gap: var(--space-md); }
.gap-lg      { gap: var(--space-lg); }
.gap-xl      { gap: var(--space-xl); }
.mt-sm       { margin-top: var(--space-sm); }
.mt-md       { margin-top: var(--space-md); }
.mt-lg       { margin-top: var(--space-lg); }
.mt-xl       { margin-top: var(--space-xl); }
.mb-sm       { margin-bottom: var(--space-sm); }
.mb-md       { margin-bottom: var(--space-md); }
.mb-lg       { margin-bottom: var(--space-lg); }
.mb-xl       { margin-bottom: var(--space-xl); }
.mb-2xl      { margin-bottom: var(--space-2xl); }
.w-full      { width: 100%; }
.relative    { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ── Investor-grade horizontal rule ───────────────────────── */
hr.rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: var(--space-2xl) 0;
}

/* ── Stats Bar (green-led horizontal) ─────────────────────── */
@keyframes statSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.stats-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-panel);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(74,223,129,0.35) 0%, rgba(74,223,129,0.80) 12%, rgba(74,223,129,0.80) 88%, rgba(74,223,129,0.35) 100%);
}

.stats-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(74,223,129,0.045) 50%, transparent 100%);
  width: 60%;
  pointer-events: none;
  animation: statSweep 7s ease-in-out infinite;
}

.stats-bar-inner {
  display: flex;
  align-items: center;
}

.stats-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  padding: var(--space-lg) var(--space-xl);
}

.stats-bar-value {
  font-size: 1.625rem;
  font-weight: 600;
  color: #4ADF81;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 0 28px rgba(74,223,129,0.35), 0 0 60px rgba(74,223,129,0.12);
}

.stats-bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stats-bar-sep {
  width: 1px;
  height: 52px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ── Card accent section labels ────────────────────────────── */
.card-label-blue  { color: #60A5FA; }
.card-label-gold  { color: #EFB504; }
.card-label-green { color: #4ADF81; }

/* ── Data room section accent bars ────────────────────────── */
.data-room-section {
  position: relative;
}

.data-room-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(143,164,190,0.15);
  pointer-events: none;
}

.data-room-section.accent-gold::before {
  background: linear-gradient(90deg, rgba(212,169,61,0.50) 0%, rgba(212,169,61,0.88) 8%, rgba(212,169,61,0.88) 92%, rgba(212,169,61,0.50) 100%);
}

.data-room-section.accent-blue::before {
  background: linear-gradient(90deg, rgba(96,165,250,0.45) 0%, rgba(96,165,250,0.85) 8%, rgba(96,165,250,0.85) 92%, rgba(96,165,250,0.45) 100%);
}

.data-room-section.accent-green::before {
  background: linear-gradient(90deg, rgba(74,223,129,0.50) 0%, rgba(74,223,129,0.88) 8%, rgba(74,223,129,0.88) 92%, rgba(74,223,129,0.50) 100%);
}

@media (max-width: 640px) {
  .stats-bar-inner { flex-direction: column; gap: 0; }
  .stats-bar-sep { width: 40%; height: 1px; margin: 0 auto; }
}
