:root {
  --bg: #0F0020;
  --fg: #F0EDE6;
  --lime: #C8FF00;
  --pink: #FF2D9C;
  --violet: #7B2FBE;
  --text-muted: #8A8A9A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(123, 47, 190, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(200, 255, 0, 0.07) 0%, transparent 60%);
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--lime);
}

.hero-sub {
  font-size: 18px;
  color: rgba(240, 237, 230, 0.75);
  max-width: 400px;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
}

/* JAR CLUSTER */
.jar-cluster {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 24px;
  position: relative;
}

.accent-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.accent-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.12) 0%, transparent 70%);
  top: -60px;
  right: 20px;
  animation: pulse 4s ease-in-out infinite;
}

.accent-2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 45, 156, 0.15) 0%, transparent 70%);
  bottom: -20px;
  left: 0;
  animation: pulse 3s ease-in-out infinite 1s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

.jar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  animation: float 3s ease-in-out infinite;
}

.jar-1 { animation-delay: 0s; }
.jar-2 { animation-delay: 0.5s; transform: translateY(-12px); }
.jar-3 { animation-delay: 1s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.jar-2 { animation-name: float2; }
@keyframes float2 {
  0%, 100% { transform: translateY(-12px); }
  50% { transform: translateY(-20px); }
}

.jar-body {
  width: 80px;
  height: 100px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px 12px 16px 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.jar-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
}

.jar-liquid-lime { background: linear-gradient(180deg, rgba(200,255,0,0.7) 0%, rgba(180,220,0,0.9) 100%); }
.jar-liquid-pink { background: linear-gradient(180deg, rgba(255,45,156,0.6) 0%, rgba(220,30,130,0.85) 100%); }
.jar-liquid-violet { background: linear-gradient(180deg, rgba(123,47,190,0.65) 0%, rgba(90,20,170,0.9) 100%); }

.pickles {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4px;
  justify-content: center;
  padding: 0 6px 8px;
}

.pickle {
  width: 12px;
  height: 36px;
  border-radius: 4px 4px 2px 2px;
}

.jar-1 .pickle { background: rgba(200, 255, 0, 0.8); }
.jar-2 .pickle { background: rgba(255, 45, 156, 0.8); }
.jar-3 .pickle { background: rgba(180, 100, 255, 0.8); }

.pickle.p1 { transform: rotate(-8deg); }
.pickle.p3 { transform: rotate(8deg); }

.jar-lid {
  width: 88px;
  height: 16px;
  background: linear-gradient(180deg, #888 0%, #555 100%);
  border-radius: 4px 4px 0 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.jar-label {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--fg);
  text-align: center;
  letter-spacing: 0.05em;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #1A0035 100%);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-rule {
  width: 40px;
  height: 3px;
  background: var(--lime);
  margin: 0 auto 48px;
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--fg);
}

.manifesto-body {
  font-size: 18px;
  color: rgba(240, 237, 230, 0.7);
  margin-bottom: 24px;
  line-height: 1.7;
}

.manifesto-body em {
  color: var(--lime);
  font-style: italic;
}

.manifesto-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--lime);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* FLAVORS */
.flavors {
  padding: 100px 48px;
  background: #1A0035;
}

.flavors-header {
  text-align: center;
  margin-bottom: 64px;
}

.flavors-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
}

.flavors-sub {
  color: var(--text-muted);
  font-size: 16px;
}

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

.flavor-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s, border-color 0.2s;
}

.flavor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,255,0,0.3);
}

.flavor-gem {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.fc-lime .flavor-gem { background: var(--lime); }
.fc-pink .flavor-gem { background: var(--pink); }
.fc-orange .flavor-gem { background: #FF8C00; }
.fc-purple .flavor-gem { background: var(--violet); }
.fc-green .flavor-gem { background: #4CAF50; }

.flavor-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.flavor-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* HOW */
.how {
  padding: 100px 48px;
  background: var(--bg);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 12px;
}

.how-sub {
  color: var(--text-muted);
}

.step-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 260px;
}

.step-icon {
  width: 64px;
  height: 64px;
  color: var(--lime);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--pink));
  margin-top: 32px;
  flex-shrink: 0;
}

.how-note {
  text-align: center;
  margin-top: 64px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg) 0%, #1A0035 100%);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 40px;
  height: 3px;
  background: var(--pink);
  margin: 0 auto 48px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
}

.closing-body {
  font-size: 18px;
  color: rgba(240, 237, 230, 0.7);
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tag {
  padding: 8px 20px;
  border: 1px solid rgba(200, 255, 0, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.04em;
}

/* FOOTER */
.footer {
  padding: 48px;
  background: #0A0018;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--fg);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 280px;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 48px;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
  }

  .jar-cluster {
    padding: 0;
  }

  .manifesto, .flavors, .how, .closing {
    padding: 80px 24px;
  }

  .manifesto-stats {
    gap: 32px;
  }

  .step-track {
    flex-direction: column;
    gap: 40px;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--lime), var(--pink));
    margin: 0 auto;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .flavor-grid {
    grid-template-columns: 1fr;
  }
}