@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;700;800&display=swap");

:root {
  --text: #050505;
  --muted: #737373;
  --line: #e9e2ca;
  --paper: #ffffff;
  --cream: #fffae8;
  --cream-strong: #fff8e1;
  --gold: #fece00;
  --gold-deep: #ff8601;
  --ink: #121212;
  --shadow: 0 28px 90px rgba(92, 72, 0, 0.09);
  --container: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

body.soft-auth-open {
  overflow: hidden;
}

body.soft-auth-open > header,
body.soft-auth-open > main {
  filter: blur(8px);
}

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 649px;
  padding-top: 61px;
  overflow: hidden;
  background: #fff url("./assets/hero-bg-figma.png?v=11c34f90e8") center top / 100% 100% no-repeat;
}

.hero::before,
.hero::after {
  display: none;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(250, 197, 0, 0.44) 1px, transparent 1.4px),
    repeating-radial-gradient(ellipse at center, transparent 0 17px, rgba(250, 197, 0, 0.25) 18px 19px, transparent 20px 34px);
  background-size: 12px 12px, 100% 100%;
}

.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 180px 1fr 90px;
  align-items: center;
  width: min(1354px, calc(100% - 56px));
  margin: 0 auto;
  padding: 15px 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transform: translateX(-50%);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img {
  display: block;
  width: 110px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.login-link {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  transform: translateX(11px);
  min-width: 65px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
}

.nav-toggle {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 40px));
  margin: 62px auto 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 3px 12px;
  border: 1px dashed #fdd134;
  border-radius: 108px;
  background: transparent;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.coin {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.hero h1 {
  max-width: 1040px;
  margin: 28px auto 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(40px, 3.611vw, 52px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.hero-content p {
  width: min(506px, 100%);
  margin: 28px auto 0;
  font-size: 16px;
  line-height: 1.25;
}

.hero-actions,
.workflow-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 27px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  padding: 0 24px;
  cursor: pointer;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  box-shadow: none;
}

.button-primary:hover {
  background: #ffdc26;
}

.button-secondary {
  background: #fafafa;
  box-shadow: none;
}

.hero-actions .button {
  width: 208px;
}

.button-compact {
  width: 129px;
  padding: 0 23px;
  border: 1px solid var(--gold);
  background: #fff;
  white-space: nowrap;
}

.stats {
  position: relative;
  z-index: 4;
  margin-top: -85px;
}

.stats-card {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(var(--container), calc(100% - 48px));
  height: 124px;
  padding: 32px 45px;
  margin: 0 auto;
  transform: translateX(14px);
  border-radius: 24px;
  background: #fff;
  border: 1px solid #ebebeb;
  box-shadow: none;
  backdrop-filter: blur(20px);
}

.stats-card article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  flex: 0 0 300px;
  gap: 10px;
  padding: 0;
  isolation: isolate;
}

.stats-card article::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8px;
  left: 5px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 134, 1, 0.34), rgba(254, 206, 0, 0.44));
  filter: blur(30px);
  pointer-events: none;
}

.stats-card article:nth-child(3)::before {
  top: 1px;
  left: 2px;
}

.stats-card strong {
  font-family: Manrope, Inter, sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.stats-card span {
  width: 213px;
  font-size: 16px;
  line-height: 1.25;
}

.stats-card article:nth-child(2) span {
  width: 184px;
}

.stats-card article:nth-child(3) span {
  width: 189px;
}

.section {
  padding: 120px 0;
}

.problems {
  padding-top: 78px;
  padding-bottom: 84px;
}

h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.section h2,
.audience h2,
.expert h2 {
  margin-bottom: 58px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.problems h2 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(34px, 3.056vw, 44px);
  line-height: 1;
  font-weight: 700;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.problem-list {
  width: min(704px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 37px;
}

.problem-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 20px;
}

.problem-item span {
  font-family: Manrope, Inter, sans-serif;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.problem-item h3 {
  margin-bottom: 12px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.problem-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.audience {
  padding: 0 45px;
}

.audience-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 430px 532px;
  justify-content: start;
  align-items: start;
  column-gap: 69px;
  width: min(1354px, 100%);
  min-height: 1162px;
  margin: 0 auto;
  padding: 80px 126px 80px 197px;
  border-radius: 64px;
  background: var(--cream);
}

.audience-panel::before {
  content: "";
  position: absolute;
  left: -515px;
  top: -35px;
  width: 1250px;
  height: 610px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    ellipse at center,
    transparent 0 25px,
    rgba(255, 255, 255, 0.64) 26px 27px,
    transparent 28px 40px
  );
  transform: rotate(-8deg);
}

.audience-panel::after {
  content: "";
  position: absolute;
  left: -590px;
  bottom: -145px;
  width: 1260px;
  height: 820px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    ellipse at center,
    transparent 0 27px,
    rgba(255, 255, 255, 0.66) 28px 29px,
    transparent 30px 43px
  );
  transform: rotate(17deg);
}

.audience-copy,
.audience-groups {
  position: relative;
  z-index: 1;
}

.audience-copy h2 {
  width: 430px;
  margin-bottom: 32px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.audience-copy p {
  width: 430px;
  margin-bottom: 48px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.report-preview {
  display: grid;
  width: 361px;
  height: 272px;
  align-content: start;
  gap: 20px;
  padding: 24px;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  background: #fff;
}

.preview-folder {
  display: block;
  width: 313px;
  height: 121px;
}

.report-preview span {
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.report-preview b {
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.audience-groups {
  display: grid;
  width: 532px;
  gap: 52px;
}

.audience-groups article {
  display: grid;
  gap: 24px;
}

.audience-groups h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.audience-groups ul {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.audience-groups li {
  position: relative;
  padding-left: 21px;
}

.audience-groups li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 15px;
  background: url("./assets/star.svg?v=4d8a90a55d") center / contain no-repeat;
}

@media (max-width: 1200px) {
  .audience {
    padding-inline: 32px;
  }

  .audience-panel {
    grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
    column-gap: 56px;
    width: 100%;
    padding: 80px 64px;
  }

  .audience-copy,
  .audience-groups {
    width: auto;
    min-width: 0;
  }

  .audience-copy h2,
  .audience-copy p {
    width: 100%;
  }

  .audience-groups h3 {
    line-height: 1.08;
  }

  .audience-groups ul {
    font-size: 15px;
    line-height: 21px;
  }
}

.cases {
  padding-top: 80px;
  padding-bottom: 80px;
}

.cases h2 {
  width: min(723px, 100%);
  margin-bottom: 48px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(34px, 3.056vw, 44px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.case-card {
  min-width: 0;
}

.case-visual {
  position: relative;
  height: 273px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 210, 0, 0.35), transparent 24%),
    linear-gradient(135deg, #fff8d9, #fff2bd);
}

.case-visual::before,
.case-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 210, 0, 0.35);
}

.case-visual::before {
  width: 250px;
  height: 250px;
  left: 54px;
  top: 45px;
}

.case-visual::after {
  width: 160px;
  height: 160px;
  right: 66px;
  bottom: -55px;
}

.case-visual span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  z-index: 1;
}

.case-visual span:nth-child(1) {
  width: 170px;
  height: 18px;
  left: 48px;
  top: 52px;
}

.case-visual span:nth-child(2) {
  width: 230px;
  height: 18px;
  left: 48px;
  top: 86px;
}

.case-visual span:nth-child(3) {
  width: 115px;
  height: 115px;
  right: 64px;
  top: 62px;
  background: var(--gold);
}

.case-visual-copy {
  position: relative;
  z-index: 3;
  width: min(360px, calc(100% - 180px));
  padding: 36px 0 0 30px;
}

.case-visual-copy h3 {
  margin: 0 0 16px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(26px, 2.35vw, 34px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
}

.case-visual-copy p {
  width: min(310px, 100%);
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 400;
}

.case-visual-with-shoe span:nth-child(3) {
  display: none;
}

.case-visual-with-ampoule span:nth-child(3) {
  display: none;
}

.case-shoe {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 55px;
  display: block;
  width: min(195px, 39%);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 18px 22px rgba(140, 100, 0, 0.14));
}

.case-ampoule {
  position: absolute;
  z-index: 2;
  right: 82px;
  bottom: -52px;
  display: block;
  width: min(148px, 30%);
  height: auto;
  pointer-events: none;
  transform: rotate(-16deg);
  transform-origin: 50% 50%;
  filter: drop-shadow(0 18px 20px rgba(140, 100, 0, 0.13));
}

@media (min-width: 1021px) {
  .case-visual-copy h3 {
    font-size: 31px;
    line-height: 1.18;
  }

  .case-visual-with-shoe .case-visual-copy {
    width: 330px;
  }

  .case-visual-with-shoe .case-visual-copy p {
    width: 260px;
  }

  .case-visual-with-shoe .case-shoe {
    right: 19px;
    bottom: 45px;
    width: 175px;
  }

  .case-visual-with-ampoule .case-visual-copy {
    width: 300px;
  }

  .case-visual-with-ampoule .case-visual-copy p {
    width: 270px;
  }

  .case-visual-with-ampoule .case-ampoule {
    right: 48px;
    bottom: -54px;
    width: 132px;
  }
}

.case-visual-alt {
  background:
    radial-gradient(circle at 73% 31%, rgba(255, 210, 0, 0.35), transparent 22%),
    linear-gradient(135deg, #fff4be, #fff9dd);
}

.case-meta {
  margin-bottom: 16px;
  color: #909090;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
}

.case-meta span {
  color: inherit;
}

.case-description {
  min-height: 118px;
  margin: 0 0 16px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0;
}

.workflow {
  padding-top: 80px;
  padding-bottom: 80px;
}

.workflow .container {
  width: min(1064px, calc(100% - 48px));
}

.workflow-head {
  width: min(692px, 100%);
  margin-bottom: 40px;
}

.workflow-head h2 {
  margin-bottom: 24px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(36px, 3.37vw, 48px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.workflow-head p {
  width: min(692px, 100%);
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  align-items: start;
  gap: 52px;
  min-height: 251px;
}

.step-card {
  position: relative;
  display: grid;
  align-content: start;
  width: 320px;
}

.step-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--gold);
}

.step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.step-card time {
  display: inline-flex;
  width: max-content;
  height: 19px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 0 4px;
  border: 2px solid #ebebeb;
  border-radius: 4px;
  color: #b8b8b8;
  font-family: "Google Sans", Manrope, Inter, sans-serif;
  font-size: 12px;
  line-height: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.step-card h3 {
  min-height: 58px;
  margin-bottom: 8px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.step-card p {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.workflow-actions {
  justify-content: flex-start;
  margin-top: 40px;
}

.workflow-actions .button {
  height: 38px;
  font-weight: 400;
  white-space: nowrap;
}

.workflow-actions .button-primary {
  width: 208px;
  border: 1px solid var(--gold-deep);
}

.workflow-actions .button-secondary {
  width: 147px;
  border: 1px solid var(--gold);
  background: #fafafa;
}

.expert {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 14px;
  background: #fff;
}

.expert .container {
  width: min(1084px, calc(100% - 48px));
}

.expert-layout {
  display: grid;
  grid-template-columns: 589px 453px;
  align-items: start;
  gap: 48px;
  min-height: 401px;
}

.expert-copy {
  width: 589px;
}

.expert-copy h2 {
  width: 589px;
  margin-bottom: 34px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
}

.expert-copy h3 {
  width: 504px;
  margin: 46px 0 13px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.expert-copy p {
  max-width: min(491px, 100%);
  margin-bottom: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.expert-copy p:first-of-type {
  max-width: min(479px, 100%);
}

.expert-bio {
  display: grid;
  gap: 18px;
  max-width: min(520px, 100%);
}

.expert-bio p,
.expert-bio p:first-of-type {
  max-width: none;
  margin: 0;
}

.expert-bio strong {
  font-weight: 700;
}

.expert-quote {
  position: relative;
  margin: 8px 0 0;
  padding: 20px 22px 20px 28px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 210, 0, 0.12);
}

.expert-quote::before {
  content: "“";
  position: absolute;
  top: 7px;
  left: 9px;
  color: var(--gold-deep);
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.expert-portrait {
  position: relative;
  width: 453px;
  height: 401px;
  transform: translateY(-52px);
}

.portrait-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 453px;
  height: 453px;
  border-radius: 50%;
  background: var(--cream-strong);
}

.expert-portrait img {
  position: absolute;
  top: 8px;
  left: -63px;
  width: 413px;
  height: 445px;
  object-fit: contain;
}

.achievement-band {
  margin-top: 0;
  padding: 50px 0 75px;
  background: linear-gradient(to bottom, #fff9e2 0%, #ffffff 100%);
}

.achievements {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  gap: 44px;
}

.achievements article {
  display: grid;
  align-content: start;
  width: 320px;
}

.star {
  width: 16px;
  height: 15px;
  margin-bottom: 22px;
  background: url("./assets/star.svg?v=4d8a90a55d") center / contain no-repeat;
}

.achievements h3 {
  margin-bottom: 22px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}

.achievements p {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 0 0 28px;
  background: #fff;
}

.final-cta::before {
  z-index: 0;
  top: 384px;
  left: -90px;
  width: 1648px;
  height: 640px;
  border-radius: 50%;
  opacity: 0.58;
  background: linear-gradient(104deg, #fece00 0%, #ffd400 56%, #ffe76a 100%);
  filter: blur(120px);
}

.final-cta::after {
  z-index: 1;
  top: auto;
  right: 0;
  bottom: 0;
  width: 544px;
  height: 220px;
  opacity: 1;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0) calc(100% - 50px), #fff 100%),
    url("./assets/footer-grid.png?v=6e19301a58") right bottom / 544px 459px no-repeat;
}

.cta-form {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 64px;
  border: 1px solid #d9d9d9;
  border-radius: 32px;
  background: #fff;
  box-shadow: none;
}

.cta-form h2 {
  width: min(680px, 100%);
  margin: 0 auto 16px;
  text-align: center;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(30px, 2.5vw, 36px);
  line-height: 1;
  font-weight: 700;
}

.cta-form > p {
  width: min(680px, 100%);
  margin: 0 0 40px;
  justify-self: center;
  text-align: center;
  font-size: 16px;
  line-height: 1.45;
}

.cta-bonus {
  display: block;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255, 210, 0, 0.13);
}

.cta-bonus strong {
  font-weight: 700;
}

.cta-form label:not(.checkbox) {
  position: relative;
  display: grid;
  margin-bottom: 16px;
}

.cta-form label:not(.checkbox) span {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #8f8f8f;
  font-family: "Google Sans", Manrope, Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  pointer-events: none;
  transition:
    opacity 120ms ease,
    transform 120ms ease;
}

.cta-form label:nth-of-type(2) span {
  font-family: Manrope, Inter, sans-serif;
}

.cta-form input[type="text"],
.cta-form input[type="email"],
.cta-form input[type="tel"],
.cta-form input[type="url"] {
  width: 100%;
  height: 42px;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  padding: 0 20px;
  outline: 0;
  background: #fff;
}

.cta-form input:focus {
  border-color: var(--gold-deep);
}

.cta-form label:not(.checkbox):has(input:not(:placeholder-shown)) span,
.cta-form label:not(.checkbox):focus-within span {
  opacity: 0;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-family: "Google Sans", Manrope, Inter, sans-serif;
  font-size: 12px;
  line-height: 15px;
}

.checkbox input {
  display: grid;
  flex: 0 0 auto;
  place-content: center;
  width: 16px;
  height: 16px;
  margin: 0;
  appearance: none;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  background: #fff;
}

.checkbox input::before {
  content: "";
  width: 7px;
  height: 5px;
  background: #000;
  clip-path: polygon(14% 44%, 0 58%, 38% 100%, 100% 16%, 86% 0, 36% 67%);
  transform: scale(0);
}

.checkbox input:checked::before {
  transform: scale(1);
}

.checkbox a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-form .button {
  width: 100%;
}

.form-message {
  min-height: 0;
  margin-top: 0;
  text-align: center;
  color: #5d4a00;
  font-size: 13px;
}

.form-message:not(:empty) {
  min-height: 18px;
  margin-top: 12px;
}

.footer {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1084px, calc(100% - 48px));
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 40px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
}

.footer-brand img {
  display: block;
  width: 110px;
  height: auto;
}

.soft-auth-modal {
  width: min(640px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--text);
}

.soft-auth-modal::backdrop {
  background: rgba(5, 5, 5, 0.28);
}

.soft-auth-form {
  position: relative;
  display: grid;
  padding: 36px;
  border: 1px solid #e4dcc1;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(254, 206, 0, 0.22), transparent 48%),
    #fff;
  box-shadow: 0 32px 90px rgba(52, 38, 0, 0.18);
}

.soft-auth-form[data-auth-mode="demo"] {
  width: min(600px, calc(100vw - 32px));
  padding: 36px 40px;
}

.soft-auth-body {
  display: block;
}

.soft-auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.soft-auth-close::before,
.soft-auth-close::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #6f6f6f;
}

.soft-auth-close::before {
  transform: rotate(45deg);
}

.soft-auth-close::after {
  transform: rotate(-45deg);
}

.soft-auth-form h2 {
  width: min(520px, 100%);
  margin: 0 0 14px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 700;
}

.soft-auth-body > p {
  width: min(360px, 100%);
  margin: 0 0 28px;
  color: #4f4f4f;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.soft-auth-form[data-auth-mode="demo"] .soft-auth-body > p {
  margin-bottom: 24px;
}

.soft-auth-field {
  position: relative;
  display: grid;
  margin-bottom: 16px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.soft-auth-field span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #8f8f8f;
  pointer-events: none;
  transition:
    opacity 120ms ease,
    transform 120ms ease;
}

.soft-auth-field input {
  width: 100%;
  height: 44px;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  padding: 0 14px;
  outline: 0;
  background: #fff;
  font: inherit;
}

.soft-auth-field input:focus {
  border-color: var(--gold-deep);
}

.soft-auth-field:has(input:not(:placeholder-shown)) span,
.soft-auth-field:focus-within span {
  opacity: 0;
}

.soft-auth-field input[aria-invalid="true"] {
  border-color: #d43b2a;
}

.soft-auth-consent {
  margin-bottom: 20px;
}

.soft-auth-form .button {
  width: 100%;
}

.soft-auth-message {
  min-height: 0;
  margin-top: 0;
  color: #5d4a00;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
}

.soft-auth-message:not(:empty) {
  min-height: 18px;
  margin-top: 12px;
}

.soft-auth-loading {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.soft-auth-form[data-auth-mode="demo"] .soft-auth-loading {
  min-height: 236px;
}

.soft-auth-loading[hidden],
.soft-auth-body[hidden] {
  display: none;
}

.soft-auth-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(254, 206, 0, 0.22);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: soft-auth-spin 0.8s linear infinite;
}

.soft-auth-loading p {
  margin: 0;
  color: #3d3d3d;
  font-family: Manrope, Inter, sans-serif;
  font-size: 16px;
  line-height: 22px;
}

@keyframes soft-auth-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1020px) {
  .nav {
    grid-template-columns: 1fr auto auto;
    width: calc(100% - 36px);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 34px;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #000;
  }

  .nav-links {
    position: absolute;
    top: 62px;
    right: 0;
    left: auto;
    display: none;
    width: min(280px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid #eee1b1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
    transform: none;
  }

  .nav-links.is-open {
    display: grid;
    gap: 14px;
  }

  .login-link {
    margin-left: 10px;
    transform: none;
  }

  .stats-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    height: auto;
    padding: 0;
    transform: none;
  }

  .stats-card article {
    flex: initial;
    width: 100%;
    padding: 24px 45px;
  }

  .stats-card article + article {
    border-left: 0;
    border-top: 1px solid #f1ead1;
  }

  .stats-card article::before,
  .stats-card article:nth-child(3)::before {
    top: 16px;
    left: 50px;
  }

  .audience {
    padding-inline: 24px;
  }

  .audience-panel {
    grid-template-columns: 1fr;
    gap: 56px;
    min-height: 0;
    padding: 56px 40px;
  }

  .audience-copy p {
    width: 100%;
  }

  .audience-copy,
  .audience-groups {
    width: 100%;
    min-width: 0;
  }

  .audience-copy h2,
  .report-preview {
    width: 100%;
  }

  .report-preview {
    max-width: 361px;
    height: auto;
  }

  .preview-folder {
    width: 100%;
    max-width: 313px;
    height: auto;
  }

  .case-grid,
  .step-grid,
  .expert-layout,
  .achievements {
    grid-template-columns: minmax(0, 1fr);
  }

  .step-grid {
    height: auto;
  }

  .step-card {
    width: min(320px, 100%);
  }

  .expert-layout {
    gap: 36px;
  }

  .expert-copy,
  .expert-portrait {
    min-width: 0;
  }

  .expert-copy,
  .expert-copy h2,
  .expert-copy h3 {
    width: 100%;
  }

  .expert-portrait {
    justify-self: center;
    width: 453px;
    max-width: 100%;
    height: 453px;
    transform: none;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .stats-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: calc(100% - 48px);
    padding-inline: 32px;
    transform: none;
  }

  .stats-card article {
    width: 100%;
    min-width: 0;
    flex: initial;
  }

  .stats-card span,
  .stats-card article:nth-child(2) span,
  .stats-card article:nth-child(3) span {
    width: auto;
    min-width: 0;
  }

  .stats-card strong {
    font-size: 44px;
  }

  .workflow .container,
  .expert .container {
    width: calc(100% - 64px);
  }

  .workflow-head {
    width: min(692px, 100%);
  }

  .step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 28px;
    height: auto;
  }

  .step-card,
  .achievements article {
    width: 100%;
  }

  .step-card h3 {
    font-size: 22px;
    line-height: 1.22;
  }

  .workflow-actions {
    flex-direction: row;
  }

  .achievements {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 675px;
  }

  .hero-content {
    margin-top: 72px;
  }

  .hero h1 {
    width: min(320px, 100%);
    font-size: 28px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .eyebrow {
    max-width: 100%;
    padding-inline: 12px;
    font-size: 13px;
  }

  .coin {
    flex: 0 0 auto;
  }

  .hero-content p {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .workflow-actions {
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 32px);
  }

  .button {
    width: 100%;
  }

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

  .workflow-actions .button-primary,
  .workflow-actions .button-secondary {
    width: 100%;
  }

  .stats {
    margin-top: -58px;
  }

  .stats-card article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 24px;
  }

  .stats-card strong {
    font-size: 42px;
  }

  .section {
    padding: 80px 0;
  }

  .problems {
    padding-top: 90px;
  }

  .section h2,
  .audience h2,
  .expert h2 {
    margin-bottom: 36px;
  }

  .problem-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .problem-item h3 {
    font-size: 20px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .audience {
    padding-inline: 12px;
  }

  .audience-panel {
    border-radius: 28px;
    padding: 44px 24px;
  }

  .report-preview {
    width: 100%;
  }

  .cases {
    padding-top: 80px;
  }

  .cases h2 {
    margin-bottom: 42px;
  }

  .case-visual {
    height: 190px;
  }

  .case-visual-copy {
    width: 52%;
    padding: 26px 0 0 30px;
  }

  .case-visual-copy h3 {
    margin-bottom: 0;
    font-size: 23px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .case-visual-copy p {
    display: none;
  }

  .case-shoe {
    right: 18px;
    bottom: 45px;
    width: min(154px, 40%);
  }

  .case-ampoule {
    right: 40px;
    bottom: -34px;
    width: min(104px, 27%);
  }

  .workflow-head {
    margin-bottom: 52px;
  }

  .step-grid {
    gap: 38px;
  }

  .step-card h3 {
    min-height: 0;
  }

  .expert {
    padding-top: 60px;
  }

  .expert-portrait {
    height: 360px;
    transform: scale(0.78);
    transform-origin: top center;
    margin-bottom: -72px;
  }

  .achievement-band {
    padding-top: 48px;
  }

  .cta-form {
    padding: 42px 22px;
    border-radius: 16px;
  }

  .soft-auth-form {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .soft-auth-form h2 {
    padding-right: 28px;
    font-size: 28px;
  }
}
