/* ==========================================================================
   Leo's Skips - Design System & Global Styles
   Aesthetic: Dark Gritty Premium
   Grid: 8-point system
   Unit: rem (Base: 1rem = 16px)
   ========================================================================== */

/* 1. CSS VARIABLES (DESIGN TOKENS) */
:root {
  /* Colors - Dark Gritty Theme */
  --color-bg: #0d0d0d;
  --color-surface: #161616;
  --color-surface-2: #1f1f1f;
  --color-border: #2a2a2a;

  --color-primary: #1b72b9;
  /* Leo's Blue */
  --color-primary-hover: #2881cd;
  --color-accent: #ffd166;
  /* Gold/Yellow */

  --color-text: #f5f5f5;
  --color-text-muted: #a0a0a0;
  --color-text-inverse: #000000;

  --color-success: #22c55e;
  --color-error: #ef4444;

  /* Typography */
  --font-heading: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Fluid Typography Clamping */
  /* Min 2rem (32px), Max 4rem (64px) */
  --fs-h1: clamp(2rem, 5vw + 1rem, 4rem);
  /* Min 1.5rem (24px), Max 2.5rem (40px) */
  --fs-h2: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  /* Min 1.25rem (20px), Max 1.75rem (28px) */
  --fs-h3: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  --fs-h4: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* Spacing Grid (8-point system) */
  --space-0: 0;
  --space-1: 0.25rem;
  /* 4px (Half step) */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 1rem;
  /* 16px */
  --space-4: 1.5rem;
  /* 24px */
  --space-5: 2rem;
  /* 32px */
  --space-6: 3rem;
  /* 48px */
  --space-7: 4rem;
  /* 64px */
  --space-8: 6rem;
  /* 96px */
  --space-9: 8rem;
  /* 128px */

  /* Layout constraints */
  --max-width: 75rem;
  /* 1200px */
  --container-padding: var(--space-4);

  /* Borders & Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-pill: 9999px;
  --border-width: 1px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 8px 32px -4px rgba(27, 114, 185, 0.3);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* 3. TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

p {
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-hover);
}

strong {
  font-weight: 600;
  color: var(--color-text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* 4. LAYOUT / UTILITIES */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--space-7);
}

@media (min-width: 768px) {
  .section {
    padding-block: var(--space-9);
  }
}

/* Grid System */
.grid {
  display: grid;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: var(--space-2);
}

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-5 {
  gap: var(--space-5);
}

.gap-6 {
  gap: var(--space-6);
}

/* Spacing Helpers */
.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-5 {
  margin-bottom: var(--space-5);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mt-1 {
  margin-top: var(--space-1);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-5 {
  margin-top: var(--space-5);
}

.mt-6 {
  margin-top: var(--space-6);
}

/* Text Utils */
.text-center {
  text-align: center;
}

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

.text-accent {
  color: var(--color-accent);
}

.text-white {
  color: var(--color-text);
}

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

.text-small {
  font-size: var(--fs-small);
}

/* 5. COMPONENTS */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  /* 16px 24px (8-point grid) */
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Button Sizes - Responsive touch targets */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--fs-small);
  min-height: 44px;
  /* Minimum touch target size */
}

/* Primary Button */
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text);
  box-shadow: 0 4px 14px 0 rgba(27, 114, 185, 0.39);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-primary-hover);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 114, 185, 0.5);
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

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

/* Outline / Secondary Button */
.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  outline: none;
}

/* Cards (Bento/Gritty) */
.card {
  background-color: var(--color-surface);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all var(--transition-normal);
}

.card:hover {
  background-color: var(--color-surface-2);
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Pills / Badges */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  /* 4px 8px */
  background-color: var(--color-surface-2);
  color: var(--color-text);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: var(--border-width) solid var(--color-primary);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

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

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: var(--color-surface-2);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
  min-height: 48px;
  /* Touch target */
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 114, 185, 0.15);
}

.form-input::placeholder {
  color: #555555;
}

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

/* ==========================================================================
   PAGE COMPONENTS (Header, Hero, Services, Footer)
   ========================================================================== */

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: var(--space-4);
  background-color: transparent;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.site-header.header-scrolled,
.site-header:has(.nav-menu.is-open) {
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.nav-list {
  gap: var(--space-4);
}

.nav-link {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  background-color: var(--color-text);
  height: 2px;
  width: 24px;
  position: absolute;
  left: 10px;
  transition: all var(--transition-fast);
}

.hamburger {
  top: 21px;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Mobile Menu */
@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    text-align: center;
    gap: var(--space-5);
  }

  .nav-link {
    font-size: 1.25rem;
  }

  body.no-scroll {
    overflow: hidden;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--space-8);
  padding-bottom: var(--space-7);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(
      to bottom,
      rgba(13, 13, 13, 0.6) 0%,
      rgba(13, 13, 13, 0.85) 75%,
      var(--color-bg) 100%
    ),
    url("../images/hero-skip.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  margin-right: auto;
  text-align: left;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-4);
  line-height: 1.15;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  max-width: 650px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: var(--space-5);
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

/* Page Header (Secondary Pages) */
.page-header {
  position: relative;
  padding-top: var(--space-9);
  padding-bottom: var(--space-5);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(
      to bottom,
      rgba(13, 13, 13, 0.5) 0%,
      rgba(13, 13, 13, 0.95) 100%
    ),
    url("../images/hero-skip.png");
  background-size: cover;
  background-position: center;
}

/* Trust Bar */
.trust-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-surface-2);
  padding-block: var(--space-4);
}

.trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}

.trust-icon {
  font-size: 2rem;
  line-height: 1;
}

/* Services section */
.services-grid,
.sizes-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services-grid,
  .sizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sizes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Sizes Graphics */
.size-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--color-surface-2);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  margin-inline: auto;
  transition: all var(--transition-normal);
}

.card:hover .size-graphic {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.size-graphic-accent {
  background-color: rgba(255, 209, 102, 0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.border-accent {
  border-color: var(--color-accent);
}

.border-accent:hover {
  border-color: var(--color-accent);
}

/* CTA Banner */
.cta-banner {
  background:
    linear-gradient(
      135deg,
      rgba(40, 129, 205, 0.85) 0%,
      rgba(27, 114, 185, 0.95) 100%
    ),
    url("../images/cta-skip.png");
  background-size: cover;
  background-position: center;
  color: var(--color-text);
}

.cta-banner h2,
.cta-banner p {
  color: var(--color-text);
}

.cta-banner .btn-primary {
  background-color: var(--color-text);
  color: var(--color-primary);
  box-shadow: none;
}

.cta-banner .btn-outline {
  border-color: var(--color-text);
  color: var(--color-text);
}

@media (max-width: 480px) {
  .cta-banner .flex {
    flex-direction: column;
  }
}

/* Footer */
.footer-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.border-top {
  border-top: 1px solid var(--color-border);
}

.footer-bottom {
  flex-wrap: wrap;
  gap: var(--space-4);
}

.legal-links {
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .legal-links {
    justify-content: center;
  }
}

/* ABOUT PAGE GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}

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

/* VALUES GRID */
.values-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-icon {
  font-size: 2.5rem;
  line-height: 1;
}

/* 6. ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up,
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Prefers Reduced Motion */
@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;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 7. FAQ Accordion Elements */
details.accordion {
  background-color: var(--color-surface);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: all var(--transition-fast);
}

details.accordion[open] {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

summary.accordion-title {
  padding: var(--space-4);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  position: relative;
  list-style: none;
  /* Hide default arrow */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary.accordion-title::-webkit-details-marker {
  display: none;
}

summary.accordion-title::after {
  content: "+";
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
}

details.accordion[open] summary.accordion-title::after {
  content: "−";
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 var(--space-4) var(--space-4) var(--space-4);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3);
  margin-top: var(--space-2);
}

/* 8. PRICING BADGES */
.price-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
  letter-spacing: 0.03em;
}

.price-badge-accent {
  background-color: var(--color-accent);
  color: var(--color-text-inverse);
}

/* 9. TESTIMONIALS */
.testimonials-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.testimonial-quote {
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
}

.testimonial-author strong {
  display: block;
  color: var(--color-text);
}

/* 10. AREAS GRID */
.areas-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.area-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.area-card:hover {
  color: inherit;
}

.area-card h3 {
  transition: color var(--transition-fast);
}

.area-card:hover h3 {
  color: var(--color-primary);
}

/* 11. DROPDOWN NAVIGATION */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  min-width: 200px;
  padding: var(--space-2) 0;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: var(--space-2) var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
  color: var(--color-text);
  background-color: var(--color-surface-2);
}

@media (max-width: 767px) {
  .dropdown-menu {
    position: static;
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: var(--space-2) 0 0 0;
    min-width: 0;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: var(--space-1) 0;
    font-size: 0.9375rem;
    color: var(--color-primary);
  }

  .nav-dropdown > .nav-link {
    margin-bottom: 0;
  }

  .nav-dropdown > .nav-link::after {
    content: " ▾";
    font-size: 0.75rem;
  }

  .nav-dropdown.is-open > .nav-link::after {
    content: " ▴";
  }
}

/* 12. UPDATED FOOTER GRID (4 columns) */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* 13. GUIDE PAGE STYLES */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: var(--space-5);
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-5);
}

.table-wrap .guide-table {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .guide-table th,
  .guide-table td {
    padding: var(--space-2);
    font-size: 0.8125rem;
  }
}

.guide-table th,
.guide-table td {
  padding: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  font-size: var(--fs-small);
}

.guide-table th {
  background-color: var(--color-surface-2);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
  font-size: var(--fs-body);
}

.guide-table td {
  color: var(--color-text-muted);
}

.guide-table tr:hover td {
  background-color: var(--color-surface);
}

.allowed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-small);
  font-weight: 600;
}

.allowed-badge--yes {
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
}

.allowed-badge--no {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
}

.content-block {
  max-width: 800px;
  margin-inline: auto;
}

.content-block h2 {
  margin-top: var(--space-6);
}

.content-block h3 {
  margin-top: var(--space-5);
}

.content-block p {
  line-height: 1.8;
}

.content-block ul,
.content-block ol {
  list-style-type: disc;
  margin-left: var(--space-4);
  margin-bottom: var(--space-4);
}

.content-block li {
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Utility extras */
.fw-bold {
  font-weight: 700;
}

.block {
  display: block;
}

.w-100 {
  width: 100%;
}

.pt-1 {
  padding-top: var(--space-1);
}

.pb-1 {
  padding-bottom: var(--space-1);
}

.pb-4 {
  padding-bottom: var(--space-4);
}

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

.relative {
  position: relative;
}
