:root {
  color-scheme: light;
  --cream: #fbf5e9;
  --paper: #fffdf8;
  --ink: #261d18;
  --muted: #6d625a;
  --line: #e6dacb;
  --saffron: #d76427;
  --deep: #7b2d1a;
  --green: #3f6859;
  --gold: #e5ad4f;
  --shadow: 0 24px 70px rgba(74, 43, 25, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, sans-serif;
  line-height: 1.65;
}
a {
  color: var(--deep);
  text-underline-offset: 0.2em;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.13;
  margin-top: 0;
}
h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1.5rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(123, 45, 26, 0.08);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  text-decoration: none;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  min-height: 48px;
  padding: 12px 14px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  border-radius: 99px;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  background: #f3e9dc;
}
.nav-links .nav-cta {
  background: var(--deep);
  color: white;
  padding-inline: 20px;
}
.hero,
.section,
.legal-page,
.journey-section,
.download-section,
.trust-strip {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
  padding: 72px 0 86px;
}
.hero-copy {
  max-width: 680px;
}
.eyeline {
  color: var(--saffron);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 6px rgba(215, 100, 39, 0.12);
}
.lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 650px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 18px;
}
.button,
.coming-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--deep);
  border-radius: 99px;
  background: var(--deep);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.button.secondary {
  background: transparent;
  color: var(--deep);
}
.microcopy {
  color: var(--muted);
  font-size: 1rem;
}
.stat-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.stat-row strong {
  color: var(--ink);
  font-size: 1.25rem;
}
.app-preview {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
}
.aura-one {
  width: 470px;
  height: 470px;
  background: radial-gradient(circle, #f0c879 0, #f4dfb7 43%, transparent 70%);
}
.aura-two {
  width: 560px;
  height: 560px;
  border: 1px solid rgba(123, 45, 26, 0.15);
}
.phone-card {
  width: min(360px, 92%);
  min-height: 590px;
  padding: 34px 30px;
  border: 8px solid #34241d;
  border-radius: 44px;
  background: linear-gradient(165deg, #fffaf0, #f4e4c8);
  box-shadow: var(--shadow);
  text-align: center;
}
.phone-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
}
.phone-top img {
  width: 32px;
}
.phone-kicker {
  margin-top: 46px;
  color: var(--saffron);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.phone-card h2 {
  font-size: 2.25rem;
}
.practice-orbit {
  width: 155px;
  height: 155px;
  margin: 32px auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(123, 45, 26, 0.25);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 14px rgba(255, 255, 255, 0.38),
    0 0 0 12px rgba(215, 100, 39, 0.08);
}
.practice-orbit span {
  font-size: 3.2rem;
  color: var(--deep);
}
.phone-session {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 1rem;
}
.phone-progress {
  height: 6px;
  margin-top: 14px;
  background: #e2d2bd;
  border-radius: 8px;
  overflow: hidden;
}
.phone-progress i {
  display: block;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
}
.phone-note {
  font-size: 1rem;
  color: var(--muted);
}
.trust-strip {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}
.section {
  padding: 110px 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-head.centered {
  text-align: center;
  margin-inline: auto;
}
.section-head > p:not(.eyeline) {
  font-size: 1.1rem;
  color: var(--muted);
}
.occasion-head {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 56px;
}
.occasion-head h2 {
  max-width: 720px;
  margin-bottom: 0;
}
.occasion-head > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.1rem;
}
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.occasion-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(123, 45, 26, 0.1);
  border-radius: 28px;
  background: linear-gradient(145deg, #fffdf8, #f8eddb);
  box-shadow: 0 18px 48px rgba(74, 43, 25, 0.07);
}
.occasion-card.wealth,
.occasion-card.beginnings {
  background: linear-gradient(145deg, #fff5d8, #f6dca6);
}
.occasion-card.health,
.occasion-card.peace {
  background: linear-gradient(145deg, #f4faf6, #dfeee6);
}
.occasion-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--deep);
  font-family: Georgia, serif;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(74, 43, 25, 0.08);
}
.occasion-card h3 {
  margin-bottom: 8px;
}
.occasion-card p {
  margin: 0;
  color: var(--muted);
}
.occasion-note {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 1rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.feature-card.featured {
  background: linear-gradient(150deg, #fff3d8, #f8dfbd);
}
.icon-chip {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--deep);
  font-size: 1.35rem;
}
.feature-card p {
  color: var(--muted);
}
.feature-link {
  color: var(--deep);
  font-weight: 700;
}
.journey-section {
  position: relative;
  padding: 80px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 86% 8%, rgba(243, 189, 89, 0.22), transparent 24%),
    radial-gradient(circle at 10% 96%, rgba(120, 144, 128, 0.28), transparent 30%),
    #17352d;
  color: #fff;
  overflow: hidden;
}
.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.7) 1px, transparent 1.5px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}
.journey-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 64px;
}
.journey-intro h2 {
  max-width: 700px;
  margin-bottom: 0;
}
.journey-intro > p {
  margin: 0 0 8px;
  color: #d5e2dc;
  font-size: 1.08rem;
}
.journey-map {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  grid-template-rows: repeat(7, minmax(118px, auto));
  column-gap: 34px;
  margin-top: 70px;
}
.journey-route {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 8;
  justify-self: center;
  width: 9px;
  margin-block: 32px;
  border-radius: 99px;
  background: linear-gradient(#f2c66d, #d38d35 56%, #f5dc9c);
  box-shadow: 0 0 0 7px rgba(242, 198, 109, 0.1), 0 0 34px rgba(242, 198, 109, 0.28);
}
.journey-route::before,
.journey-route::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border: 5px solid #f1c66e;
  border-radius: 50%;
  background: #17352d;
}
.journey-route::before {
  top: 20px;
}
.journey-route::after {
  bottom: 20px;
}
.journey-route span {
  position: absolute;
  left: 50%;
  bottom: -14px;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: #f3bd59;
  color: var(--deep);
  font-size: 1.7rem;
  box-shadow: 0 0 40px rgba(243, 189, 89, 0.38);
}
.journey-stage {
  position: relative;
  min-height: 100px;
  align-self: center;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 16px 44px rgba(4, 20, 16, 0.2);
  backdrop-filter: blur(8px);
}
.journey-stage::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34px;
  height: 1px;
  background: rgba(242, 198, 109, 0.65);
}
.stage-one,
.stage-three,
.stage-five,
.stage-seven {
  grid-column: 1;
}
.stage-two,
.stage-four,
.stage-six {
  grid-column: 3;
}
.stage-one { grid-row: 1; }
.stage-two { grid-row: 2; }
.stage-three { grid-row: 3; }
.stage-four { grid-row: 4; }
.stage-five { grid-row: 5; }
.stage-six { grid-row: 6; }
.stage-seven { grid-row: 7; }
.stage-one::after,
.stage-three::after,
.stage-five::after,
.stage-seven::after {
  right: -34px;
}
.stage-two::after,
.stage-four::after,
.stage-six::after {
  left: -34px;
}
.stage-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 189, 89, 0.58);
  border-radius: 50%;
  background: rgba(243, 189, 89, 0.12);
  color: #f5d590;
  font-weight: 700;
}
.journey-stage small {
  display: block;
  color: #f0c66f;
  font-size: 1rem;
  font-weight: 700;
}
.journey-stage h3 {
  margin: 2px 0 5px;
  color: #fff;
  font-size: 1.65rem;
}
.journey-stage p {
  margin: 0;
  color: #d5e2dc;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.steps article {
  padding: 30px;
  border-top: 1px solid var(--line);
}
.steps b {
  color: var(--saffron);
  font-size: 1rem;
}
.steps p {
  color: var(--muted);
}
.download-section {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  margin-bottom: 100px;
  padding: 50px;
  border-radius: 32px;
  background: linear-gradient(120deg, #f8e5bc, #f4d6ae);
}
.download-section h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.download-section p {
  margin: 0;
  color: #6b5140;
}
.coming-button {
  background: rgba(123, 45, 26, 0.12);
  color: var(--deep);
  border-color: rgba(123, 45, 26, 0.2);
  white-space: nowrap;
}
.legal-links {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}
.legal-link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.legal-link-grid a {
  min-height: 130px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
}
.legal-link-grid span {
  color: var(--muted);
}
.site-footer {
  background: #201814;
  color: #f8eee5;
}
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}
.site-footer .brand {
  color: white;
}
.site-footer p {
  color: #cdbfb5;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #f8eee5;
}
.footer-inner > p {
  grid-column: 1/-1;
  margin: 10px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.legal-page {
  max-width: 860px;
  padding: 70px 0 100px;
}
.legal-hero {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}
.updated {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 99px;
  background: var(--cream);
  color: var(--deep);
  font-weight: 700;
}
.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.legal-section h2 {
  font-size: 1.85rem;
}
.legal-section li {
  margin-bottom: 12px;
}
.legal-section p,
.legal-section li {
  color: #514741;
}
.legal-section a {
  font-weight: 700;
}
.simple-list {
  padding-left: 1.25rem;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .app-preview {
    min-height: 570px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .occasion-grid {
    grid-template-columns: 1fr 1fr;
  }
  .occasion-head,
  .journey-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .journey-section {
    padding: 54px 32px;
  }
  .download-section,
  .legal-links {
    grid-template-columns: 1fr;
  }
  .coming-button {
    justify-self: start;
  }
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}
@media (max-width: 620px) {
  h1 {
    font-size: 3.25rem;
  }
  .hero,
  .section {
    padding: 70px 0;
  }
  .app-preview {
    min-height: 520px;
  }
  .phone-card {
    min-height: 520px;
    padding: 25px 22px;
  }
  .phone-kicker {
    margin-top: 28px;
  }
  .practice-orbit {
    width: 130px;
    height: 130px;
    margin: 24px auto;
  }
  .feature-grid,
  .occasion-grid,
  .steps,
  .legal-link-grid {
    grid-template-columns: 1fr;
  }
  .journey-section {
    width: calc(100% - 20px);
    padding: 44px 22px;
    border-radius: 28px;
  }
  .journey-map {
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: repeat(7, minmax(128px, auto));
    column-gap: 16px;
    margin-top: 44px;
  }
  .journey-route {
    grid-column: 1;
  }
  .stage-one,
  .stage-two,
  .stage-three,
  .stage-four,
  .stage-five,
  .stage-six,
  .stage-seven {
    grid-column: 2;
  }
  .journey-stage {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px 16px;
  }
  .journey-stage::after,
  .stage-one::after,
  .stage-two::after,
  .stage-three::after,
  .stage-four::after,
  .stage-five::after,
  .stage-six::after,
  .stage-seven::after {
    right: auto;
    left: -16px;
    width: 16px;
  }
  .stage-number {
    width: 44px;
    height: 44px;
  }
  .download-section {
    padding: 32px 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .stat-row {
    gap: 16px;
  }
  .trust-strip {
    justify-content: flex-start;
  }
  .nav {
    min-height: 68px;
  }
  .nav-cta {
    font-size: 1rem;
  }
  .legal-page {
    padding-top: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .feature-card {
    transition: none;
  }
}
