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

:root {
  --bg: #0A0A0A;
  --bg-warm: #111111;
  --bg-card: #181818;
  --accent: #F5A623;
  --accent-dim: rgba(245,166,35,0.15);
  --text: #F0EDE8;
  --text-muted: #8A8680;
  --text-dim: #5A5754;
  --border: #2A2A2A;
  --border-accent: rgba(245,166,35,0.25);
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 700; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-right: auto;
}
.brand-icon { color: var(--accent); font-size: 20px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--text-muted); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--accent);
  color: #0A0A0A;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  transition: opacity 0.2s;
}
.btn-nav:hover { opacity: 0.88; }

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-headline {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-sub { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; align-items: center; margin-bottom: 36px; }
.btn-primary {
  background: var(--accent);
  color: #0A0A0A;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost { color: var(--text-muted); font-size: 14px; font-weight: 500; display: inline-block; transition: color 0.2s; }
.btn-ghost:hover { color: var(--text); }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge { font-size: 12px; color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; }

/* Product Bottle (CSS-only) */
.product-image-wrap { position: relative; display: flex; align-items: center; justify-content: center; height: 420px; }
.product-photo { position: relative; z-index: 1; max-width: 100%; max-height: 380px; object-fit: contain; border-radius: 8px; animation: float 4s ease-in-out infinite; }
.product-glow { position: absolute; width: 280px; height: 280px; background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.product-bottle { position: relative; z-index: 1; animation: float 4s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.bottle-body {
  width: 140px;
  height: 200px;
  background: linear-gradient(135deg, #7A4A12 0%, #C47A28 30%, #E8A84A 60%, #C47A28 100%);
  border-radius: 12px 12px 16px 16px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 2px 0 rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bottle-dropper {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 50px;
  background: linear-gradient(to bottom, #C47A28, #7A4A12);
  border-radius: 4px 4px 0 0;
}
.bottle-dropper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 16px;
  background: linear-gradient(135deg, #8B6914, #C47A28);
  border-radius: 6px;
}
.bottle-label { text-align: center; padding: 8px; }
.bottle-brand { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #3A2000; display: block; margin-bottom: 4px; }
.bottle-name { font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700; color: #3A2000; opacity: 0.8; display: block; line-height: 1.3; margin-bottom: 4px; }
.bottle-vol { font-size: 8px; color: #3A2000; opacity: 0.6; }

/* BENEFITS */
.benefits { background: var(--bg-warm); padding: 80px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 600; margin-bottom: 16px; font-family: 'Syne', sans-serif; }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; letter-spacing: -1px; line-height: 1.1; color: var(--text); margin-bottom: 48px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.benefit-card { background: var(--bg-card); border: 1px solid var(--border); padding: 36px 32px; transition: border-color 0.2s; }
.benefit-card:hover { border-color: var(--border-accent); }
.benefit-icon { font-size: 28px; color: var(--accent); display: block; margin-bottom: 20px; }
.benefit-card h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.benefit-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* INGREDIENTS */
.ingredients { padding: 80px 24px; }
.ingredient-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ingredient-list { list-style: none; }
.ingredient-list li { display: grid; grid-template-columns: 1fr 60px 1fr; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 15px; gap: 12px; align-items: center; }
.ing-name { color: var(--text); font-weight: 500; }
.ing-pct { color: var(--accent); font-weight: 700; text-align: center; font-family: 'Syne', sans-serif; }
.ing-role { color: var(--text-muted); font-size: 13px; }
.how-to-card { background: var(--bg-card); border: 1px solid var(--border); padding: 36px 32px; border-radius: 4px; }
.ht-label { font-family: 'Syne', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); display: block; margin-bottom: 24px; }
.ht-steps { list-style: none; }
.ht-steps li { display: flex; align-items: center; gap: 16px; font-size: 15px; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--border); }
.ht-steps li:last-child { border-bottom: none; }
.step-num { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 800; color: var(--accent); letter-spacing: 1px; min-width: 28px; }
.ht-note { margin-top: 20px; font-size: 13px; color: var(--text-muted); font-style: italic; }

/* REVIEWS */
.reviews { background: var(--bg-warm); padding: 80px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border); padding: 28px; }
.review-card.featured { border-color: var(--border-accent); background: rgba(245,166,35,0.04); }
.review-stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-meta { display: flex; gap: 8px; align-items: center; font-size: 12px; }
.review-name { color: var(--text); font-weight: 600; }
.review-loc { color: var(--text-muted); }
.review-verified { color: var(--accent); }

/* BUY SECTION */
.buy-section { padding: 80px 24px; background: var(--bg); }
.buy-split { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: start; }
.buy-title { margin-bottom: 20px; }
.buy-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.price-tag { margin-bottom: 32px; }
.price-amount { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--text); letter-spacing: -1px; display: block; }
.price-note { font-size: 13px; color: var(--text-muted); }
.form-header { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 20px; }
.buy-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-field input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input:focus { border-color: var(--accent); }
.form-field input::placeholder { color: var(--text-dim); }
.btn-checkout {
  background: var(--accent);
  color: #0A0A0A;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.btn-checkout:hover { opacity: 0.88; }
.btn-checkout:disabled { opacity: 0.5; cursor: not-allowed; }
.form-note { font-size: 12px; color: var(--text-dim); text-align: center; }
.buy-right { padding-top: 64px; }
.product-card-summary { background: var(--bg-card); border: 1px solid var(--border); padding: 20px; border-radius: 8px; display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.pcs-img { width: 60px; height: 80px; flex-shrink: 0; }
.pcs-bottle-mini { width: 40px; height: 60px; background: linear-gradient(135deg, #7A4A12, #C47A28, #E8A84A); border-radius: 6px 6px 8px 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.pcs-info h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.pcs-info p { font-size: 12px; color: var(--text-muted); }
.pcs-price { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: var(--text); margin-left: auto; }
.pcs-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pcs-features li { font-size: 13px; color: var(--text-muted); }

/* TRUST */
.trust { padding: 48px 24px; background: var(--bg-warm); border-top: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.trust-item { padding: 28px 24px; border: 1px solid var(--border); background: var(--bg-card); }
.trust-icon { font-size: 22px; color: var(--accent); display: block; margin-bottom: 12px; }
.trust-item h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.trust-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* FOOTER */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 40px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; color: var(--text); }
.footer-tagline { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.footer-right { display: flex; gap: 12px; align-items: center; font-size: 13px; color: var(--text-muted); }
.footer-right a:hover { color: var(--text); }
.sep { color: var(--border); }

/* CHECKOUT SUCCESS / CANCEL */
.checkout-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.checkout-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 48px; max-width: 480px; width: 100%; text-align: center; }
.checkout-icon { font-size: 48px; display: block; margin-bottom: 24px; }
.checkout-title { font-size: 28px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.checkout-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.checkout-order { font-size: 13px; color: var(--text-dim); margin-bottom: 32px; }
.checkout-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-outline { display: inline-block; border: 1px solid var(--border); color: var(--text-muted); font-size: 14px; padding: 12px 24px; border-radius: 8px; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* SUPPORT PAGE */
.support-page { max-width: 640px; margin: 0 auto; padding: 80px 24px; }
.support-title { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.support-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 40px; }
.support-form { display: flex; flex-direction: column; gap: 16px; }
.support-form textarea { background: var(--bg-card); border: 1px solid var(--border); color: var(--text); font-family: 'Satoshi', 'DM Sans', sans-serif; font-size: 15px; padding: 14px; border-radius: 6px; outline: none; min-height: 120px; resize: vertical; transition: border-color 0.2s; }
.support-form textarea:focus { border-color: var(--accent); }
.support-form textarea::placeholder { color: var(--text-dim); }
.btn-support { background: var(--accent); color: #0A0A0A; font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; padding: 14px; border-radius: 8px; border: none; cursor: pointer; transition: opacity 0.2s; }
.btn-support:hover { opacity: 0.88; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 48px 20px 40px; }
  .hero-right { height: 280px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .buy-split { grid-template-columns: 1fr; }
  .buy-right { padding-top: 0; }
  .ingredient-split { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}