﻿:root {
  --pine: #17423d;
  --pine-2: #0f2f2c;
  --cream: #fff8eb;
  --paper: #fffdf7;
  --sun: #f6c95f;
  --coral: #e77964;
  --mint: #bfe7d3;
  --sky: #8ecae6;
  --lavender: #d9cdf5;
  --ink: #24312f;
  --muted: #667571;
  --line: rgba(36, 49, 47, 0.14);
  --shadow: 0 24px 70px rgba(51, 43, 25, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(246, 201, 95, 0.28), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(142, 202, 230, 0.26), transparent 26rem),
    linear-gradient(180deg, #fff8eb 0%, #f7efe0 48%, #eff8f1 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(45deg, rgba(23, 66, 61, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(23, 66, 61, 0.08) 25%, transparent 25%);
  background-size: 34px 34px;
  z-index: -1;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 900;
  color: var(--pine);
  font-size: 1.1rem;
}

.brand-logo {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(23, 66, 61, 0.18);
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--muted);
}

.nav a, .footer-links a { text-decoration: none; }
.nav a:hover, .footer-links a:hover { color: var(--pine); }

.header-cta, .primary-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  text-decoration: none;
  font-weight: 900;
}

.header-cta, .primary-btn {
  color: white;
  background: var(--pine);
  box-shadow: 0 12px 28px rgba(23, 66, 61, 0.22);
}

.secondary-btn {
  color: var(--pine);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.section-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - 88px);
  padding-top: 3rem;
}

.hero-copy {
  min-width: 0;
}

.hero-logo {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin: 0 0 1.35rem;
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(51, 43, 25, 0.12);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: #9b6a12;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Lora", Georgia, serif;
  color: var(--pine-2);
  margin: 0;
}

h1 {
  font-size: clamp(2.75rem, 6.2vw, 5.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 760px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 3.9vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h3 { font-size: 1.35rem; }

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.65;
  margin: 1.4rem 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1rem;
}

.trust-note {
  margin: 0;
  color: var(--pine);
  font-weight: 900;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: min(100%, 370px);
  min-height: 620px;
  border: 12px solid var(--pine-2);
  border-radius: 48px;
  background: linear-gradient(180deg, #fffaf0 0%, #e9f6ee 100%);
  box-shadow: var(--shadow);
  padding: 1.15rem;
  position: relative;
  overflow: hidden;
}

.phone-top {
  width: 118px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  background: var(--pine-2);
  margin: -1.15rem auto 1.25rem;
}

.story-visual {
  position: relative;
  height: 250px;
  border-radius: 34px;
  background: linear-gradient(160deg, #17423d 0%, #2f6d67 55%, #f6c95f 130%);
  overflow: hidden;
}

.moon {
  position: absolute;
  right: 42px;
  top: 36px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff2b9;
  box-shadow: 0 0 35px rgba(255, 242, 185, 0.55);
}

.cloud {
  position: absolute;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.cloud-one { width: 110px; left: 28px; top: 56px; }
.cloud-two { width: 160px; right: -34px; bottom: 60px; }

.book-icon {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%) rotate(-4deg);
  width: 108px;
  height: 108px;
  border-radius: 34px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 16px 34px rgba(15, 47, 44, 0.18);
}

.book-icon::before,
.book-icon::after {
  content: "";
  position: absolute;
  bottom: 28px;
  width: 40px;
  height: 34px;
  border: 5px solid var(--pine);
  border-top: 0;
  background: #fff2c2;
}

.book-icon::before {
  left: 16px;
  border-radius: 4px 4px 4px 18px;
  transform: skewY(8deg);
}

.book-icon::after {
  right: 16px;
  border-radius: 4px 4px 18px 4px;
  transform: skewY(-8deg);
}

.book-icon span {
  display: none;
}

.app-label {
  margin: 1.2rem 0 0.35rem;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.phone-frame h2 {
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.emotion-pill {
  display: inline-flex;
  margin: 1rem 0;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #fff0c9;
  color: #80570d;
  font-weight: 900;
}

.player-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(23, 66, 61, 0.12);
  overflow: hidden;
}

.player-bar span {
  display: block;
  width: 54%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}

.play-button {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 1.65rem auto 0;
  border: 0;
  border-radius: 50%;
  background: var(--pine);
  color: white;
  font-size: 2rem;
  box-shadow: 0 16px 30px rgba(23, 66, 61, 0.25);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.steps, .feature-grid, .pricing-grid {
  display: grid;
  gap: 1rem;
}

.steps { grid-template-columns: repeat(3, 1fr); }

.step-card, .price-card, .safety-card, details, .feature-grid article {
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 1.35rem;
  box-shadow: 0 12px 38px rgba(51, 43, 25, 0.08);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--sun);
  color: #76540c;
  font-weight: 1000;
  margin-bottom: 1rem;
}

.step-card p, .feature-grid p, .safety-card p, details p, .price-card li, .legal-shell p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-band {
  background: var(--pine);
  color: white;
  margin: 2rem 0;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.feature-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.feature-grid h3, .feature-grid p { color: white; }
.feature-grid p { opacity: 0.76; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.safety-card { background: #fff6d6; }

.safety-list {
  display: grid;
  gap: 0.9rem;
}

.safety-list div {
  display: grid;
  gap: 0.25rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
}

.safety-list strong { color: var(--pine); font-size: 1.05rem; }
.safety-list span { color: var(--muted); line-height: 1.5; }

.pricing { text-align: center; }
.pricing h2 { max-width: 820px; margin: 0 auto 2rem; }
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; text-align: left; }

.price-card { position: relative; padding: 1.7rem; }
.price-card.highlighted { border: 2px solid var(--sun); background: #fff8dd; transform: translateY(-8px); }
.badge { position: absolute; right: 1.2rem; top: 1.2rem; padding: 0.4rem 0.7rem; border-radius: 999px; background: var(--sun); color: #76540c; font-weight: 1000; font-size: 0.78rem; text-transform: uppercase; }
.price { margin: 1rem 0; color: var(--pine); font-size: 3rem; font-weight: 1000; }
.price span { font-size: 1rem; color: var(--muted); }
.yearly { margin: -0.5rem 0 1rem; color: #176b5b; font-weight: 900; }
ul { padding-left: 1.2rem; }
li { margin: 0.55rem 0; }

.faq { max-width: 900px; }
.faq h2 { margin-bottom: 1.5rem; }
details { margin-bottom: 0.8rem; }
summary { cursor: pointer; font-weight: 1000; color: var(--pine); font-size: 1.08rem; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  color: var(--muted);
}

.footer strong { color: var(--pine); font-size: 1.2rem; }
.footer p { margin: 0.3rem 0 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem; font-weight: 800; }

.legal-page { background: var(--cream); }
.legal-shell { max-width: 820px; margin: 0 auto; padding: 4rem 1.25rem; }
.legal-shell h1 { font-size: clamp(2.6rem, 7vw, 4.8rem); }
.legal-shell h2 { font-size: 1.7rem; margin-top: 2rem; }
.back-link { display: inline-flex; margin-bottom: 2rem; color: var(--pine); font-weight: 900; text-decoration: none; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero, .intro-grid, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 2rem; }
  .hero-card { order: -1; }
  .phone-frame { min-height: auto; }
  .steps, .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.highlighted { transform: none; }
  .footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .site-header { padding: 0.85rem; }
  .header-cta { display: none; }
  .section-shell { padding: 3.2rem 1rem; }
  h1 { font-size: 2.85rem; line-height: 1.12; letter-spacing: -0.035em; }
  .hero-logo { border-radius: 20px; margin-bottom: 1rem; }
  .phone-frame { border-width: 8px; border-radius: 38px; }
  .story-visual { height: 210px; }
}
