:root {
  --bg: #fbf5ee;
  --paper: #fffaf4;
  --ink: #252323;
  --muted: #697573;
  --teal: #829880;
  --teal-dark: #5f755f;
  --coral: #c9856a;
  --rose: #f2c8bd;
  --mist: #e7ebe7;
  --lavender: #ebe7ef;
  --line: rgba(23, 32, 31, 0.14);
  --shadow: 0 28px 70px rgba(65, 55, 48, 0.12);
  --radius: 8px;
  --font: "Avenir Next", "Helvetica Neue", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 18px max(16px, calc((100vw - 1160px) / 2));
  background: rgba(251, 245, 238, 0.86);
  backdrop-filter: blur(18px);
}

.legal-header {
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset -7px -7px 0 rgba(255, 255, 255, 0.14);
}

.brand-mark span {
  width: 14px;
  height: 14px;
  border: 3px solid #fffaf4;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  color: #fffaf4;
  background: var(--ink);
}

.button {
  gap: 10px;
  padding: 0 22px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffaf4;
  background: var(--teal);
  box-shadow: 0 16px 34px rgba(31, 122, 115, 0.22);
}

.button-secondary {
  color: var(--teal-dark);
  border: 1px solid rgba(31, 122, 115, 0.28);
  background: rgba(255, 250, 244, 0.72);
}

.button-icon {
  width: 16px;
  height: 20px;
  border-radius: 4px;
  background: #fffaf4;
  box-shadow: inset 0 -4px 0 rgba(23, 32, 31, 0.16);
}

.section-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 34px 0 48px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(40px, 5.4vw, 66px);
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.nowrap {
  white-space: nowrap;
}

.hero-lede {
  max-width: 510px;
  margin: 24px 0 0;
  color: #5f5a58;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.screen-stack {
  position: relative;
  width: min(560px, 100%);
  min-height: 590px;
}

.app-shot {
  display: block;
  width: 255px;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(65, 55, 48, 0.16);
}

.app-shot-main {
  position: absolute;
  top: 18px;
  left: 52px;
  width: 292px;
  z-index: 2;
}

.app-shot-side {
  position: absolute;
  right: 12px;
  top: 96px;
  width: 244px;
  opacity: 0.94;
  z-index: 1;
}

.screen-stack::before,
.screen-stack::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.screen-stack::before {
  width: 360px;
  height: 360px;
  right: 56px;
  top: 92px;
  background: #e4ece4;
}

.screen-stack::after {
  width: 150px;
  height: 150px;
  right: 10px;
  bottom: 78px;
  background: #efd6cd;
}

.soft-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.78;
}

.orbit-one {
  width: 400px;
  height: 400px;
  background: #d9ece5;
}

.orbit-two {
  right: 0;
  bottom: 82px;
  width: 190px;
  height: 190px;
  background: var(--rose);
}

.phone-frame {
  position: relative;
  width: min(308px, 82vw);
  padding: 13px;
  border: 1px solid rgba(23, 32, 31, 0.2);
  border-radius: 42px;
  background: #15211f;
  box-shadow: var(--shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  width: 94px;
  height: 25px;
  border-radius: 999px;
  background: #101716;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  overflow: hidden;
  min-height: 560px;
  padding: 54px 18px 20px;
  border-radius: 31px;
  background: linear-gradient(160deg, #fffaf4 0%, #eef5ef 58%, #f6ded6 100%);
}

.phone-top,
.reflection-card,
.insight-list > div,
.board-row {
  border: 1px solid rgba(23, 32, 31, 0.1);
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(14px);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.status-dot {
  color: var(--teal);
}

.mood-panel {
  margin: 16px 0;
  padding: 20px 16px 18px;
  border-radius: 8px;
  color: #fffaf4;
  background: var(--teal-dark);
}

.mood-panel p {
  margin: 0 0 8px;
  color: rgba(255, 250, 244, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.mood-panel h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  margin: 15px 0;
}

.waveform i {
  width: 10px;
  border-radius: 999px;
  background: #fffaf4;
  animation: pulse 1.3s ease-in-out infinite;
}

.waveform i:nth-child(1) { height: 24px; }
.waveform i:nth-child(2) { height: 46px; animation-delay: 80ms; }
.waveform i:nth-child(3) { height: 62px; animation-delay: 160ms; }
.waveform i:nth-child(4) { height: 38px; animation-delay: 240ms; }
.waveform i:nth-child(5) { height: 70px; animation-delay: 320ms; }
.waveform i:nth-child(6) { height: 34px; animation-delay: 400ms; }
.waveform i:nth-child(7) { height: 52px; animation-delay: 480ms; }

.mic-button {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
}

.mic-button span {
  width: 18px;
  height: 28px;
  border: 3px solid #fffaf4;
  border-radius: 999px;
}

.reflection-card,
.insight-list > div {
  border-radius: var(--radius);
  padding: 14px;
}

.reflection-card span,
.insight-list strong,
.board-row span {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.reflection-card p {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
}

.insight-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.insight-list span {
  display: block;
  margin-top: 6px;
  color: #4d5a58;
  font-size: 13px;
  line-height: 1.35;
}

.intro-band {
  padding: 34px 0;
  background: #182321;
  color: #fffaf4;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
  align-items: center;
}

.intro-grid p {
  margin: 0;
  max-width: 820px;
  font-size: clamp(20px, 2.35vw, 28px);
  font-weight: 400;
  line-height: 1.42;
}

.mini-stat {
  padding: 22px;
  border-left: 1px solid rgba(255, 250, 244, 0.24);
}

.mini-stat strong,
.mini-stat span {
  display: block;
}

.mini-stat strong {
  font-size: 21px;
  font-weight: 650;
}

.mini-stat span {
  margin-top: 8px;
  color: rgba(255, 250, 244, 0.7);
  line-height: 1.45;
}

.process-section,
.support-section,
.progress-section {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 46px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.support-copy h2,
.insight-copy h2,
.progress-panel h2,
.privacy-grid h2,
.legal-document h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 540;
  letter-spacing: -0.005em;
}

.section-heading p,
.support-copy p,
.insight-copy p,
.progress-panel p,
.privacy-grid p {
  margin: 0;
  color: #4f5c5a;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-steps article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.step-number {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.process-steps h3 {
  margin: 52px 0 14px;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 560;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.support-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.support-copy {
  position: sticky;
  top: 104px;
}

.support-copy p {
  margin-top: 20px;
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(19px, 2.3vw, 28px);
  font-weight: 560;
}

.product-section {
  padding: 78px 0;
  background: #fffaf4;
  border-top: 1px solid var(--line);
}

.product-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 540;
  line-height: 1.06;
}

.product-copy p {
  margin: 22px 0 0;
  color: #5f5a58;
  font-size: 18px;
  line-height: 1.65;
}

.shot-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.shot-pair figure {
  margin: 0;
}

.shot-pair figure:nth-child(2) {
  margin-top: 62px;
}

.shot-pair img,
.insight-showcase img,
.journal-shots img {
  display: block;
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(65, 55, 48, 0.13);
}

.shot-pair figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.support-list span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  flex: 0 0 auto;
}

.insight-section {
  padding: 104px 0;
  background: #eaf1ec;
}

.insight-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 54px;
  align-items: center;
}

.insight-copy p {
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--teal-dark);
  font-weight: 650;
}

.insight-showcase {
  display: grid;
  grid-template-columns: 0.92fr 0.92fr;
  gap: 18px;
  align-items: center;
}

.insight-showcase img:first-child {
  margin-top: 42px;
}

.insight-board {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(23, 32, 31, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.48);
}

.board-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  border-radius: var(--radius);
}

.board-row strong {
  font-size: 19px;
  line-height: 1.3;
}

.progress-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius);
  background: #fffaf4;
  box-shadow: 0 22px 56px rgba(23, 32, 31, 0.1);
}

.progress-panel p {
  margin-top: 18px;
}

.journal-shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.journal-shots img:first-child {
  margin-top: 46px;
}

.progress-lines {
  display: grid;
  gap: 18px;
}

.progress-lines div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.progress-lines span {
  position: absolute;
  inset: 0 auto 0 0;
  background: rgba(31, 122, 115, 0.22);
}

.progress-lines strong {
  position: relative;
  font-size: 15px;
  z-index: 1;
}

.privacy-band {
  padding: 76px 0;
  background: var(--lavender);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 46px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fffaf4;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.footer-inner p {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-document {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.legal-date {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 650;
}

.legal-document h1 {
  margin-bottom: 28px;
}

.legal-document h2 {
  margin: 34px 0 10px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 650;
}

.legal-document p {
  margin: 0 0 14px;
  color: #4a5755;
  font-size: 16px;
  line-height: 1.72;
}

.legal-document a {
  color: var(--teal-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@keyframes pulse {
  0%, 100% { transform: scaleY(0.72); opacity: 0.72; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
    padding: 14px 16px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro-grid,
  .section-heading,
  .support-section,
  .insight-grid,
  .progress-panel,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 26px;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .screen-stack {
    width: min(620px, 100%);
    min-height: 560px;
  }

  .app-shot-main {
    left: max(0px, calc(50% - 260px));
    width: min(280px, 52vw);
  }

  .app-shot-side {
    right: max(0px, calc(50% - 280px));
    width: min(232px, 43vw);
  }

  .product-grid,
  .insight-grid,
  .progress-panel {
    grid-template-columns: 1fr;
  }

  .phone-screen {
    min-height: 550px;
  }

  .intro-grid {
    gap: 22px;
  }

  .mini-stat {
    padding-left: 0;
    border-left: 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps article {
    min-height: auto;
  }

  .process-steps h3 {
    margin-top: 34px;
  }

  .support-copy {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inner p {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .footer-inner,
  .legal-page {
    width: min(100% - 24px, 1160px);
  }

  .site-header {
    width: 100%;
    padding: 12px;
    gap: 10px;
  }

  .brand {
    font-size: 16px;
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
    flex: 0 0 auto;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 52px);
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }

  .trust-row {
    display: grid;
    gap: 9px;
  }

  .hero-visual {
    min-height: 430px;
    overflow: hidden;
  }

  .phone-frame {
    width: min(310px, 92vw);
  }

  .phone-screen {
    min-height: 520px;
  }

  .orbit-one {
    width: 320px;
    height: 320px;
  }

  .section-heading h2,
  .support-copy h2,
  .insight-copy h2,
  .progress-panel h2,
  .privacy-grid h2,
  .legal-document h1 {
    font-size: 36px;
  }

  .process-section,
  .support-section,
  .progress-section,
  .insight-section {
    padding: 72px 0;
  }

  .progress-panel,
  .legal-document {
    padding: 26px;
  }

  .screen-stack {
    width: 100%;
    min-height: 430px;
  }

  .app-shot-main {
    left: 0;
    top: 8px;
    width: min(230px, 62vw);
    border-radius: 24px;
  }

  .app-shot-side {
    right: 0;
    top: 62px;
    width: min(188px, 50vw);
    border-radius: 22px;
  }

  .screen-stack::before {
    width: 250px;
    height: 250px;
    right: 14px;
    top: 74px;
  }

  .screen-stack::after {
    width: 104px;
    height: 104px;
    right: 2px;
    bottom: 66px;
  }

  .shot-pair,
  .insight-showcase,
  .journal-shots {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shot-pair img,
  .insight-showcase img,
  .journal-shots img {
    max-height: 560px;
    border-radius: 22px;
  }

  .product-section {
    padding: 64px 0;
  }

  .shot-pair figure:nth-child(2),
  .insight-showcase img:first-child,
  .journal-shots img:first-child {
    margin-top: 0;
  }

  .board-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
