/* ============================================
   RAM CRUSH — Design tokens
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg:         #0A0710;
  --bg-alt:     #130B22;
  --panel:      #17102A;
  --grape:      #3D0F6E;
  --berry:      #D6247A;
  --violet:     #8B2FE0;
  --electric:   #B14EFF;
  --lavender:   #C9AEEA;
  --white:      #FFFFFF;
  --ink:        #140B22;
  --muted:      #A99BC0;
  --line:       rgba(255,255,255,0.10);
  --glass-bg:   rgba(255,255,255,0.05);
  --glass-brd:  rgba(255,255,255,0.14);

  --grad-brand: linear-gradient(135deg, var(--berry), var(--violet) 60%, var(--electric));
  --grad-glow:  radial-gradient(circle, rgba(177,78,255,0.5), transparent 70%);

  --display: 'Space Grotesk', 'Inter', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1140px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

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

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p.lede { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 58ch; }

.eyebrow {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--electric);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--grad-brand);
  display: inline-block;
}

::selection { background: var(--violet); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 3px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(.2,.8,.2,1), box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-gold, .btn-berry {
  background: var(--grad-brand);
  background-size: 200% 200%;
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(214,36,122,0.6);
}
.btn-gold:hover, .btn-berry:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -8px rgba(177,78,255,0.75);
  background-position: 100% 0;
}
.btn-outline {
  border-color: var(--glass-brd);
  color: var(--white);
  background: var(--glass-bg);
}
.btn-outline:hover { border-color: var(--electric); color: var(--electric); transform: translateY(-2px); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   Nav
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 7, 16, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
}
.nav-links a { position: relative; padding: 6px 0; color: var(--muted); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); }

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
}

/* ============================================
   Stat row
   ============================================ */
.stamp-row { display: flex; gap: 32px; flex-wrap: wrap; }
.stamp {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stamp .stamp-big {
  font-family: var(--display);
  font-size: 1.8rem; font-weight: 700; line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stamp .stamp-small { font-size: 0.78rem; color: var(--muted); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 100px 0 72px;
  overflow: hidden;
}
.hero-glow-a, .hero-glow-b {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-a {
  width: 620px; height: 620px;
  top: -180px; right: -160px;
  background: radial-gradient(circle, rgba(214,36,122,0.45), transparent 70%);
  animation: drift 14s ease-in-out infinite;
}
.hero-glow-b {
  width: 520px; height: 520px;
  bottom: -220px; left: -160px;
  background: radial-gradient(circle, rgba(139,47,224,0.4), transparent 70%);
  animation: drift 18s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px,-20px) scale(1.06); }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 { margin: 18px 0 20px; }
.hero-copy h1 .hl {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .btn-row { margin-top: 30px; }
.hero-facts {
  margin-top: 42px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero { min-height: auto; }
}

/* ============================================
   Product photo stage
   ============================================ */
.can-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 340px;
}
.can-stage::before {
  content: '';
  position: absolute;
  inset: 8%;
  background: var(--grad-glow);
  filter: blur(50px);
  opacity: 0.8;
  z-index: 0;
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}
.can-stage img {
  position: relative;
  z-index: 1;
  max-height: 440px;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55));
  animation: float-can 6s ease-in-out infinite;
}
@keyframes float-can {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.can-placeholder-tag {
  position: absolute;
  z-index: 2;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--lavender);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============================================
   Sections (generic)
   ============================================ */
section { padding: 96px 0; position: relative; }
.section-tight { padding: 56px 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head h2 { margin-top: 12px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

.band-dark { background: var(--bg-alt); }
.band-berry {
  background: linear-gradient(135deg, rgba(214,36,122,0.14), rgba(139,47,224,0.14));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
@media (max-width: 860px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-md);
  padding: 30px;
  color: var(--white);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(177,78,255,0.5);
  background: rgba(255,255,255,0.08);
}
.card .card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.card .card-num { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--electric); margin-bottom: 8px; }
.card h3 { color: var(--white); margin: 0 0 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================
   Launching soon stats
   ============================================ */
.launch-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.launch-stat {
  text-align: center;
  padding: 34px 20px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
}
.launch-stat .stat-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.launch-stat .stat-sub { color: var(--muted); font-size: 0.85rem; }
@media (max-width: 700px) { .launch-stats { grid-template-columns: 1fr; } }

/* ============================================
   Waitlist — glassmorphism
   ============================================ */
.waitlist-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.waitlist-form {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-brd);
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.98rem;
}
.waitlist-form input[type="email"]::placeholder { color: var(--muted); }
.waitlist-form input[type="email"]:focus { outline: none; border-color: var(--electric); }
.waitlist-fine { margin-top: 16px; font-size: 0.78rem; color: var(--muted); }

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  font-family: var(--display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--electric);
  margin-bottom: 14px;
}
.footer-grid p, .footer-grid a { color: var(--muted); font-size: 0.92rem; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--glass-brd);
  display: grid; place-items: center;
  font-size: 0.8rem;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--electric); color: var(--electric); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   Page hero (inner pages)
   ============================================ */
.page-hero {
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 14px; }

/* ============================================
   About page specifics
   ============================================ */
.founder-quote {
  border-left: 3px solid var(--electric);
  padding-left: 22px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.45;
  margin: 26px 0;
  color: var(--white);
}
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-weight: 700; color: var(--electric); }

/* ============================================
   Product page specifics
   ============================================ */
.spec-sheet {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row span:first-child { color: var(--muted); }
.spec-row span:last-child { color: var(--white); font-weight: 700; }

.ingredient-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; margin-top: 8px; }
.ingredient-list li { list-style: none; display: flex; align-items: baseline; gap: 10px; color: var(--white); }
.ingredient-list li::before { content: '–'; color: var(--electric); }
@media (max-width: 600px) { .ingredient-list { grid-template-columns: 1fr; } }

/* ============================================
   Contact / wholesale form
   ============================================ */
.form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--body);
  font-size: 0.98rem;
  transition: border-color 0.15s;
}
.field select option { background: var(--panel); color: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--electric);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-status {
  margin-top: 16px;
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(139,47,224,0.18); border: 1px solid var(--violet); color: var(--white); }

.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .ci-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================
   Age verification gate
   ============================================ */
body.gate-active { overflow: hidden; }
body.gate-active > *:not(#age-gate) { visibility: hidden; }

#age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate-card {
  background: var(--panel);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  color: var(--white);
}
.age-gate-card h2 { color: var(--white); }
.age-gate-card .brand-mark {
  margin: 0 auto 18px;
}
.age-gate-card h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.age-gate-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.age-gate-fields {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.age-gate-fields select {
  flex: 1;
  padding: 12px 10px;
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.age-gate-fields select option { background: var(--panel); color: var(--white); }
.age-gate-error {
  display: none;
  background: rgba(214,36,122,0.15);
  border: 1px solid var(--berry);
  color: #FFD9EA;
  font-size: 0.85rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  text-align: left;
}
.age-gate-error.show { display: block; }
.age-gate-card .btn { width: 100%; }
.age-gate-fine {
  margin-top: 18px;
  font-size: 0.72rem;
  color: var(--muted);
}
