/* style.css — IPAL Design System */

/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-display: 'DM Serif Display', 'Georgia', serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
}

/* ============================================
   LIGHT MODE (Default)
   Law enforcement palette: deep navy, steel, gold
   ============================================ */
:root, [data-theme="light"] {
  --color-bg:             #F5F6F8;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F0F2F5;
  --color-surface-offset: #E8EBF0;
  --color-divider:        #D0D5DD;
  --color-border:         #C4CAD4;

  --color-text:           #1A1D26;
  --color-text-muted:     #5C6478;
  --color-text-faint:     #9BA3B5;
  --color-text-inverse:   #F5F6F8;

  /* Primary: Deep Navy */
  --color-primary:        #1B2A4A;
  --color-primary-hover:  #0F1D38;
  --color-primary-active: #0A1428;
  --color-primary-light:  #2D4470;

  /* Accent: Police Gold */
  --color-accent:         #B8860B;
  --color-accent-hover:   #9A7209;
  --color-accent-light:   #D4A829;

  /* Success, Warning, Error */
  --color-success:        #2D6A4F;
  --color-warning:        #B54708;
  --color-error:          #9B2C2C;

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.2 0.02 250 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 250 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 250 / 0.12);
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
  --color-bg:             #0D1117;
  --color-surface:        #161B22;
  --color-surface-2:      #1C222D;
  --color-surface-offset: #21283B;
  --color-divider:        #2D3548;
  --color-border:         #3A4560;

  --color-text:           #D4D8E0;
  --color-text-muted:     #8B95A8;
  --color-text-faint:     #5C6478;
  --color-text-inverse:   #0D1117;

  --color-primary:        #6B8CC7;
  --color-primary-hover:  #5478B5;
  --color-primary-active: #4068A5;
  --color-primary-light:  #8FAAD8;

  --color-accent:         #D4A829;
  --color-accent-hover:   #E0BC4A;
  --color-accent-light:   #F0D060;

  --color-success:        #52B788;
  --color-warning:        #E08A3C;
  --color-error:          #E05555;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0D1117;
    --color-surface:        #161B22;
    --color-surface-2:      #1C222D;
    --color-surface-offset: #21283B;
    --color-divider:        #2D3548;
    --color-border:         #3A4560;
    --color-text:           #D4D8E0;
    --color-text-muted:     #8B95A8;
    --color-text-faint:     #5C6478;
    --color-text-inverse:   #0D1117;
    --color-primary:        #6B8CC7;
    --color-primary-hover:  #5478B5;
    --color-primary-active: #4068A5;
    --color-primary-light:  #8FAAD8;
    --color-accent:         #D4A829;
    --color-accent-hover:   #E0BC4A;
    --color-accent-light:   #F0D060;
    --color-success:        #52B788;
    --color-warning:        #E08A3C;
    --color-error:          #E05555;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* ============================================
   GLOBAL COMPONENTS
   ============================================ */

/* Container */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.container--narrow {
  max-width: var(--content-default);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  max-width: var(--content-wide);
  margin-inline: auto;
}

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

.logo-mark {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
  background: oklch(from var(--color-text) l c h / 0.05);
}

.nav-link.active {
  color: var(--color-primary);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  padding: var(--space-2);
  color: var(--color-text);
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open {
    display: flex;
  }
  .nav-link {
    padding: var(--space-3) var(--space-4);
    width: 100%;
  }
}

/* Theme toggle */
.theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
}

.theme-toggle:hover {
  color: var(--color-text);
  background: oklch(from var(--color-text) l c h / 0.05);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-interactive);
  line-height: 1.4;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border: none;
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
  border: none;
}

.btn--accent:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

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

.btn--ghost:hover {
  background: oklch(from var(--color-text) l c h / 0.05);
  border-color: var(--color-text-muted);
}

/* Sections */
.section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) 0;
}

.section--dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.section--dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.section--surface {
  background: var(--color-surface);
}

.section--alt {
  background: var(--color-surface-2);
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.section--dark .section-title {
  color: #fff;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.92) 0%, rgba(27,42,74,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-20) var(--space-4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  max-width: 18ch;
}

.hero-description {
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 52ch;
  opacity: 0.9;
  margin-bottom: var(--space-8);
}

.hero-tagline {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-4);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero .btn--accent {
  background: var(--color-accent);
  color: #fff;
}

.hero .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.hero .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* Page Hero (for interior pages) */
.page-hero {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-16) 0 var(--space-12);
}

.page-hero .section-label {
  color: var(--color-accent-light);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.page-hero-description {
  font-size: var(--text-base);
  opacity: 0.85;
  max-width: 56ch;
  line-height: 1.7;
}

/* Cards */
.card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

[data-theme="dark"] .card-icon {
  color: var(--color-accent);
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.card-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }

/* Values / Features list */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}

.value-item {
  display: flex;
  gap: var(--space-4);
}

.value-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--color-accent);
  margin-top: var(--space-1);
}

.value-title {
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.value-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: var(--space-6);
  padding: var(--space-8) 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Feature section with two columns */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 768px) {
  .feature-split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface-2);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Two-column text + list */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* List with checks */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}

.check-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  margin-top: 2px;
}

/* Membership tiers */
.tier-card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: left;
}

.tier-card--featured {
  border-color: var(--color-accent);
  border-width: 2px;
  position: relative;
}

.tier-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.tier-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.tier-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

/* Contact Form */
.contact-form {
  display: grid;
  gap: var(--space-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

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

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}

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

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  opacity: 0.7;
  margin-top: var(--space-4);
  max-width: 36ch;
}

.footer-heading {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
  color: rgba(255,255,255,0.5);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li { margin-bottom: var(--space-2); }

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--text-xs);
  opacity: 0.5;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  padding: 0;
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.8);
}

/* Divider line */
.gold-line {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  padding: var(--space-16) 0;
  text-align: center;
}

.cta-banner .section-title {
  color: #fff;
}

.cta-banner .section-subtitle {
  color: rgba(255,255,255,0.8);
  margin-inline: auto;
  margin-bottom: var(--space-8);
}

/* Governance standards grid */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: var(--space-4);
}

.standard-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  font-size: var(--text-sm);
  font-weight: 500;
}

.standard-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-accent);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-2);
}

/* Prose content */
.prose p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

/* Services numbered list */
.service-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
}

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

.service-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  opacity: 0.5;
  line-height: 1;
}

.service-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.service-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: var(--space-4);
}

.contact-card {
  padding: var(--space-4);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-card svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  margin: 0 auto var(--space-2);
}

.contact-card-title {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
}

.contact-card-text {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Growth priorities */
.growth-list {
  list-style: none;
  padding: 0;
  counter-reset: growth;
}

.growth-list li {
  counter-increment: growth;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.growth-list li::before {
  content: counter(growth);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-accent);
  opacity: 0.6;
  flex-shrink: 0;
  width: 32px;
}
