/* ============================================================
   BONIFIDO CREAMERY — Landing Page Styles
   ============================================================ */

/* --- Type Scale --- */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Fonts */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
}

/* --- Light Mode (default) --- */
:root, [data-theme='light'] {
  --color-green: #1B5E40;
  --color-green-hover: #164D35;
  --color-green-light: #2A7B56;
  --color-green-pale: #E8F5EE;
  --color-gold: #C8963E;
  --color-gold-hover: #B5842F;
  --color-gold-light: #D4A85A;
  --color-gold-pale: #FFF8ED;
  --color-green-soft: #E8F5EE;

  --color-bg: #FAF7F2;
  --color-surface: #FFFFFF;
  --color-surface-offset: #F3F0EA;
  --color-border: #E0DDD5;
  --color-divider: #EAE7E0;

  --color-text: #1E2A1F;
  --color-text-muted: #5A6B5E;
  --color-text-faint: #8A9B8E;
  --color-text-inverse: #FAF7F2;

  --shadow-sm: 0 1px 3px rgba(30, 42, 31, 0.06);
  --shadow-md: 0 4px 16px rgba(30, 42, 31, 0.08);
  --shadow-lg: 0 12px 40px rgba(30, 42, 31, 0.12);

  --hero-gradient: linear-gradient(160deg, #FAF7F2 0%, #E8F5EE 40%, #FFF8ED 100%);
}

/* --- Dark Mode --- */
[data-theme='dark'] {
  --color-green: #3DA872;
  --color-green-hover: #4EBD85;
  --color-green-light: #2E9060;
  --color-green-pale: #1A2E22;
  --color-gold: #D4A85A;
  --color-gold-hover: #E0BA70;
  --color-gold-light: #C49840;
  --color-gold-pale: #2A2418;

  --color-bg: #141C16;
  --color-surface: #1C2620;
  --color-surface-offset: #22302A;
  --color-border: #2E3E35;
  --color-divider: #263028;

  --color-text: #E5E8E2;
  --color-text-muted: #8A9B8E;
  --color-text-faint: #5A6B5E;
  --color-text-inverse: #141C16;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);

  --hero-gradient: linear-gradient(160deg, #141C16 0%, #1A2E22 40%, #2A2418 100%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-green: #3DA872;
    --color-green-hover: #4EBD85;
    --color-green-light: #2E9060;
    --color-green-pale: #1A2E22;
    --color-gold: #D4A85A;
    --color-gold-hover: #E0BA70;
    --color-gold-light: #C49840;
    --color-gold-pale: #2A2418;
    --color-bg: #141C16;
    --color-surface: #1C2620;
    --color-surface-offset: #22302A;
    --color-border: #2E3E35;
    --color-divider: #263028;
    --color-text: #E5E8E2;
    --color-text-muted: #8A9B8E;
    --color-text-faint: #5A6B5E;
    --color-text-inverse: #141C16;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.4);
    --hero-gradient: linear-gradient(160deg, #141C16 0%, #1A2E22 40%, #2A2418 100%);
  }
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow { max-width: var(--content-narrow); }
.container--default { max-width: var(--content-default); }

.section-padding {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header--scrolled {
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.header--hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-cta {
  background: var(--color-green) !important;
  color: var(--color-text-inverse) !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--color-green-hover) !important;
}

.theme-toggle {
  color: var(--color-text-muted);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-20) var(--space-8);
    gap: var(--space-8);
    background: var(--color-bg);
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 200;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: var(--text-base);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    padding: var(--space-3) var(--space-5) !important;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 150;
  }

  .mobile-overlay.open { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-8);
  padding-top: var(--space-20);
  padding-bottom: var(--space-12);
  background: var(--hero-gradient);
  overflow: hidden;
}

.hero-content {
  padding-left: max(var(--space-6), calc((100vw - var(--content-wide)) / 2 + var(--space-6)));
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.08;
}

.hero h1 .accent {
  color: var(--color-green);
}

.hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hero-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
}

.hero-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: var(--space-8);
}

.hero-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.hero-image-accent {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-green-pale) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-image { position: relative; z-index: 1; }

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--space-20) + var(--space-8));
    text-align: center;
  }

  .hero-content {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }

  .hero h1 { font-size: var(--text-2xl); }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-ctas { justify-content: center; }

  .hero-image-wrapper {
    min-height: auto;
    padding: 0 var(--space-6);
  }

  .hero-image {
    max-width: 320px;
    margin-inline: auto;
    aspect-ratio: 3/4;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-text-inverse);
}

.btn-primary:hover {
  background: var(--color-green-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-green);
  border: 1.5px solid var(--color-green);
}

.btn-secondary:hover {
  background: var(--color-green-pale);
}

.btn-gold {
  background: var(--color-gold);
  color: #FFFFFF;
}

.btn-gold:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-8);
}

/* ============================================================
   MISSION (One for One)
   ============================================================ */

.mission {
  background: var(--color-gold-pale);
}

.mission-inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  line-height: 1;
}

.mission h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.mission-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}

.mission-stat {
  text-align: center;
}

.mission-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-green);
  margin-bottom: var(--space-1);
}

.mission-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .mission-stats {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how-it-works {
  background: var(--color-bg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.section-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.step {
  text-align: center;
  padding: var(--space-8) var(--space-6);
}

.step-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .step {
    padding: var(--space-6) var(--space-4);
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--space-4);
  }

  .step-number {
    grid-row: 1 / 3;
    align-self: center;
    font-size: var(--text-2xl);
    margin-bottom: 0;
  }

  .step h3 { margin-bottom: var(--space-1); }
}

/* ============================================================
   ABOUT / STORY SECTION
   ============================================================ */

.story {
  background: var(--color-bg);
}

.story-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.story-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.story-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 540px;
  margin-inline: auto;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.story-image-container {
  position: relative;
}

.story-image {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

.story-badge {
  position: absolute;
  bottom: var(--space-6);
  right: -var(--space-4);
  background: var(--color-gold);
  color: #FFFFFF;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-md);
}

.story-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.story-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.75;
}

.story-text p strong {
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .story-image {
    max-width: 100%;
    aspect-ratio: 4/3;
    margin-inline: auto;
  }

  .story-badge {
    right: var(--space-4);
  }
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background: var(--color-green);
  color: var(--color-text-inverse);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  text-align: center;
  padding-block: var(--space-10);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  opacity: 0.85;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

/* ============================================================
   FLAVORS
   ============================================================ */

.flavors {
  background: var(--color-surface-offset);
}

.flavors-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.flavors-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.flavors-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.flavor-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.flavor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.flavor-emoji {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  display: block;
  line-height: 1;
}

.flavor-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.flavor-ingredients {
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.flavor-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .flavor-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .flavor-card {
    padding: var(--space-6) var(--space-4);
  }

  .flavor-emoji { font-size: 2.5rem; }
}

.flavors-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  font-style: italic;
  margin-top: var(--space-8);
}

/* ============================================================
   SUBSCRIBE (Subscription CTA)
   ============================================================ */

.subscribe {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.subscribe::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-gold-pale) 0%, transparent 70%);
  pointer-events: none;
}

.subscribe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
  position: relative;
  z-index: 1;
}

.subscribe-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.subscribe-content > p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.subscribe-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.price-card {
  background: var(--color-surface);
  border: 2px solid var(--color-green);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-green);
  margin-bottom: var(--space-1);
}

.price-detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-8);
}

.price-features li {
  font-size: var(--text-sm);
  color: var(--color-text);
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: 700;
}

.preorder-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.preorder-form input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-size: var(--text-sm);
}

.preorder-form input:focus {
  border-color: var(--color-green);
  outline: none;
  box-shadow: 0 0 0 3px oklch(from var(--color-green) l c h / 0.12);
}

.preorder-form input::placeholder {
  color: var(--color-text-faint);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
}

.price-card-tag {
  display: inline-block;
  background: var(--color-green-pale);
  color: var(--color-green);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.price-period {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .subscribe-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .subscribe-content { text-align: center; }
}

/* ============================================================
   WAITLIST
   ============================================================ */

.waitlist {
  background: var(--color-green);
  color: #FFFFFF;
  text-align: center;
}

.waitlist h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.waitlist > .container > p {
  font-size: var(--text-base);
  opacity: 0.85;
  margin-bottom: var(--space-8);
  max-width: 480px;
  margin-inline: auto;
}

.waitlist-form {
  display: flex;
  max-width: 480px;
  margin-inline: auto;
  gap: var(--space-3);
}

.waitlist-form input {
  flex: 1;
  padding: var(--space-3) var(--space-6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  font-size: var(--text-sm);
  color: #FFFFFF;
  height: 52px;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.waitlist-form input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
  background: rgba(255, 255, 255, 0.18);
}

.waitlist-form .btn {
  background: var(--color-gold);
  color: #FFFFFF;
  flex-shrink: 0;
  height: 52px;
  padding-inline: var(--space-8);
}

.waitlist-form .btn:hover {
  background: var(--color-gold-hover);
}

@media (max-width: 640px) {
  .waitlist-form {
    flex-direction: column;
  }
}

/* ============================================================
   SUCCESS STATES
   ============================================================ */

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  animation: fadeUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success.show {
  display: block;
}

.form-success .check-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-3);
  display: block;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.form-success p {
  font-size: var(--text-sm);
  opacity: 0.8;
  max-width: 360px;
  margin-inline: auto;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-10);
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
  color: var(--color-text);
}

.footer-logo .logo-mark { width: 32px; height: 32px; }

.footer-logo .logo-text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 500;
}

.footer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.footer-legal {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
