/* =====================================================
   BULK RAMEN — Vanilla CSS
   Converted from Tailwind v4 + shadcn/ui
   ===================================================== */

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}


img, svg { display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; background: none; border: none; outline: none; }
ul, ol { list-style: none; }

/* ===== DESIGN TOKENS ===== */
:root {
  --radius: 0.5rem;

  /* Autumn Harvest dark palette (oklch) */
  --background:          oklch(0.16 0.02 40);
  --foreground:          oklch(0.96 0.02 80);
  --card:                oklch(0.21 0.03 40);
  --card-foreground:     oklch(0.96 0.02 80);
  --primary:             oklch(0.72 0.16 60);
  --primary-foreground:  oklch(0.16 0.02 40);
  --secondary:           oklch(0.28 0.05 40);
  --muted:               oklch(0.24 0.03 40);
  --muted-foreground:    oklch(0.72 0.04 70);
  --accent:              oklch(0.82 0.16 85);
  --destructive:         oklch(0.55 0.22 25);
  --border:              oklch(1 0 0 / 10%);
  --input:               oklch(1 0 0 / 12%);
  --ember:               oklch(0.36 0.10 30);
  --gold:                oklch(0.82 0.16 85);

  /* Semantic alpha variants (pre-computed for reuse) */
  --background-80:       oklch(0.16 0.02 40 / 0.80);
  --background-70:       oklch(0.16 0.02 40 / 0.70);
  --background-60:       oklch(0.16 0.02 40 / 0.60);
  --background-40:       oklch(0.16 0.02 40 / 0.40);
  --background-30:       oklch(0.16 0.02 40 / 0.30);
  --background-90:       oklch(0.16 0.02 40 / 0.90);
  --primary-30:          oklch(0.72 0.16 60 / 0.30);
  --primary-20:          oklch(0.72 0.16 60 / 0.20);
  --primary-10:          oklch(0.72 0.16 60 / 0.10);
  --primary-50:          oklch(0.72 0.16 60 / 0.50);
  --card-40:             oklch(0.21 0.03 40 / 0.40);
  --section-dark:        oklch(0.13 0.02 40);

  --font-display: "Bebas Neue", system-ui, sans-serif;
  --font-sans:    "Barlow", system-ui, sans-serif;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* ===== LAYOUT UTILITIES ===== */
.container-page {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.text-center  { text-align: center; }
.mx-auto      { margin-inline: auto; }
.max-w-2xl    { max-width: 42rem; }
.max-w-3xl    { max-width: 48rem; }
.mt-16        { margin-top: 4rem; }
.hidden       { display: none !important; }

/* ===== COLOR UTILITY ===== */
.text-primary { color: var(--primary); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION HELPERS ===== */
.py-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.section-dark {
  background-color: var(--section-dark);
}

/* ===== EYEBROW TEXT ===== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ===== SECTION TITLE ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  border: none;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover {
  background-color: oklch(0.65 0.16 60);
}
.btn-sm {
  height: 2.25rem;
  padding: 0 1.25rem;
  font-size: 1rem;
}
.btn-lg {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1.125rem;
  letter-spacing: 0.15em;
}
.btn-form {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== GRID SYSTEMS ===== */
.grid-2 {
  display: grid;
  gap: 1.5rem;
}
.grid-3 {
  display: grid;
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  gap: 1rem;
}


/* =====================================================
   NAV
   ===================================================== */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease,
              -webkit-backdrop-filter 0.3s ease, border-color 0.3s ease;
}
#site-nav.scrolled {
  background-color: var(--background-80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--foreground);
}


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

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* gradient: bottom → top */
.hero-overlay-tb {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--background)    0%,
    var(--background-70) 50%,
    var(--background-30) 100%
  );
}

/* gradient: left → right */
.hero-overlay-lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--background-90) 0%,
    var(--background-40) 50%,
    transparent          100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.9;
  color: var(--foreground);
  max-width: 48rem;
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 36rem;
}

.hero-cta {
  margin-top: 2.5rem;
}


/* =====================================================
   PROBLEM
   ===================================================== */
.card-problem {
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
  position: relative;
  overflow: hidden;
}

.card-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--primary-20);
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  pointer-events: none;
  user-select: none;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.card-body {
  color: var(--muted-foreground);
  position: relative;
  line-height: 1.6;
}


/* =====================================================
   PRODUCT
   ===================================================== */
.product-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

/* Mobile: image on top (order 1), text below (order 2) */
.product-image { order: 1; }
.product-text  { order: 2; }

.product-text .section-title {
  line-height: 0.95;
}

.product-solo {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.product-solo .chip-list {
  justify-content: center;
}

.product-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.product-quote {
  margin-top: 2rem;
  border-left: 2px solid var(--primary);
  padding-left: 1.25rem;
  padding-block: 0.5rem;
}

.product-quote p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--foreground);
}

.product-desc2 {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.chip-list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  border: 1px solid var(--primary-30);
  background-color: var(--primary-10);
  color: var(--primary);
}

.macro-band {
  border: 1px solid var(--primary-30);
  background-color: var(--card-40);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
}

.macro-band-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.macro-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  margin: 0.25rem 0 0.5rem;
}

.macro-note {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--muted-foreground);
  text-transform: uppercase;
}

.macro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.macro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 0.75rem;
  border-radius: 1rem;
  background-color: var(--background-40);
  border: 1px solid var(--border);
}

.macro-stat-hero {
  background-color: var(--primary-10);
  border-color: var(--primary-30);
}

.macro-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  line-height: 1;
  color: var(--foreground);
}

.macro-stat-hero .macro-num {
  color: var(--primary);
}

.macro-unit {
  font-size: 0.5em;
  margin-left: 0.05em;
}

.macro-name {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.product-img-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--ember);
}

.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-img-ring {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.1);
  pointer-events: none;
}


/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-grid {
  position: relative;
}

/* Dashed connector line between step icons (desktop only) */
.dashed-line {
  display: none;
  position: absolute;
  top: 3rem;
  left: 16%;
  right: 16%;
  border-top: 1px dashed var(--primary-30);
  pointer-events: none;
}

.card-step {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
}

.step-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background-color: var(--primary-10);
  border: 1px solid var(--primary-30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.step-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--primary);
  letter-spacing: 0.2em;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  margin-top: 0.25rem;
}

.step-body {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}


/* =====================================================
   FLAVORS
   ===================================================== */
.flavor-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--card);
}

.flavor-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--ember);
}

.flavor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.flavor-card:hover .flavor-img-wrap img {
  transform: scale(1.05);
}

.flavor-info {
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.flavor-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.flavor-name {
  font-family: var(--font-display);
  font-size: 2.25rem;
}

.flavor-desc {
  color: var(--muted-foreground);
  margin-top: 0.25rem;
  font-size: 0.9375rem;
}

.flavor-card-coming {
  border-radius: 1rem;
  border: 1px dashed var(--border);
  background-color: var(--card-40);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  min-height: 20rem;
}

.coming-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--primary-10);
  border: 1px solid var(--primary-30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.coming-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.coming-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
}

.coming-desc {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  max-width: 18rem;
  line-height: 1.6;
}


/* =====================================================
   WHO FOR
   ===================================================== */
.card-who {
  height: 100%;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background-color: var(--card);
}

.who-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.who-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.who-body {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
}


/* =====================================================
   WAITLIST
   ===================================================== */
.waitlist-section {
  position: relative;
  overflow: hidden;
}

.waitlist-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ember) 0%, var(--background) 55%, var(--background) 100%);
}

.waitlist-glow {
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background-color: var(--primary-20);
  filter: blur(80px);
  pointer-events: none;
}

.waitlist-inner {
  position: relative;
  z-index: 1;
}

.waitlist-header {
  margin-bottom: 3rem;
}

.waitlist-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1;
}

.waitlist-sub {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.waitlist-card {
  max-width: 36rem;
  margin-inline: auto;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px oklch(0 0 0 / 0.4);
}

/* Success state */
.waitlist-success {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
}

.success-desc {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* Form */
#waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.email-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.email-input {
  flex: 1;
  height: 3rem;
  padding: 0 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--input);
  background-color: var(--background-60);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.email-input::placeholder {
  color: var(--muted-foreground);
}

.email-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-20);
}

.form-extras {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.chip-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.chip-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background-color: var(--background-40);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.chip-btn:hover {
  border-color: var(--primary-50);
  background-color: oklch(0.22 0.02 40);
}

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

.chip-btn.selected {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* "Other" flavor text input — hidden until Other chip is selected */
.other-input-wrap {
  display: none;
  margin-top: 0.75rem;
}

.other-input-wrap.visible {
  display: block;
}

.other-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--input);
  background-color: var(--background-60);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.other-input::placeholder {
  color: var(--muted-foreground);
}

.other-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-20);
}

.form-disclaimer {
  font-size: 0.75rem;
  text-align: center;
  color: var(--muted-foreground);
}


/* =====================================================
   FAQ
   ===================================================== */
.faq-container {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.faq-title {
  margin-bottom: 2.5rem;
}

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.accordion-trigger:hover {
  color: var(--primary);
  background-color: transparent;
}

.accordion-trigger:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.accordion-chevron {
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.accordion-content.open {
  max-height: 600px;
}

.accordion-content p {
  color: var(--muted-foreground);
  font-size: 1rem;
  padding-bottom: 1.25rem;
  line-height: 1.7;
}


/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  background-color: var(--background);
}

.footer-inner {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  color: var(--foreground);
}

.footer-tagline {
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  max-width: 18rem;
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-email {
  color: var(--foreground);
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}


/* =====================================================
   TOAST NOTIFICATIONS
   ===================================================== */
#toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--foreground);
  box-shadow: 0 4px 16px oklch(0 0 0 / 0.5);
  max-width: 22rem;
  animation: toast-in 0.3s ease forwards;
  pointer-events: auto;
  line-height: 1.5;
}

.toast-success {
  background-color: var(--card);
  border: 1px solid var(--primary-30);
}

.toast-error {
  background-color: var(--card);
  border: 1px solid oklch(0.55 0.22 25 / 0.6);
}

.toast-fade-out {
  animation: toast-out 0.3s ease forwards;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(8px); }
}


/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* ── 640px (sm) ── */
@media (min-width: 640px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .email-row {
    flex-direction: row;
  }

  .email-input {
    width: auto;
  }

  .accordion-trigger {
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.875rem;
  }

  .product-quote p {
    font-size: 1.875rem;
  }
}

/* ── 768px (md) ── */
@media (min-width: 768px) {
  .py-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .macro-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .macro-band {
    padding: 3rem;
  }

  .hero-content {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .hero-sub {
    font-size: 1.125rem;
  }

  .hero-content .eyebrow {
    font-size: 0.875rem;
  }

  .dashed-line {
    display: block;
  }

  .waitlist-card {
    padding: 2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ── 1024px (lg) ── */
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  /* Swap order: text left, image right on desktop */
  .product-text  { order: 1; }
  .product-image { order: 2; }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
