/* =====================================================================
   LeafTek — "Distribution Premium" theme
   Dark futuristic luxury. Matte black surfaces. Electric blue accents.
   Space Grotesk display, Inter body. Glassmorphism nav. Soft glow depth.
   Premium tech/SaaS distribution brand — not a cannabis shop.
   Loads AFTER main.css. Markup unchanged.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---------- 1. TOKENS — dark luxury palette ---------- */
:root {
  /* Surfaces */
  --c-cream: #050505;              /* page bg — matte black */
  --c-cream-soft: #0A0A0C;
  --c-paper: #111111;              /* cards */
  --c-paper-2: #0E0E10;            /* secondary bg */
  --c-paper-3: #161618;            /* elevated cards */
  --c-paper-glass: rgba(17, 17, 17, 0.72);

  /* Lines / borders */
  --c-line-hair: rgba(255, 255, 255, 0.06);
  --c-line: rgba(255, 255, 255, 0.08);
  --c-line-mid: rgba(255, 255, 255, 0.14);
  --c-line-strong: rgba(255, 255, 255, 0.24);

  /* Ink — text hierarchy */
  --c-ink: #F5F7FA;
  --c-ink-soft: rgba(245, 247, 250, 0.86);
  --c-ink-mid: rgba(255, 255, 255, 0.72);
  --c-ink-mute: rgba(255, 255, 255, 0.52);
  --c-ink-faint: rgba(255, 255, 255, 0.36);

  /* Accents — electric blue family */
  --c-forest: #2D7CFF;             /* primary electric blue */
  --c-forest-deep: #1F5FD9;        /* deeper blue */
  --c-forest-bright: #4D93FF;      /* hover lift */
  --c-leaf: #00D4FF;               /* cyan secondary accent */
  --c-leaf-soft: #6BE5FF;
  --c-gold: #00D4FF;               /* cyan stand-in for any gold token */
  --c-grape: #7C5CFF;              /* tertiary purple */

  /* Glow shadows — premium SaaS depth */
  --glow-primary: 0 0 0 1px rgba(45, 124, 255, 0.5), 0 0 32px rgba(45, 124, 255, 0.28);
  --glow-soft: 0 0 0 1px rgba(45, 124, 255, 0.3), 0 0 18px rgba(45, 124, 255, 0.14);
  --glow-cyan: 0 0 24px rgba(0, 212, 255, 0.22);
  --shadow-card: 0 24px 48px -16px rgba(0, 0, 0, 0.7), 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 32px 64px -16px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(45, 124, 255, 0.3), 0 0 32px rgba(45, 124, 255, 0.18);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);

  /* Radii — premium soft corners */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 22px;
}

html, body {
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  letter-spacing: 0;
}

/* ---------- 2. ATMOSPHERIC BACKDROP — gradient mesh + grain ---------- */
body {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 25% 0%, rgba(45, 124, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 10% 100%, rgba(124, 92, 255, 0.05) 0%, transparent 55%),
    var(--c-cream);
  background-attachment: fixed;
}

/* Subtle film grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.5) 0px, rgba(255,255,255,0.5) 1px, transparent 1px, transparent 2px);
  mix-blend-mode: overlay;
}

/* ---------- 3. TYPOGRAPHY — Space Grotesk + Inter ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  line-height: 1.08;
}

h1 {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(245, 247, 250, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h4 {
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

p, li, td, th, label, input, textarea, select, button {
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink-mid);
}

/* Eyebrow — clean kicker */
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-leaf);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  margin-bottom: 20px;
  box-shadow: none;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--c-leaf);
  opacity: 0.7;
}

/* Section labels */
.section-label,
.kicker {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-leaf);
}

/* ---------- 4. HEADER — glassmorphism dark ---------- */
.site-header {
  background: rgba(10, 10, 12, 0.72) !important;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border-bottom: 1px solid var(--c-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
}

.brand {
  color: var(--c-ink);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-leaf) 100%);
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 6px 9px;
  border-radius: var(--r-sm);
  margin-right: 4px;
  box-shadow: 0 0 0 1px rgba(45, 124, 255, 0.3), 0 4px 14px rgba(45, 124, 255, 0.4);
  transform: none;
}

.nav__link,
.nav a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-ink-mid);
  position: relative;
  padding: 10px 4px;
  transition: color 0.18s ease;
}

.nav__link:hover,
.nav a:hover {
  color: var(--c-leaf);
}

.nav__link::after,
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--c-forest) 0%, var(--c-leaf) 100%);
  transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 1px;
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after,
.nav a:hover::after,
.nav a.is-active::after,
.nav a[aria-current="page"]::after {
  right: 0;
}

.nav__link[aria-current="page"],
.nav a.is-active,
.nav a[aria-current="page"] {
  color: var(--c-ink);
}

/* Header tools — icon buttons */
.icon-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-line);
  color: var(--c-ink-mid);
  border-radius: var(--r-sm);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}

.icon-btn:hover {
  background: rgba(45, 124, 255, 0.12);
  border-color: rgba(45, 124, 255, 0.4);
  color: var(--c-leaf);
}

/* Compliance bar — premium dark strip */
.compliance-bar {
  background: linear-gradient(90deg, #0A0A0C 0%, #111114 50%, #0A0A0C 100%) !important;
  color: var(--c-ink-mid) !important;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--c-line);
  padding: 9px 0;
  position: relative;
  overflow: hidden;
}

.compliance-bar::before {
  content: '◆ ';
  margin-right: 6px;
  color: var(--c-leaf);
}

.compliance-bar a {
  color: var(--c-leaf) !important;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.compliance-bar a:hover {
  border-bottom-color: var(--c-leaf);
}

/* ---------- 5. BUTTONS — electric blue gradient + glass ---------- */
.btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  position: relative;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn--lg {
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--r-md);
}

.btn--sm {
  font-size: 13px;
  padding: 9px 16px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-forest-deep) 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(45, 124, 255, 0.4), 0 8px 24px rgba(45, 124, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--c-forest-bright) 0%, var(--c-forest) 100%);
  box-shadow: 0 0 0 1px rgba(77, 147, 255, 0.5), 0 12px 32px rgba(45, 124, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

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

.btn--secondary,
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-ink);
  border: 1px solid var(--c-line-mid);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn--secondary:hover,
.btn--ghost:hover {
  background: rgba(45, 124, 255, 0.1);
  border-color: rgba(45, 124, 255, 0.5);
  color: var(--c-leaf);
  box-shadow: 0 0 24px rgba(45, 124, 255, 0.15);
  transform: translateY(-1px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--c-leaf) 0%, #00B8E0 100%);
  color: #000000;
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.4), 0 6px 20px rgba(0, 212, 255, 0.3);
  font-weight: 700;
}

.btn--gold:hover {
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.5), 0 10px 28px rgba(0, 212, 255, 0.45);
  transform: translateY(-1px);
}

/* ---------- 6. CARDS — floating dark surfaces ---------- */
.card,
.product-card,
.feature-card,
.testimonial,
.faq-item,
.guide-card,
.resource-card,
.spec-card,
.lab-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.22s ease,
              box-shadow 0.28s ease;
  overflow: hidden;
}

.card:hover,
.product-card:hover,
.feature-card:hover,
.guide-card:hover,
.resource-card:hover,
.lab-card:hover {
  border-color: rgba(45, 124, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* ---------- 7. PRODUCT CARDS — premium SaaS catalog ---------- */
.product-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  line-height: 1.15;
}

.product-card__strain,
.product-card__taxonomy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-ink-mute);
  letter-spacing: 0.02em;
}

.product-card__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}

.product-card__price small,
.product-card__price-unit {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--c-ink-mute);
  font-weight: 500;
}

.product-card__potency {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--c-ink-mid);
}

.product-card__potency strong {
  color: var(--c-leaf);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.product-card__coa {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--c-ink-faint);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Strain tags / chips */
.tag,
.chip,
.badge,
.product-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-line);
  color: var(--c-ink-mid);
  display: inline-block;
  transition: all 0.15s ease;
}

.chip--hybrid,
.chip--indica,
.chip--sativa,
.chip--filled {
  background: rgba(45, 124, 255, 0.14);
  color: var(--c-leaf);
  border-color: rgba(45, 124, 255, 0.32);
}

.tag--green,
.chip--green,
.chip--gold,
.tag--gold,
.badge--gold,
.badge--featured,
.tag--featured {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.18) 0%, rgba(45, 124, 255, 0.18) 100%);
  color: var(--c-leaf);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}

/* Effect dots */
.product-card__effect-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  margin-right: 2px;
}

.product-card__effect-dot.is-on {
  background: var(--c-leaf);
  box-shadow: 0 0 6px rgba(0, 212, 255, 0.6);
}

/* Product card image / placeholder */
.product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
}

.product-card__placeholder,
.hero__image-placeholder {
  background: linear-gradient(140deg, #14141A 0%, #0A0A0E 100%) !important;
  color: var(--c-ink-mute) !important;
  border-bottom: 1px solid var(--c-line);
}

/* ---------- 8. HERO — cinematic gradient mesh ---------- */
.hero,
.section--hero {
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(45, 124, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(124, 92, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, #050505 0%, #0A0A0C 100%);
  overflow: hidden;
  padding: 100px 0 120px;
  border-bottom: 1px solid var(--c-line);
}

/* Grid lines mesh overlay */
.hero::before,
.section--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
}

/* Soft floating orb on right */
.hero::after,
.section--hero::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 124, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.hero .container,
.section--hero .container {
  position: relative;
  z-index: 1;
}

.hero p,
.section--hero p,
.lede {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--c-ink-mid);
  max-width: 60ch;
}

/* Hero badges */
.hero__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ---------- 9. TRUST STRIP — premium glass cards ---------- */
.trust-strip {
  background: linear-gradient(180deg, #050505 0%, #0A0A0C 100%);
  border-bottom: 1px solid var(--c-line);
  padding: 56px 0;
  position: relative;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.22s ease;
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(45, 124, 255, 0.5) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.trust-item:hover {
  border-color: rgba(45, 124, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(45, 124, 255, 0.15);
}

.trust-item:hover::before {
  opacity: 1;
}

.trust-item__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 124, 255, 0.1);
  border: 1px solid rgba(45, 124, 255, 0.28);
  border-radius: var(--r-sm);
  color: var(--c-leaf);
}

.trust-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.trust-item > div:last-child {
  font-size: 13px;
  color: var(--c-ink-mute);
  line-height: 1.5;
}

.trust-item a {
  color: var(--c-leaf);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

/* ---------- 10. SECTIONS — alternating dark surfaces ---------- */
.section {
  background: var(--c-cream);
  position: relative;
  padding: 96px 0;
}

.section--alt,
.section--soft,
.section--cream {
  background: var(--c-paper-2);
}

.section--feature,
.section--paper {
  background: var(--c-paper-2);
}

.section h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  margin-bottom: 16px;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-forest) 0%, var(--c-leaf) 100%);
  border-radius: 1px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-head__intro {
  flex: 1;
  min-width: 280px;
}

.section-head__intro p {
  color: var(--c-ink-mute);
  font-size: 15px;
  max-width: 60ch;
  margin-top: 8px;
}

/* ---------- 11. FORMS — dark inputs w/ electric focus ---------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--c-line-mid) !important;
  color: var(--c-ink) !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(45, 124, 255, 0.6) !important;
  box-shadow: 0 0 0 4px rgba(45, 124, 255, 0.14), 0 0 18px rgba(45, 124, 255, 0.18) !important;
}

/* Dropdown <option> contrast.
   The select rule above sets color:#F5F7FA (near-white) for selects, and
   <option> elements inherit that color. Chrome renders the dropdown popover
   with a system-default light background, which makes near-white option text
   invisible — users see only the currently selected option (highlighted blue
   by the OS) and conclude the other sizes are missing.
   This rule forces a dark text + light background on every <option> so all
   sizes (3.5g, 7g, 14g, 28g) render readably in the open dropdown. */
select option,
select optgroup {
  color: #18221C !important;
  background: #FFFFFF !important;
}

label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-ink);
  margin-bottom: 8px;
  display: block;
}

::placeholder {
  color: var(--c-ink-faint);
  opacity: 1;
  font-weight: 400;
}

/* ---------- 12. STAT READOUTS ---------- */
.stat,
.metric,
.stat-block {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.stat::before,
.metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-forest), transparent);
  opacity: 0.5;
}

.stat__value,
.metric__value,
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat__label,
.metric__label,
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-ink-mute);
  margin-top: 8px;
  letter-spacing: 0;
}

/* ---------- 13. TABLES — dark data grid ---------- */
table {
  border-collapse: collapse;
  width: 100%;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

thead {
  background: rgba(255, 255, 255, 0.03);
}

th {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ink-mid);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-line-hair);
  color: var(--c-ink-soft);
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

tr:hover td {
  background: rgba(45, 124, 255, 0.04);
}

/* ---------- 14. FOOTER — premium structured dark ---------- */
.site-footer {
  background: linear-gradient(180deg, #050505 0%, #000000 100%) !important;
  border-top: 1px solid var(--c-line);
  color: var(--c-ink-mute);
  padding: 80px 0 32px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-forest) 50%, transparent 100%);
  opacity: 0.5;
}

.site-footer h3,
.site-footer h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: var(--c-ink);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 18px;
}

.site-footer a {
  color: var(--c-ink-mute);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.15s ease;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--c-leaf);
}

.site-footer__bottom,
.footer-bottom {
  border-top: 1px solid var(--c-line);
  padding-top: 24px;
  margin-top: 48px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--c-ink-faint);
  letter-spacing: 0;
}

/* ---------- 15. CTA BLOCKS ---------- */
.cta-block,
.section--cta {
  background:
    radial-gradient(circle at 25% 50%, rgba(45, 124, 255, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 75% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 55%),
    linear-gradient(135deg, #0A0A0E 0%, #111114 100%);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.cta-block::before,
.section--cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-leaf), transparent);
  opacity: 0.5;
}

.cta-block h2,
.section--cta h2 {
  color: var(--c-ink);
}

/* ---------- 16. SIDE CARDS / FEATURE CALLOUTS ---------- */
.side-card,
.side-card--forest {
  background:
    radial-gradient(circle at 30% 30%, rgba(45, 124, 255, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, #0A0A0E 0%, #14141A 100%);
  color: var(--c-ink);
  border: 1px solid rgba(45, 124, 255, 0.28);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
  box-shadow: var(--shadow-card), 0 0 32px rgba(45, 124, 255, 0.1);
  overflow: hidden;
}

.side-card h2,
.side-card h3 {
  color: var(--c-ink);
}

.side-card h2::after,
.side-card h3::after {
  background: linear-gradient(90deg, var(--c-forest) 0%, var(--c-leaf) 100%);
}

.side-card .btn--primary {
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-leaf) 100%);
  color: #FFFFFF;
}

/* ---------- 17. ACCORDIONS / FAQ ---------- */
.faq-item,
details {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}

.faq-item:hover,
details:hover,
details[open] {
  border-color: rgba(45, 124, 255, 0.28);
}

.faq-item__question,
summary {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  float: right;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--c-leaf);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  content: '−';
}

.faq-item__answer,
details > *:not(summary) {
  font-family: 'Inter', sans-serif;
  color: var(--c-ink-mid);
  line-height: 1.6;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--c-line-hair);
  font-size: 15px;
}

/* ---------- 18. PRICE TIER CARDS ---------- */
.tier-card,
.pricing-card,
.plan-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.22s ease;
}

.tier-card:hover,
.pricing-card:hover,
.plan-card:hover {
  border-color: rgba(45, 124, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.tier-card--featured,
.pricing-card--featured,
.plan-card--featured {
  background:
    radial-gradient(circle at 30% 0%, rgba(45, 124, 255, 0.14) 0%, transparent 55%),
    var(--c-paper);
  border: 1px solid rgba(45, 124, 255, 0.4);
  box-shadow: var(--shadow-card), 0 0 48px rgba(45, 124, 255, 0.15);
}

.tier-card--featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-leaf) 100%);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(45, 124, 255, 0.4);
}

.tier-card__name,
.pricing-card__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}

.tier-card__price,
.pricing-card__price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--c-ink);
  line-height: 1;
  margin: 16px 0;
  letter-spacing: -0.03em;
}

/* ---------- 19. NAV MOBILE / DRAWER ---------- */
.nav-mobile,
.mobile-nav,
.drawer {
  background: rgba(5, 5, 5, 0.94) !important;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-left: 1px solid var(--c-line);
}

.nav-mobile a,
.mobile-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--c-ink) !important;
  border-bottom: 1px solid var(--c-line-hair);
  padding: 18px 0;
  text-transform: none;
}

.nav-mobile a:hover,
.mobile-nav a:hover {
  color: var(--c-leaf) !important;
}

/* ---------- 20. UTILITY ---------- */
.text-green,
.text-forest,
.text-primary {
  color: var(--c-leaf) !important;
}

.text-gold {
  color: var(--c-leaf) !important;
}

.text-mute,
.text-muted {
  color: var(--c-ink-mute) !important;
}

a {
  color: var(--c-leaf);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

a:hover {
  color: var(--c-leaf-soft);
  opacity: 1;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.brand, .nav__link, .nav a, .btn,
.nav-mobile a, .mobile-nav a,
.product-card a, .card a,
.site-footer a {
  text-decoration: none;
}

/* ---------- 21. SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0A0A0C;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 2px solid #0A0A0C;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--c-forest);
}

/* ---------- 22. SELECTION ---------- */
::selection {
  background: var(--c-forest);
  color: #FFFFFF;
}

::-moz-selection {
  background: var(--c-forest);
  color: #FFFFFF;
}

/* ---------- 23. HORIZONTAL RULE ---------- */
hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-line-mid) 30%, var(--c-line-mid) 70%, transparent 100%);
  margin: 40px 0;
}

/* ---------- 24. LAB / COA CALLOUTS ---------- */
.lab-card,
.coa-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-forest);
  padding: 24px 28px;
  border-radius: var(--r-md);
  position: relative;
}

.lab-card__metric,
.coa-card__metric {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--c-ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.lab-card__label,
.coa-card__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-ink-mute);
  letter-spacing: 0;
}

/* ---------- 25. FEATURED PRODUCT BADGE ---------- */
.product-card--featured {
  border-color: rgba(45, 124, 255, 0.4);
  box-shadow: var(--shadow-card), 0 0 24px rgba(45, 124, 255, 0.12);
}

.product-card--featured::after {
  content: 'Featured';
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-leaf) 100%);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 3;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(45, 124, 255, 0.4);
}

/* ---------- 26. HERO CTA STACK ---------- */
.hero__cta,
.hero-actions,
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ---------- 27. TERPENE / EFFECT BARS ---------- */
.terpene-bar,
.effect-row,
.cannabinoid-bar {
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: 999px !important;
  height: 6px !important;
  overflow: hidden;
}

.terpene-bar__fill,
.effect-row__fill,
.cannabinoid-bar__fill {
  background: linear-gradient(90deg, var(--c-forest) 0%, var(--c-leaf) 100%) !important;
  border-radius: 999px !important;
  height: 100% !important;
  box-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

/* ---------- 28. PILL FILTERS / TABS ---------- */
.pill,
.filter-pill,
.tab {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 8px 16px;
  border: 1px solid var(--c-line-mid);
  background: rgba(255, 255, 255, 0.03);
  color: var(--c-ink-mid);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.pill:hover,
.filter-pill:hover,
.tab:hover {
  border-color: rgba(45, 124, 255, 0.4);
  color: var(--c-leaf);
  background: rgba(45, 124, 255, 0.06);
}

.pill[aria-pressed="true"],
.pill.is-active,
.filter-pill.is-active,
.tab.is-active,
.tab[aria-selected="true"] {
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-forest-deep) 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(45, 124, 255, 0.32);
}

/* ---------- 29. BLOCKQUOTE ---------- */
blockquote {
  border-left: 3px solid var(--c-forest);
  padding: 20px 24px;
  margin: 32px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  color: var(--c-ink);
  background: var(--c-paper);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

/* ---------- 30. AGE GATE — premium dark modal ---------- */
.age-gate,
.age-verification,
#age-gate {
  background: rgba(5, 5, 5, 0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.age-gate__modal,
.age-verification__modal,
#age-gate .modal {
  background:
    radial-gradient(circle at 30% 0%, rgba(45, 124, 255, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, #0A0A0E 0%, #111114 100%) !important;
  border: 1px solid var(--c-line-mid) !important;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card), 0 0 64px rgba(45, 124, 255, 0.15);
  padding: 48px 40px;
}

/* ---------- 31. ACCESSIBILITY — reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
