/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* Variables */
:root {
  --bg: #0F1A12;
  --bg-alt: #1C2B1F;
  --bg-card: #152217;
  --cream: #F5F0E8;
  --cream-muted: #C8BFA8;
  --gold: #D4A843;
  --gold-dark: #A8802C;
  --green: #2D4A32;
  --text: #E8E0D0;
  --text-muted: #9A9080;
  --border: rgba(212,168,67,0.2);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(45,74,50,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(212,168,67,0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.stat-div {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 40px;
}

/* Manifesto */
.manifesto {
  background: var(--bg-alt);
  padding: 120px 24px;
}

.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 40px;
  font-style: normal;
}

.manifesto-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* Genetics */
.genetics {
  padding: 120px 24px;
  background: var(--bg);
}

.genetics-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 56px;
  line-height: 1.65;
  font-weight: 300;
}

.strain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.strain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 2px;
}

.strain-card-wide {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(45,74,50,0.2) 100%);
}

.strain-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.3);
  padding: 4px 10px;
  margin-bottom: 20px;
}

.strain-name {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}

.strain-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}

.strain-meta {
  display: flex;
  gap: 16px;
}

.strain-meta span {
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.06em;
}

/* Tiers */
.tiers {
  background: var(--bg-alt);
  padding: 120px 24px;
}

.tiers-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: 2px;
  position: relative;
}

.tier-card-featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,168,67,0.05) 0%, var(--bg-card) 100%);
}

.tier-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.tier-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.tier-price {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1;
}

.tier-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 300;
}

.tier-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-perks li {
  font-size: 14px;
  color: var(--text);
  padding-left: 20px;
  position: relative;
  font-weight: 300;
}

.tier-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Closing */
.closing {
  padding: 120px 24px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.closing-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.closing-tagline {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--gold);
  margin-top: 40px;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

.footer-legal p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-links span {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 20px; }
  .hero-stats { gap: 24px; }
  .stat-div { display: none; }
  .stat { padding: 0; }
  .strain-grid { grid-template-columns: 1fr; }
  .strain-card-wide { grid-column: span 1; }
  .tier-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 40px; }
  .closing-title { font-size: 28px; }
}