/* =============================================
   VELA — Design tokens from Figma
   ============================================= */

:root {
  --c-bg:        #f7f5f2;
  --c-black:     #121212;
  --c-accent:    #bc6b4e;
  --c-green:     #dfe7da;
  --c-beige:     #f7eade;
  --c-muted:     #616161;
  --c-border:    #e0dcd7;
  --c-white:     #ffffff;

  --f-serif:     'Inria Sans', serif;
  --f-sans:      'Inter', sans-serif;

  --max-w:       1200px;
  --nav-h:       80px;
}

/* =============================================
   RESET
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--c-bg); color: var(--c-black); font-family: var(--f-sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* =============================================
   PILLS
   ============================================= */

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 21px;
  border-radius: 9999px;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  width: fit-content;
}
.pill-beige  { background: var(--c-beige); color: var(--c-black); }
.pill-white  { background: var(--c-bg); color: var(--c-black); }
.pill-overlay{ background: rgba(247,245,242,0.15); color: var(--c-bg); }
.pill-sm     { font-size: 12px; padding: 8px 14px; }

/* =============================================
   PROMO BANNER
   ============================================= */

.promo-banner {
  background: var(--c-black);
  color: var(--c-bg);
  text-align: center;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.025em;
  padding: 10px 24px;
}

/* =============================================
   NAV
   ============================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 40px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18,18,18,0.05);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav a {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  color: rgba(18,18,18,0.8);
  transition: color 0.2s;
}
.nav a:hover { color: var(--c-black); }

.nav-logo {
  font-family: 'Inria Sans', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-black);
  flex: none;
}

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

.hero {
  position: relative;
  height: 78vh;
  min-height: 560px;
  overflow: hidden;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 860px;
}

.hero-eyebrow {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--c-white);
  letter-spacing: -0.01em;
  opacity: 0.9;
}

.hero-headline {
  font-family: var(--f-serif);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--c-white);
}
.hero-headline em {
  font-style: italic;
  color: var(--c-bg);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 9999px;
  background: var(--c-white);
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-black);
  transition: opacity 0.2s;
}
.btn-hero:hover { opacity: 0.85; }

/* =============================================
   PRODUCT SECTION
   ============================================= */

.product-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 64px 40px;
}

.product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.product-headline {
  font-family: var(--f-serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--c-black);
  text-align: center;
}
.product-headline .accent { font-style: italic; color: var(--c-accent); }

.product-body {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: var(--max-w);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-name-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-name {
  font-family: var(--f-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-muted);
}

.product-desc {
  font-family: var(--f-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-muted);
  line-height: 1.625;
  max-width: 448px;
}

.product-stats {
  display: flex;
  gap: 40px;
  padding-top: 8px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--f-serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--c-black);
  line-height: 1.2;
}

.stat-label {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
}

.product-cta-row {
  padding-top: 8px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 9999px;
  background: rgba(18,18,18,0.08);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: 0.02em;
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 9999px;
  background: var(--c-black);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-bg);
  opacity: 0.6;
  cursor: default;
}

.coming-soon-light {
  background: rgba(247,245,242,0.25);
  color: var(--c-bg);
}

.btn-ritual {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 9999px;
  background: #f3d4ba;
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-black);
}

.product-image {
  width: 240px;
  flex-shrink: 0;
}
.product-image img { width: 100%; }

.product-badges {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 96px;
  justify-content: center;
}

.feature-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(18,18,18,0.7);
  letter-spacing: -0.025em;
}
.feature-badge img { width: 48px; height: 48px; }

/* =============================================
   PROBLEM SECTION
   ============================================= */

.problem-section {
  background: var(--c-green);
  padding: 80px 40px;
}

.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.problem-headline {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-align: center;
  color: var(--c-black);
}
.problem-headline .accent { font-style: italic; color: var(--c-accent); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  padding-top: 8px;
}

.problem-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.problem-num {
  font-family: var(--f-serif);
  font-size: 24px;
  font-weight: 400;
  color: rgba(18,18,18,0.4);
  letter-spacing: -0.025em;
  line-height: 1.33;
}

.problem-item h4 {
  font-family: var(--f-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--c-black);
  margin-top: 5px;
}

.problem-item p {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-muted);
  line-height: 1.625;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */

.comparison-section {
  padding: 64px 40px;
}

.comparison-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.comparison-headline {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.035em;
  color: var(--c-black);
  text-align: center;
  margin-bottom: 32px;
}
.comparison-headline .muted { font-style: italic; color: var(--c-muted); }

.comparison-table-wrap {
  width: 100%;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 28px;
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--f-sans);
  font-size: 14px;
  text-align: center;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table th {
  font-weight: 500;
  font-size: 14px;
  color: var(--c-black);
}

.comparison-table td.col-feature,
.comparison-table th.col-feature {
  text-align: left;
  color: var(--c-black);
  font-weight: 400;
}

.col-vela { background: var(--c-beige); }
.comparison-table td.check { background: rgba(247,234,222,0.5); }

.comparison-table td img {
  width: 16px;
  height: 16px;
  margin: 0 auto;
}

/* =============================================
   RITUAL / RECIPES SECTION
   ============================================= */

.ritual-section {
  display: grid;
  grid-template-columns: 7fr 5fr;
  background: var(--c-black);
  min-height: 440px;
  overflow: hidden;
}

.ritual-img-wrap {
  overflow: hidden;
}

.ritual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ritual-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 56px;
  color: var(--c-bg);
}

.ritual-headline {
  font-family: var(--f-serif);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--c-bg);
}

.ritual-sub {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(247,245,242,0.8);
  line-height: 1.625;
  max-width: 448px;
}

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

.waitlist-section {
  padding: 128px 40px;
  background: var(--c-bg);
}

.waitlist-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.waitlist-headline {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2.8vw, 40px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--c-black);
  margin-top: 16px;
}
.waitlist-headline .accent { font-style: italic; color: var(--c-accent); }
.waitlist-headline em.black { font-style: italic; color: var(--c-black); }

.waitlist-sub {
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--c-muted);
  margin-bottom: 8px;
}

.waitlist-form {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 448px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 9999px;
  padding: 7px;
}

.waitlist-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--c-muted);
  padding: 8px 20px;
}
.waitlist-input::placeholder { color: var(--c-muted); }

.btn-dark-pill {
  background: var(--c-black);
  color: var(--c-bg);
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 9999px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-dark-pill:hover { opacity: 0.85; }
.btn-dark-pill:disabled { opacity: 0.5; cursor: default; }

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

.footer {
  background: var(--c-black);
  padding: 80px 40px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h5 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247,245,242,0.5);
  margin-bottom: 6px;
}

.footer-col a {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(247,245,242,0.85);
  line-height: 1.43;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--c-bg); }

.footer-logo-big {
  font-family: var(--f-serif);
  font-size: clamp(80px, 12vw, 200px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--c-bg);
  padding-top: 32px;
}

.footer-dot { color: var(--c-accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(247,245,242,0.1);
  font-family: var(--f-sans);
  font-size: 11px;
  color: rgba(247,245,242,0.5);
}

/* =============================================
   ACCENT UTILITY
   ============================================= */

.accent { color: var(--c-accent); }

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

@media (max-width: 1024px) {
  .product-body { flex-direction: column; align-items: flex-start; }
  .product-image { width: 100%; max-width: 300px; margin: 0 auto; }
  .product-badges { width: 100%; justify-content: flex-start; }
  .ritual-section { grid-template-columns: 1fr; }
  .ritual-img-wrap { height: 300px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-left a:not(:first-child) { display: none; }
  .nav-right a:first-child { display: none; }
  .hero-content { left: 24px; top: 50%; transform: translateY(-50%); }
  .problem-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .product-section,
  .comparison-section,
  .waitlist-section { padding-left: 20px; padding-right: 20px; }
  .problem-section { padding-left: 20px; padding-right: 20px; }
  .ritual-content { padding: 32px 24px; }
}
