/* Weed from Heaven — retail bud menu, dark high-energy UI (weedfromheaven.co.za) */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap");

:root {
  --bg-void: #050806;
  --bg-deep: #0a100c;
  --bg-card: #0f1812;
  --bg-elevated: #141f17;
  --surface-glass: rgba(20, 35, 25, 0.65);
  --neon-lime: #bfff00;
  --lime-glow: #c8ff3d;
  --lime-dim: #6a8f2a;
  --amber: #ffab40;
  --amber-deep: #c97800;
  --purple: #b366ff;
  --purple-deep: #7c3aed;
  --text: #e8ffea;
  --text-muted: #8faa90;
  --border: rgba(191, 255, 0, 0.12);
  --border-bright: rgba(191, 255, 0, 0.35);
  --shadow-lime: 0 0 40px rgba(191, 255, 0, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: "Syne", "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

::view-transition-group(*),
::view-transition-old(*),
::view-transition-new(*) {
  animation-duration: 0.25s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--lime-glow);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

#app[hidden] {
  display: none !important;
}

#app {
  position: relative;
  isolation: isolate;
}

/* Full-viewport floating leaves (under UI, above void bg) */
.leaf-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#app > header,
#app > main,
#app > footer {
  position: relative;
  z-index: 1;
}

.leaf {
  position: absolute;
  width: var(--leaf-w, 100px);
  will-change: transform, opacity;
  animation: leaf-drift var(--ldur, 16s) ease-in-out infinite;
  animation-delay: var(--ldelay, 0s);
  opacity: var(--lopacity, 0.45);
}

.leaf__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px 14px 3px 12px;
  object-fit: cover;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
  filter: drop-shadow(0 0 10px rgba(80, 200, 90, 0.25)) saturate(1.1);
  pointer-events: none;
}

.leaf--flip .leaf__img {
  transform: scaleX(-1);
}

.leaf--glow-amber .leaf__img {
  filter: drop-shadow(0 0 14px rgba(255, 171, 64, 0.35)) saturate(1.15);
}

.leaf--glow-purple .leaf__img {
  filter: drop-shadow(0 0 14px rgba(179, 102, 255, 0.3)) saturate(1.1);
}

@keyframes leaf-drift {
  0% {
    transform: translate(0, 0) rotate(var(--lrot, 0deg)) scale(1);
  }
  20% {
    transform: translate(12px, -22px) rotate(calc(var(--lrot, 0deg) + 8deg)) scale(1.02);
  }
  45% {
    transform: translate(-8px, -45px) rotate(calc(var(--lrot, 0deg) - 6deg)) scale(0.98);
  }
  70% {
    transform: translate(18px, 15px) rotate(calc(var(--lrot, 0deg) + 10deg)) scale(1.04);
  }
  100% {
    transform: translate(0, 0) rotate(var(--lrot, 0deg)) scale(1);
  }
}

/* --- Age gate --- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(60, 100, 40, 0.25), transparent 55%),
    linear-gradient(180deg, #030504 0%, #0a0f0b 100%);
  view-transition-name: age-gate;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  box-shadow: var(--shadow-lime), 0 25px 80px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.age-gate__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--neon-lime);
  text-shadow: 0 0 30px rgba(191, 255, 0, 0.5);
  margin: 0 0 8px;
}

.age-gate__sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 28px;
}

.age-gate__legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

.age-gate__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--neon-lime), var(--lime-dim));
  color: #0a0f0a;
  box-shadow: 0 0 24px rgba(191, 255, 0, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 0 36px rgba(191, 255, 0, 0.5);
}

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

.btn--secondary:hover {
  border-color: var(--neon-lime);
  color: var(--neon-lime);
}

.btn--amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #1a0f00;
}

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

/* --- Nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 900; /* above leaf-field */
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: linear-gradient(180deg, rgba(5, 8, 6, 0.95) 0%, rgba(5, 8, 6, 0.85) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  view-transition-name: main-nav;
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  letter-spacing: 0.04em;
  color: var(--neon-lime);
  line-height: 1.2;
  max-width: 12rem;
  text-decoration: none;
}

.nav__links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover,
.nav__links a[aria-current="true"] {
  color: var(--neon-lime);
  background: rgba(191, 255, 0, 0.08);
  text-decoration: none;
}

/* --- Layout --- */
section {
  scroll-margin-top: var(--nav-h);
}

.container {
  width: min(1160px, 100% - 48px);
  margin: 0 auto;
}

/* --- Home hero --- */
.hero {
  position: relative;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: center;
  padding: 48px 0 80px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--text);
  text-shadow: 0 0 60px rgba(191, 255, 0, 0.2);
}

.hero h1 em {
  font-style: normal;
  color: var(--neon-lime);
  text-shadow: 0 0 40px rgba(191, 255, 0, 0.45);
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--neon-lime);
  line-height: 1;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.hero__orb {
  position: absolute;
  width: min(100%, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(191, 255, 0, 0.25), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(179, 102, 255, 0.2), transparent 50%),
    radial-gradient(circle, rgba(20, 40, 25, 0.9) 0%, transparent 70%);
  filter: blur(0.5px);
  animation: pulse-orb 6s ease-in-out infinite;
}

@keyframes pulse-orb {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.92;
  }
}

.preview-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  padding: 0;
  background: var(--surface-glass);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lime);
  overflow: hidden;
}

.preview-card__shot {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.preview-card__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.preview-card__inner {
  padding: 24px;
}

.preview-card__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 8px;
}

.preview-card h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.preview-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Section common --- */
.section {
  padding: 80px 0;
  position: relative;
}

.section--tight {
  padding-top: 40px;
}

.section__head {
  margin-bottom: 48px;
  text-align: center;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 12px;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 12px;
}

.section__head p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--text-muted);
}

/* --- Strain library --- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, background 0.2s;
}

.filter-btn:hover {
  border-color: var(--border-bright);
  color: var(--text);
}

.filter-btn[aria-pressed="true"] {
  border-color: var(--neon-lime);
  color: var(--bg-void);
  background: var(--neon-lime);
  box-shadow: 0 0 20px rgba(191, 255, 0, 0.25);
}

.strain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.strain-card {
  position: relative;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  view-transition-name: none;
}

.strain-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #060a08;
  border-bottom: 1px solid var(--border);
}

.strain-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 6, 0.85) 100%);
  pointer-events: none;
}

.strain-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.strain-card:hover .strain-card__img {
  transform: scale(1.08);
}

.strain-card__body {
  padding: 20px 24px 24px;
}

.strain-card__actions {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.strain-card__price {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.strain-card__price strong {
  color: var(--neon-lime);
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.strain-card__price .per {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.badge-in-stock {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(80, 200, 100, 0.15);
  color: #8fdf9a;
  border: 1px solid rgba(100, 220, 130, 0.35);
}

.strain-card__btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
}

.hero__store {
  margin: 0;
  max-width: 480px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.25);
}

.hero__fine {
  margin: 12px 0 0;
  max-width: 420px;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.strain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(191, 255, 0, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.strain-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(191, 255, 0, 0.12);
}

.strain-card:hover::before {
  opacity: 1;
}

.strain-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 4px;
  position: relative;
}

.strain-card__type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.strain-card__type--sativa {
  background: rgba(255, 171, 64, 0.2);
  color: var(--amber);
}
.strain-card__type--indica {
  background: rgba(179, 102, 255, 0.2);
  color: var(--purple);
}
.strain-card__type--hybrid {
  background: rgba(191, 255, 0, 0.15);
  color: var(--lime-glow);
}

.meter {
  margin-bottom: 10px;
}

.meter__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.meter__bar {
  height: 8px;
  background: var(--bg-void);
  border-radius: 4px;
  overflow: hidden;
}

.meter__fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.meter__fill--thc {
  background: linear-gradient(90deg, var(--purple-deep), var(--purple));
}
.meter__fill--cbd {
  background: linear-gradient(90deg, var(--amber-deep), var(--amber));
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-void);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* --- Lounge (smoke preview) --- */
.lounge-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

@media (min-width: 960px) {
  .lounge-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.joint-stage {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-void) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  user-select: none;
}

.joint-stage:focus-visible {
  outline: 2px solid var(--neon-lime);
  outline-offset: 4px;
}

.joint-stage__hint {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--text-muted);
  animation: hint-pulse 2s ease-in-out infinite;
}

@keyframes hint-pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.joint-art {
  position: relative;
  width: 220px;
  height: 64px;
  margin-top: 24px;
}

.joint-body {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 180px;
  height: 22px;
  background: linear-gradient(180deg, #e8dcc8 0%, #c4b89a 40%, #8b7d5e 100%);
  border-radius: 11px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.joint-tip {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 18px;
  background: #3a3028;
  border-radius: 0 9px 9px 0;
  box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.3);
}

.joint-ember {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px 4px var(--amber);
  animation: ember 1.2s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes ember {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-50%) scale(1.15);
    opacity: 1;
  }
}

#smoke-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lounge-controls {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.lounge-controls h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.lounge-controls p {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.control {
  margin-bottom: 20px;
}

.control label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.control input[type="range"] {
  width: 100%;
  accent-color: var(--neon-lime);
  height: 6px;
}

.vibe-meter {
  margin-top: 8px;
  padding: 20px;
  background: var(--bg-void);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.vibe-meter__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.vibe-meter__emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.vibe-bar {
  height: 12px;
  background: var(--bg-deep);
  border-radius: 6px;
  overflow: hidden;
}

.vibe-bar__fill {
  height: 100%;
  width: 40%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--purple), var(--neon-lime), var(--amber));
  background-size: 200% 100%;
  animation: vibe-shift 3s ease infinite;
  transition: width 0.3s;
}

@keyframes vibe-shift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* --- Profiles --- */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.profile-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.profile-card:hover {
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.35);
}

.profile-card--creative {
  border-color: rgba(255, 171, 64, 0.35);
  background: linear-gradient(160deg, rgba(255, 171, 64, 0.08) 0%, var(--bg-card) 50%);
}
.profile-card--unwinder {
  border-color: rgba(179, 102, 255, 0.35);
  background: linear-gradient(160deg, rgba(179, 102, 255, 0.08) 0%, var(--bg-card) 50%);
}
.profile-card--balanced {
  border-color: rgba(191, 255, 0, 0.25);
  background: linear-gradient(160deg, rgba(191, 255, 0, 0.06) 0%, var(--bg-card) 50%);
}
.profile-card--medical {
  border-color: rgba(110, 200, 140, 0.35);
  background: linear-gradient(160deg, rgba(110, 200, 140, 0.1) 0%, var(--bg-card) 50%);
}

.profile-card h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.profile-card p {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trait-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.trait-dots {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.trait-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-void);
  border: 1px solid var(--border);
}

.trait-dots span.is-on {
  background: var(--neon-lime);
  border-color: var(--neon-lime);
  box-shadow: 0 0 6px var(--neon-lime);
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}

.price-card:hover {
  transform: translateY(-2px);
}

.price-card--featured {
  border-color: var(--neon-lime);
  box-shadow: 0 0 40px rgba(191, 255, 0, 0.15);
  z-index: 1;
}

.price-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--purple);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}

.price-card h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-lime);
  line-height: 1;
  margin: 0 0 4px;
}

.price-card .price small {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 24px;
  flex: 1;
}

.price-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--neon-lime);
  font-weight: 700;
}

.guarantee {
  margin-top: 48px;
  padding: 32px;
  text-align: center;
  background: var(--bg-elevated);
  border: 1px dashed var(--border-bright);
  border-radius: var(--radius);
}

.guarantee h3 {
  font-family: var(--font-display);
  margin: 0 0 8px;
  color: var(--amber);
}

.guarantee p {
  margin: 0;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* --- Footer --- */
.footer {
  padding: 40px 24px 60px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
}

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

/* --- Reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
}

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

.strain-card.reveal[hidden] {
  display: none;
}

/* --- Nav mobile --- */
@media (max-width: 820px) {
  .nav {
    height: auto;
    min-height: var(--nav-h);
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .nav__links {
    order: 3;
    width: 100%;
    justify-content: center;
    border-top: 1px solid var(--border);
    padding-top: 12px;
  }
  .nav__links a {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .leaf {
    animation: none;
    opacity: 0.12;
  }

  .leaf__img {
    filter: none;
    box-shadow: none;
  }
}
