@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 200 800;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("assets/fonts/PlusJakartaSans-Italic.ttf") format("truetype");
  font-display: swap;
  font-style: italic;
  font-weight: 200 800;
}

@font-face {
  font-family: "Noto Nastaliq Urdu";
  src: url("assets/fonts/NotoNastaliqUrdu-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #15302a;
  --forest: #173f35;
  --forest-deep: #0e2c25;
  --forest-soft: #285a4d;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --sage: #dfe7dc;
  --sage-deep: #a9bcaa;
  --clay: #c96f52;
  --clay-soft: #f0d4c9;
  --gold: #e3b85b;
  --muted: #64746d;
  --white: #fffefb;
  --shell: color-mix(in srgb, var(--forest) 7%, transparent);
  --ease-heavy: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --content-width: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 9% 10%, rgba(201, 111, 82, 0.09), transparent 28rem),
    radial-gradient(circle at 88% 6%, rgba(40, 90, 77, 0.1), transparent 31rem),
    var(--cream);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--forest);
  color: var(--cream);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1.25rem;
  top: 1rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  transform: translateY(-180%);
  transition: transform 500ms var(--ease-heavy);
}

.skip-link:focus {
  transform: translateY(0);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-content: center;
  justify-items: center;
  background: var(--forest-deep);
  color: var(--cream);
  transition:
    opacity 800ms var(--ease-heavy),
    visibility 800ms var(--ease-heavy);
}

.preloader.is-complete {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  display: grid;
  width: 5.75rem;
  height: 5.75rem;
  place-items: center;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.preloader__mark img {
  width: 4.3rem;
  height: 4.3rem;
  object-fit: contain;
}

.preloader p {
  margin: 1.5rem 0 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preloader__track {
  width: 12rem;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.preloader__track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(0.08);
  transition: transform 500ms var(--ease-heavy);
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 28;
  width: 2rem;
  height: 2rem;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(23, 63, 53, 0.45);
  border-radius: 50%;
  transform: translate3d(-100px, -100px, 0);
  transition:
    width 400ms var(--ease-heavy),
    height 400ms var(--ease-heavy),
    background-color 400ms var(--ease-heavy),
    opacity 300ms var(--ease-heavy);
}

.cursor span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.23rem;
  height: 0.23rem;
  border-radius: 50%;
  background: var(--clay);
  transform: translate(-50%, -50%);
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  width: 3.25rem;
  height: 3.25rem;
  background: rgba(201, 111, 82, 0.1);
  border-color: rgba(201, 111, 82, 0.35);
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  padding: 1.25rem var(--page-gutter) 0;
  transform: translateY(0);
  transition: transform 650ms var(--ease-heavy);
}

.site-header.is-hidden {
  transform: translateY(-130%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(100%, 1110px);
  min-height: 4.1rem;
  margin: 0 auto;
  padding: 0.35rem 0.45rem 0.35rem 0.65rem;
  border: 1px solid rgba(23, 63, 53, 0.08);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow:
    0 18px 50px rgba(23, 63, 53, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding-right: 1.25rem;
  font-size: 1.02rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.brand img {
  width: 2.55rem;
  height: 2.55rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.8vw, 2.3rem);
}

.nav-links a {
  position: relative;
  color: rgba(21, 48, 42, 0.76);
  font-size: 0.78rem;
  font-weight: 650;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 1px;
  background: var(--clay);
  content: "";
  transition: right 500ms var(--ease-heavy);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  right: 0;
}

.button {
  display: inline-flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0.45rem 0.4rem 1.35rem;
  border: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 720;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition:
    transform 650ms var(--ease-heavy),
    color 650ms var(--ease-heavy),
    background-color 650ms var(--ease-heavy),
    box-shadow 650ms var(--ease-heavy);
}

.button:hover {
  transform: translate3d(0, -2px, 0);
}

.button:active {
  transform: scale(0.98);
}

.button--compact {
  min-height: 3.25rem;
  padding-left: 1.1rem;
  font-size: 0.74rem;
}

.button--dark {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 16px 36px rgba(23, 63, 53, 0.16);
}

.button--dark:hover {
  background: var(--forest-deep);
  box-shadow: 0 20px 44px rgba(23, 63, 53, 0.22);
}

.button--light {
  background: var(--cream);
  color: var(--forest);
  box-shadow: 0 18px 40px rgba(4, 23, 18, 0.18);
}

.button__icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 650ms var(--ease-heavy);
}

.button--compact .button__icon {
  width: 2.45rem;
  height: 2.45rem;
}

.button--light .button__icon {
  background: rgba(23, 63, 53, 0.1);
}

.button:hover .button__icon {
  transform: translate3d(0.22rem, -0.08rem, 0) scale(1.05);
}

.menu-toggle {
  display: none;
  width: 3.1rem;
  height: 3.1rem;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  cursor: pointer;
}

.menu-toggle__line {
  position: absolute;
  left: 50%;
  width: 1.1rem;
  height: 1px;
  background: var(--cream);
  transform: translateX(-50%);
  transition: transform 650ms var(--ease-heavy);
}

.menu-toggle__line:first-of-type {
  transform: translate(-50%, -0.22rem);
}

.menu-toggle__line:last-of-type {
  transform: translate(-50%, 0.22rem);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:first-of-type {
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:last-of-type {
  transform: translate(-50%, 0) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: grid;
  align-content: center;
  gap: 3rem;
  padding: 7rem var(--page-gutter) 2.5rem;
  background: rgba(14, 44, 37, 0.96);
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(24px);
  transition:
    opacity 650ms var(--ease-heavy),
    visibility 650ms var(--ease-heavy);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__links {
  display: grid;
}

.mobile-menu__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.14);
  font-size: clamp(2rem, 10vw, 4rem);
  letter-spacing: -0.06em;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
  transition:
    opacity 700ms var(--ease-heavy),
    transform 700ms var(--ease-heavy);
}

.mobile-menu.is-open .mobile-menu__links a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mobile-menu.is-open .mobile-menu__links a:nth-child(2) { transition-delay: 70ms; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(3) { transition-delay: 140ms; }
.mobile-menu.is-open .mobile-menu__links a:nth-child(4) { transition-delay: 210ms; }

.mobile-menu__links span {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(30rem, 0.89fr);
  grid-template-rows: 1fr auto;
  min-height: 100dvh;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(8.7rem, 14vh, 11rem) var(--page-gutter) 2.5rem;
  isolation: isolate;
}

.hero__ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.8;
}

.hero__ambient--one {
  right: -11rem;
  top: 5rem;
  width: 38rem;
  height: 38rem;
  background: rgba(169, 188, 170, 0.24);
}

.hero__ambient--two {
  left: 21%;
  bottom: 5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(240, 212, 201, 0.33);
}

.hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 2rem 1rem 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(23, 63, 53, 0.07);
  color: var(--forest);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow--light {
  background: rgba(246, 241, 232, 0.09);
  color: var(--cream);
}

.eyebrow__dot,
.live-pill i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 0.28rem rgba(201, 111, 82, 0.11);
}

.hero h1 {
  margin: 1.5rem 0 1.65rem;
  font-size: clamp(3.5rem, 6.1vw, 6.9rem);
  font-weight: 620;
  letter-spacing: -0.085em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
}

.hero__accent {
  color: var(--clay);
  font-style: italic;
  letter-spacing: -0.075em;
}

.hero__intro {
  max-width: 39rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.76;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-top: 2.25rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(23, 63, 53, 0.28);
  font-size: 0.78rem;
  font-weight: 720;
  transition:
    gap 500ms var(--ease-heavy),
    border-color 500ms var(--ease-heavy);
}

.text-link:hover {
  gap: 0.85rem;
  border-color: var(--clay);
}

.text-link > span:last-child {
  font-size: 1rem;
  line-height: 1;
}

.text-link--light {
  border-color: rgba(246, 241, 232, 0.26);
  color: var(--cream);
}

.hero__urdu {
  width: max-content;
  max-width: 100%;
  margin: 2rem 0 0;
  color: var(--forest-soft);
  font-family: "Noto Nastaliq Urdu", serif;
  font-size: 1rem;
}

.hero__visual {
  position: relative;
  align-self: center;
  min-height: min(70vh, 45rem);
  padding: 1.5rem 0 2rem 2rem;
}

.double-bezel {
  padding: 0.55rem;
  border: 1px solid rgba(23, 63, 53, 0.07);
  border-radius: 2.7rem;
  background: rgba(23, 63, 53, 0.055);
  box-shadow: 0 35px 80px rgba(23, 63, 53, 0.08);
}

.hero-stage {
  position: absolute;
  inset: 0 0 0 2rem;
  transform: rotate(1.5deg);
}

.hero-stage__core {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.15rem;
  background:
    radial-gradient(circle at 62% 33%, rgba(255, 255, 255, 0.82), transparent 23rem),
    var(--sage);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.62);
}

.stage-label {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  z-index: 2;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--forest);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-student {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  width: auto;
  height: calc(100% - 4.5rem);
  max-width: calc(100% - 2.5rem);
  max-height: calc(100% - 4.5rem);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 30px rgba(23, 63, 53, 0.08));
  transform: translateX(-50%) rotate(-1.5deg);
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  max-width: 16.5rem;
  padding: 0.7rem 1rem 0.7rem 0.75rem;
  border: 1px solid rgba(23, 63, 53, 0.08);
  border-radius: 1.2rem;
  background: rgba(255, 253, 248, 0.93);
  box-shadow: 0 22px 48px rgba(23, 63, 53, 0.12);
  font-size: 0.74rem;
  font-weight: 680;
}

.float-card small {
  display: block;
  margin-bottom: 0.05rem;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 600;
}

.float-card__icon {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.85rem;
  background: var(--sage);
  color: var(--forest);
}

.float-card__icon--clay {
  background: var(--clay-soft);
  color: #83432f;
}

.float-card__icon img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: contain;
}

.float-card--mood {
  left: -0.5rem;
  top: 22%;
  transform: rotate(-3deg);
}

.float-card--private {
  right: -1.3rem;
  bottom: 14%;
  transform: rotate(2.5deg);
}

.hero__proof {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.6vw, 2.5rem);
  padding-top: 2rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__proof i {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: var(--clay);
}

.section-heading {
  max-width: 73rem;
}

.section-heading h2,
.checkin-demo h2,
.privacy h2,
.faq h2,
.final-cta h2 {
  margin: 1.35rem 0 0;
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 570;
  letter-spacing: -0.078em;
  line-height: 0.98;
}

.section-heading p {
  max-width: 39rem;
  margin: 1.5rem 0 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.story {
  padding: clamp(7rem, 12vw, 11rem) var(--page-gutter);
  background: var(--forest-deep);
  color: var(--cream);
}

.story > .section-heading,
.toolkit > .section-heading,
.principles > .section-heading,
.faq,
.final-cta,
.site-footer {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.story .section-heading {
  margin-bottom: clamp(6rem, 11vw, 10rem);
}

.story-chapter {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 0.82fr) minmax(26rem, 1fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: min(82rem, 92dvh);
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 5rem 0;
  border-top: 1px solid rgba(246, 241, 232, 0.11);
}

.story-chapter__number {
  align-self: start;
  padding-top: 0.5rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 740;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.story-chapter__kicker {
  margin: 0 0 1rem;
  color: var(--gold) !important;
  font-size: 0.65rem !important;
  font-weight: 760;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.story-chapter__copy h3 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  font-weight: 530;
  letter-spacing: -0.075em;
  line-height: 1;
}

.story-chapter__copy > p:not(.story-chapter__kicker) {
  max-width: 36rem;
  margin: 1.8rem 0 0;
  color: rgba(246, 241, 232, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.85;
}

.story-chapter__visual {
  position: relative;
  min-height: 40rem;
}

.story-chapter__visual > img {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 0;
  width: min(95%, 42rem);
  filter: drop-shadow(0 35px 40px rgba(0, 0, 0, 0.12));
}

.story-orbit {
  position: absolute;
  inset: 8% 4% 6% 8%;
  border: 1px solid rgba(246, 241, 232, 0.1);
  border-radius: 50%;
}

.story-orbit::before,
.story-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(246, 241, 232, 0.07);
  border-radius: 50%;
  content: "";
}

.story-orbit::after {
  inset: 25%;
}

.story-orbit span {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--clay);
}

.story-orbit span:nth-child(1) { left: 11%; top: 23%; }
.story-orbit span:nth-child(2) { right: 7%; top: 45%; background: var(--gold); }
.story-orbit span:nth-child(3) { left: 35%; bottom: 5%; background: var(--sage-deep); }

.screen-whisper {
  position: absolute;
  z-index: 3;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(246, 241, 232, 0.11);
  border-radius: 999px;
  background: rgba(14, 44, 37, 0.78);
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.62rem;
  backdrop-filter: blur(10px);
}

.screen-whisper--one { left: 3%; top: 20%; transform: rotate(-5deg); }
.screen-whisper--two { right: -2%; top: 42%; transform: rotate(4deg); }
.screen-whisper--three { left: 5%; bottom: 12%; transform: rotate(2deg); }

.story-chapter--feelings,
.story-chapter--next-step {
  grid-template-columns: 4rem minmax(26rem, 1fr) minmax(0, 0.82fr);
}

.emotion-stack {
  display: flex;
  align-items: center;
  justify-content: center;
}

.emotion-card {
  position: absolute;
  display: grid;
  width: min(64%, 25rem);
  aspect-ratio: 0.78;
  align-content: end;
  overflow: hidden;
  padding: 1.15rem;
  border-radius: 2.2rem;
  background: #d8e2d4;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.16);
}

.emotion-card img {
  position: absolute;
  inset: 5% 0 auto;
  width: 100%;
}

.emotion-card span {
  position: relative;
  z-index: 2;
  width: max-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.75);
  color: var(--forest);
  font-size: 0.64rem;
  font-weight: 720;
  backdrop-filter: blur(8px);
}

.emotion-card--sad {
  left: 12%;
  top: 8%;
  transform: rotate(-6deg);
}

.emotion-card--angry {
  right: 8%;
  bottom: 5%;
  background: #ead4c9;
  transform: rotate(7deg);
}

.story-list {
  display: grid;
  gap: 0;
  max-width: 36rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
  color: rgba(246, 241, 232, 0.77);
  font-size: 0.76rem;
}

.story-list span {
  color: var(--gold);
  font-size: 0.58rem;
}

.journal-visual {
  overflow: hidden;
  border-radius: 2.7rem;
  background: #dfe7dc;
}

.journal-visual img {
  right: 4%;
  bottom: 1%;
  width: auto;
  height: 96%;
  max-width: 64%;
  object-fit: contain;
  object-position: right bottom;
}

.journal-paper {
  position: absolute;
  left: 8%;
  top: 10%;
  z-index: 3;
  display: grid;
  width: 42%;
  gap: 0.7rem;
  padding: 1.4rem;
  border-radius: 1.3rem;
  background: rgba(255, 253, 248, 0.9);
  color: var(--forest);
  box-shadow: 0 20px 45px rgba(23, 63, 53, 0.13);
  transform: rotate(-5deg);
}

.journal-paper span {
  font-size: 0.69rem;
  font-weight: 700;
}

.journal-paper i {
  height: 1px;
  background: rgba(23, 63, 53, 0.13);
}

.story-chapter--next-step .story-chapter__visual {
  overflow: hidden;
  border-radius: 48% 48% 2.5rem 2.5rem;
  background: #ebddc4;
}

.story-chapter--next-step .story-chapter__visual img {
  left: 50%;
  right: auto;
  bottom: 1%;
  width: auto;
  height: 96%;
  max-width: calc(100% - 2rem);
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
}

.gentle-badge {
  position: absolute;
  right: 5%;
  top: 14%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  box-shadow: 0 15px 30px rgba(23, 63, 53, 0.13);
  font-size: 0.62rem;
  font-weight: 720;
}

.gentle-badge span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
}

.toolkit {
  padding: clamp(7rem, 13vw, 12rem) var(--page-gutter);
}

.toolkit .section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(15rem, 0.38fr);
  align-items: end;
  margin-bottom: 5rem;
}

.toolkit .section-heading .eyebrow,
.toolkit .section-heading h2 {
  grid-column: 1;
}

.toolkit .section-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(15rem, auto);
  gap: 1.1rem;
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 2.5vw, 2.4rem);
  border: 0.5rem solid rgba(23, 63, 53, 0.05);
  border-radius: 2.6rem;
  background: var(--paper);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 30px 70px rgba(23, 63, 53, 0.06);
}

.feature-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 740;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 1rem 0 0.7rem;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  font-weight: 590;
  letter-spacing: -0.065em;
  line-height: 1.05;
}

.feature-card p {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

.feature-card--mood {
  grid-column: span 5;
  min-height: 33rem;
  background: #e0e8dd;
}

.feature-card__icon {
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  margin-top: 4rem;
  place-items: center;
  border-radius: 1.35rem;
  background: var(--forest);
  color: var(--cream);
}

.feature-card__icon img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

.mini-chart {
  position: absolute;
  left: 2.4rem;
  right: 2.4rem;
  bottom: 2.4rem;
  display: flex;
  align-items: end;
  gap: clamp(0.45rem, 1vw, 0.8rem);
  height: 5.6rem;
}

.mini-chart i {
  flex: 1;
  height: 35%;
  border-radius: 999px 999px 0.7rem 0.7rem;
  background: rgba(23, 63, 53, 0.14);
}

.mini-chart i:nth-child(2) { height: 56%; }
.mini-chart i:nth-child(3) { height: 42%; }
.mini-chart i:nth-child(4) { height: 78%; background: var(--clay); }
.mini-chart i:nth-child(5) { height: 64%; }
.mini-chart i:nth-child(6) { height: 84%; }
.mini-chart i:nth-child(7) { height: 70%; }

.feature-card--journal {
  grid-column: span 7;
  min-height: 33rem;
  background: #eadacb;
}

.feature-card--journal img {
  position: absolute;
  right: -4%;
  bottom: -21%;
  width: 66%;
}

.feature-card--journal .feature-card__copy {
  position: absolute;
  left: 2.4rem;
  bottom: 2.4rem;
  z-index: 2;
  width: 47%;
}

.feature-card--calm {
  grid-column: span 4;
  min-height: 33rem;
  background: var(--forest);
  color: var(--cream);
}

.feature-card--calm .feature-card__topline,
.feature-card--calm p {
  color: rgba(246, 241, 232, 0.67);
}

.breathing-orb {
  display: grid;
  width: 12rem;
  height: 12rem;
  margin: 2.3rem auto 2rem;
  place-items: center;
  border: 1px solid rgba(246, 241, 232, 0.13);
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.07);
  box-shadow:
    0 0 0 1.5rem rgba(246, 241, 232, 0.035),
    0 0 0 3rem rgba(246, 241, 232, 0.018);
  animation: breathe 7s var(--ease-heavy) infinite;
}

.breathing-orb span {
  font-size: 0.63rem;
  font-weight: 730;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-card--support {
  grid-column: span 8;
  min-height: 33rem;
  background: #e4e6d6;
}

.feature-card--support .feature-card__copy {
  position: relative;
  z-index: 2;
  width: 47%;
  margin-top: 4.5rem;
}

.feature-card--support img {
  position: absolute;
  right: -7%;
  bottom: -17%;
  width: 63%;
}

.checkin-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(34rem, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 11rem) var(--page-gutter);
}

.checkin-demo__copy p {
  max-width: 34rem;
  color: var(--muted);
}

.checkin-panel {
  transform: rotate(1.4deg);
}

.checkin-panel__core {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border-radius: 2.15rem;
  background: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotate(-1.4deg);
}

.checkin-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  font-weight: 750;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(23, 63, 53, 0.06);
  color: var(--muted);
  font-size: 0.58rem;
}

.live-pill i {
  width: 0.32rem;
  height: 0.32rem;
  background: #52a46e;
  box-shadow: 0 0 0 0.22rem rgba(82, 164, 110, 0.11);
}

.mood-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
}

.mood-options button {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding: 1rem 0.45rem;
  border: 0;
  border-radius: 1.2rem;
  background: rgba(23, 63, 53, 0.045);
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 600ms var(--ease-heavy),
    background-color 600ms var(--ease-heavy),
    color 600ms var(--ease-heavy);
}

.mood-options button span {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(23, 63, 53, 0.08);
  font-size: 0.75rem;
}

.mood-options button:hover,
.mood-options button.is-selected {
  background: var(--forest);
  color: var(--cream);
  transform: translate3d(0, -0.25rem, 0);
}

.mood-options button.is-selected span {
  color: var(--forest);
}

.mood-response {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.3rem;
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1.3rem;
  background: var(--sage);
}

.mood-response__mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-size: 1rem;
  font-weight: 800;
}

.mood-response p {
  margin: 0;
  color: var(--forest);
  font-size: 0.72rem;
  line-height: 1.6;
}

.privacy {
  display: grid;
  grid-template-columns: minmax(29rem, 0.82fr) minmax(0, 0.85fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  max-width: none;
  padding: clamp(7rem, 12vw, 11rem) max(var(--page-gutter), calc((100vw - var(--content-width)) / 2 + var(--page-gutter)));
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--cream);
}

.privacy__visual {
  position: relative;
  min-height: 45rem;
}

.privacy__visual > img {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: min(100%, 44rem);
  height: auto;
  max-height: 94%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
}

.privacy-halo {
  position: absolute;
  inset: 5% 2% 0;
  border: 1px solid rgba(246, 241, 232, 0.1);
  border-radius: 50% 50% 2.5rem 2.5rem;
  background: rgba(246, 241, 232, 0.05);
}

.privacy-halo::after {
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(246, 241, 232, 0.055);
  border-radius: inherit;
  content: "";
}

.encryption-seal {
  position: absolute;
  right: -1.5rem;
  bottom: 7%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem 0.8rem 0.8rem;
  border-radius: 1.3rem;
  background: var(--paper);
  color: var(--forest);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
  font-size: 0.68rem;
  font-weight: 690;
}

.encryption-seal img {
  width: 3.1rem;
  height: 3.1rem;
  padding: 0.35rem;
  border-radius: 0.9rem;
  background: var(--clay-soft);
  object-fit: contain;
}

.encryption-seal small {
  display: block;
  color: var(--muted);
  font-size: 0.56rem;
}

.privacy__copy > p {
  max-width: 38rem;
  margin: 1.8rem 0 0;
  color: rgba(246, 241, 232, 0.68);
  font-size: 1.02rem;
  line-height: 1.85;
}

.privacy-list {
  display: grid;
  margin: 2.4rem 0 2rem;
}

.privacy-list > div {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(246, 241, 232, 0.1);
}

.privacy-list > div > span {
  color: var(--gold);
  font-size: 0.58rem;
}

.privacy-list p {
  margin: 0;
  color: rgba(246, 241, 232, 0.62);
  font-size: 0.72rem;
}

.privacy-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--cream);
  font-size: 0.8rem;
}

.principles {
  padding: clamp(7rem, 12vw, 11rem) var(--page-gutter);
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  width: min(100%, var(--content-width));
  margin: 5rem auto 0;
}

.principle {
  grid-column: span 4;
  min-height: 24rem;
  padding: 2rem;
  border-radius: 2.2rem;
  background: var(--paper);
  box-shadow: inset 0 0 0 0.5rem rgba(23, 63, 53, 0.04);
}

.principle:nth-child(2) {
  margin-top: 4rem;
  background: var(--clay-soft);
}

.principle:nth-child(3) {
  margin-top: 8rem;
  background: var(--sage);
}

.principle > span {
  color: var(--clay);
  font-size: 0.61rem;
  font-weight: 750;
}

.principle h3 {
  margin: 5.5rem 0 1rem;
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  font-weight: 570;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(30rem, 0.9fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(7rem, 12vw, 11rem) var(--page-gutter);
}

.faq__intro > p {
  max-width: 30rem;
  color: var(--muted);
}

.faq__list {
  align-self: center;
}

.faq details {
  border-bottom: 1px solid rgba(23, 63, 53, 0.13);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 0.88rem;
  font-weight: 710;
  list-style: none;
  cursor: pointer;
}

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

.faq summary span {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(23, 63, 53, 0.06);
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.8rem;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 500ms var(--ease-heavy);
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq details p {
  max-width: 38rem;
  margin: -0.3rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.8;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(20rem, 0.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: 44rem;
  padding: clamp(3rem, 7vw, 7rem);
  border-radius: 3rem 3rem 0 0;
  overflow: hidden;
  background: var(--clay);
  color: var(--cream);
}

.final-cta__art {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(246, 241, 232, 0.14);
  border-radius: 50%;
  background: rgba(246, 241, 232, 0.07);
  box-shadow:
    0 0 0 2rem rgba(246, 241, 232, 0.035),
    0 0 0 4rem rgba(246, 241, 232, 0.018);
}

.final-cta__art img {
  width: 82%;
  filter: drop-shadow(0 30px 30px rgba(75, 32, 21, 0.18));
}

.final-cta h2 {
  max-width: 52rem;
}

.final-cta__copy > p {
  margin: 1.4rem 0 0;
  color: rgba(246, 241, 232, 0.78);
  font-size: 1.05rem;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.release-note {
  max-width: 12rem;
  color: rgba(246, 241, 232, 0.68);
  font-size: 0.6rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 3rem;
  padding: 4.5rem var(--page-gutter) 2rem;
  background: var(--forest-deep);
  color: var(--cream);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-footer__brand img {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}

.site-footer__brand strong,
.site-footer__brand span {
  display: block;
}

.site-footer__brand strong {
  font-size: 1.15rem;
}

.site-footer__brand span,
.site-footer__disclaimer,
.site-footer__bottom {
  color: rgba(246, 241, 232, 0.55);
  font-size: 0.6rem;
}

.site-footer__disclaimer {
  max-width: 38rem;
  margin: 0;
  line-height: 1.8;
}

.site-footer__links {
  display: flex;
  gap: 1.2rem;
  align-items: start;
  font-size: 0.66rem;
  font-weight: 700;
}

.site-footer__links a {
  border-bottom: 1px solid rgba(246, 241, 232, 0.18);
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(246, 241, 232, 0.1);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
  transition:
    opacity 1000ms var(--ease-heavy),
    transform 1000ms var(--ease-heavy);
}

.reveal--delay {
  transition-delay: 130ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes breathe {
  0%, 100% { transform: scale(0.88); opacity: 0.78; }
  50% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .nav-download { display: none; }
  .menu-toggle { position: relative; display: block; grid-column: 3; }

  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .float-card--private { right: -0.5rem; }

  .story-chapter,
  .story-chapter--feelings,
  .story-chapter--next-step {
    grid-template-columns: 2rem 0.85fr 1fr;
    gap: 2rem;
  }

  .story-chapter__visual { min-height: 33rem; }
  .feature-card--mood,
  .feature-card--calm { grid-column: span 5; }
  .feature-card--journal,
  .feature-card--support { grid-column: span 7; }
}

@media (max-width: 820px) {
  :root { --page-gutter: 1.25rem; }

  .site-header { padding-top: 0.8rem; }
  .nav-shell { min-height: 3.8rem; }
  .brand img { width: 2.35rem; height: 2.35rem; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
    padding-top: 8rem;
  }

  .hero__copy { padding: 1rem 0 3rem; }
  .hero h1 { font-size: clamp(3.35rem, 13.2vw, 5.5rem); }
  .hero__visual { min-height: 39rem; padding-left: 0; }
  .hero-stage { left: 0; }
  .float-card--mood { left: 0; top: 15%; }
  .float-card--private { right: 0; bottom: 9%; }
  .hero__proof { flex-wrap: wrap; }

  .story,
  .toolkit,
  .principles,
  .faq,
  .checkin-demo {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .section-heading h2,
  .checkin-demo h2,
  .privacy h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(2.8rem, 11vw, 4.9rem);
  }

  .story-chapter,
  .story-chapter--feelings,
  .story-chapter--next-step {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2.5rem;
    padding: 5rem 0;
  }

  .story-chapter__number { writing-mode: horizontal-tb; }
  .story-chapter__copy { order: 2; }
  .story-chapter__visual { order: 3; min-height: 34rem; }
  .story-chapter--feelings .story-chapter__visual,
  .story-chapter--next-step .story-chapter__visual { order: 2; }
  .story-chapter--feelings .story-chapter__copy,
  .story-chapter--next-step .story-chapter__copy { order: 3; }

  .toolkit .section-heading { display: block; }
  .toolkit .section-heading p { margin-left: 0; }
  .toolkit-grid { grid-template-columns: 1fr; }
  .feature-card--mood,
  .feature-card--journal,
  .feature-card--calm,
  .feature-card--support { grid-column: 1; }

  .checkin-demo,
  .privacy,
  .faq {
    grid-template-columns: 1fr;
  }

  .checkin-panel { transform: none; }
  .checkin-panel__core { transform: none; }

  .privacy {
    gap: 4rem;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }

  .privacy__visual { min-height: 39rem; }

  .principles__grid { grid-template-columns: 1fr; }
  .principle { grid-column: 1; min-height: 20rem; }
  .principle:nth-child(2),
  .principle:nth-child(3) { margin-top: 0; }

  .final-cta {
    grid-template-columns: 1fr;
    margin: 0;
    border-radius: 2.3rem 2.3rem 0 0;
  }

  .final-cta__art { width: min(80vw, 28rem); margin-inline: auto; }

  .site-footer { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__bottom { grid-column: 1; }
}

@media (max-width: 560px) {
  .hero__actions,
  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .final-cta__actions .button { width: 100%; }

  .hero__visual { min-height: 31rem; }
  .hero-stage { inset: 0; }
  .stage-label { left: 1rem; top: 1rem; }
  .float-card { max-width: 13.5rem; font-size: 0.62rem; }
  .float-card--mood { top: 10%; }
  .float-card--private { bottom: 5%; }
  .hero__proof { justify-content: flex-start; }

  .story-chapter__visual { min-height: 27rem; }
  .screen-whisper--two { right: 0; }
  .emotion-card { width: 68%; }
  .journal-paper { width: 54%; }

  .feature-card--journal .feature-card__copy,
  .feature-card--support .feature-card__copy { left: 1.5rem; bottom: 1.5rem; width: 61%; }
  .feature-card--journal img { width: 76%; right: -17%; }
  .feature-card--support img { width: 73%; right: -19%; }

  .mood-options { grid-template-columns: repeat(3, 1fr); }
  .mood-options button:nth-child(4),
  .mood-options button:nth-child(5) { grid-column: span 1; }

  .privacy__visual { min-height: 28rem; }
  .encryption-seal { right: 0; max-width: 15rem; }

  .final-cta { padding: 4rem 1.25rem; }
  .site-footer__links { flex-wrap: wrap; }
  .site-footer__bottom { flex-direction: column; gap: 0.5rem; }
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .preloader { display: none; }
}
