:root {
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #e4c77b;
  --accent-soft: rgba(228, 199, 123, 0.14);
  --border: rgba(255, 255, 255, 0.1);
  --btn-radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

.page-gradient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(228, 199, 123, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(120, 120, 200, 0.06), transparent),
    var(--bg);
  z-index: 0;
}

.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  padding-top: max(1rem, env(safe-area-inset-top));
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.brand {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 0 18px rgba(0, 0, 0, 0.5);
  transition: color 180ms ease, filter 180ms ease;
}

.brand:hover {
  color: #fff0c8;
  filter: drop-shadow(0 0 12px rgba(228, 199, 123, 0.35));
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.nav-links a {
  font-family: "Sora", sans-serif;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(228, 199, 123, 0.35);
  background: var(--accent-soft);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover {
  color: #fff8e8;
  border-color: rgba(228, 199, 123, 0.55);
  background: rgba(228, 199, 123, 0.2);
  box-shadow: 0 0 20px rgba(228, 199, 123, 0.15);
}

.hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.5rem clamp(1rem, 4vw, 2rem) max(4rem, env(safe-area-inset-bottom));
  padding-left: max(1rem, env(safe-area-inset-left));
  padding-right: max(1rem, env(safe-area-inset-right));
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
}

.hero-video-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  /* Slight zoom only — heavy scale + center crop hid bottle tops on wide viewports */
  transform: translate(-50%, -50%) scale(1.03);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  /* Anchor to top so bottle heads stay visible (cover + 50% 50% crops top on many browsers) */
  object-position: center top;
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 50%, rgba(10, 10, 11, 0.55) 82%, var(--bg) 100%),
    /* Bias radial lower so the top of the frame (bottles) stays clearer */
    radial-gradient(ellipse 95% 80% at 50% 58%, rgba(8, 8, 10, 0.18) 0%, rgba(8, 8, 10, 0.5) 52%, rgba(6, 6, 8, 0.72) 100%),
    /* Light top edge only — was 0.65 at 0% and hid heads under the transparent navbar */
    linear-gradient(180deg, rgba(5, 5, 7, 0.08) 0%, rgba(5, 5, 7, 0.12) 22%, rgba(5, 5, 7, 0.38) 48%, rgba(5, 5, 7, 0.58) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(48rem, 100%);
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
}

.hero-title {
  margin: 0 0 2rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 800;
  font-size: clamp(3.25rem, 12vw, 6.75rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--accent);
  text-shadow:
    0 0 56px rgba(228, 199, 123, 0.4),
    0 2px 20px rgba(0, 0, 0, 0.45),
    2px 2px 0 rgba(90, 65, 28, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.ticker-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid rgba(228, 199, 123, 0.35);
  border-bottom: 1px solid rgba(228, 199, 123, 0.35);
  background: linear-gradient(
    90deg,
    rgba(18, 14, 8, 0.97),
    rgba(55, 42, 22, 0.92),
    rgba(28, 22, 12, 0.95),
    rgba(55, 42, 22, 0.92),
    rgba(18, 14, 8, 0.97)
  );
  box-shadow: inset 0 1px 0 rgba(255, 220, 150, 0.12);
}

.ticker-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: tickerMove 22s linear infinite;
  will-change: transform;
}

.ticker-set {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
}

.ticker-set span {
  display: inline-flex;
  align-items: center;
  font-family: "Bebas Neue", "Sora", sans-serif;
  font-size: clamp(1.35rem, 4.2vw, 1.85rem);
  letter-spacing: 0.35em;
  color: #f5e6c8;
  text-shadow: 0 0 24px rgba(228, 199, 123, 0.45);
  padding: 0.5rem 1.15rem;
  white-space: nowrap;
}

.ticker-set span::after {
  content: "·";
  margin-left: 1rem;
  color: rgba(228, 199, 123, 0.5);
  letter-spacing: 0;
  text-shadow: none;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.65rem 1.25rem;
  border-radius: var(--btn-radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-x {
  min-width: 7rem;
  background: linear-gradient(180deg, rgba(228, 199, 123, 0.24), rgba(228, 199, 123, 0.08));
  color: var(--accent);
  border-color: rgba(228, 199, 123, 0.5);
}

.btn-x:hover {
  background: linear-gradient(180deg, rgba(228, 199, 123, 0.36), rgba(228, 199, 123, 0.14));
  border-color: rgba(228, 199, 123, 0.7);
  color: #fff4d8;
  box-shadow: 0 8px 28px rgba(228, 199, 123, 0.18);
}

.btn-x .fa-x-twitter {
  font-size: 1.15rem;
}

.btn-x-label {
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.btn-secondary {
  min-width: 7rem;
  background: linear-gradient(180deg, rgba(228, 199, 123, 0.38), rgba(160, 125, 55, 0.22));
  color: #fff9ed;
  border-color: rgba(228, 199, 123, 0.55);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(240, 215, 150, 0.75);
  background: linear-gradient(180deg, rgba(238, 210, 140, 0.48), rgba(175, 140, 65, 0.3));
  color: #fffef8;
  box-shadow: 0 8px 28px rgba(228, 199, 123, 0.22);
}

.btn-ghost {
  min-width: 7rem;
  background: rgba(228, 199, 123, 0.1);
  color: var(--accent);
  border-color: rgba(228, 199, 123, 0.42);
}

.btn-ghost:hover {
  border-color: rgba(228, 199, 123, 0.62);
  background: rgba(228, 199, 123, 0.18);
  color: #fff4d8;
  box-shadow: 0 8px 28px rgba(228, 199, 123, 0.14);
}

.copy-status {
  flex-basis: 100%;
  margin: 0;
  min-height: 1.35em;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.btn-primary {
  margin-top: 1.25rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(228, 199, 123, 0.35);
}

.btn-primary:hover {
  background: rgba(228, 199, 123, 0.22);
  border-color: rgba(228, 199, 123, 0.55);
}

main {
  position: relative;
  z-index: 1;
  max-width: min(900px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) 4rem;
}

.section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.section-first {
  border-top: none;
  padding-top: 2.25rem;
}

.section-heading {
  margin: 0 0 1rem;
  font-family: "Titan One", "Fredoka", sans-serif;
  font-size: clamp(1.55rem, 4.2vw, 2.45rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--accent);
  text-shadow:
    0 0 40px rgba(228, 199, 123, 0.25),
    2px 2px 0 rgba(120, 90, 40, 0.2);
}

.prose {
  margin: 0;
  color: var(--muted);
}

.prose p + p {
  margin-top: 1rem;
}

.prose cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.prose-tight {
  margin-bottom: 0.25rem;
}

.dex-link-wrap {
  margin: 0 0 0.85rem;
}

.dex-link {
  display: inline-flex;
  align-items: center;
  border-radius: var(--btn-radius);
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  color: #e9f8ff;
  border: 1px solid rgba(141, 213, 255, 0.35);
  background: rgba(30, 80, 120, 0.35);
  font-weight: 600;
  font-size: 0.875rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.dex-link:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 199, 123, 0.45);
  background: rgba(40, 100, 140, 0.4);
}

.chart-shell {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  overflow: hidden;
  background: var(--bg-elevated);
}

.chart-shell iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  background: #050508;
}

.chart-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.5rem;
  background: rgba(10, 10, 11, 0.88);
  color: var(--muted);
  pointer-events: none;
}

.chart-overlay p {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.chart-overlay small {
  font-size: 0.8125rem;
  opacity: 0.85;
}

.buy-steps-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.buy-step-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.65rem;
  min-height: 0;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: var(--btn-radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(40, 40, 48, 0.9), rgba(18, 18, 22, 0.95));
  text-decoration: none;
  color: var(--text);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.buy-step-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 199, 123, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.buy-step-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.buy-step-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
}

.buy-step-num {
  flex-shrink: 0;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1;
  min-width: 1.5rem;
}

.buy-step-heading {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--text);
}

.buy-step-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}

.buy-step-desc strong {
  color: #d4d4d8;
  font-weight: 600;
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem clamp(1rem, 4vw, 2rem) 2.5rem;
  border-top: 1px solid var(--border);
}

.social-logos {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e3f4ff;
  font-size: 1.75rem;
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
}

.footer-logo-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-pump {
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.pump-logo-img {
  display: block;
  border-radius: 6px;
  flex-shrink: 0;
}

.pump-logo-text {
  color: #69ff9f;
  letter-spacing: 0.02em;
}

.footer-pump:hover .pump-logo-text {
  color: #8cffb4;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 5.85rem;
    padding-bottom: max(3rem, env(safe-area-inset-bottom));
  }

  .hero-video {
    transform: translate(-50%, -50%) scale(1.04);
    object-position: center top;
  }

  .buy-steps-buttons {
    grid-template-columns: 1fr;
  }

  .nav-links {
    max-width: min(72vw, 340px);
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .hero-actions .btn {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
  }
}
