:root {
  --green: #5cfc15;
  --green-deep: #21921d;
  --green-soft: #efffea;
  --orange: #f49007;
  --yellow: #fedf13;
  --cyan: #21d7f7;
  --blue: #031743;
  --blue-soft: #e9fbff;
  --white: #ffffff;
  --paper: #fffdf5;
  --text: #10233f;
  --muted: #617086;
  --line: #dfe9d7;
  --shadow: 0 24px 70px rgba(3, 23, 67, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 34%, #f6fff2 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 32px);
  padding: 22px clamp(30px, 6vw, 112px);
  background: linear-gradient(180deg, rgba(255, 246, 222, 0.64), rgba(255, 246, 222, 0));
}

.brand img {
  width: 112px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  padding: 6px clamp(18px, 2vw, 24px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  color: var(--blue);
  font-size: 1.23rem;
  font-weight: 920;
  line-height: 1;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--green-deep);
}

.main-nav a {
  white-space: nowrap;
}

.header-cta,
.primary-button,
.yellow-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  padding: 0 clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta {
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-deep), #2fb52a);
  box-shadow: 0 14px 28px rgba(33, 146, 29, 0.18);
}

.primary-button.light,
.yellow-button {
  color: var(--blue);
  background: var(--yellow);
  box-shadow: 0 16px 30px rgba(244, 144, 7, 0.18);
}

.header-cta:hover,
.primary-button:hover,
.yellow-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.02);
}

.text-link {
  color: var(--green-deep);
  font-weight: 900;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 820px;
  overflow: hidden;
  padding: 150px clamp(34px, 7vw, 116px) 174px;
  background-image: url("assets/images/hero/hero-sunrise-saveiro.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ffe4b6;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 247, 226, 0.58) 30%, rgba(255, 226, 174, 0.16) 56%, rgba(255, 226, 174, 0) 100%),
    linear-gradient(180deg, rgba(255, 230, 176, 0.1), rgba(255, 246, 222, 0) 50%, rgba(3, 23, 67, 0.08));
}

.hero::after {
  content: "";
  position: absolute;
  right: -5vw;
  bottom: -78px;
  left: -5vw;
  height: 150px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-title {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: clamp(3rem, 7.1vw, 6.05rem);
  font-weight: 950;
  line-height: 0.88;
}

.hero-title span,
.hero-title strong,
.hero-title em {
  display: block;
  letter-spacing: 0;
}

.hero-title strong {
  color: var(--green-deep);
  font-size: 1.3em;
  line-height: 0.84;
}

.hero-title em {
  color: var(--orange);
  font-size: 1.14em;
  font-style: normal;
  line-height: 0.86;
}

.hero-title-small {
  font-size: 0.76em;
  line-height: 1.02;
}

.hero-smile {
  width: 92px;
  margin: -4px 0 18px min(410px, 55%);
}

.hero-smile svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.hero-smile path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mission-support {
  max-width: 540px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: clamp(1.5rem, 2.9vw, 2.24rem);
  font-weight: 850;
  line-height: 1.18;
}

.mission-support strong {
  color: var(--green-deep);
  white-space: nowrap;
}

.hero-copy > p:not(.eyebrow):not(.mission-support) {
  max-width: 570px;
  color: #45566f;
  font-size: 1.08rem;
}

.hero-copy > p:not(.eyebrow):not(.mission-support) strong {
  color: var(--green-deep);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}

.result-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1130px, calc(100% - 36px));
  margin: -94px auto 54px;
  overflow: hidden;
  border: 1px solid rgba(223, 233, 215, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 74px rgba(3, 23, 67, 0.16);
}

.result-strip article {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 17px;
  align-items: center;
  padding: 24px 27px;
  border-right: 1px solid var(--line);
}

.result-strip article:last-child {
  border-right: 0;
}

.result-icon {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-soft);
  font-size: 1.34rem;
}

.result-strip h2,
.result-strip p {
  margin: 0;
}

.result-strip h2 {
  color: var(--blue);
  font-size: 1.04rem;
  font-weight: 950;
}

.result-strip p {
  margin-top: 3px;
  color: #52637b;
  font-size: 0.95rem;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 66px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.solution-copy h2,
.final-cta h2 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(2.2rem, 5vw, 3.85rem);
  line-height: 1.04;
}

.section-heading p,
.solution-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 1.08rem;
}

.photo-journey {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 96px;
}

.journey-heading {
  max-width: 790px;
  margin-bottom: 62px;
}

.journey-heading h2 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1;
}

.journey-heading p {
  margin: 0;
  color: #45566f;
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
  font-weight: 700;
}

.journey-story {
  display: grid;
  gap: clamp(54px, 8vw, 104px);
}

.journey-moment {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.journey-moment.reverse {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.journey-moment.reverse figure {
  order: 2;
}

.journey-moment.reverse .moment-copy {
  order: 1;
}

.journey-moment.compact {
  width: min(980px, 100%);
}

.journey-moment.compact.reverse {
  margin-left: auto;
}

.journey-moment.feature {
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr);
}

.journey-moment.feature.reverse {
  grid-template-columns: minmax(270px, 0.55fr) minmax(0, 1.45fr);
}

.journey-moment.wide,
.journey-moment.finale {
  grid-template-columns: 1fr;
  gap: 24px;
}

.journey-moment.wide .moment-copy,
.journey-moment.finale .moment-copy {
  width: min(620px, 100%);
}

.journey-moment.finale .moment-copy {
  margin-left: auto;
}

.journey-moment figure {
  margin: 0;
}

.journey-moment img {
  width: 100%;
  min-height: 360px;
  max-height: 620px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 26px 70px rgba(3, 23, 67, 0.12);
}

.journey-moment.compact img {
  min-height: 340px;
  max-height: 470px;
}

.journey-moment.feature img {
  min-height: 460px;
}

.journey-moment.wide img,
.journey-moment.finale img {
  min-height: 520px;
  max-height: 680px;
}

.moment-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 950;
}

.moment-copy h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(1.7rem, 3.4vw, 2.75rem);
  line-height: 1.05;
}

.moment-copy p {
  max-width: 440px;
  margin: 0;
  color: #52637b;
  font-size: 1.08rem;
}

.journey-transition {
  width: min(840px, 100%);
  margin: clamp(86px, 12vw, 146px) auto clamp(8px, 2vw, 28px);
  text-align: center;
  color: var(--green-deep);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 950;
  line-height: 1.18;
}

.testimonial-grid figure {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(3, 23, 67, 0.07);
}

.solution {
  display: grid;
  grid-template-areas:
    "copy app"
    "details app";
  grid-template-columns: minmax(320px, 0.46fr) minmax(420px, 0.54fr);
  gap: clamp(50px, 5vw, 80px);
  align-items: center;
  width: min(1420px, calc(100% - 36px));
  padding: clamp(90px, 8vw, 120px) clamp(60px, 6vw, 90px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 12%, rgba(92, 252, 21, 0.08), transparent 30%),
    linear-gradient(135deg, #fffefa 0%, #fbfff7 58%, #f4ffef 100%);
  box-shadow: 0 24px 70px rgba(3, 23, 67, 0.055);
}

.solution-copy {
  grid-area: copy;
  width: 100%;
  margin: 0;
  text-align: left;
}

.solution-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  color: #06352f;
  font-size: clamp(3.1rem, 5.65vw, 5.95rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.solution-copy p {
  max-width: 520px;
  color: #45566f;
  font-size: clamp(1.08rem, 1.4vw, 1.26rem);
  line-height: 1.5;
}

.solution-lead {
  max-width: 610px;
  margin-bottom: 20px;
  color: var(--green-deep) !important;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.65rem) !important;
  line-height: 1.28 !important;
}

.solution-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 34px;
}

.solution-details {
  grid-area: details;
}

.solution-points article {
  min-width: 0;
}

.solution-points span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 15px;
  color: var(--green-deep);
  background: rgba(92, 252, 21, 0.12);
  font-size: 1.35rem;
  font-weight: 950;
}

.solution-points h3,
.solution-points p {
  margin: 0;
}

.solution-points h3 {
  color: #06352f;
  font-size: 1.05rem;
  line-height: 1.2;
}

.solution-points p {
  margin-top: 7px;
  color: #52637b;
  font-size: 0.95rem;
  line-height: 1.42;
}

.solution-closing {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  max-width: 520px;
  margin-top: 40px;
  padding: 22px 26px;
  border: 1px solid rgba(33, 146, 29, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.5);
}

.solution-closing > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--green-deep);
  font-size: 2rem;
}

.solution-closing strong {
  display: block;
  color: #06352f;
  font-size: 1.12rem;
  line-height: 1.2;
}

.solution-closing p {
  margin: 6px 0 0;
  color: #52637b;
  font-size: 1rem;
}

.solution-closing p::after {
  content: "";
  display: block;
  width: 132px;
  height: 4px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green-deep);
}

.app-showcase {
  grid-area: app;
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 460px) minmax(150px, 1fr);
  gap: clamp(28px, 3.2vw, 50px);
  align-items: center;
  width: 100%;
}

.app-preview {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 460px);
  padding: 11px;
  border-radius: 52px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, #182236, #0b1220);
  box-shadow:
    0 42px 96px rgba(3, 23, 67, 0.3),
    0 14px 30px rgba(33, 146, 29, 0.12);
}

.app-preview::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 2;
  width: 96px;
  height: 20px;
  border-radius: 0 0 16px 16px;
  background: #0d1423;
  transform: translateX(-50%);
}

.app-preview img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 40px;
  background: var(--white);
}

.app-notes {
  display: grid;
  gap: clamp(42px, 5vw, 72px);
}

.app-notes p {
  position: relative;
  max-width: 220px;
  margin: 0;
  color: #146c26;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  line-height: 1.35;
}

.app-notes p::before {
  content: "↙";
  position: absolute;
  left: -36px;
  top: 4px;
  color: var(--green-deep);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
}

.free {
  width: min(1180px, calc(100% - 36px));
}

.plans {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}

.start-card,
.comparison {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.start-card {
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(254, 223, 19, 0.5), transparent 20%),
    linear-gradient(145deg, var(--green-deep), #2fb52a);
}

.start-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.08;
}

.start-card p,
.start-card small {
  color: rgba(255, 255, 255, 0.9);
}

.start-card small {
  display: block;
  margin-top: 14px;
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
}

.row {
  display: grid;
  grid-template-columns: 1fr 96px 96px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.row:last-child {
  border-bottom: 0;
}

.row.head {
  min-height: 66px;
  color: var(--blue);
  background: #f8fff5;
  font-weight: 900;
}

.row b,
.row em {
  justify-self: center;
  font-size: 1.35rem;
  font-style: normal;
}

.row b {
  color: var(--green-deep);
}

.row em {
  color: #b7c4b1;
}

.belief {
  margin: 26px auto 0;
  max-width: 900px;
  padding: 22px 26px;
  border-left: 6px solid var(--yellow);
  border-radius: 18px;
  color: var(--blue);
  background: #fffbdf;
  font-size: 1.12rem;
  font-weight: 900;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-grid figure {
  margin: 0;
  padding: 28px;
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--blue);
  font-size: 1.08rem;
  font-weight: 800;
}

.testimonial-grid figcaption {
  margin-top: 18px;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 0;
  padding: 48px clamp(24px, 5vw, 64px);
  border-radius: 30px 30px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 88%, rgba(33, 215, 247, 0.28), transparent 22%),
    linear-gradient(135deg, var(--green-deep), #2fb52a 48%, var(--blue));
}

.final-cta .eyebrow,
.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  max-width: 740px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.84);
  background: var(--blue);
}

.site-footer img {
  width: 104px;
}

.site-footer p {
  max-width: 420px;
  margin: 14px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 18px;
  font-weight: 900;
}

.free {
  width: min(1360px, calc(100% - 36px));
  padding-top: clamp(102px, 10vw, 148px);
  padding-bottom: clamp(88px, 9vw, 132px);
}

.free-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  margin-bottom: 38px;
}

.free-intro .eyebrow,
.testimonials .section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.free-intro h2 {
  max-width: 760px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.7rem, 5.8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.free-intro p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 8px;
  color: #52637b;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.free-experience {
  display: grid;
  grid-template-columns: minmax(330px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(26px, 3.4vw, 48px);
  align-items: stretch;
}

.start-card,
.comparison-card,
.testimonial-grid figure {
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 26px 74px rgba(3, 23, 67, 0.09);
}

.start-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 510px;
  padding: clamp(34px, 4.5vw, 56px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 14%, rgba(254, 223, 19, 0.72), transparent 19%),
    radial-gradient(circle at 18% 92%, rgba(33, 215, 247, 0.22), transparent 24%),
    linear-gradient(145deg, var(--green-deep), #2fb52a 54%, #146c26);
}

.start-label {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.start-card h3 {
  max-width: 440px;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.1vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.start-card p {
  max-width: 410px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.17rem;
}

.start-card small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.comparison-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.6vw, 44px);
  border: 1px solid rgba(223, 233, 215, 0.8);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.96), rgba(248, 255, 244, 0.96)),
    var(--white);
}

.comparison-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.comparison-heading span {
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.comparison-heading strong {
  max-width: 330px;
  color: #06352f;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.08;
  text-align: right;
}

.comparison {
  overflow: hidden;
  border: 1px solid rgba(223, 233, 215, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.row {
  display: grid;
  grid-template-columns: 1fr 104px 104px;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 17px 24px;
  border-bottom: 1px solid rgba(223, 233, 215, 0.9);
}

.row.head {
  min-height: 70px;
  color: var(--blue);
  background: linear-gradient(90deg, var(--green-soft), rgba(255, 249, 217, 0.75));
}

.row span {
  font-weight: 850;
}

.belief {
  margin: 24px 0 0;
  padding: 22px 26px;
  border-left: 0;
  border-radius: 20px;
  background: #fff9d9;
  font-size: clamp(1.08rem, 1.4vw, 1.22rem);
}

.testimonials {
  width: min(1360px, calc(100% - 36px));
  padding-top: clamp(82px, 8vw, 118px);
  padding-bottom: clamp(82px, 8vw, 124px);
}

.testimonials .section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  max-width: none;
  margin-bottom: 38px;
}

.testimonials .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.4vw, 5.05rem);
  letter-spacing: -0.045em;
}

.testimonials .section-heading p:last-child {
  margin-bottom: 8px;
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
}

.testimonial-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: clamp(22px, 3vw, 34px);
}

.testimonial-grid figure {
  position: relative;
  min-height: 310px;
  padding: clamp(30px, 3.6vw, 46px);
  border: 1px solid rgba(223, 233, 215, 0.82);
}

.testimonial-grid figure::before {
  content: "“";
  position: absolute;
  right: 28px;
  top: 12px;
  color: rgba(33, 146, 29, 0.16);
  font-size: 7rem;
  font-weight: 950;
  line-height: 1;
}

.testimonial-grid .featured-testimonial {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(254, 223, 19, 0.46), transparent 23%),
    linear-gradient(145deg, #06352f, var(--blue));
}

.testimonial-grid .featured-testimonial::before {
  color: rgba(255, 255, 255, 0.16);
}

.testimonial-grid blockquote {
  position: relative;
  z-index: 1;
  font-size: clamp(1.22rem, 1.85vw, 1.58rem);
  line-height: 1.28;
}

.featured-testimonial blockquote {
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.18;
}

.testimonial-grid figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  margin-top: 34px;
}

.testimonial-grid figcaption strong {
  color: #06352f;
  font-size: 1.05rem;
}

.testimonial-grid figcaption span {
  font-size: 0.95rem;
}

.featured-testimonial figcaption,
.featured-testimonial figcaption strong {
  color: rgba(255, 255, 255, 0.88);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 80px);
  width: min(1360px, calc(100% - 36px));
  margin: 34px auto 0;
  padding: clamp(48px, 7vw, 88px);
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -8px 58px rgba(3, 23, 67, 0.1);
}

.final-cta h2 {
  max-width: 900px;
  font-size: clamp(2.9rem, 6.1vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.final-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
}

.final-cta .yellow-button {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 18px;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(260px, 0.8fr) auto;
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
  padding: clamp(42px, 5vw, 70px) clamp(18px, 6vw, 92px);
  background:
    radial-gradient(circle at 88% 0%, rgba(254, 223, 19, 0.26), transparent 24%),
    radial-gradient(circle at 8% 100%, rgba(33, 215, 247, 0.14), transparent 26%),
    linear-gradient(135deg, #146c26, var(--green-deep) 56%, #2fb52a);
}

.footer-signature {
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 850;
  line-height: 1.25;
}

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

.trust-section {
  width: min(1360px, calc(100% - 36px));
  padding-top: clamp(86px, 8vw, 124px);
  padding-bottom: clamp(72px, 7vw, 108px);
}

.trust-heading {
  max-width: 1050px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.trust-heading .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  border-bottom: 3px solid var(--green-deep);
  color: #146c26;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.trust-heading h2 {
  margin-bottom: 16px;
  color: #06352f;
  font-size: clamp(2.65rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.trust-heading h2::after {
  content: "";
  display: inline-block;
  width: 118px;
  height: 5px;
  margin-left: 10px;
  border-radius: 999px;
  background: var(--green-deep);
  transform: translateY(-8px) rotate(-2deg);
}

.trust-heading p {
  margin: 0;
  color: #52637b;
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  font-weight: 700;
}

.trust-mosaic {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 0.95fr 0.95fr 1fr;
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.trust-card {
  position: relative;
  min-height: 315px;
  margin: 0;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(223, 233, 215, 0.82);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(92, 252, 21, 0.08), transparent 24%),
    rgba(255, 253, 245, 0.92);
  box-shadow: 0 22px 58px rgba(3, 23, 67, 0.075);
}

.quote-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #146c26;
  background: rgba(92, 252, 21, 0.15);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.trust-card blockquote {
  margin: 0;
  color: var(--blue);
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 850;
  line-height: 1.35;
}

.trust-card figcaption {
  display: grid;
  gap: 3px;
  margin-top: 30px;
  color: #52637b;
}

.trust-card figcaption strong {
  color: #06352f;
  font-size: 1.05rem;
}

.manifesto-card {
  justify-content: center;
  align-items: center;
  min-height: 345px;
  padding: clamp(34px, 3.2vw, 54px);
  border-color: rgba(33, 146, 29, 0.11);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 251, 0.98), rgba(252, 250, 239, 0.96)),
    var(--white);
  box-shadow:
    0 22px 62px rgba(3, 23, 67, 0.055),
    inset 0 0 0 10px rgba(255, 255, 255, 0.42);
  text-align: center;
}

.manifesto-card::before {
  content: "";
  width: 42px;
  height: 2px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(33, 146, 29, 0.42);
}

.manifesto-card p {
  max-width: 360px;
  margin: 0;
  color: #06352f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2.02rem);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.manifesto-card::after {
  content: "Bentoys";
  display: block;
  width: fit-content;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(33, 146, 29, 0.18);
  color: #146c26;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
}

.chat-card {
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.92), rgba(235, 226, 206, 0.92));
}

.chat-header {
  display: grid;
  margin: -10px -10px 22px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.chat-header span {
  color: var(--blue);
  font-weight: 950;
}

.chat-header small {
  color: #617086;
}

.chat-card p {
  width: fit-content;
  max-width: 92%;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.chat-card .sent {
  margin-left: auto;
  background: #dff4b4;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  width: min(1020px, 100%);
  margin: clamp(26px, 4vw, 44px) auto 0;
  padding: 24px 34px;
  border: 1px solid rgba(223, 233, 215, 0.9);
  border-radius: 24px;
  background: rgba(255, 253, 245, 0.72);
  box-shadow: 0 14px 42px rgba(3, 23, 67, 0.055);
}

.trust-strip strong {
  display: inline;
  color: #06352f;
  font-size: 1.25rem;
  font-weight: 950;
}

.trust-strip span {
  color: #52637b;
  font-size: 1.08rem;
}

.trust-strip p {
  margin: 0;
  padding-left: clamp(18px, 3vw, 42px);
  border-left: 2px solid rgba(33, 146, 29, 0.32);
  color: #146c26;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 900;
  line-height: 1.25;
}

.trust-editorial {
  width: min(1260px, calc(100% - 36px));
  padding-top: clamp(92px, 9vw, 136px);
  padding-bottom: clamp(74px, 7vw, 112px);
}

.trust-editorial__intro {
  max-width: 980px;
  margin: 0 auto clamp(42px, 6vw, 76px);
  text-align: center;
}

.trust-editorial__intro h2 {
  max-width: 820px;
  margin: 0 auto 22px;
  color: #06352f;
  font-size: clamp(3.3rem, 6.8vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.trust-editorial__intro p {
  max-width: 820px;
  margin: 0 auto;
  color: #52637b;
  font-size: clamp(1.14rem, 1.7vw, 1.42rem);
  font-weight: 720;
  line-height: 1.58;
}

.trust-editorial__body {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(310px, 0.62fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.trust-origin {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(3, 23, 67, 0.1);
  border-bottom: 1px solid rgba(3, 23, 67, 0.1);
}

.trust-origin figure {
  position: relative;
  margin: 0;
  padding: clamp(22px, 3vw, 34px) clamp(8px, 2vw, 24px) clamp(22px, 3vw, 34px) clamp(42px, 4vw, 68px);
}

.trust-origin figure + figure {
  border-top: 1px solid rgba(3, 23, 67, 0.08);
}

.trust-origin figure::before {
  content: "";
  position: absolute;
  left: clamp(8px, 1.2vw, 18px);
  top: clamp(30px, 3.5vw, 42px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(92, 252, 21, 0.82);
  box-shadow: 0 0 0 8px rgba(92, 252, 21, 0.1);
}

.trust-origin blockquote {
  margin: 0;
  color: #06352f;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.45rem, 2.35vw, 2.25rem);
  font-weight: 900;
  line-height: 1.18;
}

.trust-origin figcaption {
  display: grid;
  gap: 3px;
  margin-top: 14px;
  color: #617086;
  font-size: 0.94rem;
  line-height: 1.24;
}

.trust-origin figcaption strong {
  color: #146c26;
  font-weight: 950;
}

.trust-origin figcaption span {
  font-weight: 760;
}

.trust-product-stack {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.trust-product-stack::before {
  content: "";
  position: absolute;
  inset: 54px 12px 28px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 45%, rgba(92, 252, 21, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 253, 245, 0.58), rgba(248, 255, 244, 0.4));
}

.mini-screen {
  position: absolute;
  width: 245px;
  aspect-ratio: 9 / 16.8;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(223, 233, 215, 0.86);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 62px rgba(3, 23, 67, 0.12);
}

.mini-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mini-screen--agenda {
  z-index: 3;
  width: 305px;
  transform: translateX(-6px) rotate(-1deg);
}

.mini-screen--clients {
  z-index: 1;
  left: 0;
  top: 72px;
  opacity: 0.9;
  transform: rotate(-8deg);
}

.mini-screen--toys {
  z-index: 2;
  right: 0;
  top: 44px;
  opacity: 0.92;
  transform: rotate(7deg);
}

.trust-conversation {
  position: relative;
  max-width: 390px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(223, 233, 215, 0.86);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.94), rgba(244, 250, 236, 0.9)),
    var(--white);
  box-shadow: 0 24px 68px rgba(3, 23, 67, 0.075);
  transform: rotate(1deg);
}

.trust-conversation::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  pointer-events: none;
}

.trust-conversation__header {
  display: grid;
  gap: 2px;
  margin: -6px -6px 22px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-conversation__header span {
  color: var(--blue);
  font-weight: 950;
}

.trust-conversation__header small {
  color: #617086;
  font-weight: 760;
}

.trust-conversation p {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 92%;
  margin: 0 0 13px;
  padding: 12px 14px;
  border-radius: 15px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.35;
}

.trust-conversation .sent {
  margin-left: auto;
  background: #dff4b4;
}

.trust-belief {
  max-width: 860px;
  margin: clamp(58px, 7vw, 96px) auto 0;
  padding: clamp(34px, 5vw, 56px) clamp(28px, 5vw, 72px);
  border-top: 1px solid rgba(33, 146, 29, 0.16);
  border-bottom: 1px solid rgba(33, 146, 29, 0.16);
  color: #06352f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.04em;
  text-align: center;
}

.trust-belief::after {
  content: "";
  display: block;
  width: 132px;
  height: 6px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 118px);
  width: min(1450px, calc(100% - 36px));
  min-height: clamp(520px, 48vw, 650px);
  margin: clamp(34px, 5vw, 72px) auto 0;
  padding: clamp(46px, 6vw, 82px);
  overflow: hidden;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 23, 67, 0.93) 0%, rgba(3, 23, 67, 0.77) 38%, rgba(3, 23, 67, 0.45) 58%, rgba(3, 23, 67, 0.9) 100%),
    url("assets/images/hero/end_saveiro.png") center / cover no-repeat;
  box-shadow: 0 26px 76px rgba(3, 23, 67, 0.18);
  isolation: isolate;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(3, 23, 67, 0.55), transparent);
  pointer-events: none;
  z-index: -1;
}

.final-cta__story h2,
.final-cta__story p,
.final-cta__invite,
.final-cta__invite p {
  color: var(--white);
}

.final-cta__story h2 {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.final-cta__story h2 strong {
  color: #9ee36d;
}

.final-cta__story p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
  line-height: 1.55;
}

.final-cta__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 18px;
  max-width: 720px;
  margin-top: clamp(42px, 7vw, 86px);
}

.final-cta__features span {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.35;
}

.final-cta__invite {
  justify-self: end;
  width: min(100%, 430px);
}

.final-cta__script {
  margin: 0 0 8px;
  color: var(--white);
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 900;
  line-height: 1.02;
}

.final-cta__script::after,
.final-cta__mission::after {
  content: "";
  display: block;
  width: 150px;
  height: 8px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(254, 223, 19, 0.95), transparent);
}

.final-cta__invite > span {
  display: block;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

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

.final-cta input {
  width: 100%;
  height: 62px;
  margin-bottom: 14px;
  padding: 0 22px;
  border: 0;
  border-radius: 17px;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  font: inherit;
  font-weight: 800;
}

.final-cta input::placeholder {
  color: rgba(3, 23, 67, 0.58);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  min-height: 1.35em;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.form-message:empty {
  display: none;
}

.form-message[data-type="error"] {
  color: #ffd9c9;
}

.final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 17px;
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, #7dc43a, var(--green));
  box-shadow: 0 18px 38px rgba(92, 207, 21, 0.28);
  font: inherit;
  font-weight: 950;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.final-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(92, 207, 21, 0.34);
  filter: saturate(1.08);
}

.final-cta__button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
  box-shadow: none;
}

.final-cta__invite small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.final-cta__mission {
  max-width: 320px;
  margin: clamp(34px, 5vw, 62px) 0 0 auto;
  color: #d4ff76;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.05;
  text-align: right;
}

.final-cta__mission::after {
  margin-left: auto;
}

.site-footer {
  display: block;
  width: min(1450px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 6vw, 76px) 0 clamp(30px, 4vw, 46px);
  color: #4f6178;
  background: transparent;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.35fr) minmax(220px, 0.75fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  padding: clamp(32px, 4vw, 52px) 0;
  border-top: 1px solid rgba(3, 23, 67, 0.08);
  border-bottom: 1px solid rgba(3, 23, 67, 0.08);
}

.site-footer img {
  width: 82px;
  height: auto;
}

.site-footer p {
  max-width: 340px;
  margin: 16px 0 0;
  color: #5f6f84;
  font-size: 0.98rem;
  line-height: 1.62;
}

.site-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: clamp(24px, 4vw, 52px);
  justify-content: initial;
}

.footer-links div,
.footer-contact {
  display: grid;
  gap: 10px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: #06352f;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: #5b6a80;
  font-size: 0.98rem;
  font-weight: 760;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover {
  color: var(--green-deep);
  transform: translateX(2px);
}

.footer-contact a {
  color: #146c26;
  font-weight: 900;
}

.footer-contact p {
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding-top: 24px;
  color: #7b8798;
  font-size: 0.92rem;
}

.footer-bottom strong {
  color: #146c26;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 86% 8%, rgba(254, 223, 19, 0.12), transparent 24%),
    radial-gradient(circle at 8% 16%, rgba(92, 252, 21, 0.08), transparent 22%),
    var(--cream);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
}

.legal-header .brand img {
  width: 96px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(33, 146, 29, 0.18);
  border-radius: 999px;
  color: #146c26;
  background: rgba(255, 255, 255, 0.58);
  font-weight: 900;
}

.legal-document {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto clamp(56px, 8vw, 96px);
  padding: clamp(42px, 6vw, 74px);
  border: 1px solid rgba(223, 233, 215, 0.82);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 72px rgba(3, 23, 67, 0.07);
}

.legal-document .eyebrow {
  margin-bottom: 18px;
  color: var(--green-deep);
}

.legal-document h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: #06352f;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.legal-lead {
  max-width: 720px;
  margin: 0 0 clamp(34px, 5vw, 56px);
  color: #52637b;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  font-weight: 720;
  line-height: 1.6;
}

.legal-document section {
  padding: 26px 0;
  border-top: 1px solid rgba(3, 23, 67, 0.08);
}

.legal-document h2 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.legal-document p {
  margin: 0 0 12px;
  color: #52637b;
  font-size: 1.02rem;
  line-height: 1.68;
}

.legal-document a {
  color: #146c26;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(33, 146, 29, 0.14);
}

.legal-note p {
  margin: 0;
  color: #7b8798;
  font-size: 0.94rem;
}

.legal-note strong {
  color: #146c26;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: 1.05rem;
}

.confirmation-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(254, 223, 19, 0.16), transparent 24%),
    radial-gradient(circle at 12% 90%, rgba(92, 252, 21, 0.12), transparent 28%),
    var(--cream);
}

.confirmation-card {
  width: min(760px, 100%);
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid rgba(223, 233, 215, 0.86);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 82px rgba(3, 23, 67, 0.08);
  text-align: center;
}

.confirmation-card .brand {
  display: inline-flex;
  margin-bottom: 26px;
}

.confirmation-card .brand img {
  width: 108px;
}

.confirmation-card h1 {
  max-width: 620px;
  margin: 0 auto 22px;
  color: #06352f;
  font-size: clamp(2.55rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.confirmation-card p {
  max-width: 620px;
  margin: 0 auto 14px;
  color: #52637b;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 720;
  line-height: 1.62;
}

.confirmation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 22px;
  padding: 0 26px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-deep), #2fb52a);
  box-shadow: 0 16px 32px rgba(33, 146, 29, 0.18);
  font-weight: 950;
}

.product-growth-intro {
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.product-growth {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.95fr) minmax(300px, 0.65fr);
  grid-template-areas:
    "product copy"
    "product expansion";
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(223, 233, 215, 0.78);
  border-radius: 42px;
  background:
    radial-gradient(circle at 16% 14%, rgba(254, 223, 19, 0.18), transparent 22%),
    radial-gradient(circle at 88% 78%, rgba(92, 252, 21, 0.14), transparent 25%),
    linear-gradient(135deg, rgba(255, 253, 245, 0.96), rgba(247, 255, 242, 0.98));
  box-shadow: 0 28px 84px rgba(3, 23, 67, 0.075);
}

.product-growth::before {
  content: "";
  position: absolute;
  left: 52%;
  top: 14%;
  bottom: 16%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(33, 146, 29, 0.24), transparent);
}

.product-core {
  grid-area: product;
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 620px;
}

.free-badge {
  position: absolute;
  top: 36px;
  left: 0;
  z-index: 3;
  display: grid;
  gap: 2px;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(254, 223, 19, 0.5), transparent 30%),
    linear-gradient(145deg, var(--green-deep), #2fb52a);
  box-shadow: 0 18px 46px rgba(33, 146, 29, 0.2);
}

.free-badge strong {
  font-size: 1.12rem;
  line-height: 1.1;
}

.free-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.growth-phone {
  position: relative;
  z-index: 2;
  width: min(360px, 74%);
  margin: 0;
  padding: 10px;
  border-radius: 46px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, #182236, #0b1220);
  box-shadow:
    0 38px 86px rgba(3, 23, 67, 0.28),
    0 12px 28px rgba(33, 146, 29, 0.12);
}

.growth-phone::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 2;
  width: 78px;
  height: 17px;
  border-radius: 0 0 14px 14px;
  background: #0d1423;
  transform: translateX(-50%);
}

.growth-phone img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 36px;
  background: var(--white);
}

.included-strip {
  position: absolute;
  right: 0;
  bottom: 48px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: min(300px, 45%);
}

.included-strip span,
.advanced-ribbons span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(223, 233, 215, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #06352f;
  font-size: 0.94rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(3, 23, 67, 0.06);
}

.included-strip span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green-deep);
}

.growth-copy {
  grid-area: copy;
  position: relative;
  z-index: 1;
}

.growth-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.growth-copy h3 {
  max-width: 520px;
  margin-bottom: 18px;
  color: #06352f;
  font-size: clamp(2.2rem, 4.3vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.growth-copy p,
.growth-expansion p {
  max-width: 500px;
  color: #52637b;
  font-size: clamp(1.06rem, 1.35vw, 1.2rem);
}

.growth-copy small {
  display: block;
  margin-top: 14px;
  color: #52637b;
  font-weight: 800;
}

.growth-expansion {
  grid-area: expansion;
  position: relative;
  z-index: 1;
  padding-top: clamp(8px, 2vw, 24px);
}

.growth-expansion p {
  margin-bottom: 22px;
  color: #146c26;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.16rem, 1.7vw, 1.55rem);
  line-height: 1.28;
}

.advanced-ribbons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.advanced-ribbons span {
  color: #146c26;
  background: rgba(92, 252, 21, 0.1);
}

.product-growth-belief {
  max-width: 920px;
  margin: clamp(28px, 4vw, 46px) auto 0;
  color: var(--blue);
  font-size: clamp(1.3rem, 2.4vw, 2.05rem);
  font-weight: 950;
  line-height: 1.18;
  text-align: center;
}

.routine-proof-intro {
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.routine-proof {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

.free-promise {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 410px;
  padding: clamp(32px, 4vw, 52px);
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 16%, rgba(254, 223, 19, 0.7), transparent 20%),
    linear-gradient(145deg, var(--green-deep), #2fb52a 55%, #146c26);
  box-shadow: 0 26px 74px rgba(33, 146, 29, 0.18);
}

.free-promise strong {
  max-width: 390px;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.free-promise p {
  max-width: 390px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}

.routine-moments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}

.routine-moments article {
  position: relative;
  min-height: 190px;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(223, 233, 215, 0.82);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.95), rgba(248, 255, 244, 0.95)),
    var(--white);
  box-shadow: 0 20px 54px rgba(3, 23, 67, 0.065);
}

.routine-moments article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(92, 252, 21, 0.08);
}

.routine-moments span {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 360px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: clamp(1.22rem, 1.8vw, 1.65rem);
  font-weight: 900;
  line-height: 1.18;
}

.routine-moments strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 999px;
  color: #146c26;
  background: rgba(92, 252, 21, 0.12);
  font-size: 0.95rem;
  font-weight: 950;
}

.routine-moments strong::before {
  content: "→";
  margin-right: 8px;
  color: var(--green-deep);
}

.routine-proof-belief {
  max-width: 860px;
  margin: clamp(28px, 4vw, 46px) auto 0;
  color: var(--blue);
  font-size: clamp(1.32rem, 2.3vw, 2rem);
  font-weight: 950;
  line-height: 1.18;
  text-align: center;
}

.memory-wall-heading {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
  text-align: center;
  transform: translateX(0);
}

.memory-wall-heading h2 {
  width: auto;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-align: center;
  white-space: nowrap;
}

.memory-wall-heading h2::after {
  content: none;
}

.memory-wall-heading h2 span {
  display: inline-block;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.memory-wall-heading h2 span::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  margin: 2px 0 0;
  border-radius: 999px;
  background: var(--green-deep);
  transform: rotate(-2deg);
}

.memory-wall-heading p {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 800;
  line-height: 1.18;
}

.memory-wall-heading > span,
.wall-transition,
.wall-closing {
  color: var(--green-deep);
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-weight: 900;
}

.memory-wall-heading > span {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 4px solid var(--yellow);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.1;
}

.free-note {
  width: min(700px, 100%);
  margin: 0 auto clamp(48px, 6vw, 70px);
  padding: clamp(34px, 4.5vw, 48px) clamp(38px, 5vw, 58px);
  border: 1px solid rgba(223, 233, 215, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(circle at 94% 88%, rgba(92, 252, 21, 0.09), transparent 22%),
    rgba(255, 253, 230, 0.86);
  box-shadow:
    0 26px 68px rgba(3, 23, 67, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: rotate(-1deg);
}

.free-note ul {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0 0 24px;
  border-bottom: 1px dashed rgba(3, 23, 67, 0.18);
  list-style: none;
}

.free-note li {
  position: relative;
  padding-left: 42px;
  color: var(--blue);
  font-size: clamp(1.12rem, 1.6vw, 1.36rem);
  font-weight: 850;
}

.free-note li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--green-deep);
  border-radius: 50%;
  color: var(--green-deep);
  font-size: 1rem;
  line-height: 1;
}

.free-note strong {
  display: inline-block;
  margin-bottom: 10px;
  color: #146c26;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.18;
  text-decoration: underline;
  text-decoration-color: var(--green-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.free-note p {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.14rem, 1.65vw, 1.38rem);
  line-height: 1.38;
  font-weight: 700;
}

.free-note-manifesto {
  margin-top: 18px !important;
  padding: 18px 20px;
  border: 1px solid rgba(33, 146, 29, 0.14);
  border-radius: 18px;
  color: #06352f !important;
  background: rgba(255, 255, 255, 0.56);
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem) !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.wall-transition {
  position: relative;
  max-width: none;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  line-height: 1.2;
  white-space: nowrap;
}

.wall-transition span {
  display: inline-block;
  color: inherit;
  background: linear-gradient(180deg, transparent 62%, rgba(254, 223, 19, 0.72) 62%);
  padding: 0 4px 2px;
}

.wall-transition::before,
.wall-transition::after {
  content: "";
  display: inline-block;
  width: min(130px, 16vw);
  height: 1px;
  margin: 0 18px 5px;
  background: rgba(3, 23, 67, 0.15);
}

.postit-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: clamp(34px, 4vw, 58px) clamp(28px, 3.6vw, 48px);
  align-items: stretch;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.postit-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.postit {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 416px;
  padding: 38px 28px 26px;
  border-radius: 4px 4px 18px 18px;
  background-blend-mode: multiply;
  box-shadow:
    0 28px 44px rgba(3, 23, 67, 0.14),
    0 6px 14px rgba(3, 23, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.postit::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.5), transparent 18%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(3, 23, 67, 0.025) 0 1px, transparent 1px 9px);
  opacity: 0.55;
}

.postit::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 86px;
  left: 16px;
  height: 26px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 23, 67, 0), rgba(3, 23, 67, 0.08));
  filter: blur(10px);
  transform: skewX(-8deg);
}

.postit-item:nth-child(odd) .postit {
  transform: rotate(-2deg);
}

.postit-item:nth-child(even) .postit {
  transform: rotate(1.5deg);
}

.postit.yellow {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.28), transparent 42%),
    #fff4a5;
}

.postit.peach {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.32), transparent 42%),
    #ffe1dc;
}

.postit.blue-paper {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.34), transparent 42%),
    #dceeff;
}

.postit.kraft {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.24), transparent 42%),
    #f0d9b2;
}

.postit.green-paper {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.28), transparent 42%),
    #e1f3b8;
}

.postit.purple {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.32), transparent 42%),
    #eadcf4;
}

.tape {
  position: absolute;
  top: -14px;
  left: 50%;
  z-index: 4;
  width: 86px;
  height: 30px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 8px),
    linear-gradient(90deg, rgba(209, 179, 111, 0.48), rgba(249, 222, 154, 0.72), rgba(209, 179, 111, 0.48));
  box-shadow:
    0 4px 10px rgba(3, 23, 67, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateX(-50%) rotate(-2deg);
}

.postit p:first-of-type {
  position: relative;
  z-index: 1;
  min-height: 76px;
  margin: 0 0 14px;
  color: #071735;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.16rem, 1.62vw, 1.55rem);
  font-weight: 900;
  line-height: 1.14;
}

.photo-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 252px;
  min-height: 252px;
  margin-top: 0;
  margin-bottom: 0;
  border: 7px solid rgba(255, 253, 245, 0.92);
  border-radius: 6px;
  color: rgba(3, 23, 67, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.4) 0 10px, rgba(3, 23, 67, 0.04) 10px 20px);
  box-shadow:
    0 10px 18px rgba(3, 23, 67, 0.14),
    inset 0 0 0 1px rgba(3, 23, 67, 0.05);
  font-size: 0.82rem;
  font-weight: 900;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: 2px;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 52px;
  height: 18px;
  background: rgba(225, 198, 130, 0.5);
  box-shadow: 0 2px 5px rgba(3, 23, 67, 0.08);
  transform: translateX(-50%) rotate(2deg);
}

.postit-feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 13px;
  align-items: start;
  margin: 0 12px;
  min-height: 178px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(223, 233, 215, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 34px rgba(3, 23, 67, 0.09);
}

.postit-feature > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(3, 23, 67, 0.08);
  border-radius: 10px;
  color: #146c26;
  background: linear-gradient(145deg, var(--green-soft), rgba(255, 249, 217, 0.92));
  font-size: 1.08rem;
  font-weight: 950;
  box-shadow: 0 5px 10px rgba(3, 23, 67, 0.08);
}

.postit-feature h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1.1;
}

.postit-feature h3::after {
  content: none;
  position: absolute;
  right: -8px;
  bottom: 1px;
  width: 4px;
  height: 18px;
  border-radius: 999px;
  background: var(--yellow);
}

.yellow .postit-feature > span {
  color: #8b6800;
  background: linear-gradient(145deg, #fff4aa, #fff9d9);
}

.peach .postit-feature > span {
  color: #d54040;
  background: linear-gradient(145deg, #ffe1dc, #fff4f2);
}

.blue-paper .postit-feature > span {
  color: #11619a;
  background: linear-gradient(145deg, #dceeff, #f0f8ff);
}

.kraft .postit-feature > span {
  color: #9a6111;
  background: linear-gradient(145deg, #f0d9b2, #fff2dd);
}

.green-paper .postit-feature > span {
  color: #3d7f13;
  background: linear-gradient(145deg, #e1f3b8, #f4ffe2);
}

.purple .postit-feature > span {
  color: #6a32a0;
  background: linear-gradient(145deg, #eadcf4, #f8efff);
}

.postit-feature p {
  margin: 0;
  color: #24364f;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
}

.wall-closing {
  max-width: 980px;
  margin: clamp(44px, 6vw, 70px) auto 0;
  color: #28aa31;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  line-height: 1.15;
  text-align: center;
}

.wall-closing::after {
  content: "♡";
  display: inline-block;
  margin-left: 14px;
  color: var(--yellow);
  font-size: 1.35em;
  transform: rotate(-12deg);
}

.evolution-intro {
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.routine-evolution {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(160px, 0.38fr) minmax(300px, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding: clamp(18px, 2.3vw, 30px);
  border: 1px solid rgba(223, 233, 215, 0.78);
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 18%, rgba(254, 223, 19, 0.18), transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(92, 252, 21, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 245, 0.96), rgba(246, 255, 241, 0.96));
  box-shadow: 0 28px 84px rgba(3, 23, 67, 0.075);
}

.evolution-stage {
  min-height: 480px;
  padding: clamp(30px, 4.4vw, 56px);
  border-radius: 30px;
}

.evolution-stage.today {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 14%, rgba(254, 223, 19, 0.68), transparent 19%),
    linear-gradient(145deg, var(--green-deep), #2fb52a 58%, #146c26);
  box-shadow: 0 24px 60px rgba(33, 146, 29, 0.2);
}

.evolution-stage.tomorrow {
  border: 1px solid rgba(223, 233, 215, 0.82);
  background: rgba(255, 255, 255, 0.68);
}

.stage-time {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tomorrow .stage-time {
  background: var(--green-soft);
  color: var(--green-deep);
}

.evolution-stage h3 {
  max-width: 500px;
  margin-bottom: 16px;
  color: inherit;
  font-size: clamp(2.1rem, 3.8vw, 3.85rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.tomorrow h3 {
  color: #06352f;
}

.evolution-stage p {
  max-width: 430px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
}

.tomorrow p {
  color: #52637b;
}

.stage-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.stage-items span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.95rem;
  font-weight: 900;
}

.tomorrow .stage-items span {
  color: #06352f;
  background: rgba(92, 252, 21, 0.1);
}

.evolution-stage small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.evolution-path {
  display: grid;
  gap: 16px;
  justify-items: center;
  color: var(--green-deep);
  text-align: center;
}

.evolution-path span {
  display: block;
  width: 2px;
  height: 86px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(33, 146, 29, 0.55), transparent);
}

.evolution-path p {
  margin: 0;
  color: #146c26;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.25;
}

.evolution-belief {
  max-width: 860px;
  margin: clamp(26px, 4vw, 42px) auto 0;
  color: var(--blue);
  font-size: clamp(1.22rem, 2vw, 1.72rem);
  font-weight: 950;
  line-height: 1.22;
  text-align: center;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    gap: 16px;
    background: linear-gradient(180deg, rgba(255, 246, 222, 0.72), rgba(255, 246, 222, 0));
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .hero {
    min-height: 780px;
    padding-top: 170px;
    background-position: center bottom;
    background-size: cover;
  }

  .hero-copy {
    max-width: 590px;
  }

  .result-strip,
  .solution,
  .plans,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .free-intro,
  .free-experience,
  .testimonials .section-heading,
  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .free-intro {
    align-items: start;
  }

  .routine-evolution {
    grid-template-columns: 1fr;
  }

  .product-growth {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "product"
      "expansion";
  }

  .routine-proof {
    grid-template-columns: 1fr;
  }

  .free-promise {
    min-height: auto;
  }

  .postit-wall {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 24px;
  }

  .postit {
    height: 400px;
  }

  .photo-placeholder {
    height: 234px;
    min-height: 234px;
  }

  .wall-transition {
    white-space: normal;
  }

  .memory-wall-heading {
    margin-left: 0;
  }

  .free-note {
    margin-left: 0;
    margin-right: 0;
  }

  .product-growth::before {
    display: none;
  }

  .product-core {
    min-height: 560px;
  }

  .growth-copy {
    text-align: center;
  }

  .growth-copy h3,
  .growth-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .growth-expansion {
    text-align: center;
  }

  .growth-expansion p {
    margin-right: auto;
    margin-left: auto;
  }

  .advanced-ribbons {
    justify-content: center;
  }

  .evolution-stage {
    min-height: auto;
  }

  .evolution-path {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .evolution-path span {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(33, 146, 29, 0.55), transparent);
  }

  .comparison-heading strong {
    text-align: left;
  }

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

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

  .manifesto-card {
    grid-column: span 1;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip p {
    padding-top: 18px;
    padding-left: 0;
    border-top: 2px solid rgba(33, 146, 29, 0.32);
    border-left: 0;
  }

  .trust-editorial__body {
    grid-template-columns: 1fr;
  }

  .trust-product-stack {
    justify-self: center;
    width: min(100%, 520px);
  }

  .testimonial-grid figure {
    min-height: 260px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    background-position: 42% center;
  }

  .final-cta__invite {
    justify-self: start;
  }

  .final-cta__features {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

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

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

  .footer-links {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .photo-journey {
    padding-top: 68px;
  }

  .journey-moment,
  .journey-moment.reverse,
  .journey-moment.feature,
  .journey-moment.feature.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .journey-moment.reverse figure,
  .journey-moment.reverse .moment-copy {
    order: initial;
  }

  .journey-moment.compact,
  .journey-moment.compact.reverse {
    width: 100%;
    margin-left: 0;
  }

  .journey-moment img,
  .journey-moment.compact img,
  .journey-moment.feature img,
  .journey-moment.wide img,
  .journey-moment.finale img {
    min-height: 390px;
  }

  .solution {
    grid-template-areas:
      "copy"
      "app"
      "details";
    grid-template-columns: 1fr;
    padding: 70px 34px;
  }

  .solution-copy {
    text-align: center;
  }

  .solution-details {
    width: 100%;
  }

  .solution-copy h2,
  .solution-copy p,
  .solution-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .solution-points {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
    margin-top: 44px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .solution-closing {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .app-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .app-notes {
    display: none;
  }

}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand img {
    width: 86px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
    padding: 142px 24px 148px;
    background-position: 62% bottom;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 238, 0.97) 0%, rgba(255, 250, 238, 0.88) 44%, rgba(255, 250, 238, 0.26) 76%, rgba(255, 250, 238, 0.06) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.08));
  }

  .hero-title {
    font-size: clamp(2.85rem, 15vw, 4.65rem);
  }

  .mission-support {
    font-size: 1.45rem;
  }

  .hero-smile {
    width: 72px;
    margin-left: 62%;
  }

  .result-strip,
  .solution,
  .plans,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .free {
    width: min(100% - 28px, 1360px);
    padding-top: 74px;
    padding-bottom: 70px;
  }

  .free-intro {
    margin-bottom: 26px;
  }

  .free-intro h2,
  .testimonials .section-heading h2,
  .final-cta h2 {
    letter-spacing: -0.035em;
  }

  .free-experience {
    grid-template-columns: 1fr;
  }

  .start-card {
    min-height: auto;
    padding: 32px 24px;
    border-radius: 26px;
  }

  .routine-evolution {
    padding: 14px;
    border-radius: 28px;
  }

  .product-growth {
    padding: 18px;
    border-radius: 28px;
  }

  .product-core {
    min-height: auto;
    padding: 78px 0 90px;
  }

  .growth-phone {
    width: min(310px, 86%);
  }

  .free-badge {
    top: 0;
    left: 50%;
    width: min(100%, 270px);
    text-align: center;
    transform: translateX(-50%);
  }

  .included-strip {
    right: 50%;
    bottom: 0;
    width: min(100%, 330px);
    transform: translateX(50%);
  }

  .growth-copy {
    text-align: left;
  }

  .growth-copy h3 {
    font-size: clamp(2.2rem, 11vw, 3.55rem);
  }

  .growth-copy h3,
  .growth-copy p {
    margin-left: 0;
  }

  .growth-expansion {
    text-align: left;
  }

  .advanced-ribbons {
    justify-content: flex-start;
  }

  .product-growth-belief {
    text-align: left;
  }

  .routine-moments {
    grid-template-columns: 1fr;
  }

  .free-promise {
    padding: 30px 24px;
    border-radius: 26px;
  }

  .routine-moments article {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .routine-moments span {
    margin-bottom: 18px;
  }

  .routine-proof-belief {
    text-align: left;
  }

  .memory-wall-heading {
    margin-left: 0;
  }

  .memory-wall-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    white-space: normal;
  }

  .memory-wall-heading h2::after {
    content: none;
  }

  .free-note {
    margin-left: 0;
    padding: 28px 22px;
    transform: rotate(0deg);
  }

  .wall-transition {
    text-align: left;
  }

  .wall-transition::before,
  .wall-transition::after {
    display: none;
  }

  .postit-wall {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .postit,
  .postit-item:nth-child(odd) .postit,
  .postit-item:nth-child(even) .postit {
    height: auto;
    transform: none;
  }

  .postit p:first-of-type {
    min-height: auto;
    margin-bottom: 14px;
  }

  .photo-placeholder {
    height: 190px;
    min-height: 190px;
  }

  .postit-feature {
    grid-template-columns: 46px 1fr;
    min-height: 150px;
  }

  .postit-feature > span {
    width: 42px;
    height: 42px;
  }

  .wall-closing {
    text-align: left;
  }

  .evolution-stage {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .stage-time {
    margin-bottom: 20px;
  }

  .evolution-stage h3 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }

  .stage-items {
    margin-bottom: 26px;
  }

  .evolution-path {
    gap: 10px;
    padding: 6px 4px;
  }

  .evolution-path p {
    max-width: 190px;
    font-size: 1rem;
  }

  .evolution-belief {
    text-align: left;
  }

  .comparison-card {
    padding: 20px;
    border-radius: 26px;
  }

  .comparison-heading {
    display: grid;
    gap: 8px;
  }

  .comparison {
    border-radius: 20px;
  }

  .row {
    grid-template-columns: 1fr 64px 64px;
    gap: 8px;
    min-height: 58px;
    padding: 14px 12px;
  }

  .row span {
    font-size: 0.92rem;
  }

  .belief {
    padding: 18px;
  }

  .testimonials {
    width: min(100% - 28px, 1360px);
    padding-top: 62px;
    padding-bottom: 72px;
  }

  .testimonials .section-heading {
    display: block;
  }

  .trust-section {
    width: min(100% - 28px, 1360px);
    padding-top: 66px;
    padding-bottom: 72px;
  }

  .trust-heading {
    text-align: left;
  }

  .trust-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .trust-heading h2::after {
    width: 86px;
    margin-left: 0;
  }

  .trust-mosaic {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 24px;
  }

  .trust-editorial {
    width: min(100% - 28px, 1260px);
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .trust-editorial__intro {
    text-align: left;
  }

  .trust-editorial__intro h2,
  .trust-editorial__intro p {
    margin-left: 0;
  }

  .trust-origin figure {
    padding-left: 38px;
  }

  .trust-origin blockquote {
    font-size: clamp(1.3rem, 6vw, 1.9rem);
  }

  .trust-origin figure::before {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 6px rgba(92, 252, 21, 0.1);
  }

  .trust-product-stack {
    justify-self: start;
    min-height: 390px;
    transform: scale(0.88);
    transform-origin: left center;
  }

  .mini-screen--agenda {
    width: 270px;
  }

  .mini-screen--clients,
  .mini-screen--toys {
    width: 218px;
  }

  .trust-belief {
    margin-top: 46px;
    padding: 30px 10px;
    text-align: left;
  }

  .trust-belief::after {
    margin-left: 0;
  }

  .trust-strip {
    padding: 22px;
  }

  .free-intro .eyebrow,
  .testimonials .section-heading .eyebrow {
    margin-bottom: 12px;
  }

  .testimonial-grid figure {
    min-height: auto;
    padding: 28px 22px;
    border-radius: 26px;
  }

  .testimonial-grid figure::before {
    right: 18px;
    font-size: 5.2rem;
  }

  .result-strip {
    margin-top: -58px;
  }

  .result-strip article {
    grid-template-columns: 52px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 46px 0;
  }

  .photo-journey {
    width: min(100% - 28px, 1180px);
    padding: 56px 0 72px;
  }

  .journey-heading {
    margin-bottom: 42px;
  }

  .journey-story {
    gap: 54px;
  }

  .journey-moment img,
  .journey-moment.compact img,
  .journey-moment.feature img,
  .journey-moment.wide img,
  .journey-moment.finale img {
    min-height: 300px;
    max-height: none;
    border-radius: 22px;
  }

  .moment-copy h3 {
    font-size: 1.85rem;
  }

  .journey-transition {
    margin-top: 66px;
    text-align: left;
  }

  .solution {
    border-radius: 24px;
    padding: 58px 22px;
    gap: 38px;
  }

  .app-preview {
    width: min(100%, 390px);
  }

  .solution-copy {
    text-align: left;
  }

  .solution-copy h2 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .solution-copy h2,
  .solution-copy p,
  .solution-lead {
    margin-left: 0;
  }

  .solution-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
    margin-top: 6px;
  }

  .solution-points span {
    width: 46px;
    height: 46px;
  }

  .solution-closing {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .row {
    grid-template-columns: 1fr 68px 68px;
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .final-cta {
    width: min(100% - 28px, 1360px);
    padding: 40px 24px;
    border-radius: 28px;
    background-position: 47% center;
  }

  .final-cta__features {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .final-cta__story h2 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .final-cta__mission {
    margin-left: 0;
    text-align: left;
  }

  .final-cta__mission::after {
    margin-left: 0;
  }

  .site-footer {
    gap: 26px;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .legal-header {
    padding: 20px 0;
  }

  .legal-header .brand img {
    width: 82px;
  }

  .legal-back {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .legal-document {
    padding: 34px 22px;
    border-radius: 26px;
  }

  .legal-note {
    display: grid;
  }
}
