:root {
  --lavender: #b8a9c9;
  --deep-lavender: #8b7ba8;
  --cream: #faf6f1;
  --blush: #e8c4c4;
  --warm-blush: #d4a0a0;
  --soft-plum: #6b5b7b;
  --dark-plum: #3d2f4a;
  --rose-gold: #c4937a;
  --light-lilac: #e8dff0;
  --whisper: #f5f0fa;
  --text-primary: #2d2038;
  --text-secondary: #6b5b7b;
  --text-light: #9b8bab;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--cream);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 140vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, var(--light-lilac) 0%, var(--cream) 70%);
  z-index: 0;
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--deep-lavender);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark-plum);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--deep-lavender);
  font-weight: 500;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--soft-plum);
  background: var(--whisper);
  border: 1px solid var(--light-lilac);
  border-radius: 100px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  margin-top: 3.5rem;
  max-width: 520px;
  width: 100%;
}

.companion-bubble {
  display: flex;
  gap: 1rem;
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(139, 123, 168, 0.12), 0 1px 3px rgba(139, 123, 168, 0.08);
}

.companion-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--lavender), var(--blush));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
}

.companion-message { text-align: left; }

.companion-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.companion-name {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

/* ---- FEATURES ---- */
.features {
  padding: 7rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.features-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--dark-plum);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.features-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

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

.feature-card {
  padding: 2.2rem;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(184, 169, 201, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139, 123, 168, 0.1);
}

.feature-companion { background: linear-gradient(145deg, white, var(--whisper)); }
.feature-checkin { background: linear-gradient(145deg, white, #fef6f0); }
.feature-coach { background: linear-gradient(145deg, white, #f0f4fe); }
.feature-ground { background: linear-gradient(145deg, white, #f0faf5); }

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-plum);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- HOW ---- */
.how {
  padding: 7rem 2rem;
  background: var(--whisper);
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.how-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--dark-plum);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.how-text > p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.how-stats {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat {
  padding: 1rem 1.4rem;
  background: white;
  border-radius: 14px;
  border-left: 3px solid var(--lavender);
}

.stat-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-plum);
  margin-bottom: 0.2rem;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--text-light);
}

.how-visual { position: relative; }

.journal-preview {
  background: white;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(139, 123, 168, 0.1);
}

.journal-entry {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
}

.journal-entry + .journal-entry {
  border-top: 1px solid var(--light-lilac);
}

.journal-mood {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.journal-date {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.journal-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--light-lilac) 100%);
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--dark-plum);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing h2 em {
  color: var(--deep-lavender);
}

.closing > .closing-inner > p:first-of-type {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.closing-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 169, 201, 0.3);
  line-height: 1.6;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 2rem;
  background: var(--dark-plum);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lavender);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(184, 169, 201, 0.6);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .how-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: auto;
  }

  .features { padding: 4rem 1.5rem; }
  .how { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }

  .hero h1 { font-size: 2.8rem; }
  .hero-lede { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .companion-bubble { flex-direction: column; align-items: flex-start; }
  .hero-tags { gap: 0.4rem; }
  .tag { font-size: 0.72rem; padding: 0.35rem 0.8rem; }
  .feature-card { padding: 1.6rem; }
}
/* ---- HERO CTAs ---- */
.hero-ctas {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-cta-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--deep-lavender);
  color: white;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(139, 123, 168, 0.3);
}

.hero-cta-primary:hover {
  background: var(--soft-plum);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 123, 168, 0.35);
}

.hero-cta-secondary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--deep-lavender);
  border: 1.5px solid var(--lavender);
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.hero-cta-secondary:hover {
  background: var(--whisper);
  border-color: var(--deep-lavender);
  transform: translateY(-2px);
}
