/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0E0E0E;
  --bg-2: #161616;
  --bg-card: #1E1E1E;
  --fg: #F0F0F0;
  --fg-muted: #888888;
  --accent: #BFFF00;
  --accent-dim: rgba(191,255,0,0.12);
  --border: #2A2A2A;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.nav-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2.5rem 5rem;
}

.hero-inner {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.hero-headline .line {
  display: block;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-prices {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-pill {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.price-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Packs ─────────────────────────────────────────────────── */
.packs {
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--border);
}

.packs-header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.packs-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.packs-header p {
  color: var(--fg-muted);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
}

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
}

.pack-card.pack-viral {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.pack-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.25rem 0.6rem;
}

.pack-tag.viral {
  color: var(--accent);
  border-color: var(--accent);
}

.pack-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.pack-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pack-list li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.2rem;
  position: relative;
}

.pack-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* ─── Difference ───────────────────────────────────────────── */
.difference {
  padding: 6rem 2.5rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.diff-headline {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4rem;
  max-width: 820px;
}

.diff-headline em {
  font-style: normal;
  color: var(--accent);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.diff-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.diff-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.25rem;
}

.diff-item h4 {
  font-size: 1rem;
  font-weight: 600;
}

.diff-item p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Process ──────────────────────────────────────────────── */
.process {
  padding: 6rem 2.5rem;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 3.5rem;
  max-width: 1100px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  max-width: 1100px;
}

.step {
  padding: 2rem 1.5rem 2rem 0;
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}

.step:first-child {
  border-left: none;
  padding-left: 0;
}

.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Manifesto ────────────────────────────────────────────── */
.manifesto {
  padding: 6rem 2.5rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.manifesto-text.accent {
  color: var(--fg);
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  padding: 4rem 2.5rem;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-meta {
  font-size: 0.8rem;
  color: #444;
  line-height: 1.8;
}

/* ─── Mobile Responsive ─────────────────────────────────────── */
@media (max-width: 640px) {
  .nav { padding: 1rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .hero-prices { flex-direction: column; }
  .packs, .difference, .process, .manifesto, .footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  .steps { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid var(--border); padding: 1.5rem 0; }
  .step:first-child { border-top: none; padding-top: 0; }
  .diff-grid { grid-template-columns: 1fr; }
}
