:root {
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --gold: #F5A623;
  --gold-light: #FFD98E;
  --gold-glow: rgba(245, 166, 35, 0.3);
  --cream: #FFFCF5;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-400: #A3A3A3;
  --gray-600: #525252;
  --gray-900: #171717;
  --sage: #B8D4BE;
  --lavender: #C9B8E8;
  --rose: #F4A5A5;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 12px 30px rgba(17, 24, 39, 0.08);
  --shadow-card: 0 20px 55px rgba(17, 24, 39, 0.12);
  --section-padding: 110px;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../assets/fonts/outfit-latin.woff2') format('woff2');
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(1200px 500px at 15% -10%, rgba(255, 217, 142, 0.4) 0%, transparent 60%), var(--cream);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  color: inherit;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.icon-lg {
  width: 48px;
  height: 48px;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes blink {
  0%, 45%, 55%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.1); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

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

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.05); }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(255, 252, 245, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(255, 252, 245, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-orb {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.logo-orb .eyes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 6px;
}

.logo-orb .eye {
  width: 4px;
  height: 4px;
  background: var(--gray-900);
  border-radius: 50%;
}

.logo-text {
  font-size: 23px;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.6px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gray-900);
  color: white;
  box-shadow: 0 12px 24px rgba(23, 23, 23, 0.18);
}

.btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(23, 23, 23, 0.22);
}

form.is-hidden {
  display: none;
}

.btn-ghost {
  color: var(--gray-600);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--gray-900);
}

.btn-secondary {
  background: white;
  color: var(--gray-900);
  border: 1px solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--gray-400);
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-bg-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--gold-light);
  top: -200px;
  right: -100px;
  animation: drift 26s ease-in-out infinite;
}

.hero-bg-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--sage);
  bottom: -100px;
  left: -100px;
  animation: drift 30s ease-in-out infinite;
  animation-delay: -8s;
}

.hero-bg-shape-3 {
  width: 300px;
  height: 300px;
  background: var(--lavender);
  top: 40%;
  left: 30%;
  animation: drift 34s ease-in-out infinite;
  animation-delay: -16s;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--gray-600);
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  animation: fadeInUp 0.6s ease forwards;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
}

.hero-tag-cta {
  background: var(--gold);
  color: var(--gray-900);
  font-weight: 600;
  box-shadow: 0 10px 24px var(--gold-glow);
  letter-spacing: 0.2px;
}

.hero-tag-cta .hero-tag-dot {
  background: var(--gray-900);
}

.hero h1 {
  font-size: 54px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.9px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
  max-width: 520px;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 460px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-waitlist {
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-waitlist-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-waitlist input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-waitlist input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.hero-waitlist input::placeholder {
  color: var(--gray-400);
}

.hero-waitlist-note {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 10px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero Mascot - Simple Orb with Eyes */
.hero-mascot {
  position: relative;
  width: 280px;
  height: 280px;
}

.hero-orb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  position: relative;
  animation: float 4s ease-in-out infinite;
  box-shadow: 
    0 40px 80px var(--gold-glow),
    inset 0 -30px 60px rgba(0,0,0,0.1),
    inset 0 30px 60px rgba(255,255,255,0.4);
}

.hero-orb-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-eyes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 32px;
}

.hero-orb-eye {
  width: 16px;
  height: 16px;
  background: var(--gray-900);
  border-radius: 50%;
  animation: blink 4s ease-in-out infinite;
}

/* Floating cards around mascot */
.hero-float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  animation: float 5s ease-in-out infinite;
}

.hero-float-card-1 {
  top: -20px;
  right: -60px;
  animation-delay: -1s;
}

.hero-float-card-2 {
  bottom: 20px;
  left: -80px;
  animation-delay: -2s;
}

.hero-float-card h4 {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 4px;
  font-weight: 500;
}

.hero-float-card p {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
}

/* Features */
.features {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 640px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--gray-900);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--gray-600);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--gray-900);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.08);
}

.feature-icon .icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
}

.feature-icon.gold { background: rgba(245, 166, 35, 0.15); }
.feature-icon.sage { background: rgba(184, 212, 190, 0.4); }
.feature-icon.lavender { background: rgba(201, 184, 232, 0.4); }
.feature-icon.rose { background: rgba(244, 165, 165, 0.4); }

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Journey Section */
.journey {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, var(--cream) 100%);
  border-top: 1px solid var(--gray-100);
}

.journey .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.journey-mascot-scene {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-orb {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 
    0 20px 60px var(--gold-glow),
    inset 0 -20px 40px rgba(0,0,0,0.1),
    inset 0 20px 40px rgba(255,255,255,0.4);
  animation: float 4s ease-in-out infinite;
}

.journey-orb-eyes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 20px;
}

.journey-orb-eye {
  width: 10px;
  height: 10px;
  background: var(--gray-900);
  border-radius: 50%;
  animation: blink 4s ease-in-out infinite;
}

.journey-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px dashed var(--gray-200);
  border-radius: 50%;
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gray-600);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  animation: orbit 20s linear infinite;
}

.orbit-item:nth-child(1) { animation-delay: 0s; }
.orbit-item:nth-child(2) { animation-delay: -5s; }
.orbit-item:nth-child(3) { animation-delay: -10s; }
.orbit-item:nth-child(4) { animation-delay: -15s; }

.journey-text h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.journey-text > p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.journey-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journey-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.journey-item-orb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
}

.journey-item-orb--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.journey-item-orb--lavender {
  background: linear-gradient(135deg, var(--lavender), #A78BD6);
}

.journey-item-orb--sage {
  background: linear-gradient(135deg, var(--sage), #8FC094);
}

.journey-item-orb--rose {
  background: linear-gradient(135deg, var(--rose), #E88A8A);
}

.journey-item-orb::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 4px;
  display: flex;
  gap: 3px;
}

.journey-item-orb .mini-eyes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 6px;
}

.journey-item-orb .mini-eye {
  width: 4px;
  height: 4px;
  background: var(--gray-900);
  border-radius: 50%;
}

.journey-item span {
  font-size: 16px;
  color: var(--gray-600);
}

/* Learn */
.learn {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, var(--cream) 100%);
  border-top: 1px solid var(--gray-100);
}

.learn-page {
  padding-top: calc(var(--section-padding) + 80px);
}

.learn-hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.learn-hero h2 {
  font-size: 38px;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.learn-hero p {
  font-size: 17px;
  color: var(--gray-600);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  background: white;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.article-card:focus-visible {
  outline: 2px solid rgba(245, 166, 35, 0.4);
  outline-offset: 4px;
}

.article-card--soon {
  opacity: 0.7;
}

.article-tag {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.08);
  color: var(--gray-900);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 18px;
  letter-spacing: -0.2px;
}

.article-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.article-meta {
  font-size: 12px;
  color: var(--gray-400);
}

.learn-article {
  max-width: 840px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.learn-article.is-hidden {
  display: none;
}

.learn-article h3 {
  font-size: 32px;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

.learn-article h4 {
  font-size: 18px;
  margin: 24px 0 12px;
  letter-spacing: -0.2px;
}

.learn-article p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.learn-references {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.learn-references ol {
  padding-left: 20px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
}

.learn-references li + li {
  margin-top: 8px;
}

.learn-references a {
  color: inherit;
}

/* Clinics */
.clinics {
  padding: var(--section-padding) 0;
}

.clinics-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 24px 40px;
  margin: 0 -24px;
  scrollbar-width: none;
}

.clinics-scroll::-webkit-scrollbar {
  display: none;
}

.clinic-card {
  flex: 0 0 300px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinic-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.clinics-coming-soon .clinic-card {
  opacity: 0.65;
  pointer-events: none;
}

.clinics-coming-soon .clinic-rating {
  display: none;
}

.clinics-coming-soon .clinic-card::after {
  content: 'Coming soon';
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.08);
  color: var(--gray-900);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.clinic-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.clinic-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.18);
}

.clinic-avatar .icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
}

.clinic-avatar--sage {
  background: linear-gradient(135deg, var(--sage), #8FC094);
}

.clinic-avatar--lavender {
  background: linear-gradient(135deg, var(--lavender), #A78BD6);
}

.clinic-avatar--rose {
  background: linear-gradient(135deg, var(--rose), #E88A8A);
}

.clinic-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.clinic-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.clinic-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.clinic-location {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.clinic-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.clinic-stat-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
}

.clinic-stat-label {
  font-size: 12px;
  color: var(--gray-400);
}

/* Shop */
.shop {
  padding: var(--section-padding) 0;
  background: rgba(255, 255, 255, 0.7);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.product-image {
  height: 180px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--gray-600);
}

.product-info {
  padding: 20px;
}

.product-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-price {
  font-size: 14px;
  color: var(--gray-600);
}

/* CTA */
.cta {
  padding: var(--section-padding) 0;
}

.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-content h2 {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
}

.cta-mascot {
  width: 200px;
  height: 200px;
  position: relative;
}

.cta-orb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  position: relative;
  animation: float 4s ease-in-out infinite;
  box-shadow: 
    0 30px 60px var(--gold-glow),
    inset 0 -25px 50px rgba(0,0,0,0.1),
    inset 0 25px 50px rgba(255,255,255,0.4);
}

.cta-orb-eyes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 24px;
}

.cta-orb-eye {
  width: 12px;
  height: 12px;
  background: var(--gray-900);
  border-radius: 50%;
  animation: blink 4s ease-in-out infinite;
}

/* Footer */
footer {
  background: var(--gray-900);
  color: white;
  padding: 80px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-orb {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  position: relative;
}

.footer-logo-orb .eyes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 6px;
}

.footer-logo-orb .eye {
  width: 4px;
  height: 4px;
  background: var(--gray-900);
  border-radius: 50%;
}

.footer-logo span {
  font-size: 22px;
  font-weight: 600;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: var(--gray-400);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-400);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: white;
}

/* Waitlist */
.waitlist {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, var(--cream) 100%);
}

.waitlist-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.waitlist-orb {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  position: relative;
}

.waitlist-orb-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  position: relative;
  animation: float 4s ease-in-out infinite;
  box-shadow: 
    0 20px 50px var(--gold-glow),
    inset 0 -15px 30px rgba(0,0,0,0.1),
    inset 0 15px 30px rgba(255,255,255,0.4);
}

.waitlist-orb-eyes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 16px;
}

.waitlist-orb-eye {
  width: 8px;
  height: 8px;
  background: var(--gray-900);
  border-radius: 50%;
  animation: blink 4s ease-in-out infinite;
}

.waitlist-content h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.waitlist-content > p {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.waitlist-form {
  margin-bottom: 24px;
}

.waitlist-input-group {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.waitlist-input-group input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist-input-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.waitlist-input-group input::placeholder {
  color: var(--gray-400);
}

.waitlist-note {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 12px;
}

.waitlist-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  color: #16a34a;
}

.waitlist-success.show {
  display: flex;
}

.waitlist-success p {
  font-size: 15px;
  font-weight: 500;
}

/* Form Success */
.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  color: #16a34a;
}

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

.contact-success {
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: rgba(34, 197, 94, 0.14);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.contact-success svg {
  flex-shrink: 0;
}

.contact-success p {
  font-size: 15px;
  font-weight: 600;
  color: inherit;
}

/* Contact */
.contact {
  padding: var(--section-padding) 0;
  background: rgba(255, 255, 255, 0.7);
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.contact-card h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-400);
}

/* Floating Waitlist */
.waitlist-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: min(360px, calc(100vw - 32px));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.waitlist-float.is-hidden {
  display: none;
}

.waitlist-float-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  color: var(--gray-400);
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.waitlist-float:hover .waitlist-float-close,
.waitlist-float:focus-within .waitlist-float-close {
  opacity: 1;
  pointer-events: auto;
}

.waitlist-float-close:hover {
  background: var(--gray-100);
  color: var(--gray-900);
  border-color: var(--gray-200);
}

.waitlist-float h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.waitlist-float > p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.waitlist-float .waitlist-input-group {
  flex-direction: column;
  gap: 8px;
  max-width: none;
  margin: 0;
}

.waitlist-float .waitlist-input-group input {
  padding: 12px 16px;
}

.waitlist-float .waitlist-input-group button {
  width: 100%;
  justify-content: center;
}

.waitlist-float .waitlist-note {
  margin-top: 8px;
}

.waitlist-float .waitlist-success {
  justify-content: flex-start;
  text-align: left;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.show {
  display: flex;
  opacity: 1;
}

.modal {
  background: white;
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--gray-100);
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--gray-200);
}

.modal-body {
  padding: 32px;
  overflow-y: auto;
}

.modal-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 12px;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-body ul {
  margin: 0 0 12px 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.modal-body li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    order: 0;
    margin-bottom: 40px;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-waitlist-group {
    justify-content: center;
  }
  
  .hero-float-card {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .journey .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .journey-mascot-scene {
    margin: 0 auto 40px;
  }
  
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 48px;
  }
  
  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-mascot {
    width: 200px;
    height: 200px;
  }
  
  .hero-orb-eyes {
    gap: 24px;
  }
  
  .hero-orb-eye {
    width: 12px;
    height: 12px;
  }
  
  .features-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }
  
  .journey-mascot-scene {
    width: 300px;
    height: 300px;
  }
  
  .journey-orbit {
    width: 240px;
    height: 240px;
  }
  
  .orbit-item {
    animation-name: orbit-mobile;
  }
  
  @keyframes orbit-mobile {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
  }
  
  .hero-waitlist-group,
  .waitlist-input-group {
    flex-direction: column;
  }
  
  .hero-waitlist-group button,
  .waitlist-input-group button {
    width: 100%;
    justify-content: center;
  }

  .waitlist-content {
    padding: 32px 24px;
  }

  .learn-article {
    padding: 32px 24px;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .modal {
    max-height: 90vh;
    border-radius: 16px;
  }
  
  .modal-header {
    padding: 20px 24px;
  }
  
  .modal-body {
    padding: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .waitlist-float {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .waitlist-float-close {
    opacity: 1;
    pointer-events: auto;
  }
}
