:root {
  --bg: #ececec;
  --ink: #040404;
  --muted: #b7bdc8;
  --muted-2: #c7ccd6;
  --blue: #1f5de3;
  --track: #dde1e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 0% 0%, #f7f7f7 0%, var(--bg) 45%);
  color: var(--ink);
  font-family: "Geist", "Segoe UI", sans-serif;
}

.page {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 64px 24px 88px;
}

.hero,
.value,
.trust,
.offer {
  width: min(100%, 600px);
  margin-inline: auto;
}

.avatar {
  width: 84px;
  height: 84px;
  margin-bottom: 32px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12);
}

.avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.headline {
  margin: 0;
  font-size: clamp(2.35rem, 7.4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.headline span,
.subhead span,
.pitch span {
  display: inline;
}

.dark {
  color: var(--ink);
}

.trust-link {
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.trust-link:hover {
  color: var(--blue);
}

.trust-link:focus-visible {
  color: var(--blue);
  outline: 2px solid rgba(31, 93, 227, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--blue);
  background: rgba(31, 93, 227, 0.12);
  border-radius: 12px;
  padding: 0 6px;
}

.subhead {
  margin: 42px 0 0;
  max-width: 560px;
  font-size: clamp(1.8rem, 4.2vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.026em;
  font-weight: 500;
}

.value {
  margin-top: 86px;
}

.pitch {
  margin: 0;
  font-size: clamp(2.1rem, 6.2vw, 4.15rem);
  line-height: 1;
  letter-spacing: -0.042em;
  font-weight: 500;
}

.trust {
  margin-top: 104px;
}

.trust-line {
  font-size: clamp(1.75rem, 4.3vw, 3.2rem);
  line-height: 1.18;
  max-width: 570px;
}

.offer {
  margin-top: 110px;
}

.plan {
  margin-bottom: 56px;
}

.plan-title {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  line-height: 1;
}

.big {
  font-size: clamp(3.2rem, 10vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.plan-title .muted {
  color: var(--muted);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 500;
}

.progress-wrap {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.progress-track {
  flex: 1;
  height: 14px;
  border-radius: 999px;
  background: var(--track);
  overflow: hidden;
}

.progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.progress-count {
  color: #0e0e0e;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: -0.025em;
}

.cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 270px;
  height: 74px;
  padding: 0 30px;
  border-radius: 16px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #fff;
  background: var(--blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(31, 93, 227, 0.22);
}

.cta:focus-visible {
  outline: 3px solid #8db4ff;
  outline-offset: 2px;
}

.plan-secondary {
  margin-top: 18px;
}

.cta-secondary {
  background: #111;
}

@media (max-width: 900px) {
  html {
    font-size: 8px;
  }

  .page {
    padding-top: 40px;
  }

  .avatar {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .headline {
    font-size: 6rem;
    line-height: 0.96;
  }

  .subhead {
    font-size: 3.2rem;
    line-height: 1.2;
  }
  
  .trust-line {
    font-size: 3.2rem;
    line-height: 1.2;
  }

  .value {
    margin-top: 64px;
  }

  .trust {
    margin-top: 76px;
  }

  .offer {
    margin-top: 82px;
  }

  .progress-wrap {
    gap: 10px;
  }

  .progress-count {
    font-size: 1.5rem;
  }

  .cta {
    width: 100%;
    min-width: 0;
    height: 58px;
    font-size: 3.2rem;
    border-radius: 12px;
  }
}
