/* ==========================================================================
   ManKind UK - Human-Crafted Editorial Design System
   Modern British Web Platform for Men's Mental Health & Alternative Care
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&display=swap');

:root {
  /* Editorial Colour Palette: British Ink, Slate Blue & Warm Creamy Stone */
  --ink: #111827;
  --ink-soft: #243048;
  --ink-muted: #4e5d78;
  --ink-faint: #6f7e97;

  --color-primary: #1d4ed8;       /* Confident Royal Blue */
  --color-primary-dark: #0f2557;  /* Deep British Navy */
  --color-primary-light: #3b82f6;
  
  --color-accent-teal: #0d9488;   /* Muted Botanical Teal */
  --color-accent-sage: #10b981;   /* Fresh Sage */
  --color-amber: #d97706;         /* Warm amber notice */
  --color-alert: #dc2626;         /* Crisis Red */

  /* Creamy Warm Paper-like Surfaces (Replaces Stark Clinical White) */
  --bg-body: #faf6ee;             /* Warm, calming creamy paper tone */
  --bg-surface: #fffdf9;          /* Rich, warm ivory cream surface */
  --bg-surface-elevated: #fffdf9;
  --bg-surface-subtle: #f3ece0;   /* Muted cream stone */
  --bg-surface-blue: #f0f4fc;     /* Gentle tinted cream-blue */
  --border-subtle: #e5ded2;       /* Warm stone border */
  --border-focus: #93c5fd;

  --header-bg: rgba(250, 246, 238, 0.95);
  --header-border: rgba(229, 222, 210, 0.9);

  /* Typography Stacks */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;

  /* Radii & Organic Shadows */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --shadow-subtle: 0 1px 3px rgba(35, 27, 18, 0.05), 0 1px 2px rgba(35, 27, 18, 0.03);
  --shadow-card: 0 4px 16px -2px rgba(35, 27, 18, 0.06), 0 2px 6px -1px rgba(35, 27, 18, 0.04);
  --shadow-elevated: 0 12px 32px -4px rgba(35, 27, 18, 0.1), 0 4px 12px -2px rgba(35, 27, 18, 0.05);

  --max-width: 1140px;
}

[data-theme="dark"] {
  /* Dark Mode Palette: Deep British Midnight & Cool Accents */
  --ink: #f3f4f6;
  --ink-soft: #d1d5db;
  --ink-muted: #9ca3af;
  --ink-faint: #6b7280;

  --color-primary: #3b82f6;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #60a5fa;

  --color-accent-teal: #14b8a6;
  --color-accent-sage: #34d399;
  --color-amber: #f59e0b;
  --color-alert: #ef4444;

  --bg-body: #0b111e;             /* Midnight obsidian */
  --bg-surface: #141c2d;          /* Elevated dark slate */
  --bg-surface-elevated: #1a243a;
  --bg-surface-subtle: #1c273e;   /* Subtle card surface */
  --bg-surface-blue: #162238;
  --border-subtle: #24334f;       /* Subtle dark slate border */
  --border-focus: #60a5fa;

  --header-bg: rgba(11, 17, 30, 0.95);
  --header-border: rgba(36, 51, 79, 0.9);

  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 4px 16px -2px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 12px 32px -4px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==========================================================================
   Crisis Bar (Discreet, Respectful, Human)
   ========================================================================== */
.crisis-banner {
  background: linear-gradient(90deg, #7f1d1d 0%, #881337 100%);
  color: #fef2f2;
  padding: 0.5rem 1.5rem;
  font-size: 0.86rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.crisis-banner-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.crisis-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #f87171;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7);
  animation: pulseCrisis 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseCrisis {
  0% {
    box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(248, 113, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(248, 113, 113, 0);
  }
}

.crisis-banner strong {
  color: #ffffff;
  font-weight: 700;
}

.crisis-banner-link {
  color: #fecaca;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.crisis-banner-link:hover {
  color: #ffffff;
}

.btn-quick-exit {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.18s ease;
  flex-shrink: 0;
}

.btn-quick-exit:hover {
  background: #ffffff;
  color: #991b1b;
  border-color: #ffffff;
}

.esc-kbd {
  font-family: inherit;
  font-size: 0.7rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  font-weight: 700;
}

.btn-quick-exit:hover .esc-kbd {
  background: #fecaca;
  color: #991b1b;
  border-color: #fca5a5;
}

/* ==========================================================================
   Navigation (Clean, Confident, Architectural)
   ========================================================================== */
.site-header {
  background-color: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--header-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-subtle);
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.header-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  transition: opacity 0.15s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand:hover {
  opacity: 0.9;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.05em;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.15);
  flex-shrink: 0;
}

.brand-info {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

[data-theme="dark"] .brand-tag {
  background: #1e293b;
  border-color: #3b82f6;
  color: #93c5fd;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.42rem 0.65rem;
  border-radius: var(--radius-xs);
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-links a:hover {
  color: var(--ink);
  background-color: var(--bg-surface-subtle);
}

.nav-links a.active {
  color: var(--color-primary);
  background-color: var(--bg-surface-blue);
  font-weight: 700;
}

[data-theme="dark"] .nav-links a.active {
  color: #60a5fa;
  background-color: #1e3a5f;
}

.nav-cta-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-urgent-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #dc2626;
  color: #ffffff !important;
  text-decoration: none;
  padding: 0.42rem 0.85rem;
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 1px 2px rgba(220, 38, 38, 0.2);
  transition: all 0.18s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-urgent-btn:hover {
  background: #b91c1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.nav-urgent-btn.active {
  background: #991b1b;
  outline: 2px solid #fecaca;
}

/* Header Actions: Theme Toggle + Mobile Menu */
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

/* Theme Toggle Button */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

.theme-toggle-btn:hover {
  background: var(--bg-surface-subtle);
  border-color: var(--ink-muted);
  transform: translateY(-1px);
}

.theme-toggle-btn .sun-icon {
  display: none;
}

.theme-toggle-btn .moon-icon {
  display: block;
}

[data-theme="dark"] .theme-toggle-btn {
  background: #1e293b;
  border-color: #334155;
  color: #f59e0b;
}

[data-theme="dark"] .theme-toggle-btn:hover {
  background: #27354f;
  border-color: #475569;
}

[data-theme="dark"] .theme-toggle-btn .sun-icon {
  display: block;
}

[data-theme="dark"] .theme-toggle-btn .moon-icon {
  display: none;
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  cursor: pointer;
  padding: 8px;
  transition: background 0.15s ease;
}

.mobile-menu-toggle:hover {
  background: var(--bg-surface-subtle);
}

[data-theme="dark"] .mobile-menu-toggle {
  border-color: #334155;
}

[data-theme="dark"] .mobile-menu-toggle:hover {
  background: #1e293b;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.site-header.nav-open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Editorial Typography & Hero
   ========================================================================== */
.hero-editorial {
  background: #0f172a;
  color: #ffffff;
  padding: 5rem 1.5rem 5.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .hero-editorial {
  background: transparent;
  border-bottom: 1px solid var(--border-subtle);
}

[data-theme="dark"] .hero-editorial::before {
  display: none;
}

.hero-editorial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.28) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(13, 148, 136, 0.18) 0%, transparent 40%);
  pointer-events: none;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.editorial-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #e0e7ff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
}

.hero-editorial h1 {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-editorial h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #93c5fd;
}

.hero-editorial p.lead {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Side Card in Hero (Human Note) */
.hero-human-note {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.hero-human-note h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-human-note p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
}

.stat-item .stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

.stat-item .stat-desc {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-top: 0.35rem;
}

/* ==========================================================================
   Buttons (Tactile, Human, Crisp)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  line-height: 1;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover {
  background-color: #1e40af;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.35);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--ink);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  border-color: var(--ink-faint);
  transform: translateY(-1px);
  background-color: var(--bg-surface-subtle);
}

.btn-dark {
  background-color: #0f172a;
  color: #ffffff;
}

.btn-dark:hover {
  background-color: #1e293b;
  transform: translateY(-1px);
}

[data-theme="dark"] .btn-dark {
  background-color: #1e293b;
  color: #f3f4f6;
}

[data-theme="dark"] .btn-dark:hover {
  background-color: #25334c;
}

/* Medical Cannabis Buttons */
.btn-cannabis {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 100%);
  color: #ffffff;
  border: 1px solid #14b8a6;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.25);
}

.btn-cannabis:hover {
  background: #0d9488;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15, 118, 110, 0.35);
}

.btn-cannabis-outline {
  background: transparent;
  color: #0f766e;
  border: 1.5px solid #0f766e;
}

.btn-cannabis-outline:hover {
  background: #0f766e;
  color: #ffffff;
}

/* Alternaleaf Button */
.btn-alternaleaf {
  background-color: #0f766e;
  color: #ffffff;
  font-weight: 700;
  border: 1px solid #0d9488;
  box-shadow: 0 2px 6px rgba(15, 118, 110, 0.25);
}

.btn-alternaleaf:hover {
  background-color: #115e59;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.35);
}

/* Alternaleaf & Sponsored Clinic Cards (High Contrast & Clear) */
.ad-card {
  background: var(--bg-surface);
  color: var(--ink);
  border: 1.5px solid #5eead4;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.ad-card h2,
.ad-card h3 {
  color: #0f766e;
  font-weight: 800;
}

.ad-card p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.ad-badge {
  background: #ccfbf1;
  color: #0f766e;
  border: 1px solid #5eead4;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ==========================================================================
   New Feature Styles: Calculators, Script Generator, Legal Card, Filters
   ========================================================================== */

/* 1. GP Script Generator */
.script-builder-box {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-subtle);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0;
}

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

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  background: var(--bg-surface-subtle);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.checkbox-item:hover {
  background: var(--bg-surface-blue);
  border-color: #93c5fd;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.script-output {
  display: none;
  background: var(--bg-surface-subtle);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  margin-top: 1.5rem;
  position: relative;
}

.script-output-text {
  font-family: monospace;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink);
  white-space: pre-wrap;
  background: var(--bg-surface);
  padding: 1.25rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
}

.script-output-title {
  color: #854d0e;
}

[data-theme="dark"] .script-output-title {
  color: #fbbf24;
}

/* 2. Medical Cannabis Cost Calculator */
.calc-container {
  background: var(--bg-surface);
  border: 1.5px solid #a7f3d0;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-subtle);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.range-slider-wrapper {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0 2rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.range-slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.slider-val-badge {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-accent-teal);
  background: rgba(13, 148, 136, 0.12);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(13, 148, 136, 0.25);
  display: inline-block;
}

.slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #cbd5e1;
  outline: none;
  cursor: pointer;
  margin: 0.85rem 0 0.5rem;
  accent-color: #0d9488;
}

/* WebKit Slider Track & Thumb */
.slider-input::-webkit-slider-runnable-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #cbd5e1;
  border: 1px solid #94a3b8;
  cursor: pointer;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0d9488;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  margin-top: -7px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  background: #0f766e;
}

/* Firefox Slider Track & Thumb */
.slider-input::-moz-range-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: #cbd5e1;
  border: 1px solid #94a3b8;
  cursor: pointer;
}

.slider-input::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #0d9488;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.slider-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .calc-results-grid {
    grid-template-columns: 1fr;
  }
}

.calc-card {
  padding: 1.75rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.calc-card.alternaleaf-res {
  background: #f0fdfa;
  border: 1.5px solid #99f6e4;
}

.calc-card.mamedica-res {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}

.calc-card-title {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.calc-card.alternaleaf-res .calc-card-title {
  color: #0f766e;
}

.calc-card.mamedica-res .calc-card-title {
  color: #166534;
}

.calc-price-big {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0.4rem 0 0.2rem;
}

.calc-card.alternaleaf-res .calc-price-big {
  color: #134e4a;
}

.calc-card.mamedica-res .calc-price-big {
  color: #064e3b;
}

.calc-card-sub {
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
}

.calc-card.alternaleaf-res .calc-card-sub {
  color: #115e59;
}

.calc-card.mamedica-res .calc-card-sub {
  color: #15803d;
}

.calc-card-body {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.calc-card-footer {
  padding-top: 0.85rem;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  border-top: 1px solid;
}

.calc-card.alternaleaf-res .calc-card-footer {
  border-top-color: #99f6e4;
  color: #134e4a;
}

.calc-card.mamedica-res .calc-card-footer {
  border-top-color: #bbf7d0;
  color: #064e3b;
}

/* 3. Police & Driving Legal Card */
.police-legal-card {
  background: var(--bg-surface-subtle);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2.5rem 0;
}

.police-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.police-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 4. Region Club Filter */
.region-filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--ink-muted);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--bg-surface-subtle);
}

.filter-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.club-card-item {
  display: block;
  transition: opacity 0.2s ease;
}

/* 5. Bloke's Reality Check Quiz */
.quiz-box {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-subtle);
}

.quiz-question {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.quiz-question:last-child {
  border-bottom: none;
}

.quiz-options-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

@media (max-width: 720px) {
  .quiz-options-row {
    grid-template-columns: 1fr;
  }
}

.quiz-btn {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-xs);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  transition: all 0.15s ease;
}

.quiz-btn.selected {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}


/* ==========================================================================
   Editorial Layout & Bento Grids
   ========================================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  width: 100%;
}

.section-intro {
  margin-bottom: 2.5rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.2;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 680px;
  margin-top: 0.5rem;
  line-height: 1.6;
}

/* Asymmetric Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.75rem;
  margin-top: 2rem;
}

.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: #cbd5e1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.tag-subtle {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  background: var(--bg-surface-subtle);
  color: var(--ink-muted);
}

.read-time {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.bento-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.bento-card p {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Standard 3-column grid for secondary sections */
.grid-editorial {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

/* Balanced 2x2 Gateway Grid for Homepage Pathways */
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .pathways-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   Honest Clinic Breakdown Card (Mamedica vs Alternaleaf) - Enhanced & Prominent
   ========================================================================== */
.clinic-comparison-box {
  background: linear-gradient(180deg, var(--bg-surface) 0%, #f0fdfa 100%);
  border: 2px solid #5eead4;
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  margin: 3.5rem 0;
  box-shadow: 0 8px 30px rgba(15, 118, 110, 0.08);
  position: relative;
  overflow: hidden;
}

.clinic-comparison-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d9488, #10b981, #1d4ed8);
}

.clinic-quick-glance-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
  background: var(--bg-surface);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.quick-glance-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.quick-glance-item strong {
  color: #0f766e;
}

.clinic-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.clinic-box {
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.clinic-box.mamedica {
  border: 2px solid #34d399;
  background: linear-gradient(180deg, var(--bg-surface) 0%, #f0fdf4 100%);
}

.clinic-box.alternaleaf {
  border: 2px solid #2dd4bf;
  background: linear-gradient(180deg, var(--bg-surface) 0%, #f0fdfa 100%);
}

.clinic-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.clinic-verdict-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-top: 1.15rem;
  margin-bottom: 0.35rem;
}

.clinic-verdict {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.clinic-card-desc {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.clinic-highlight-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin: 1rem 0;
}

.clinic-highlight-box strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.clinic-highlight-box p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.badge-scheme {
  background: #dcfce7;
  color: #166534;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid #86efac;
}

.badge-startup {
  background: #ccfbf1;
  color: #115e59;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  border: 1px solid #5eead4;
}

.tag-subtle.nhs-tag {
  background: #eff6ff;
  color: #1d4ed8;
}

[data-theme="dark"] .tag-subtle.nhs-tag {
  background: #1e293b;
  color: #60a5fa;
}

[data-theme="dark"] .badge-scheme {
  background: #064e3b;
  color: #34d399;
  border-color: #059669;
}

[data-theme="dark"] .badge-startup {
  background: #042f2e;
  color: #2dd4bf;
  border-color: #0d9488;
}

[data-theme="dark"] .clinic-highlight-box {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .clinic-box.mamedica h3 {
  color: #34d399;
}

[data-theme="dark"] .clinic-box.alternaleaf h3 {
  color: #2dd4bf;
}

/* ==========================================================================
   Streamlined Homepage Spotlight & Quote Cards
   ========================================================================== */
.cannabis-home-spotlight {
  background: var(--bg-surface);
  border: 2px solid #5eead4;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3.5rem 0;
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.cannabis-home-spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0d9488, #10b981, #1d4ed8);
}

.cannabis-spotlight-content h2 {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0.5rem 0 0.85rem;
  line-height: 1.25;
}

.cannabis-spotlight-content p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.cannabis-spotlight-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.spotlight-pill {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.35rem;
}

.spotlight-pill strong {
  display: block;
  font-size: 1rem;
  color: var(--color-accent-teal);
  margin-bottom: 0.35rem;
}

.spotlight-pill span {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  display: block;
}

.cannabis-spotlight-action {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

[data-theme="dark"] .cannabis-home-spotlight {
  background: linear-gradient(180deg, #141c2d 0%, #0d222a 100%);
  border-color: #0d9488;
}

[data-theme="dark"] .spotlight-pill {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Stories Quote Grid */
.stories-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .stories-quote-grid {
    grid-template-columns: 1fr;
  }
}

.story-quote-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.story-quote-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1.25rem 0;
  position: relative;
}

.quote-author {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.quote-author strong {
  color: var(--ink);
}

.quote-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.15s ease;
}

.quote-link:hover {
  text-decoration: underline;
  gap: 0.55rem;
}

/* ==========================================================================
   Accessibility & Low-Energy Reading Controls
   ========================================================================== */
.reader-toolbar-container {
  background: var(--bg-surface-subtle);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.15rem;
  margin: 1.5rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.reader-toolbar-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.reader-toolbar-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-reader-tool {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.15s ease;
}

.btn-reader-tool:hover {
  background: var(--bg-surface-blue);
  border-color: var(--border-focus);
}

.btn-reader-tool.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* Reading accessibility states for body */
body.font-large {
  font-size: 1.18rem;
  line-height: 1.8;
}

body.font-large h1 { font-size: 3rem !important; }
body.font-large h2 { font-size: 2.1rem !important; }
body.font-large h3 { font-size: 1.55rem !important; }
body.font-large p, body.font-large li { font-size: 1.12rem !important; }

body.font-dyslexia {
  font-family: Arial, "Helvetica Neue", sans-serif !important;
  letter-spacing: 0.035em !important;
  word-spacing: 0.07em !important;
  line-height: 1.85 !important;
}

body.font-calm {
  background-color: #f7f6f2 !important;
  color: #1e293b !important;
}

body.font-calm .bento-card,
body.font-calm .clinic-box,
body.font-calm .easy-read-box,
body.font-calm .calc-container {
  background: var(--bg-surface) !important;
  box-shadow: none !important;
  border-color: var(--border-subtle) !important;
}

/* ==========================================================================
   Easy-Read 60-Second Summary Callout (Built for brain fog & fatigue)
   ========================================================================== */
.cannabis-glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ecfdf5;
  border: 1.5px solid #10b981;
  color: #065f46;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
  margin-bottom: 1rem;
}

.glance-pills-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0 2.25rem;
}

@media (max-width: 992px) {
  .glance-pills-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .glance-pills-row {
    grid-template-columns: 1fr;
  }
}

.glance-pill {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-subtle);
}

.glance-pill strong {
  color: #0f766e;
  font-size: 0.98rem;
}

.easy-read-box {
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 2px solid #34d399;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin: 2.5rem 0;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.09);
}

.easy-read-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1.5px solid #a7f3d0;
  padding-bottom: 1rem;
}

.easy-read-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #064e3b;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.easy-read-tag {
  background: #065f46;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xs);
}

.easy-read-lead {
  font-size: 1rem;
  color: #14532d;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.easy-read-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .easy-read-grid {
    grid-template-columns: 1fr;
  }
}

.easy-read-item {
  background: var(--bg-surface);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: 0 2px 6px rgba(6, 78, 59, 0.04);
}

.easy-read-item strong {
  display: block;
  font-size: 1.02rem;
  color: #064e3b;
  margin-bottom: 0.4rem;
}

.easy-read-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   4-Step Roadmap: From Sofa to Doorstep
   ========================================================================== */
.steps-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}

@media (max-width: 1024px) {
  .steps-timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 580px) {
  .steps-timeline-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.step-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  position: relative;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  border-color: #0f766e;
}

.step-badge {
  background: #0f766e;
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.step-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   Qualifying Conditions Checklist
   ========================================================================== */
.conditions-box {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin: 2.5rem 0;
  box-shadow: var(--shadow-subtle);
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

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

.condition-card {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
}

.condition-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.condition-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.condition-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.condition-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

/* ==========================================================================
   Roadside Police Legal Card (High-Contrast & Glovebox Ready)
   ========================================================================== */
.roadside-card {
  background: #0f172a;
  color: #ffffff;
  border: 2px solid #3b82f6;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin: 2.5rem 0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.15);
}

.roadside-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.roadside-phrase-box {
  background: rgba(59, 130, 246, 0.18);
  border: 1.5px dashed #60a5fa;
  border-radius: var(--radius-sm);
  padding: 1.35rem;
  margin: 1.25rem 0;
}

.roadside-phrase {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  color: #eff6ff;
  line-height: 1.65;
}

.solicitor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

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

.solicitor-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.solicitor-card:hover {
  border-color: #60a5fa;
  background: rgba(255, 255, 255, 0.08);
}

.solicitor-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.35rem;
}

.solicitor-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.25);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.4);
  margin-bottom: 0.75rem;
}

.solicitor-tag.free-tag {
  background: rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
  border-color: rgba(52, 211, 153, 0.4);
}

.solicitor-card p {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.solicitor-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: #e2e8f0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.solicitor-contacts a {
  color: #60a5fa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.solicitor-contacts a:hover {
  color: #93c5fd;
}

.warning-callout-red {
  background: rgba(239, 68, 68, 0.15);
  border: 1.5px solid #f87171;
  border-radius: var(--radius-sm);
  padding: 1.35rem;
  margin: 1.5rem 0;
}

.warning-callout-red strong {
  color: #fca5a5;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.warning-callout-red p {
  font-size: 0.95rem;
  color: #fecaca;
  line-height: 1.6;
  margin: 0;
}

.legal-source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (max-width: 860px) {
  .legal-source-grid {
    grid-template-columns: 1fr;
  }
}

.legal-source-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

.legal-source-card strong {
  display: block;
  color: #93c5fd;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.legal-source-card p {
  color: #cbd5e1;
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.legal-source-card a {
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ==========================================================================
   Travel Abroad Guide Card (International Border & Airport Protocol)
   ========================================================================== */
.travel-card {
  background: #091224;
  color: #ffffff;
  border: 2px solid #0284c7;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin: 2.5rem 0;
  box-shadow: 0 8px 30px rgba(2, 132, 199, 0.12);
}

.travel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

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

.travel-step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.travel-step-card:hover {
  border-color: #38bdf8;
  background: rgba(255, 255, 255, 0.07);
}

.travel-step-num {
  color: #38bdf8;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
  display: block;
}

.travel-step-card h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.travel-step-card p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.customs-phrase-box {
  background: rgba(2, 132, 199, 0.15);
  border: 1.5px dashed #38bdf8;
  border-radius: var(--radius-sm);
  padding: 1.35rem;
  margin: 1.25rem 0;
}

.customs-phrase {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #f0f9ff;
  line-height: 1.65;
}

.red-flag-box {
  background: rgba(220, 38, 38, 0.12);
  border: 1.5px solid #ef4444;
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.red-flag-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fca5a5;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.red-flag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 680px) {
  .red-flag-grid {
    grid-template-columns: 1fr;
  }
}

.red-flag-item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.red-flag-item strong {
  color: #fca5a5;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.3rem;
}

.red-flag-item p {
  color: #e2e8f0;
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   Workplace & Employment Rights Guide
   ========================================================================== */
.workplace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

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

.workplace-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.workplace-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
  border-color: var(--color-accent-teal);
}

.workplace-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.workplace-badge.law {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.workplace-badge.adjustments {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.workplace-badge.testing {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
}

.workplace-badge.safety {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.workplace-badge.strategy {
  background: #f5f3ff;
  color: #6d28d9;
  border: 1px solid #ddd6fe;
}

.workplace-badge.fitnote {
  background: #ecfeff;
  color: #0e7490;
  border: 1px solid #a5f3fc;
}

[data-theme="dark"] .workplace-badge.law {
  background: rgba(37, 99, 235, 0.2);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.4);
}

[data-theme="dark"] .workplace-badge.adjustments {
  background: rgba(22, 163, 74, 0.2);
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.4);
}

[data-theme="dark"] .workplace-badge.testing {
  background: rgba(217, 119, 6, 0.2);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.4);
}

[data-theme="dark"] .workplace-badge.safety {
  background: rgba(220, 38, 38, 0.2);
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.4);
}

[data-theme="dark"] .workplace-badge.strategy {
  background: rgba(109, 40, 217, 0.2);
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.4);
}

[data-theme="dark"] .workplace-badge.fitnote {
  background: rgba(14, 116, 144, 0.2);
  color: #67e8f9;
  border-color: rgba(6, 182, 212, 0.4);
}

.workplace-card h4 {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.workplace-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.workplace-callout-strip {
  background: rgba(13, 148, 136, 0.08);
  border-left: 4px solid var(--color-accent-teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.15rem 1.35rem;
  margin-top: 1.5rem;
}

.workplace-callout-strip strong {
  color: var(--ink);
  font-size: 0.98rem;
  display: block;
  margin-bottom: 0.35rem;
}

.workplace-callout-strip p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   Medical Cannabis Section Navigation Hub & Sticky QuickNav
   ========================================================================== */

/* Smooth Anchor Scrolling & Offset */
html {
  scroll-behavior: smooth;
}

#quick-facts,
#how-it-works,
#conditions,
#clinics,
#pricing-calculator,
#driving-rights,
#travel-abroad,
#checker {
  scroll-margin-top: 115px;
}

/* 1. Top In-Page Guide Directory Hub */
.guide-contents-box {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0 2.5rem;
  box-shadow: var(--shadow-subtle);
  position: relative;
  overflow: hidden;
}

.guide-contents-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.guide-contents-subtitle {
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 600;
}

.guide-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .guide-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .guide-nav-grid {
    grid-template-columns: 1fr;
  }
}

.guide-nav-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-body);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.guide-nav-card:hover {
  transform: translateY(-2px);
  border-color: #0f766e;
  background: var(--bg-surface);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.1);
}

.guide-nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.guide-nav-card:hover .guide-nav-icon {
  transform: scale(1.08);
}

[data-theme="dark"] .guide-nav-icon {
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
}

.guide-nav-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.guide-nav-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}

.guide-nav-hint {
  font-size: 0.76rem;
  color: var(--ink-muted);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.15rem;
}

.guide-nav-arrow {
  font-size: 1rem;
  color: var(--ink-faint);
  transition: transform 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}

.guide-nav-card:hover .guide-nav-arrow {
  transform: translateX(3px);
  color: #0f766e;
}

[data-theme="dark"] .guide-nav-card:hover .guide-nav-arrow {
  color: #2dd4bf;
}

/* 2. Sticky Sub-Nav Ribbon */
.sticky-quicknav {
  position: sticky;
  top: 59px;
  z-index: 85;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 222, 210, 0.9);
  box-shadow: 0 4px 16px rgba(35, 27, 18, 0.05);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.sticky-quicknav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

[data-theme="dark"] .sticky-quicknav {
  background: rgba(11, 17, 30, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.sticky-quicknav-inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sticky-quicknav-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-quicknav-track {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px;
  flex-grow: 1;
}

.sticky-quicknav-track::-webkit-scrollbar {
  display: none;
}

.quicknav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.36rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--ink-soft);
  transition: all 0.16s ease;
}

.quicknav-pill:hover {
  border-color: #0f766e;
  color: #0f766e;
  background: #f0fdfa;
}

[data-theme="dark"] .quicknav-pill {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

[data-theme="dark"] .quicknav-pill:hover {
  border-color: #2dd4bf;
  color: #2dd4bf;
  background: rgba(45, 212, 191, 0.12);
}

.quicknav-pill.active {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
}

[data-theme="dark"] .quicknav-pill.active {
  background: #0d9488;
  border-color: #14b8a6;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(13, 148, 136, 0.45);
}

/* ==========================================================================
   Interactive Statutory Eligibility Checker (Tactile, Accessible & Clear)
   ========================================================================== */
.eligibility-box {
  background: var(--bg-surface);
  border: 2px solid #a7f3d0;
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  margin: 3.5rem 0;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.08);
  position: relative;
  overflow: hidden;
}

.eligibility-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #0f766e, #14b8a6);
}

.eligibility-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.eligibility-badge-confidential {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Live Progress Meter */
.criteria-progress-container {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  margin: 1.25rem 0 2rem;
}

.criteria-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.criteria-progress-track {
  width: 100%;
  height: 8px;
  background: var(--border-subtle);
  border-radius: 999px;
  overflow: hidden;
}

.criteria-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0d9488, #10b981);
  border-radius: 999px;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Criteria Cards Stack */
.criteria-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.criteria-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-surface-subtle);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  user-select: none;
}

.criteria-card:hover {
  background: var(--bg-surface-blue);
  border-color: #5eead4;
  transform: translateY(-1px);
  box-shadow: var(--shadow-subtle);
}

.criteria-card.is-checked {
  background: #f0fdf4;
  border-color: #34d399;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.12);
}

.criteria-checkbox-native {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.criteria-card-left {
  flex-shrink: 0;
  margin-top: 2px;
}

.criteria-custom-box {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 2px solid var(--border-subtle);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.18s ease;
}

.criteria-card:hover .criteria-custom-box {
  border-color: #0f766e;
}

.criteria-card.is-checked .criteria-custom-box {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
  transform: scale(1.05);
}

.criteria-card-content {
  flex-grow: 1;
}

.criteria-step-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f766e;
  margin-bottom: 0.25rem;
}

.criteria-card-title {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.criteria-card-desc {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0 0 0.6rem 0;
}

.criteria-hint {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #0f766e;
  background: rgba(15, 118, 110, 0.08);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-xs);
  width: fit-content;
}

.eligibility-actions-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Result Box */
.checker-result {
  display: none;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 2rem;
  border: 2px solid transparent;
  animation: fadeInResult 0.3s ease;
}

@keyframes fadeInResult {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Human Quote & Founder Note
   ========================================================================== */
.founder-note {
  background: var(--bg-surface-subtle);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 2rem;
  margin: 3.5rem 0;
}

.founder-note h4 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.founder-note p {
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ==========================================================================
   Footer (Rich, Grounded, Reassuring)
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background-color: #0b1324;
  color: #94a3b8;
  padding: 3.5rem 1.5rem 2rem;
  border-top: 1px solid #1e293b;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Trust Bar / Feature Strip */
.footer-trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #1e293b;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}

.trust-pill svg {
  color: #38bdf8;
  flex-shrink: 0;
}

.trust-pill strong {
  color: #ffffff;
}

/* Main 4-Column Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1e293b;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-about {
  padding-right: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-text {
  color: #ffffff;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

.footer-emergency-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-xs);
  padding: 0.75rem 0.9rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #fca5a5;
}

.footer-emergency-notice strong {
  color: #ffffff;
}

.footer-emergency-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-heading {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.15rem;
}

.footer-link-list,
.footer-helpline-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.footer-link-list a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
  display: inline-block;
}

.footer-link-list a:hover {
  color: #38bdf8;
  transform: translateX(2px);
}

.footer-helpline-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-bottom: 0.4rem;
}

.helpline-label {
  font-size: 0.78rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.helpline-number {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.helpline-number a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 700;
}

.helpline-number a:hover {
  text-decoration: underline;
}

.footer-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  color: #38bdf8;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-arrow-link:hover {
  text-decoration: underline;
}

/* Sub-footer Bottom Bar */
.footer-sub-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-copyright {
  color: #64748b;
}

.footer-sub-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-sub-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-sub-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.back-to-top {
  color: #38bdf8 !important;
  font-weight: 600;
  cursor: pointer;
}

.back-to-top:hover {
  color: #7dd3fc !important;
}

/* ==========================================================================
   Responsive Navigation & Footer (Mobile Media Queries)
   ========================================================================== */
@media (max-width: 1040px) {
  /* Mobile Navbar Drawer */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    display: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.2s ease;
  }

  .site-header.nav-open .nav-container {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-links li {
    display: block;
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-xs);
    white-space: normal;
  }

  .nav-cta-wrap {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
  }

  .nav-urgent-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .clinic-comparison-grid {
    grid-template-columns: 1fr;
  }
  .hero-editorial h1 {
    font-size: 2.3rem;
  }

  /* Mobile Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col-about {
    padding-right: 0;
  }

  .footer-sub-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   Dark Mode Component Overrides
   ========================================================================== */
[data-theme="dark"] .script-builder-box {
  border-color: #2563eb;
}

[data-theme="dark"] .script-output {
  background: #192437;
  border-color: #3b82f6;
}

[data-theme="dark"] .script-output-text {
  background: #0d1320;
  border-color: #25334c;
  color: #e2e8f0;
}

/* Cost Calculator Dark Mode Enhancements */
[data-theme="dark"] .calc-container {
  background: #0d1527;
  border-color: #0d9488;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .range-slider-wrapper {
  background: #070d1a;
  border-color: #1e293b;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .slider-val-badge {
  color: #2dd4bf;
  background: rgba(45, 212, 191, 0.15);
  border-color: rgba(45, 212, 191, 0.35);
}

[data-theme="dark"] .slider-input {
  background: #1e293b;
  accent-color: #2dd4bf;
}

[data-theme="dark"] .slider-input::-webkit-slider-runnable-track {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .slider-input::-webkit-slider-thumb {
  background: #2dd4bf;
  border-color: #0f172a;
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.6), 0 2px 6px rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .slider-input::-webkit-slider-thumb:hover {
  background: #5eead4;
}

[data-theme="dark"] .slider-input::-moz-range-track {
  background: #1e293b;
  border-color: #334155;
}

[data-theme="dark"] .slider-input::-moz-range-thumb {
  background: #2dd4bf;
  border-color: #0f172a;
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.6);
}

[data-theme="dark"] .slider-scale-labels {
  color: #94a3b8;
}

[data-theme="dark"] .calc-card.alternaleaf-res {
  background: #082628;
  border: 1.5px solid #0d9488;
}

[data-theme="dark"] .calc-card.alternaleaf-res .calc-card-title {
  color: #2dd4bf;
}

[data-theme="dark"] .calc-card.alternaleaf-res .calc-price-big {
  color: #5eead4;
}

[data-theme="dark"] .calc-card.alternaleaf-res .calc-card-sub {
  color: #99f6e4;
}

[data-theme="dark"] .calc-card.alternaleaf-res .calc-card-body {
  color: #e2e8f0;
}

[data-theme="dark"] .calc-card.alternaleaf-res .calc-card-footer {
  border-top-color: rgba(13, 148, 136, 0.35);
  color: #99f6e4;
}

[data-theme="dark"] .calc-card.alternaleaf-res .calc-card-footer strong {
  color: #5eead4;
}

[data-theme="dark"] .calc-card.mamedica-res {
  background: #07251c;
  border: 1.5px solid #059669;
}

[data-theme="dark"] .calc-card.mamedica-res .calc-card-title {
  color: #34d399;
}

[data-theme="dark"] .calc-card.mamedica-res .calc-price-big {
  color: #6ee7b7;
}

[data-theme="dark"] .calc-card.mamedica-res .calc-card-sub {
  color: #a7f3d0;
}

[data-theme="dark"] .calc-card.mamedica-res .calc-card-body {
  color: #e2e8f0;
}

[data-theme="dark"] .calc-card.mamedica-res .calc-card-footer {
  border-top-color: rgba(5, 150, 105, 0.35);
  color: #a7f3d0;
}

[data-theme="dark"] .calc-card.mamedica-res .calc-card-footer strong {
  color: #6ee7b7;
}

[data-theme="dark"] .clinic-comparison-box {
  background: linear-gradient(180deg, #141c2d 0%, #0d222a 100%);
  border-color: #0d9488;
}

[data-theme="dark"] .clinic-box.mamedica {
  background: linear-gradient(180deg, #141c2d 0%, #082d22 100%);
  border-color: #059669;
}

[data-theme="dark"] .clinic-box.alternaleaf {
  background: linear-gradient(180deg, #141c2d 0%, #072c2c 100%);
  border-color: #0d9488;
}

[data-theme="dark"] .easy-read-box {
  background: linear-gradient(180deg, #141c2d 0%, #082d22 100%);
  border-color: #059669;
}

[data-theme="dark"] .easy-read-header {
  border-bottom-color: rgba(5, 150, 105, 0.35);
}

[data-theme="dark"] .easy-read-title {
  color: #34d399;
}

[data-theme="dark"] .easy-read-tag {
  background: #064e3b;
  color: #6ee7b7;
  border: 1px solid #059669;
}

[data-theme="dark"] .easy-read-lead {
  color: #a7f3d0;
}

[data-theme="dark"] .easy-read-item {
  background: #091c1d;
  border-color: #0d9488;
}

[data-theme="dark"] .easy-read-item strong {
  color: #34d399;
}

[data-theme="dark"] .easy-read-item p {
  color: #e2e8f0;
}

[data-theme="dark"] #criteriaProgressText {
  color: #2dd4bf !important;
}

[data-theme="dark"] .criteria-card.is-checked {
  background: #082d22;
  border-color: #059669;
}

[data-theme="dark"] .eligibility-badge-confidential {
  background: #082d22;
  border-color: #059669;
  color: #34d399;
}

[data-theme="dark"] .ad-card {
  border-color: #0d9488;
}

[data-theme="dark"] .ad-card h2,
[data-theme="dark"] .ad-card h3 {
  color: #2dd4bf;
}

[data-theme="dark"] .ad-badge {
  background: #042f2e;
  border-color: #0d9488;
  color: #2dd4bf;
}

[data-theme="dark"] .btn-cannabis-outline {
  color: #2dd4bf;
  border-color: #2dd4bf;
}

[data-theme="dark"] .btn-cannabis-outline:hover {
  background: #0d9488;
  color: #ffffff;
}

[data-theme="dark"] .cannabis-glow-badge {
  background: #082d22;
  border-color: #059669;
  color: #34d399;
}

[data-theme="dark"] .criteria-step-tag {
  color: #34d399;
}

[data-theme="dark"] .criteria-hint {
  background: rgba(20, 184, 166, 0.15);
  color: #2dd4bf;
}

[data-theme="dark"] .police-legal-card {
  border-color: #25334c;
}

[data-theme="dark"] .step-card {
  background: #141c2d;
  border-color: #25334c;
}

[data-theme="dark"] .step-card:hover {
  border-color: #2dd4bf;
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.15);
}

[data-theme="dark"] .step-badge {
  background: #0d9488;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.35);
}

/* Police Rights 2x2 Grid */
.police-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 680px) {
  .police-rights-grid {
    grid-template-columns: 1fr;
  }
}

/* Clinic Highlights 3-Card Row */
.clinic-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 680px) {
  .clinic-highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* Symmetrical Dos and Don'ts Grid */
.dos-donts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 680px) {
  .dos-donts-grid {
    grid-template-columns: 1fr;
  }
}

/* Partner Guidance Cards */
.partner-card-avoid {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
}

.partner-card-avoid strong {
  color: #991b1b;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.5rem;
}

.partner-card-avoid ul {
  margin-left: 1.25rem;
  color: #7f1d1d;
  font-size: 0.92rem;
  line-height: 1.6;
}

.partner-card-try {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
}

.partner-card-try strong {
  color: #166534;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.5rem;
}

.partner-card-try ul {
  margin-left: 1.25rem;
  color: #14532d;
  font-size: 0.92rem;
  line-height: 1.6;
}

[data-theme="dark"] .partner-card-avoid {
  background: #2a1215;
  border-color: #7f1d1d;
}

[data-theme="dark"] .partner-card-avoid strong {
  color: #fca5a5;
}

[data-theme="dark"] .partner-card-avoid ul {
  color: #fecaca;
}

[data-theme="dark"] .partner-card-try {
  background: #092317;
  border-color: #065f46;
}

[data-theme="dark"] .partner-card-try strong {
  color: #86efac;
}

[data-theme="dark"] .partner-card-try ul {
  color: #bbf7d0;
}

/* Support Clubs Grid */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .clubs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.club-card-all-uk {
  grid-column: 1 / -1;
}

/* ==========================================================================
   Dark Mode Midnight Obsidian with Floating Bright Starfield Parallax
   ========================================================================== */
html[data-theme="dark"] {
  background-color: #0b111e;
}

html[data-theme="dark"] body {
  background-color: transparent !important;
}

#dark-parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background-color: #0b111e;
  transition: opacity 0.4s ease, visibility 0.4s;
}

[data-theme="dark"] #dark-parallax-bg {
  opacity: 1;
  visibility: visible;
}

/* Layer 1: Fine Crisp Distant Stars */
.stars-layer-deep {
  position: absolute;
  top: -20vh;
  left: -10vw;
  width: 120vw;
  height: 140vh;
  background-image: 
    radial-gradient(1.5px 1.5px at 40px 60px, #ffffff, transparent),
    radial-gradient(1px 1px at 160px 130px, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 290px 240px, #e2e8f0, transparent),
    radial-gradient(1px 1px at 430px 80px, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 570px 330px, #ffffff, transparent),
    radial-gradient(1px 1px at 730px 160px, #cbd5e1, transparent),
    radial-gradient(1.5px 1.5px at 870px 290px, #ffffff, transparent),
    radial-gradient(1px 1px at 990px 190px, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 210px 460px, #e2e8f0, transparent),
    radial-gradient(1px 1px at 490px 530px, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 790px 480px, #ffffff, transparent),
    radial-gradient(1px 1px at 1090px 540px, #cbd5e1, transparent);
  background-size: 450px 450px;
  opacity: 0.85;
  will-change: transform;
  animation: driftStarsSlow 65s linear infinite;
}

/* Layer 2: Mid-Field Bright Floating Stars */
.stars-layer-mid {
  position: absolute;
  top: -25vh;
  left: -15vw;
  width: 130vw;
  height: 150vh;
  background-image: 
    radial-gradient(2px 2px at 90px 140px, #ffffff, transparent),
    radial-gradient(2.5px 2.5px at 270px 70px, #ffffff, transparent),
    radial-gradient(2px 2px at 390px 280px, #ffffff, transparent),
    radial-gradient(2.5px 2.5px at 610px 110px, #ffffff, transparent),
    radial-gradient(2px 2px at 810px 340px, #ffffff, transparent),
    radial-gradient(3px 3px at 930px 90px, #ffffff, transparent),
    radial-gradient(2px 2px at 150px 410px, #ffffff, transparent),
    radial-gradient(2.5px 2.5px at 530px 480px, #ffffff, transparent),
    radial-gradient(2px 2px at 750px 390px, #ffffff, transparent),
    radial-gradient(3px 3px at 1020px 430px, #ffffff, transparent);
  background-size: 500px 500px;
  opacity: 0.95;
  will-change: transform;
  animation: driftStarsMedium 42s linear infinite;
}

/* Layer 3: Radiant Focal Stars with Bright Halo Sparkles */
.stars-layer-bright {
  position: absolute;
  top: -30vh;
  left: -20vw;
  width: 140vw;
  height: 160vh;
  background-image: 
    radial-gradient(3px 3px at 180px 220px, #ffffff, rgba(255, 255, 255, 0.45) 55%, transparent),
    radial-gradient(3.5px 3.5px at 500px 150px, #ffffff, rgba(255, 255, 255, 0.45) 55%, transparent),
    radial-gradient(3px 3px at 770px 270px, #ffffff, rgba(255, 255, 255, 0.45) 55%, transparent),
    radial-gradient(4px 4px at 1050px 130px, #ffffff, rgba(255, 255, 255, 0.55) 55%, transparent),
    radial-gradient(3.5px 3.5px at 330px 520px, #ffffff, rgba(255, 255, 255, 0.45) 55%, transparent),
    radial-gradient(4px 4px at 890px 470px, #ffffff, rgba(255, 255, 255, 0.55) 55%, transparent);
  background-size: 580px 580px;
  opacity: 1;
  will-change: transform;
  animation: driftStarsFast 28s ease-in-out infinite alternate;
}

/* Continuous Floating Animations */
@keyframes driftStarsSlow {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-35px, -75px, 0); }
}

@keyframes driftStarsMedium {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(40px, -90px, 0); }
}

@keyframes driftStarsFast {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-20px, 25px, 0) scale(1.06); }
  100% { transform: translate3d(25px, -20px, 0) scale(0.96); }
}

/* Occasional Elegant White Shooting Star */
.shooting-star-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shooting-star {
  position: absolute;
  top: 18%;
  left: -120px;
  width: 110px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.35), transparent);
  border-radius: 999px;
  filter: drop-shadow(0 0 5px #ffffff);
  transform: rotate(-35deg);
  opacity: 0;
  animation: meteorShoot 12s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

@keyframes meteorShoot {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(-35deg);
  }
  2% {
    opacity: 1;
  }
  6% {
    opacity: 0;
    transform: translate3d(110vw, 65vh, 0) rotate(-35deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(110vw, 65vh, 0) rotate(-35deg);
  }
}

/* Dark Mode Card Backgrounds Harmonised with Midnight Obsidian */
[data-theme="dark"] .bento-card,
[data-theme="dark"] .step-card,
[data-theme="dark"] .condition-card,
[data-theme="dark"] .quiz-box,
[data-theme="dark"] .club-card-item {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(20, 28, 45, 0.88);
  border-color: rgba(36, 51, 79, 0.9);
}

@media (prefers-reduced-motion: reduce) {
  .stars-layer-deep,
  .stars-layer-mid,
  .stars-layer-bright,
  .shooting-star {
    animation: none;
  }
}


