:root {
  --page: #f4ebdd;
  --paper: #fff7e8;
  --paper-deep: #eadfc9;
  --ink: #16221d;
  --muted: #5f6c65;
  --green: #0e6b4f;
  --green-dark: #094633;
  --mint: #94d8b7;
  --terracotta: #d86243;
  --amber: #e8af3a;
  --lime: #cbdb64;
  --line: #d8cbb9;
  --shadow: 0 24px 70px rgba(22, 34, 29, 0.14);
  --soft-shadow: 0 14px 34px rgba(22, 34, 29, 0.1);
  --radius-large: 42px;
  --radius-medium: 26px;
  --radius-small: 16px;
  --header-height: 78px;
  --container: min(1180px, calc(100vw - 40px));
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(216, 203, 185, .45) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(0deg, rgba(216, 203, 185, .55) 1px, transparent 1px) 0 0 / 86px 86px,
    var(--page);
  overflow-x: hidden;
}

body.site-page--locked {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  width: var(--container);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 10px 12px;
  background: rgba(255, 247, 232, 0.86);
  border: 1px solid rgba(216, 203, 185, 0.86);
  border-radius: 30px;
  box-shadow: 0 16px 45px rgba(22, 34, 29, .12);
  backdrop-filter: blur(16px);
}

.site-header__brand {
  display: grid;
  grid-template-columns: 42px auto;
  gap: 12px;
  align-items: center;
  padding: 8px 14px 8px 8px;
  border-radius: 22px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  letter-spacing: -.03em;
}

.site-header__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.site-header__nav {
  justify-self: center;
}

.site-header__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-header__link:hover {
  color: var(--ink);
  background: rgba(203, 219, 100, .35);
}

.site-header__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--amber);
  font-size: 14px;
  font-weight: 850;
  background: var(--paper);
}

.site-header__burger {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: 8px;
  border: 0;
  border-radius: 16px;
  background: var(--green);
  color: var(--paper);
  cursor: pointer;
}

.site-header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 9px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.site-header--open .site-header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header--open .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header--open .site-header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-main {
  padding-top: 116px;
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 116px);
  display: grid;
  align-items: center;
  padding: 24px 0 72px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-grid;
  grid-template-columns: 12px auto;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: var(--green-dark);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
}

.hero__eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 18px 0 0 var(--amber), 36px 0 0 var(--lime);
}

.hero__title {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .88;
  letter-spacing: -.075em;
}

.hero__title-mark {
  display: inline-block;
  padding: .02em .12em .08em;
  border: 3px solid var(--ink);
  border-radius: 24px;
  background: var(--lime);
  transform: rotate(-1deg);
}

.hero__text {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  font-weight: 900;
  letter-spacing: -.01em;
  isolation: isolate;
}

.button::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 18px;
  height: 18px;
  border-left: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom-right-radius: 16px;
  background: rgba(255, 255, 255, .45);
}

.button--primary {
  background: var(--green);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--lime);
}

.button--secondary {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--amber);
}

.button--small {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 15px;
  font-size: 14px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 630px;
  margin-top: 42px;
}

.hero__proof-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 247, 232, .76);
}

.hero__proof-number {
  display: block;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -.05em;
}

.hero__proof-label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero__media {
  position: relative;
  min-width: 0;
}

.hero__image {
  width: 100%;
  border-radius: 44px;
  box-shadow: var(--shadow);
}

.hero__note {
  position: absolute;
  right: -14px;
  bottom: 42px;
  max-width: 250px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 26px;
  background: var(--amber);
  box-shadow: 9px 9px 0 var(--green);
  font-weight: 850;
  line-height: 1.2;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(260px, .42fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading__kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-heading__title {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: .95;
  letter-spacing: -.06em;
}

.section-heading__text {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.features {
  padding: 72px 0;
}

.features__grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr .9fr;
  grid-auto-rows: minmax(190px, auto);
  gap: 18px;
}

.feature-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--mint);
  opacity: .65;
  transform: rotate(8deg);
}

.feature-card--large {
  grid-column: span 2;
  min-height: 430px;
  background: var(--green);
  color: var(--paper);
}

.feature-card--wide {
  grid-column: span 2;
  background: #f5dcbc;
}

.feature-card--tall {
  grid-row: span 2;
  background: #fbedd0;
}

.feature-card--accent {
  background: var(--lime);
}

.feature-card__number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 18px;
  font-weight: 950;
}

.feature-card__title {
  position: relative;
  max-width: 520px;
  margin: 38px 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.045em;
}

.feature-card__text {
  position: relative;
  margin: 0;
  max-width: 560px;
  color: color-mix(in srgb, currentColor 68%, transparent);
  line-height: 1.6;
}

.feature-card--large .feature-card__text {
  color: rgba(255, 247, 232, .78);
}

.flow {
  padding: 64px 0;
}

.flow__board {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.flow__panel {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius-large);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.flow__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
}

.flow__text {
  margin: 22px 0 0;
  color: rgba(255, 247, 232, .72);
  font-size: 18px;
  line-height: 1.6;
}

.flow__steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow__step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 247, 232, .82);
}

.flow__step::before {
  content: "0" counter(step);
  display: grid;
  place-items: center;
  height: 80px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--amber);
  font-weight: 950;
  font-size: 24px;
}

.flow__step-title {
  margin: 0;
  font-size: 22px;
  letter-spacing: -.03em;
}

.flow__step-text {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.screens {
  padding: 70px 0;
}

.screens__frame {
  position: relative;
  padding: clamp(18px, 3vw, 34px);
  border: 2px solid var(--ink);
  border-radius: 44px;
  background: #fff3dc;
  box-shadow: 11px 11px 0 var(--green);
  overflow: hidden;
}

.screens__frame::before {
  content: "";
  position: absolute;
  inset: 26px auto auto 28px;
  width: 86px;
  height: 20px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--terracotta) 0 12px, transparent 12px 20px);
}

.screens__image {
  width: 100%;
  border-radius: 30px;
}

.screens__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 20px;
  margin-top: 34px;
}

.screens__caption {
  padding: 32px;
  border-radius: 34px;
  background: var(--green);
  color: var(--paper);
}

.screens__caption-title {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
}

.screens__caption-text {
  margin: 18px 0 0;
  color: rgba(255, 247, 232, .76);
  line-height: 1.65;
}

.screens__carousel {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 247, 232, .72);
}

.screens__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(245px, 32%);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 0 12px;
  scrollbar-width: thin;
}

.screens__item {
  scroll-snap-align: start;
  border-radius: 30px;
  overflow: hidden;
  background: var(--paper-deep);
}

.screens__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 8px;
}

.screens__button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
}

.reviews {
  padding: 70px 0;
}

.reviews__wall {
  display: grid;
  grid-template-columns: 1fr .84fr 1.12fr;
  gap: 18px;
  align-items: start;
}

.review-card {
  padding: 26px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 247, 232, .84);
  box-shadow: var(--soft-shadow);
}

.review-card:nth-child(2) {
  margin-top: 52px;
  background: #f6ddbd;
}

.review-card:nth-child(3) {
  margin-top: 18px;
  background: #e9f0bd;
}

.review-card:nth-child(4) {
  grid-column: 1 / span 2;
  background: #d6eddf;
}

.review-card__quote {
  margin: 0;
  font-size: 18px;
  line-height: 1.58;
}

.review-card__author {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 750;
}

.review-card__avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--green);
  color: var(--paper);
  font-weight: 900;
}

.download {
  padding: 76px 0 92px;
}

.download__card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border: 2px solid var(--ink);
  border-radius: 44px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 14px 14px 0 var(--terracotta);
}

.download__title {
  max-width: 750px;
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .94;
  letter-spacing: -.06em;
}

.download__text {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 247, 232, .76);
  font-size: 18px;
  line-height: 1.6;
}

.download__actions {
  display: grid;
  gap: 13px;
  min-width: 230px;
}

.download__button {
  display: grid;
  gap: 1px;
  padding: 14px 18px;
  border: 2px solid rgba(255, 247, 232, .84);
  border-radius: 18px;
  background: rgba(255, 247, 232, .08);
}

.download__button-small {
  color: rgba(255, 247, 232, .68);
  font-size: 12px;
}

.download__button-strong {
  font-size: 18px;
  font-weight: 900;
}

.site-footer {
  width: var(--container);
  margin: 0 auto 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 247, 232, .78);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer__copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-footer__link {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(203, 219, 100, .32);
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.cookie {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 70;
  width: min(760px, calc(100vw - 28px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(22, 34, 29, .22);
}

.cookie--hidden {
  display: none;
}

.cookie__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.cookie__link {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie__actions {
  display: flex;
  gap: 10px;
}

.cookie__button {
  min-height: 44px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.cookie__button--accept {
  background: var(--green);
  color: var(--paper);
}

.legal-page {
  padding: calc(var(--header-height) + 78px) 0 78px;
}

.legal-page__header {
  display: grid;
  grid-template-columns: 1fr minmax(220px, .35fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.legal-page__title {
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .9;
  letter-spacing: -.065em;
}

.legal-page__summary {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-page__content {
  display: grid;
  gap: 16px;
}

.legal-section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 247, 232, .82);
}

.legal-section__title {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.legal-section__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-section__list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-section__text+.legal-section__text,
.legal-section__list+.legal-section__text,
.legal-section__text+.legal-section__list {
  margin-top: 12px;
}

.legal-section__link {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section strong {
  color: var(--ink);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-header__nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(360px, calc(100vw - 40px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-header--open .site-header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__list {
    display: grid;
    gap: 4px;
  }

  .site-header__link {
    width: 100%;
    justify-content: flex-start;
  }

  .site-header__burger {
    display: block;
  }

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

  .hero__media {
    max-width: 760px;
    margin: 0 auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .feature-card--large,
  .feature-card--wide {
    grid-column: span 2;
  }

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

  .flow__panel {
    min-height: auto;
  }

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

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

  .review-card:nth-child(4) {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1180px);
    --header-height: 70px;
  }

  .site-header {
    top: 8px;
    grid-template-columns: auto 1fr auto;
    border-radius: 24px;
  }

  .site-header__brand {
    grid-template-columns: 36px auto;
    gap: 9px;
    padding-right: 10px;
    font-size: 15px;
  }

  .site-header__mark {
    width: 36px;
    height: 36px;
    border-radius: 13px;
  }

  .site-header__action {
    display: none;
  }

  .site-main {
    padding-top: 96px;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .hero__title {
    font-size: clamp(43px, 16vw, 70px);
  }

  .hero__text {
    font-size: 17px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .hero__note {
    position: static;
    max-width: none;
    margin-top: 14px;
    box-shadow: 6px 6px 0 var(--green);
  }

  .features,
  .flow,
  .screens,
  .reviews,
  .download {
    padding: 50px 0;
  }

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

  .feature-card--large,
  .feature-card--wide {
    grid-column: auto;
  }

  .feature-card--tall {
    grid-row: auto;
  }

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

  .flow__step::before {
    width: 74px;
    height: 60px;
  }

  .screens__track {
    grid-auto-columns: minmax(210px, 78%);
  }

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

  .review-card:nth-child(2),
  .review-card:nth-child(3) {
    margin-top: 0;
  }

  .download__card {
    box-shadow: 8px 8px 0 var(--terracotta);
  }

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

  .site-footer__links {
    justify-content: flex-start;
  }

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

  .cookie__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .legal-page {
    padding-top: 132px;
  }

  .legal-page__header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  :root {
    --container: calc(100vw - 20px);
  }

  .site-header__brand {
    max-width: 220px;
  }

  .site-header__brand-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .section-heading__title,
  .download__title {
    letter-spacing: -.045em;
  }

  .legal-page__title {
    font-size: clamp(38px, 14vw, 58px);
    letter-spacing: -.055em;
  }

  .feature-card,
  .flow__step,
  .screens__caption,
  .legal-section {
    padding: 22px;
  }

  .site-footer {
    padding: 20px;
  }
}