: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);
}

/* ---- PRICING ---- */
.pricing {
  padding: 8rem 2rem;
  background: var(--dark-plum);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60vw;
  height: 80vh;
  background: radial-gradient(ellipse, rgba(184, 169, 201, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1rem;
}

.pricing-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: white;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.pricing-header h2 em {
  color: var(--blush);
  font-style: italic;
}

.pricing-sub {
  font-size: 1rem;
  color: rgba(184, 169, 201, 0.8);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  border-radius: 24px;
  padding: 2.2rem;
  position: relative;
}

.plan-free {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184, 169, 201, 0.2);
}

.plan-premium {
  background: linear-gradient(145deg, rgba(232, 196, 196, 0.12), rgba(184, 169, 201, 0.08));
  border: 1.5px solid rgba(232, 196, 196, 0.35);
}

.plan-pill {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blush);
  color: var(--dark-plum);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 1.8rem;
}

.plan-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.plan-badge-free {
  background: rgba(184, 169, 201, 0.15);
  color: var(--lavender);
}

.plan-badge-premium {
  background: rgba(232, 196, 196, 0.2);
  color: var(--blush);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.plan-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  line-height: 1;
}

.plan-period {
  font-size: 0.88rem;
  color: rgba(184, 169, 201, 0.7);
}

.plan-tagline {
  font-size: 0.85rem;
  color: rgba(184, 169, 201, 0.65);
  font-style: italic;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.check {
  flex-shrink: 0;
  width: 1.1rem;
  font-size: 0.85rem;
  color: var(--lavender);
  font-weight: 700;
}

.check-off {
  color: rgba(184, 169, 201, 0.3);
}

.plan-features li:has(.check-off) {
  color: rgba(255,255,255,0.3);
}

.plan-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.2s, box-shadow 0.2s;
}

.plan-btn-free {
  background: rgba(184, 169, 201, 0.12);
  color: var(--lavender);
  border: 1px solid rgba(184, 169, 201, 0.3);
}

.plan-btn-free:hover {
  background: rgba(184, 169, 201, 0.2);
  transform: translateY(-2px);
}

.plan-btn-premium {
  background: linear-gradient(135deg, var(--blush), var(--warm-blush));
  color: var(--dark-plum);
  box-shadow: 0 6px 24px rgba(232, 196, 196, 0.25);
}

.plan-btn-premium:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232, 196, 196, 0.3);
}

.plan-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(184, 169, 201, 0.5);
  margin-top: 0.8rem;
}

.pricing-compare {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(184, 169, 201, 0.15);
}

.pricing-vs {
  font-size: 0.92rem;
  color: rgba(184, 169, 201, 0.65);
}

.pricing-vs strong {
  color: var(--blush);
}

/* ---- FAQ ---- */
.faq {
  padding: 8rem 2rem;
  background: var(--cream);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--dark-plum);
  line-height: 1.15;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--light-lilac);
}

.faq-item:first-child {
  border-top: 1px solid var(--light-lilac);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-plum);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--deep-lavender);
  transition: transform 0.2s;
}

details[open] .faq-q::after {
  transform: rotate(45deg);
}

details[open] .faq-q {
  color: var(--deep-lavender);
}

.faq-a {
  padding: 0 0 1.4rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-a em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--deep-lavender);
}

/* ---- RESPONSIVE PRICING & FAQ ---- */
@media (max-width: 680px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing { padding: 5rem 1.5rem; }
  .faq { padding: 5rem 1.5rem; }
}
