:root {
  --bg: #06101f;
  --bg-deep: #08162a;
  --bg-panel: rgba(10, 20, 37, 0.82);
  --surface: #f5f2ea;
  --surface-soft: #ebe5d8;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(10, 20, 37, 0.1);
  --text: #f7f7f3;
  --muted: #aab7cb;
  --ink: #0f1b2d;
  --ink-soft: #425067;
  --gold: #c7a15a;
  --gold-soft: #e8ca94;
  --cyan: #82bdd7;
  --green: #25d366;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shell: min(100% - 32px, 1180px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(130, 189, 215, 0.12), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(199, 161, 90, 0.12), transparent 18%),
    linear-gradient(180deg, #050c18 0%, #091426 42%, #06101f 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.shell { width: var(--shell); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(199, 161, 90, 0.28);
  background: rgba(199, 161, 90, 0.08);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #8a6323;
  border-color: rgba(138, 99, 35, 0.16);
  background: rgba(199, 161, 90, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(5, 12, 24, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}
.brand,
.mobile-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 6px 0;
}
.brand-full-logo,
.mobile-menu-top img,
.footer-logo {
  width: clamp(168px, 18vw, 250px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(199, 161, 90, 0.12));
}

.header-links {
  display: none;
  align-items: center;
  gap: 22px;
}
.header-links a,
.mobile-nav a {
  font-size: 14px;
  color: rgba(247, 247, 243, 0.78);
  text-decoration: none;
}
.header-links a:hover,
.mobile-nav a:hover { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta,
.mobile-cta,
.button-primary,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.header-cta:hover,
.mobile-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.button-ghost:hover { transform: translateY(-1px); }

.header-cta,
.mobile-cta {
  background: var(--green);
  color: white;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.22);
}
.button-primary {
  color: #0b1628;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border: 1px solid rgba(199, 161, 90, 0.4);
  box-shadow: 0 18px 36px rgba(199, 161, 90, 0.18);
}
.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.button-ghost {
  color: var(--ink);
  background: rgba(15, 27, 45, 0.06);
  border: 1px solid rgba(15, 27, 45, 0.12);
}

.menu-toggle,
.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: white;
  border-radius: 14px;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(86vw, 360px);
  background: rgba(7, 16, 31, 0.98);
  transform: translateX(-100%);
  transition: transform 220ms ease;
  z-index: 60;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.mobile-nav { display: grid; gap: 18px; }
.mobile-menu-copy {
  margin: 28px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.menu-overlay,
.age-gate {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.menu-overlay { background: rgba(0, 0, 0, 0.58); z-index: 50; }
.menu-overlay.is-open,
.age-gate.is-open { opacity: 1; pointer-events: auto; }

.age-gate {
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}
.age-gate-card {
  width: min(100%, 520px);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at top center, rgba(130, 189, 215, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(7, 16, 31, 0.98), rgba(8, 20, 38, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}
.age-gate-card h2,
.hero-copy h1,
.section-heading h2,
.panel h3,
.footer-brand h3,
.cta-copy h2,
.faq-heading h2 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  letter-spacing: 0;
}
.age-gate-card h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.1rem, 7vw, 3rem);
  line-height: 0.95;
}
.age-gate-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 18px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.hero::before {
  width: 520px;
  height: 520px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(199, 161, 90, 0.16), transparent 60%);
}
.hero::after {
  width: 480px;
  height: 480px;
  left: -160px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(130, 189, 215, 0.12), transparent 60%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}
.hero-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(3rem, 10vw, 5.4rem);
  line-height: 0.95;
}
.hero-copy p,
.section-heading p,
.panel p,
.footer-brand p,
.footer-links a,
.faq-item p,
.cta-copy p {
  color: var(--muted);
  line-height: 1.72;
}
.hero-copy p {
  max-width: 58ch;
  font-size: 16px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.signal {
  min-height: 78px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.signal strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.signal span {
  color: rgba(247, 247, 243, 0.76);
  font-size: 13px;
  line-height: 1.6;
}
.hero-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(199, 161, 90, 0.22);
  pointer-events: none;
  animation: orbitDriftA 18s linear infinite;
}
.orbit.a { width: 88%; height: 52%; }
.orbit.b {
  width: 78%;
  height: 38%;
  transform: translate(-50%, -50%) rotate(58deg);
  animation: orbitDriftB 23s linear infinite;
}
.orbit.c {
  width: 78%;
  height: 38%;
  transform: translate(-50%, -50%) rotate(120deg);
  animation: orbitDriftC 26s linear infinite;
}
.hero-panel {
  position: relative;
  width: min(100%, 520px);
  border-radius: 34px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 16%, rgba(130, 189, 215, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  animation: vialFloat 6.8s ease-in-out infinite;
}
.hero-panel img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-note {
  position: absolute;
  max-width: 210px;
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(6, 16, 31, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.hero-note.top { top: 14px; right: 8px; }
.hero-note.bottom { left: 0; bottom: 20px; }
.hero-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hero-note span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(247, 247, 243, 0.8);
}

@keyframes orbitDriftA { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbitDriftB { from { transform: translate(-50%, -50%) rotate(58deg); } to { transform: translate(-50%, -50%) rotate(418deg); } }
@keyframes orbitDriftC { from { transform: translate(-50%, -50%) rotate(120deg); } to { transform: translate(-50%, -50%) rotate(480deg); } }
@keyframes vialFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }

.light-band {
  background: linear-gradient(180deg, var(--surface) 0%, #f0ece1 100%);
  color: var(--ink);
}
.section {
  padding: 72px 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-heading h2,
.cta-copy h2,
.faq-heading h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.8rem, 8vw, 4.8rem);
  line-height: 0.92;
}
.section-heading p,
.cta-copy p {
  max-width: 60ch;
  font-size: 15px;
}

.card-grid {
  display: grid;
  gap: 18px;
}
.product-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), white);
  border: 1px solid rgba(15, 27, 45, 0.08);
  box-shadow: 0 24px 56px rgba(10, 20, 37, 0.12);
  display: flex;
  flex-direction: column;
}
.product-visual {
  position: relative;
  padding: 16px;
  background:
    radial-gradient(circle at top center, rgba(130, 189, 215, 0.16), transparent 30%),
    linear-gradient(180deg, #07101f 0%, #0d1d35 100%);
}
.product-visual img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.product-tag,
.product-badge {
  position: absolute;
  top: 16px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-tag {
  left: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--gold-soft);
}
.product-badge {
  right: 16px;
  background: rgba(130, 189, 215, 0.16);
  border: 1px solid rgba(130, 189, 215, 0.22);
  color: var(--text);
}
.product-copy {
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-copy h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: var(--ink);
}
.product-copy p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 14px;
}
.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.bullet-list li {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 8px;
}
.bullet-list li::before {
  content: "→";
  color: #8a6323;
  font-weight: 800;
}
.product-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 27, 45, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.product-footer span {
  color: var(--ink-soft);
  font-size: 12px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #8a6323;
  font-weight: 800;
}

.panel-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}
.panel,
.faq-item,
.cta-panel {
  border-radius: 24px;
  padding: 24px;
  background: rgba(15, 27, 45, 0.03);
  border: 1px solid rgba(15, 27, 45, 0.08);
}
.panel h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.1;
}
.panel p,
.faq-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}
.faq-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
}

.cta-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.cta-panel {
  background:
    radial-gradient(circle at top center, rgba(199, 161, 90, 0.12), transparent 28%),
    linear-gradient(180deg, #07101f 0%, #0a1527 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.cta-panel .trust-list { display: grid; gap: 14px; }
.cta-panel .trust-row { display: grid; gap: 4px; }
.cta-panel .trust-row strong {
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cta-panel .trust-row span {
  color: rgba(247,247,243,0.8);
  font-size: 14px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer {
  padding: 28px 0 40px;
  background: #050c18;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
  display: grid;
  gap: 24px;
}
.footer-brand h3 {
  margin: 12px 0 8px;
  font-size: 2.3rem;
  line-height: 0.95;
}
.footer-note {
  padding-top: 24px;
  color: rgba(247, 247, 243, 0.58);
  font-size: 12px;
  line-height: 1.7;
}
.footer-links {
  display: grid;
  gap: 12px;
}
.footer-links a {
  text-decoration: none;
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: white;
  box-shadow: 0 22px 40px rgba(37, 211, 102, 0.28);
  z-index: 70;
}

@media (min-width: 768px) {
  .hero-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }
  .panel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .header-links { display: flex; }
  .menu-toggle { display: none; }
  .site-header-inner { min-height: 92px; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
    gap: 42px;
    align-items: center;
  }
  .hero-copy h1 { max-width: 11ch; }
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
