:root {
  --bg-primary: #0d1a0d;
  --bg-secondary: #0a130a;
  --bg-card: #112011;
  --bg-card-2: #0e1d0e;
  --amber: #d4920c;
  --amber-dim: rgba(212, 146, 12, 0.12);
  --amber-glow: rgba(212, 146, 12, 0.35);
  --sage: #8aab8a;
  --sage-dim: rgba(138, 171, 138, 0.15);
  --sage-soft: rgba(138, 171, 138, 0.55);
  --green-deep: #6b8f6b;
  --green-light: #a8c8a8;
  --near-black: #050c05;
  --text-primary: #f0ede6;
  --text-muted: #9a9d92;
  --text-dim: #63665e;
  --border: rgba(212, 146, 12, 0.12);
  --border-light: rgba(240, 237, 230, 0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'General Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  backdrop-filter: blur(20px);
  background: rgba(13, 26, 13, 0.82);
  border-bottom: 1px solid var(--border-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-leaf { display: flex; align-items: center; }
.nav-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--text-primary); letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; color: var(--text-dim); letter-spacing: 0.04em; text-transform: uppercase; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 146, 12, 0.09) 0%, transparent 65%);
}
.hero-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 171, 138, 0.05) 0%, transparent 65%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-sub em { font-style: normal; color: var(--amber); font-weight: 500; }
.hero-effects-row { display: flex; flex-wrap: wrap; gap: 8px; }
.effect-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.effect-tag-relax { background: rgba(138, 171, 138, 0.15); color: var(--sage); border: 1px solid rgba(138, 171, 138, 0.25); }
.effect-tag-energy { background: rgba(212, 146, 12, 0.15); color: var(--amber); border: 1px solid rgba(212, 146, 12, 0.25); }
.effect-tag-focus { background: rgba(107, 143, 107, 0.15); color: var(--green-light); border: 1px solid rgba(107, 143, 107, 0.25); }
.effect-tag-sleep { background: rgba(99, 102, 94, 0.15); color: var(--text-muted); border: 1px solid rgba(99, 102, 94, 0.25); }
.effect-tag-creative { background: rgba(168, 200, 168, 0.1); color: var(--sage-soft); border: 1px solid rgba(168, 200, 168, 0.2); }
.effect-tag-euphoria { background: rgba(212, 146, 12, 0.08); color: var(--amber); border: 1px solid rgba(212, 146, 12, 0.18); }

/* HERO VISUAL */
.hero-visual { position: relative; display: flex; justify-content: center; }
.visual-card {
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 146, 12, 0.08);
}
.visual-card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--amber), rgba(212, 146, 12, 0.3), transparent);
}
.visual-card-inner { padding: 24px; }
.vc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.vc-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 500; }
.vc-score { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--amber); }
.vc-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--text-primary); margin-bottom: 4px; }
.vc-type { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 20px; }
.vc-effects { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.vc-effect { display: flex; align-items: center; gap: 10px; }
.vc-effect-bar {
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), rgba(212, 146, 12, 0.4));
  border-radius: 2px;
  min-width: 4px;
}
.vc-effect-label { font-size: 0.75rem; color: var(--text-muted); min-width: 80px; }
.vc-terpenes { display: flex; gap: 6px; flex-wrap: wrap; }
.vc-terp {
  font-size: 0.68rem;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--amber-dim);
  color: var(--amber);
  font-weight: 500;
}
.hero-dots { position: absolute; bottom: -30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); }
.dot-a { background: var(--amber); }
.dot-b { background: var(--border); }
.dot-c { background: var(--border); }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  z-index: 2;
}

/* SECTION SHARED */
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  font-weight: 500;
}

/* HOW IT WORKS */
.hiw { padding: 100px 40px; background: var(--bg-secondary); position: relative; }
.hiw::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 60px;
}
.hiw-step { padding: 0 40px 0 0; }
.hiw-step:nth-child(5) { padding: 0; }
.step-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--amber);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text-primary); margin-bottom: 12px; }
.step-body { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }
.hiw-divider { display: flex; align-items: center; padding-top: 40px; opacity: 0.5; }

/* DISCOVERY */
.discovery { padding: 100px 40px; background: var(--bg-primary); position: relative; }
.discovery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(212, 146, 12, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.discovery-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.discovery-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 480px;
}
.discovery-body { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 36px; max-width: 440px; }
.quiz-preview { display: flex; flex-direction: column; gap: 12px; }
.quiz-step { display: flex; gap: 14px; align-items: flex-start; opacity: 0.45; transition: opacity 0.3s; }
.quiz-step-active { opacity: 1; }
.quiz-step-done { opacity: 0.4; }
.q-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.quiz-step-active .q-num { background: var(--amber); color: var(--near-black); }
.quiz-step-done .q-num { border-color: var(--sage); }
.q-label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; font-weight: 500; }
.q-options { display: flex; flex-wrap: wrap; gap: 8px; }
.q-opt {
  font-size: 0.72rem;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  cursor: default;
}
.q-opt-dim { color: var(--text-dim); }
.q-opt-selected { background: var(--amber-dim); border-color: rgba(212, 146, 12, 0.3); color: var(--amber); }

/* RESULTS CARD */
.results-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.rc-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border-light); }
.rc-eyebrow { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 500; }
.rc-count { font-size: 0.78rem; color: var(--amber); font-weight: 600; }
.rc-list { padding: 8px 0; }
.rc-item { display: flex; align-items: center; gap: 14px; padding: 14px 20px; }
.rc-item-top { border-left: 2px solid var(--amber); }
.rc-item-top .rc-rank { color: var(--amber); }
.rc-rank { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--text-dim); min-width: 24px; }
.rc-info { flex: 1; }
.rc-name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }
.rc-meta { font-size: 0.72rem; color: var(--text-dim); }
.rc-match { text-align: right; }
.rc-pct { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--amber); }
.rc-fit { font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }

/* NEARBY */
.nearby { padding: 100px 40px; background: var(--bg-secondary); position: relative; }
.nearby::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}
.nearby-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nearby-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.nearby-body { font-size: 0.95rem; line-height: 1.7; color: var(--text-muted); margin-bottom: 36px; }
.nearby-stats { display: flex; gap: 32px; }
.n-stat { display: flex; flex-direction: column; gap: 4px; }
.n-val { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--amber); }
.n-label { font-size: 0.72rem; color: var(--text-dim); }

/* MAP */
.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--near-black);
}
.map-bg { position: absolute; inset: 0; }
.map-grid { width: 100%; height: 100%; display: flex; flex-direction: column; }
.map-row { flex: 1; display: flex; }
.map-cell { flex: 1; border-right: 1px solid rgba(138, 171, 138, 0.06); border-bottom: 1px solid rgba(138, 171, 138, 0.06); }
.map-cell-active { background: rgba(212, 146, 12, 0.06); }
.map-pins { position: absolute; inset: 0; }
.map-pin { position: absolute; display: flex; flex-direction: column; align-items: center; }
.map-pin-1 { top: 42%; left: 45%; }
.map-pin-2 { top: 30%; left: 22%; }
.map-pin-3 { top: 62%; left: 68%; }
.pin-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(212, 146, 12, 0.2), 0 0 16px rgba(212, 146, 12, 0.4);
}
.pin-label {
  margin-top: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.pin-name { font-size: 0.68rem; color: var(--text-primary); font-weight: 500; }
.pin-dist { font-size: 0.65rem; color: var(--text-dim); }
.map-user { position: absolute; top: 52%; left: 52%; display: flex; flex-direction: column; align-items: center; }
.user-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--text-primary); box-shadow: 0 0 0 4px rgba(240, 237, 230, 0.15); }
.user-label { font-size: 0.65rem; color: var(--text-muted); margin-top: 4px; }
.map-bubble { position: absolute; }
.map-bubble-1 { top: 20%; left: 55%; }
.bubble-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.b-name { font-size: 0.75rem; font-weight: 600; color: var(--text-primary); }
.b-product { font-size: 0.68rem; color: var(--amber); }
.b-price { font-size: 0.65rem; color: var(--text-dim); }

/* PHILOSOPHY */
.philosophy { padding: 100px 40px; background: var(--bg-primary); position: relative; }
.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(138, 171, 138, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.philosophy-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.philosophy-header { margin-bottom: 56px; }
.phil-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.phil-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.pc-header { margin-bottom: 20px; }
.pc-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); font-weight: 500; }

/* TERP WHEEL */
.terp-wheel {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}
.tw-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: var(--bg-card-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 1px solid var(--border);
}
.tw-name { font-size: 0.6rem; font-weight: 600; color: var(--text-primary); text-align: center; line-height: 1.3; }
.tw-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tw-lim { top: 0; right: 0; background: rgba(212, 146, 12, 0.25); border-radius: 0 100% 0 0; }
.tw-pin { bottom: 0; right: 0; background: rgba(138, 171, 138, 0.25); border-radius: 0 0 100% 0; }
.tw-ter { bottom: 0; left: 0; background: rgba(107, 143, 107, 0.2); border-radius: 100% 0 0 0; }
.tw-myr { top: 0; left: 0; background: rgba(168, 200, 168, 0.15); border-radius: 0 0 0 100%; }
.tw-s-name { font-size: 0.62rem; color: var(--text-primary); font-weight: 600; }
.tw-s-pct { font-size: 0.55rem; color: var(--text-muted); margin-top: 2px; }
.pc-effects { display: flex; gap: 6px; flex-wrap: wrap; }
.pc-effect-tag { font-size: 0.68rem; padding: 4px 10px; border-radius: 100px; background: var(--amber-dim); color: var(--amber); font-weight: 500; }

/* COMPARE */
.compare-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.cl-item { display: grid; grid-template-columns: 120px 1fr; gap: 12px; align-items: center; }
.cl-item-selected { padding: 8px; border: 1px solid var(--border); border-radius: 6px; background: rgba(212, 146, 12, 0.04); }
.cl-name { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.cl-bars { display: flex; flex-direction: column; gap: 5px; }
.cl-bar-wrap { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.cl-bar { height: 100%; border-radius: 2px; }
.cl-tags { font-size: 0.62rem; color: var(--text-dim); grid-column: 2; }
.compare-legend { display: flex; gap: 12px; }
.leg-item { display: flex; align-items: center; gap: 5px; font-size: 0.65rem; color: var(--text-dim); }
.leg-dot { width: 8px; height: 8px; border-radius: 50%; }

/* TIPS */
.tips-list { display: flex; flex-direction: column; gap: 16px; }
.tip-item { display: flex; gap: 12px; align-items: flex-start; }
.tip-icon { flex-shrink: 0; margin-top: 2px; }
.tip-text { display: flex; flex-direction: column; gap: 3px; }
.tip-terp { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.tip-desc { font-size: 0.75rem; color: var(--text-dim); line-height: 1.55; }

/* CLOSING */
.closing { padding: 120px 40px; background: var(--bg-secondary); position: relative; overflow: hidden; }
.closing::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 146, 12, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.closing::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 171, 138, 0.04) 0%, transparent 65%);
  pointer-events: none;
}
.closing-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.closing-content { text-align: center; }
.closing-kicker { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); margin-bottom: 20px; }
.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.closing-divider { width: 1px; height: 48px; background: linear-gradient(180deg, var(--border-light), transparent); margin: 0 auto 48px; }
.closing-bottom { display: flex; justify-content: center; gap: 80px; }
.cs-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; color: var(--amber); margin-bottom: 6px; }
.cs-label { font-size: 0.78rem; color: var(--text-dim); }

/* FOOTER */
.footer { padding: 48px 40px; background: var(--near-black); border-top: 1px solid var(--border-light); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text-primary); }
.footer-tagline { font-size: 0.8rem; color: var(--text-dim); }
.footer-note p { font-size: 0.72rem; color: var(--text-dim); line-height: 1.6; max-width: 560px; }
.footer-legal { font-size: 0.68rem; color: var(--text-dim); opacity: 0.6; }

/* QUIZ */
.quiz-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quiz-progress { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; }
.quiz-step-dots { display: flex; gap: 8px; }
.quiz-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: all 0.3s;
}
.quiz-dot.active { background: var(--amber); width: 24px; border-radius: 4px; }
.quiz-dot.done { background: var(--sage); }
.quiz-progress-label { font-size: 0.72rem; color: var(--text-dim); }

.quiz-question-wrap { display: none; }
.quiz-question-wrap.active { display: block; animation: quizFadeIn 0.4s ease; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.quiz-sub { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }

.quiz-options { display: flex; flex-wrap: wrap; gap: 10px; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 140px;
  flex: 1;
}
.quiz-option:hover {
  border-color: rgba(212, 146, 12, 0.4);
  background: var(--amber-dim);
  color: var(--amber);
  transform: translateY(-1px);
}
.quiz-option.selected {
  border-color: var(--amber);
  background: var(--amber-dim);
  color: var(--amber);
  box-shadow: 0 0 0 1px rgba(212, 146, 12, 0.2);
}
.quiz-option-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* 3 options variant */
.quiz-option-3 { min-width: 160px; }

/* RESULTS */
.quiz-results-wrap { display: none; animation: quizFadeIn 0.5s ease; }
.quiz-results-wrap.active { display: block; }

.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.results-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--text-primary); }
.results-reset { font-size: 0.78rem; color: var(--text-dim); cursor: pointer; background: none; border: none; padding: 0; font-family: inherit; }
.results-reset:hover { color: var(--text-muted); }

.match-cards { display: flex; flex-direction: column; gap: 12px; }
.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  align-items: center;
  transition: all 0.2s;
}
.match-card:hover { border-color: rgba(212, 146, 12, 0.3); }
.match-card.top {
  border-left: 3px solid var(--amber);
  background: linear-gradient(90deg, rgba(212, 146, 12, 0.04) 0%, transparent 40%);
}
.match-card-rank { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--text-dim); }
.match-card.top .match-card-rank { color: var(--amber); }
.match-card-info { display: flex; flex-direction: column; gap: 4px; }
.match-card-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text-primary); }
.match-card-meta { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; color: var(--text-dim); }
.type-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.type-sativa { background: rgba(212, 146, 12, 0.15); color: var(--amber); }
.type-indica { background: rgba(168, 200, 168, 0.15); color: var(--sage); }
.type-hybrid { background: rgba(107, 143, 107, 0.15); color: var(--green-light); }
.match-card-terps { display: flex; gap: 6px; flex-wrap: wrap; }
.terp-tag { font-size: 0.65rem; padding: 2px 8px; border-radius: 4px; background: var(--amber-dim); color: var(--amber); font-weight: 500; }
.match-card-score { text-align: right; }
.score-pct { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--amber); display: block; }
.score-label { font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }

.quiz-cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--amber);
  color: var(--near-black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: -0.01em;
}
.quiz-cta:hover { background: #e5a010; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212, 146, 12, 0.3); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .discovery-inner { grid-template-columns: 1fr; gap: 48px; }
  .nearby-inner { grid-template-columns: 1fr; gap: 48px; }
  .phil-grid { grid-template-columns: 1fr; }
  .hiw-steps { grid-template-columns: 1fr; gap: 32px; }
  .hiw-divider { display: none; }
  .closing-bottom { flex-direction: column; gap: 32px; align-items: center; }
  .nearby-stats { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .hero { padding: 80px 24px 60px; }
  .hiw, .discovery, .nearby, .philosophy, .closing { padding: 72px 24px; }
  .nav { padding: 0 24px; }
  .nav-tagline { display: none; }
  .visual-card { width: 100%; }
}