@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

/* ─── Design Tokens ──────────────────────────────── */
:root {
  --bg:          #0a0f0a;
  --bg-elevated: #111a11;
  --bg-card:     #162016;
  --fg:          #e8ece8;
  --fg-muted:    #8a9c8a;
  --accent:      #4ade80;
  --accent-dim:  #22c55e;
  --accent-glow: rgba(74, 222, 128, 0.15);
  --gold:        #d4a843;
  --gold-dim:    rgba(212, 168, 67, 0.2);
  --border:      rgba(74, 222, 128, 0.12);
  --radius:      12px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ─── NAV ──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(10, 15, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* ─── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--fg);
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 .accent { color: var(--accent); }
.hero h1 .gold   { color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 520px;
  margin: 1.5rem auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: #050c05;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-ghost {
  color: var(--fg-muted);
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}

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

/* ─── CATALOG SECTION ────────────────────────────── */
.catalog {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--fg);
}

.section-desc {
  color: var(--fg-muted);
  max-width: 480px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

/* ─── STRAIN GRID ────────────────────────────────── */
.strain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.strain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: default;
}

.strain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.strain-card:hover {
  border-color: rgba(74, 222, 128, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(74,222,128,0.08);
}

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

/* Gold glow for proprietary lines */
.strain-card.proprietary {
  border-color: rgba(212, 168, 67, 0.15);
}

.strain-card.proprietary::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.strain-card.proprietary:hover {
  border-color: rgba(212, 168, 67, 0.35);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,168,67,0.1);
}

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

.strain-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  line-height: 1.2;
}

.strain-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-clone {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(74, 222, 128, 0.25);
}

.badge-seed {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.25);
}

.strain-lineage {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.strain-lineage strong { color: var(--fg-muted); font-weight: 500; }

.strain-breeder {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.strain-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.strain-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Parent docs (proprietary seeds) */
.strain-parents {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.parent-chip {
  font-size: 0.7rem;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 6px;
  padding: 0.25rem 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── DIVIDER BETWEEN SECTIONS ───────────────────── */
.catalog-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 5rem 0 4rem;
}

.catalog-divider::before,
.catalog-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.catalog-divider-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* ─── FOOTER ─────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--fg-muted);
  font-size: 0.82rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.footer-logo span { color: var(--accent); }

.footer-note { opacity: 0.5; margin-top: 0.5rem; font-size: 0.75rem; }

/* ─── SHOP LINKS (landing page) ─────────────────── */
.nav-shop-link {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

.strain-buy-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.strain-buy-link:hover { color: #fff; }

/* ─── UTILITY ────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { gap: 1.25rem; }
  .strain-grid { grid-template-columns: 1fr; }
  .catalog { padding: 4rem 1.25rem; }
  .cta-group { flex-direction: column; }
}
