body { line-height: 1.65; }

.serif {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.serif em { font-style: italic; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
}
.kicker::before {
  content: ""; display: inline-block; width: 22px; height: 1.5px;
  background: var(--violet);
}
.kicker.on-dark { color: var(--violet-soft); }
.kicker.on-dark::before { background: var(--violet-soft); }

.dark-header {
  background:
    radial-gradient(80% 60% at 75% 25%, rgba(167, 139, 250, 0.30), transparent 60%),
    radial-gradient(60% 50% at 20% 85%, rgba(124, 58, 237, 0.22), transparent 65%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-warm) 100%);
  position: relative;
  overflow: hidden;
}

.glyph-bg {
  position: absolute;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 720px;
  line-height: 1;
  color: rgba(245, 212, 164, 0.05);
  pointer-events: none;
  user-select: none;
  right: -80px;
  top: 30px;
}
@media (max-width: 800px) {
  .glyph-bg { font-size: 500px; right: -100px; top: 60px; }
}

.flow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.starfield {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}
.starfield i {
  position: absolute;
  width: 2px; height: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
}

/* Hero starfield positions */
.hero-stars i:nth-child(1) { top: 18%; left: 12%; }
.hero-stars i:nth-child(2) { top: 8%; left: 32%; opacity: 0.6; }
.hero-stars i:nth-child(3) { top: 28%; left: 78%; }
.hero-stars i:nth-child(4) { top: 62%; left: 8%; opacity: 0.7; }
.hero-stars i:nth-child(5) { top: 48%; left: 92%; opacity: 0.5; }
.hero-stars i:nth-child(6) { top: 75%; left: 28%; }
.hero-stars i:nth-child(7) { top: 85%; left: 65%; opacity: 0.6; }
.hero-stars i:nth-child(8) { top: 22%; left: 55%; opacity: 0.4; }
.hero-stars i:nth-child(9) { top: 38%; left: 40%; opacity: 0.3; }

/* Philosophy starfield positions */
.philo-stars i:nth-child(1) { top: 18%; left: 14%; }
.philo-stars i:nth-child(2) { top: 32%; left: 82%; opacity: 0.6; }
.philo-stars i:nth-child(3) { top: 68%; left: 22%; }
.philo-stars i:nth-child(4) { top: 78%; left: 68%; opacity: 0.6; }
.philo-stars i:nth-child(5) { top: 12%; left: 56%; opacity: 0.4; }

.hero {
  text-align: center;
  padding: 5.5rem 1.5rem 5rem;
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}
.hero .hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Geist", sans-serif;
  font-size: 1rem; font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--violet-soft);
  margin-bottom: 2.2rem;
}
.hero .hero-kicker::before,
.hero .hero-kicker::after {
  content: ""; display: inline-block;
  width: 36px; height: 1px;
  background: rgba(196, 181, 253, 0.5);
}
.hero h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.4rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--cream);
}
.hero .rule {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--cream), transparent);
  margin: 0 auto 1.5rem;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 2.4rem;
  line-height: 1.7;
}
.hero-questions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 860px;
  margin: 0 auto 2.2rem;
  text-align: left;
}
.hero-question {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}
.hero-question strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.45rem;
}
.hero-question span {
  display: block;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  font-size: 0.98rem;
}
.btn-primary {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Geist", sans-serif;
  background: var(--violet);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
  letter-spacing: 0.005em;
}
.btn-primary:hover {
  background: #6d28d9;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(124, 58, 237, 0.7), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.btn-block { display: block; width: 100%; text-align: center; }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}
.hero-clarifier {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  max-width: 720px;
  margin: 1rem auto 0;
}

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
  position: relative;
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.section-head h2 em {
  font-style: italic;
  color: var(--violet);
}
.section-head .subtitle {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 520px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.9rem 1.7rem 1.7rem;
  border: 1px solid rgba(124, 58, 237, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(124, 58, 237, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.25);
  box-shadow: 0 8px 28px -12px rgba(124, 58, 237, 0.18);
  transform: translateY(-2px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender-deep), rgba(245, 212, 164, 0.15));
  border: 1px solid rgba(124, 58, 237, 0.12);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.feature-card h3 em {
  font-style: italic;
  color: var(--violet);
}
.feature-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.how {
  background: linear-gradient(180deg, var(--lavender-deep) 0%, var(--lavender) 100%);
  padding: 5.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.how-inner { max-width: 980px; margin: 0 auto; position: relative; z-index: 1; }
.how-decor {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.7;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.how-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(124, 58, 237, 0.3) 0 6px, transparent 6px 12px);
  z-index: -1;
}
.how-step { text-align: center; }
.how-number {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.18);
  color: var(--violet);
  font-size: 1.8rem;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 6px 18px -10px rgba(124, 58, 237, 0.3);
}
.how-step h3 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.how-step p { font-size: 1rem; color: var(--muted); line-height: 1.6; }

.pricing {
  max-width: 520px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
  text-align: center;
}
.price-card {
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 18px;
  padding: 2.5rem 2.2rem 2.2rem;
  box-shadow: 0 20px 60px -28px rgba(124, 58, 237, 0.3), 0 2px 6px rgba(26, 26, 46, 0.04);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--violet), var(--cream), var(--violet));
}
.price-amount {
  font-family: "Instrument Serif", serif;
  font-size: 4.2rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 0.4rem;
}
.price-amount span {
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.price-list {
  text-align: left;
  margin: 1.8rem 0 2rem;
  padding-left: 0;
  list-style: none;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}
.price-list li {
  padding: 0.55rem 0 0.55rem 1.7rem;
  position: relative;
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-size: 1rem;
  top: 0.7rem;
  font-family: "Instrument Serif", serif;
}
.price-note { font-size: 1rem; color: var(--muted-soft); margin-top: 0.85rem; letter-spacing: 0.02em; }

.philosophy {
  background:
    radial-gradient(70% 60% at 20% 30%, rgba(167, 139, 250, 0.22), transparent 60%),
    radial-gradient(60% 50% at 85% 80%, rgba(245, 212, 164, 0.12), transparent 65%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-warm) 100%);
  color: #fff;
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.philosophy .quote-mark {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 5rem;
  color: var(--cream);
  line-height: 0.6;
  opacity: 0.6;
  margin-bottom: 0.5rem;
  display: block;
}
.philosophy h2 {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: #fff;
  margin-bottom: 1.6rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.philosophy h2 em {
  color: var(--cream);
}
.philosophy p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.04rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}
.philosophy-rule {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--cream), transparent);
  margin: 1.6rem auto 0;
}

.faq {
  padding-top: 4.75rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.faq-card {
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 16px;
  padding: 1.65rem 1.45rem;
  box-shadow: 0 14px 40px -26px rgba(124, 58, 237, 0.28);
}
.faq-card h3 {
  font-family: "Instrument Serif", serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.faq-card p,
.faq-list {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-card p + p {
  margin-top: 0.8rem;
}
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-list li + li {
  margin-top: 0.7rem;
}
.faq-list strong {
  color: var(--navy);
}

.newsletter {
  max-width: 580px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.newsletter-card {
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 40px -20px rgba(124, 58, 237, 0.2);
  position: relative;
  overflow: hidden;
}
.newsletter-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--violet-light), transparent);
}
.newsletter h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.newsletter h2 em {
  font-style: italic;
  color: var(--violet);
}
.newsletter .newsletter-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.newsletter-form {
  display: flex;
  gap: 0.6rem;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1rem;
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 999px;
  background: var(--lavender);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--violet);
}
.newsletter-form input[type="email"]::placeholder {
  color: var(--muted-soft);
}
.newsletter-form button {
  padding: 0.85rem 1.6rem;
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: var(--violet);
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: #6d28d9;
}
.newsletter-privacy {
  font-size: 0.85rem;
  color: var(--muted-soft);
  margin-top: 0.9rem;
}
.newsletter-success {
  display: none;
  color: var(--violet);
  font-weight: 500;
  margin-top: 1rem;
}
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}

.footer-brand {
  font-family: "Instrument Serif", serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-brand em { font-style: italic; color: var(--violet); }
.footer-brand .logo-dot {
  width: 8px; height: 8px;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.footer-social a {
  color: var(--muted);
  transition: color 0.2s, transform 0.15s;
  display: inline-flex;
}
.footer-social a:hover {
  color: var(--violet);
  transform: translateY(-2px);
  text-decoration: none;
}

@media (max-width: 700px) {
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .hero-questions { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .section, .pricing { padding-top: 4rem; padding-bottom: 4rem; }
  .hero { padding: 3.5rem 1.5rem 3.5rem; }
}
