:root {
  color-scheme: light;
  --paper: #f8f5ed;
  --paper-warm: #fffaf1;
  --surface: #fffdf8;
  --ink: #28262d;
  --ink-soft: #67636d;
  --line: #d9d3c7;
  --coral: #ff705d;
  --coral-dark: #b94337;
  --coral-soft: #ffd9cf;
  --sky: #cbe4e5;
  --sky-dark: #78afb0;
  --butter: #f6cd66;
  --butter-soft: #ffedb2;
  --lilac: #dcd6f7;
  --mint: #d4e8d4;
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --shadow-soft: 0 24px 70px rgba(78, 67, 52, 0.11);
  --shadow-card: 0 12px 0 rgba(40, 38, 45, 0.06);
  --tg: #229ed9;
  --tg-gradient: linear-gradient(180deg, #2aabee, #1f97cf);
  --font-ui: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 11% 9%, rgba(255, 217, 207, 0.46), transparent 22rem),
    radial-gradient(circle at 89% 13%, rgba(203, 228, 229, 0.55), transparent 25rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(40, 38, 45, 0.045) 0.7px, transparent 0.7px);
  background-size: 11px 11px;
  content: "";
  pointer-events: none;
}

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

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

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(230, 86, 71, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--surface);
  font-weight: 700;
  translate: 0 -160%;
}

.skip-link:focus {
  translate: 0;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-space {
  padding-block: 110px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(217, 211, 199, 0.85);
  background: rgba(248, 245, 237, 0.88);
  box-shadow: 0 8px 34px rgba(72, 61, 48, 0.06);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
}

.brand__mark {
  width: 42px;
  height: 42px;
}

.brand__name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #4b4851;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--coral);
  content: "";
  scale: 0 1;
  transform-origin: right;
  transition: scale 180ms ease;
}

.site-nav a:hover::after {
  scale: 1 1;
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--tg-gradient);
  box-shadow: 3px 3px 0 var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: translate 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.header-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.header-cta:hover {
  box-shadow: 1px 1px 0 var(--ink);
  filter: brightness(1.06);
  translate: 2px 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 60px;
  padding: 16px 24px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  transition: translate 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover {
  box-shadow: 2px 2px 0 var(--ink);
  translate: 3px 3px;
}

.button--primary {
  background: var(--tg-gradient);
  color: #fff;
}

.button--primary:hover {
  filter: brightness(1.06);
}

.button svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.soft-label,
.eyebrow {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.soft-label {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--coral);
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(520px, 1.09fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-block: 64px 54px;
}

.hero__copy {
  position: relative;
  z-index: 3;
}

.hero h1 {
  max-width: 660px;
  margin-top: 23px;
  font-size: clamp(44px, 4.6vw, 64px);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero__accent {
  position: relative;
  display: inline;
  z-index: 0;
}

.hero__accent::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.02em;
  left: -0.04em;
  height: 0.28em;
  border-radius: 80% 34% 70% 25%;
  background: var(--butter);
  content: "";
  rotate: -1.5deg;
}

.hero__lead {
  max-width: 620px;
  margin-top: 28px;
  color: #57535c;
  font-size: 19px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.text-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: #4f4b54;
  font-size: 14px;
  font-weight: 700;
  transition: color 150ms ease, gap 150ms ease;
}

.text-link:hover,
.inline-link:hover {
  gap: 12px;
  color: var(--coral-dark);
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 520px;
  margin-top: 19px;
  color: #6e6972;
  font-size: 12px;
}

.hero__note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--mint);
  color: #3f6847;
}

.hero-scene {
  position: relative;
  min-height: 595px;
  border: 1.5px solid var(--ink);
  border-radius: 52px 38px 58px 36px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.34), transparent 50%),
    var(--sky);
  box-shadow: 9px 9px 0 var(--ink), var(--shadow-soft);
  isolation: isolate;
}

.hero-scene::before,
.hero-scene::after {
  position: absolute;
  border: 1px solid rgba(40, 38, 45, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-scene::before {
  top: 34px;
  right: 42px;
  width: 86px;
  height: 86px;
  background: var(--butter-soft);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.28);
}

.hero-scene::after {
  bottom: 42px;
  left: 34px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.37);
}

.scene-orbit {
  display: none;
}

.scene-orbit--one {
  top: 14%;
  left: 5%;
  width: 210px;
  height: 210px;
}

.scene-orbit--two {
  right: 5%;
  bottom: 9%;
  width: 170px;
  height: 170px;
  animation-direction: reverse;
  animation-duration: 20s;
}

.weather-sticker {
  position: absolute;
  z-index: 5;
  top: 25px;
  left: 29px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-warm);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 12px;
  font-weight: 800;
  rotate: -4deg;
}

.weather-sticker__sun {
  width: 17px;
  height: 17px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
}

.daily-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  z-index: 3;
  top: 88px;
  right: 54px;
  left: 54px;
  min-height: 420px;
  padding: 21px;
  border: 1.5px solid var(--ink);
  border-radius: 29px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 20px 60px rgba(51, 66, 67, 0.18), 5px 5px 0 rgba(40, 38, 45, 0.92);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 180ms ease;
}

.daily-card__top,
.daily-card__title {
  display: flex;
  align-items: center;
}

.daily-card__top {
  justify-content: space-between;
  gap: 16px;
}

.daily-card__title {
  gap: 10px;
}

.daily-card__title img {
  width: 37px;
  height: 37px;
}

.daily-card__title div {
  display: grid;
}

.daily-card__title strong {
  font-size: 14px;
  line-height: 1.2;
}

.daily-card__title span {
  color: #77717a;
  font-size: 10px;
}

.day-pill {
  padding: 6px 10px;
  border: 1px solid #c9c2b7;
  border-radius: 999px;
  background: #f4f1e9;
  color: #55515a;
  font-size: 10px;
  font-weight: 750;
}

.progress-line {
  height: 6px;
  margin-top: 17px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8e2d8;
}

.progress-line span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  animation: progress-arrive 1.2s 500ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.chat-stack {
  display: grid;
  gap: 13px;
  margin-top: 23px;
}

.chat-bubble {
  max-width: 88%;
  padding: 13px 15px;
  border: 1px solid rgba(40, 38, 45, 0.13);
  font-size: 12px;
  line-height: 1.5;
}

.chat-bubble--bot {
  border-radius: 16px 16px 16px 4px;
  background: #f0ede6;
}

.chat-bubble--user {
  justify-self: end;
  border-color: rgba(133, 83, 74, 0.16);
  border-radius: 16px 16px 4px 16px;
  background: var(--coral-soft);
}

.mood-scale {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
}

.mood-scale span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid #d7d0c5;
  border-radius: 8px;
  background: #fff;
  color: #77717a;
  font-size: 9px;
  font-weight: 700;
}

.mood-scale .is-active {
  border-color: var(--ink);
  background: var(--butter);
  box-shadow: 2px 2px 0 var(--ink);
  color: var(--ink);
  translate: 0 -2px;
}

.tiny-practice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 3px;
  padding: 11px 13px;
  border: 1px solid rgba(40, 38, 45, 0.13);
  border-radius: 14px;
  background: #e4efea;
  color: #3d4942;
  font-size: 12px;
}

.tiny-practice__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #6e8e7a;
  border-radius: 9px;
  background: #f7fff8;
  font-weight: 800;
}

.tiny-practice div {
  display: grid;
}

.tiny-practice div span {
  color: #708079;
  font-size: 9px;
}

.cloud-friend {
  position: absolute;
  z-index: 6;
  right: -19px;
  bottom: -20px;
  width: 172px;
  filter: drop-shadow(0 14px 18px rgba(39, 51, 49, 0.19));
  animation: cloud-breathe 4.2s ease-in-out infinite;
  transform-origin: center bottom;
}

.cloud-friend__shadow {
  fill: rgba(46, 69, 67, 0.2);
}

.cloud-friend__body {
  fill: var(--paper-warm);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 4;
}

.cloud-friend__brow,
.cloud-friend__smile,
.cloud-friend__arm,
.cloud-friend__spark {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cloud-friend__brow,
.cloud-friend__smile {
  stroke-width: 4;
}

.cloud-friend__arm,
.cloud-friend__spark {
  stroke-width: 4;
}

.cloud-friend__eyes {
  fill: var(--ink);
  transform-box: fill-box;
  transform-origin: center;
  animation: cloud-blink 5s infinite;
}

.cloud-friend__blush {
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-width: 3;
}

.scene-caption {
  position: absolute;
  z-index: 7;
  bottom: 38px;
  left: 23px;
  color: #536e6e;
  rotate: -7deg;
}

.scene-caption__scribble {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.scene-caption svg {
  width: 74px;
  margin-top: -4px;
  margin-left: 20px;
}

.floaty {
  animation: gentle-float 5s ease-in-out infinite;
}

.fact-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: transparent;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 20px 24px;
}

.fact-item + .fact-item {
  border-left: 1px dashed #bcb4a8;
}

.fact-item strong {
  color: var(--coral-dark);
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.fact-item span {
  max-width: 115px;
  color: #68636c;
  font-size: 12px;
  line-height: 1.35;
}

.section-heading {
  max-width: 750px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.honest h2,
.method h2,
.price h2,
.faq h2,
.closing h2 {
  margin-top: 13px;
  font-size: clamp(33px, 3.8vw, 52px);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 665px;
  margin: 23px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(78, 67, 52, 0.07);
  transition: translate 180ms ease, box-shadow 180ms ease;
}

.step-card:hover {
  box-shadow: 0 18px 42px rgba(78, 67, 52, 0.11);
  translate: 0 -3px;
}

.step-card__number {
  position: absolute;
  top: 19px;
  right: 23px;
  color: #d8d1c6;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.step-card__icon {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border: 1.5px solid var(--ink);
  border-radius: 31px 25px 30px 22px;
  rotate: -3deg;
}

.step-card:nth-child(2) .step-card__icon {
  rotate: 4deg;
}

.step-card:nth-child(3) .step-card__icon {
  rotate: -1deg;
}

.step-card__icon svg {
  width: 60px;
  height: 60px;
  overflow: visible;
}

.step-card__icon svg * {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.step-card__icon--sky {
  background: var(--sky);
}

.step-card__icon--butter {
  background: var(--butter-soft);
}

.step-card__icon--coral {
  background: var(--coral-soft);
}

.step-card h3 {
  margin-top: 28px;
  font-size: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.step-card p {
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 14px;
}

.step-card__time {
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 99px;
  background: #efebe2;
  color: #67626b;
  font-size: 10px;
  font-weight: 750;
}

.kind-note {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 680px;
  gap: 14px;
  margin: 34px auto 0;
  padding: 13px 18px 13px 13px;
  border: 1px dashed #a49d91;
  border-radius: 999px;
  color: #625e66;
  font-size: 13px;
}

.kind-note__face {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  rotate: -8deg;
}

.route {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.5), transparent 18rem),
    #293a3b;
  color: #fffaf1;
}

.route .eyebrow {
  color: #ffd3c9;
}

.route__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 80px;
  align-items: end;
}

.route__intro {
  max-width: 440px;
  padding-bottom: 4px;
  color: rgba(255, 250, 241, 0.7);
  font-size: 15px;
}

.route-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-top: 64px;
}

.route-line {
  position: absolute;
  top: -45px;
  right: -7vw;
  left: -7vw;
  height: 95px;
  pointer-events: none;
}

.route-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.route-line path {
  fill: none;
  stroke: rgba(255, 250, 241, 0.25);
  stroke-dasharray: 4 9;
  stroke-linecap: round;
  stroke-width: 2;
  animation: route-dashes 20s linear infinite;
}

.route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 21px;
  box-shadow: 0 16px 34px rgba(12, 25, 25, 0.16);
  color: var(--ink);
  transition: translate 180ms ease, box-shadow 180ms ease;
}

.route-card:hover {
  box-shadow: 0 20px 42px rgba(12, 25, 25, 0.21);
  translate: 0 -3px;
}

.route-card--one {
  background: #ffd9cf;
}

.route-card--two {
  background: #f6d576;
}

.route-card--three {
  background: #cce5e4;
}

.route-card--four {
  background: #ddd6f6;
}

.route-card__days {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(40, 38, 45, 0.3);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  font-weight: 700;
  text-transform: none;
}

.route-card__weather {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-top: 25px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  font-weight: 700;
}

.route-card h3 {
  margin-top: 21px;
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.route-card p {
  margin-top: 9px;
  margin-bottom: 12px;
  color: rgba(40, 38, 45, 0.71);
  font-size: 13px;
}

.route-card__free {
  align-self: stretch;
  margin-top: auto;
  padding: 7px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
}

.honest {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  gap: 95px;
  align-items: center;
}

.honest__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  border: 1.5px solid var(--ink);
  border-radius: 42% 58% 45% 55% / 46% 43% 57% 54%;
  background: var(--lilac);
  box-shadow: 8px 8px 0 var(--ink);
}

.honest__visual::before {
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(40, 38, 45, 0.25);
  border-radius: inherit;
  content: "";
}

.lantern {
  position: relative;
  z-index: 2;
  width: min(78%, 330px);
  overflow: visible;
  filter: drop-shadow(0 20px 18px rgba(56, 47, 76, 0.22));
  animation: lantern-sway 6s ease-in-out infinite;
  transform-origin: 50% 15%;
}

.lantern__ray {
  fill: rgba(255, 237, 178, 0.68);
  animation: ray-pulse 3.4s ease-in-out infinite;
  transform-origin: 155px 103px;
}

.lantern__handle,
.lantern__body,
.lantern__top,
.lantern__glass,
.lantern__base,
.lantern__line {
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.lantern__handle,
.lantern__line {
  fill: none;
}

.lantern__top,
.lantern__base {
  fill: var(--coral);
}

.lantern__body {
  fill: #cf9f3c;
}

.lantern__glass {
  fill: #fff2bf;
}

.lantern__light {
  fill: var(--coral);
}

.lantern-glow {
  position: absolute;
  z-index: 1;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 239, 174, 0.72);
  filter: blur(30px);
  animation: glow-pulse 3.4s ease-in-out infinite;
}

.honest-sticker {
  position: absolute;
  z-index: 4;
  padding: 9px 13px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  background: var(--paper-warm);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.honest-sticker--top {
  top: 48px;
  left: 30px;
  rotate: -8deg;
}

.honest-sticker--bottom {
  right: 30px;
  bottom: 55px;
  rotate: 7deg;
}

.honest__lead {
  max-width: 615px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 17px;
}

.check-list {
  display: grid;
  margin-top: 31px;
  border-top: 1px solid var(--line);
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.check-list li > span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--mint);
  color: #3d6746;
  font-size: 13px;
  font-weight: 800;
}

.check-list strong {
  font-size: 14px;
}

.check-list p {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
}

.inline-link {
  margin-top: 25px;
}

.method {
  padding-top: 30px;
}

.method-paper {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 65px;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(rgba(40, 38, 45, 0.035) 1px, transparent 1px),
    var(--paper-warm);
  background-size: 100% 29px;
  box-shadow: var(--shadow-soft);
}

.method-paper__pin {
  display: none;
}

.method-paper__copy p:last-child {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 15px;
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-self: center;
}

.method-cards article {
  min-height: 220px;
  padding: 19px;
  border: 1px solid rgba(40, 38, 45, 0.13);
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
}

.method-cards article:nth-child(1) {
  background: var(--sky);
}

.method-cards article:nth-child(2) {
  background: var(--butter-soft);
}

.method-cards article:nth-child(3) {
  background: var(--coral-soft);
}

.method-cards__symbol {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  font-size: 22px;
  font-weight: 800;
}

.method-cards h3 {
  margin-top: 26px;
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 600;
}

.method-cards p {
  margin-top: 8px;
  color: rgba(40, 38, 45, 0.69);
  font-size: 11px;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 62px;
  align-items: center;
  min-height: 530px;
  padding: 60px;
  overflow: hidden;
  border: 1px solid rgba(40, 38, 45, 0.16);
  border-radius: 45px;
  background: var(--coral-soft);
  box-shadow: var(--shadow-soft);
}

.price-card::before {
  position: absolute;
  top: -105px;
  left: -70px;
  width: 310px;
  height: 310px;
  border: 1px dashed rgba(40, 38, 45, 0.24);
  border-radius: 50%;
  content: "";
}

.price-card__copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.price-card__copy p:last-child {
  max-width: 530px;
  margin-top: 23px;
  color: #655a5b;
  font-size: 17px;
}

.price-box {
  position: relative;
  z-index: 3;
  padding: 29px;
  border: 1px solid rgba(40, 38, 45, 0.18);
  border-radius: 28px;
  background: var(--paper-warm);
  box-shadow: 0 16px 38px rgba(78, 67, 52, 0.12);
}

.price-box__old {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 99px;
  background: var(--mint);
  color: #3e6646;
  font-size: 10px;
  font-weight: 700;
  text-transform: none;
}

.price-box__value {
  margin-top: 17px;
  font-size: 59px;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price-box > p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 12px;
}

.price-box ul {
  display: grid;
  gap: 8px;
  margin-top: 21px;
  color: #57535b;
  font-size: 12px;
  font-weight: 650;
}

.price-box li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-box li span {
  color: #4c7e57;
  font-weight: 800;
}

.price-box .button {
  width: 100%;
  margin-top: 25px;
  padding-inline: 17px;
  font-size: 13px;
}

.price-card__cloud {
  position: absolute;
  right: 420px;
  bottom: 35px;
  width: 160px;
  height: 74px;
  opacity: 0.65;
}

.price-card__cloud span {
  position: absolute;
  bottom: 0;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.85);
}

.price-card__cloud span:nth-child(1) {
  left: 0;
  width: 85px;
  height: 57px;
}

.price-card__cloud span:nth-child(2) {
  left: 48px;
  width: 92px;
  height: 74px;
}

.price-card__cloud span:nth-child(3) {
  right: 0;
  width: 77px;
  height: 50px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 100px;
  align-items: start;
}

.faq__heading {
  position: sticky;
  top: 120px;
}

.faq-doodle {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-top: 36px;
  border: 2px solid var(--ink);
  border-radius: 44% 56% 55% 45%;
  background: var(--butter);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 44px;
  font-weight: 800;
  rotate: -8deg;
}

.faq__list {
  border-top: 1.5px solid var(--ink);
}

.faq details {
  border-bottom: 1.5px solid var(--ink);
}

.faq summary {
  position: relative;
  padding: 25px 56px 25px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 760;
  list-style: none;
}

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

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
  content: "";
  transition: rotate 180ms ease;
}

.faq summary::after {
  rotate: 90deg;
}

.faq details[open] summary::after {
  rotate: 0deg;
}

.faq__answer {
  max-width: 680px;
  padding: 0 52px 25px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.closing {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 510px;
  margin-bottom: 62px;
  padding: 70px 30px;
  overflow: hidden;
  border: 1px solid rgba(40, 38, 45, 0.12);
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 110%, rgba(255, 112, 93, 0.4), transparent 42%),
    var(--sky);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.closing::before,
.closing::after {
  position: absolute;
  border: 1px dashed rgba(40, 38, 45, 0.19);
  border-radius: 50%;
  content: "";
}

.closing::before {
  top: -160px;
  left: -85px;
  width: 360px;
  height: 360px;
}

.closing::after {
  right: -130px;
  bottom: -200px;
  width: 430px;
  height: 430px;
}

.closing__mark {
  position: relative;
  z-index: 2;
  width: 69px;
  height: 69px;
  margin-bottom: 18px;
  filter: drop-shadow(4px 5px 0 rgba(40, 38, 45, 0.18));
  animation: gentle-float 5s ease-in-out infinite;
}

.closing > p {
  position: relative;
  z-index: 2;
  color: #526666;
  font-size: 14px;
  font-weight: 750;
}

.closing h2 {
  position: relative;
  z-index: 2;
  max-width: 770px;
  margin-top: 12px;
}

.closing .button {
  position: relative;
  z-index: 2;
  margin-top: 31px;
}

.closing__note {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  color: #596b6b;
  font-size: 11px;
}

.closing__spark {
  display: none;
}

.closing__spark--one {
  top: 77px;
  left: 14%;
}

.closing__spark--two {
  right: 15%;
  bottom: 94px;
  animation-delay: -1.4s;
}

.site-footer {
  padding-bottom: 35px;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}

.site-footer__top {
  align-items: center;
  padding-block: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand--footer .brand__mark {
  width: 38px;
  height: 38px;
}

.site-footer__top > p {
  max-width: 470px;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: right;
}

.site-footer__bottom {
  align-items: start;
  padding-top: 22px;
  color: var(--ink-soft);
  font-size: 10px;
}

.site-footer__bottom > p {
  max-width: 550px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #4f4b54;
  font-weight: 650;
}

.site-footer nav a:hover {
  color: var(--coral-dark);
}

.mobile-cta {
  display: none;
}

.metrika-pixel {
  position: absolute;
  left: -9999px;
}

.js .reveal {
  opacity: 0;
  translate: 0 20px;
  transition: opacity 650ms ease, translate 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  translate: 0;
}

.js .reveal-delay-1 {
  transition-delay: 80ms;
}

.js .reveal-delay-2 {
  transition-delay: 160ms;
}

.js .reveal-delay-3 {
  transition-delay: 240ms;
}

@keyframes gentle-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes orbit-spin {
  to { rotate: 360deg; }
}

@keyframes cloud-breathe {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.025) rotate(1deg); }
}

@keyframes cloud-blink {
  0%, 44%, 48%, 100% { scale: 1 1; }
  46% { scale: 1 0.08; }
}

@keyframes progress-arrive {
  from { width: 0; }
}

@keyframes route-dashes {
  to { stroke-dashoffset: -130; }
}

@keyframes lantern-sway {
  0%, 100% { rotate: -1.5deg; }
  50% { rotate: 2deg; }
}

@keyframes ray-pulse {
  0%, 100% { opacity: 0.58; scale: 0.95; }
  50% { opacity: 0.9; scale: 1.03; }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.62; scale: 0.93; }
  50% { opacity: 0.95; scale: 1.05; }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.45; scale: 0.75; rotate: 0deg; }
  50% { opacity: 1; scale: 1.1; rotate: 18deg; }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    gap: 38px;
  }

  .hero-scene {
    min-height: 550px;
  }

  .daily-card {
    right: 39px;
    left: 39px;
  }

  .fact-item {
    padding-inline: 17px;
  }

  .fact-item strong {
    font-size: 25px;
  }

  .honest {
    gap: 58px;
  }

  .method-paper {
    gap: 38px;
    padding: 45px;
  }

  .price-card {
    gap: 42px;
    padding: 48px;
  }
}

@media (max-width: 900px) {
  .section-space {
    padding-block: 85px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
    padding-top: 54px;
  }

  .hero__copy {
    max-width: 735px;
  }

  .hero-scene {
    width: min(680px, 100%);
    min-height: 570px;
    margin-inline: auto;
  }

  .fact-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-item:nth-child(3) {
    border-left: 0;
    border-top: 1px dashed #bcb4a8;
  }

  .fact-item:nth-child(4) {
    border-top: 1px dashed #bcb4a8;
  }

  .route__heading,
  .honest,
  .method-paper,
  .price-card,
  .faq {
    grid-template-columns: 1fr;
  }

  .route__heading {
    gap: 26px;
  }

  .route__intro {
    max-width: 650px;
  }

  .route-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-line {
    display: none;
  }

  .honest {
    gap: 60px;
  }

  .honest__visual {
    width: min(600px, 100%);
    min-height: 470px;
    margin-inline: auto;
  }

  .honest__copy {
    max-width: 740px;
  }

  .method-paper {
    gap: 42px;
  }

  .price-card {
    gap: 43px;
  }

  .price-card__copy {
    max-width: 700px;
  }

  .price-box {
    width: min(430px, 100%);
    rotate: 0deg;
  }

  .price-card__cloud {
    right: 45px;
    bottom: 50px;
  }

  .faq {
    gap: 45px;
  }

  .faq__heading {
    position: relative;
    top: 0;
  }

  .faq-doodle {
    position: absolute;
    top: 5px;
    right: 10px;
    width: 64px;
    height: 64px;
    margin: 0;
    font-size: 32px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 82px;
  }

  .section-shell,
  .site-header__inner {
    width: min(100% - 28px, 1180px);
  }

  .section-space {
    padding-block: 70px;
  }

  .site-header {
    height: 66px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__name {
    font-size: 19px;
  }

  .header-cta {
    min-height: 39px;
    padding: 8px 14px;
    box-shadow: 2px 2px 0 var(--ink);
  }

  .header-cta svg {
    display: none;
  }

  .hero {
    gap: 38px;
    padding-block: 35px 42px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(38px, 10.5vw, 48px);
  }

  .hero__lead {
    margin-top: 23px;
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    gap: 20px;
    margin-top: 27px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .text-link {
    width: fit-content;
    margin-inline: auto;
  }

  .hero__note {
    align-items: flex-start;
    font-size: 11px;
  }

  .hero-scene {
    min-height: 505px;
    border-radius: 35px 27px 39px 29px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .weather-sticker {
    top: 18px;
    left: 17px;
  }

  .daily-card {
    top: 72px;
    right: 19px;
    left: 19px;
    min-height: 378px;
    padding: 16px;
    border-radius: 23px;
  }

  .chat-bubble {
    font-size: 11px;
  }

  .cloud-friend {
    right: -14px;
    bottom: -25px;
    width: 137px;
  }

  .scene-caption {
    display: none;
  }

  .fact-ribbon {
    box-shadow: none;
  }

  .fact-item {
    min-height: 83px;
    padding: 15px;
  }

  .fact-item strong {
    font-size: 22px;
  }

  .fact-item span {
    font-size: 10px;
  }

  .section-heading h2,
  .honest h2,
  .method h2,
  .price h2,
  .faq h2,
  .closing h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 39px;
  }

  .step-card {
    min-height: 300px;
  }

  .kind-note {
    align-items: flex-start;
    border-radius: 19px;
  }

  .route-track {
    display: flex;
    gap: 15px;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .route-track::-webkit-scrollbar {
    display: none;
  }

  .route-card {
    flex: 0 0 82%;
    min-height: 310px;
    scroll-snap-align: start;
  }

  .honest {
    grid-template-columns: 1fr;
  }

  .honest__visual {
    min-height: 390px;
  }

  .honest-sticker--top {
    top: 28px;
  }

  .honest-sticker--bottom {
    right: 17px;
    bottom: 35px;
  }

  .method-paper {
    padding: 36px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .method-cards {
    grid-template-columns: 1fr;
  }

  .method-cards article {
    min-height: 160px;
  }

  .method-cards h3 {
    margin-top: 17px;
  }

  .price-card {
    min-height: auto;
    padding: 39px 23px;
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
  }

  .price-card__copy p:last-child {
    font-size: 15px;
  }

  .price-box {
    padding: 24px;
  }

  .price-card__cloud {
    display: none;
  }

  .faq-doodle {
    display: none;
  }

  .faq summary {
    padding-block: 21px;
    font-size: 15px;
  }

  .closing {
    min-height: 480px;
    margin-bottom: 40px;
    padding: 55px 22px;
    border-radius: 34px;
    box-shadow: var(--shadow-soft);
  }

  .closing .button {
    width: 100%;
  }

  .site-footer__top,
  .site-footer__bottom {
    display: grid;
  }

  .site-footer__top > p {
    text-align: left;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-cta {
    position: fixed;
    z-index: 45;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    min-height: 65px;
    padding: 9px 9px 9px 15px;
    border: 1.5px solid var(--ink);
    border-radius: 19px;
    background: rgba(255, 250, 241, 0.94);
    box-shadow: 4px 4px 0 var(--ink), 0 15px 40px rgba(54, 48, 42, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    translate: 0 110px;
    transition:
      opacity 220ms ease,
      translate 300ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 300ms;
    backdrop-filter: blur(15px);
  }

  .mobile-cta.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    translate: 0;
    transition-delay: 0s;
  }

  .mobile-cta div {
    display: grid;
  }

  .mobile-cta strong {
    font-size: 12px;
  }

  .mobile-cta div span {
    color: var(--ink-soft);
    font-size: 9px;
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    padding: 10px 15px;
    border: 1.5px solid var(--ink);
    border-radius: 13px;
    background: var(--tg-gradient);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-cta a svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }
}

@media (max-width: 430px) {
  .soft-label {
    font-size: 10px;
  }

  .hero h1 {
    letter-spacing: -0.035em;
  }

  .hero__actions .button {
    padding-inline: 14px;
    font-size: 14px;
  }

  .hero-scene {
    min-height: 475px;
  }

  .daily-card {
    top: 68px;
  }

  .daily-card__top {
    align-items: flex-start;
  }

  .day-pill {
    padding-inline: 7px;
    font-size: 8px;
  }

  .chat-stack {
    gap: 10px;
    margin-top: 17px;
  }

  .chat-bubble {
    max-width: 94%;
    padding: 11px 12px;
  }

  .mood-scale {
    gap: 2px;
  }

  .mood-scale span {
    border-radius: 6px;
    font-size: 8px;
  }

  .tiny-practice {
    font-size: 10px;
  }

  .fact-item {
    display: grid;
    gap: 3px;
  }

  .fact-item strong {
    font-size: 23px;
  }

  .fact-item span {
    max-width: none;
  }

  .honest__visual {
    min-height: 345px;
  }

  .lantern {
    width: 78%;
  }

  .honest-sticker {
    font-size: 10px;
  }

  .price-box__value {
    font-size: 52px;
  }

  .mobile-cta div span {
    display: none;
  }
}

@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;
  }

  .js .reveal {
    opacity: 1;
    translate: 0;
  }
}
