:root {
  --blue: #0a36a1;
  --blue-2: #345cff;
  --blue-soft: #82b1e2;
  --coral: #fb6255;
  --orange: #f7a430;
  --yellow: #f9c849;
  --ink: #060e13;
  --muted: #767676;
  --muted-2: #637082;
  --line: #dbe8f5;
  --pale: #f5f9fd;
  --card: rgba(255, 255, 255, 0.74);
  --shadow: 0 13px 30px rgba(219, 232, 245, 0.88);
  --shadow-strong: 0 26px 80px rgba(10, 54, 161, 0.16);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Manrope", "Arial", sans-serif;
  background:
    radial-gradient(circle at 6% 8%, rgba(130, 177, 226, 0.28), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(249, 200, 73, 0.2), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 42%, #ffffff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(219, 232, 245, 0.48) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 232, 245, 0.48) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 56%);
}

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

button,
input {
  font: inherit;
}

.site-header,
main > section {
  width: min(1240px, calc(100vw - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 18px 22px;
  border: 1px solid rgba(219, 232, 245, 0.78);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 194px;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 14px 30px rgba(52, 92, 255, 0.24);
}

.brand-name {
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 16px 34px rgba(52, 92, 255, 0.28);
}

.secondary-btn {
  color: var(--blue);
  background: #fff;
  border-color: var(--line);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.metric-value,
.circle-stat strong {
  font-family: "Georgia", "Times New Roman", serif;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 5.2vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(440px, 610px) minmax(460px, 1fr);
  gap: 64px;
  min-height: 740px;
  padding-top: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.hero-copy .lead {
  max-width: 575px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-note {
  max-width: 150px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.free-access-note {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-art {
  position: relative;
  min-height: 670px;
}

.orb {
  position: absolute;
  top: 68px;
  right: -70px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 26%, rgba(255, 255, 255, 0.96) 0 9%, transparent 10%),
    radial-gradient(circle at 64% 22%, var(--yellow) 0 0, transparent 28%),
    radial-gradient(circle at 72% 76%, rgba(251, 98, 85, 0.78), transparent 26%),
    linear-gradient(135deg, #b9d7f4, #edf7ff 52%, #fff);
  box-shadow: inset 0 0 0 34px rgba(255, 255, 255, 0.58), var(--shadow-strong);
}

.orb::before,
.orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10, 54, 161, 0.14);
}

.orb::before {
  inset: -48px;
}

.orb::after {
  inset: 72px;
  background: rgba(255, 255, 255, 0.28);
}

.glass-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(219, 232, 245, 0.85);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow);
}

.hero-chart-card {
  top: 142px;
  left: 0;
  width: 394px;
  min-height: 292px;
  padding: 26px;
}

.hero-search-card {
  right: 0;
  bottom: 116px;
  width: 466px;
  min-height: 250px;
  padding: 26px;
}

.hero-user-card {
  top: 56px;
  right: 22px;
  display: grid;
  grid-template-columns: 64px auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "avatar total label"
    "avatar stars stars";
  align-items: center;
  column-gap: 14px;
  row-gap: 8px;
  width: 340px;
  padding: 18px 22px;
  overflow: hidden;
}

.card-label {
  margin-bottom: 18px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.metric-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.metric-value {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  background: rgba(52, 92, 255, 0.12);
}

.bars {
  display: grid;
  gap: 10px;
  margin: 22px 0 18px;
}

.bar {
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-2) var(--w), #e5eef8 var(--w));
}

.card-caption {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.user-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 17px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--coral), var(--orange));
}

.user-name {
  font-weight: 900;
}

.user-meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.search-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-size: 22px;
  font-weight: 800;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.signal-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--muted-2);
  font-size: 15px;
}

.signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
}

.signal-dot.blue {
  background: var(--blue-2);
}

.signal-dot.coral {
  background: var(--coral);
}

.hero-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: -34px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(219, 232, 245, 0.86);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.benefit-num {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  background: var(--yellow);
}

.benefit-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.38;
}

.problem-section,
.proof-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1fr);
  gap: 76px;
  align-items: center;
  padding: 108px 0;
}

.section-text {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.46;
  letter-spacing: -0.02em;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.problem-card,
.feature-card,
.step-card,
.review-card,
.final-cta {
  border: 1px solid rgba(219, 232, 245, 0.9);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.problem-card {
  min-height: 236px;
  padding: 28px;
  border-radius: 28px;
}

.problem-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.problem-card:nth-child(2) .problem-icon,
.problem-card:nth-child(3) .problem-icon {
  background: linear-gradient(135deg, var(--coral), var(--orange));
}

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

.solution-band {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding: 116px calc((100vw - min(1240px, calc(100vw - 48px))) / 2);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 18%, rgba(249, 200, 73, 0.75), transparent 24%),
    radial-gradient(circle at 75% 80%, rgba(251, 98, 85, 0.72), transparent 28%),
    linear-gradient(135deg, var(--blue), #0b58d7 58%, #80b8ea);
}

.solution-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size: 38px 38px;
}

.solution-copy,
.solution-analytics {
  position: relative;
  z-index: 1;
}

.solution-copy {
  max-width: 820px;
}

.solution-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.solution-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 23px;
  line-height: 1.45;
}

.solution-analytics {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 48px;
}

.income-card {
  border-radius: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 28px 90px rgba(2, 15, 56, 0.22);
}

.income-card.large {
  min-height: 330px;
  padding: 34px;
}

.income-card.side {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.income-card h3 {
  margin-bottom: 18px;
}

.analytics-table {
  display: grid;
  gap: 10px;
}

.analytics-row {
  display: grid;
  grid-template-columns: 1fr 110px 86px;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  background: rgba(245, 249, 253, 0.9);
  color: var(--muted-2);
  font-weight: 800;
}

.analytics-row strong {
  color: var(--ink);
}

.mini-metric {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.mini-metric span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-metric strong {
  display: block;
  margin-top: 8px;
  font-size: 32px;
}

.steps-section,
.features-section,
.niches-section {
  padding: 108px 0;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

.steps-wrap {
  position: relative;
}

.step-line {
  position: absolute;
  top: 62px;
  left: 15%;
  right: 15%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), var(--blue-soft), var(--coral));
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.step-card {
  min-height: 304px;
  padding: 32px;
  border-radius: 30px;
}

.step-index {
  display: grid;
  width: 94px;
  height: 94px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  background: var(--yellow);
  box-shadow: 0 14px 44px rgba(249, 200, 73, 0.34);
}

.step-card:nth-child(2) .step-index {
  color: #fff;
  background: var(--blue-2);
}

.step-card:nth-child(3) .step-index {
  color: #fff;
  background: var(--coral);
}

.step-card p {
  color: var(--muted);
  line-height: 1.45;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 22px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
}

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

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

.feature-card.blue {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.feature-card.orange {
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--orange));
}

.feature-card p {
  color: inherit;
  opacity: 0.72;
  line-height: 1.45;
}

.chart-lines {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 90px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, transparent 42%, rgba(52, 92, 255, 0.32) 43% 45%, transparent 46%),
    repeating-linear-gradient(0deg, rgba(219, 232, 245, 0.75) 0 1px, transparent 1px 22px);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chip-grid span,
.niche-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 900;
  background: rgba(52, 92, 255, 0.1);
}

.feature-number {
  position: absolute;
  right: 26px;
  bottom: 18px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.18;
}

.niche-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 990px;
  margin: 0 auto;
}

.niche-pill {
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(219, 232, 245, 0.92);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(219, 232, 245, 0.58);
}

.niche-pill.hot {
  background: var(--yellow);
  border-color: transparent;
}

.proof-section {
  position: relative;
  padding: 120px 0 112px;
}

.proof-section::before {
  content: "";
  position: absolute;
  top: 120px;
  right: calc(50% - 720px);
  width: 610px;
  height: 610px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 72% 28%, rgba(249, 200, 73, 0.42), transparent 24%),
    radial-gradient(circle at 28% 74%, rgba(130, 177, 226, 0.36), transparent 28%),
    rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(10, 54, 161, 0.1);
  pointer-events: none;
}

.proof-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.88fr) minmax(520px, 1.12fr);
  gap: 74px;
  align-items: center;
}

.proof-copy h2 {
  max-width: 560px;
}

.proof-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.48;
}

.stats-circles {
  position: relative;
  min-height: 395px;
  margin-top: 34px;
}

.circle-stat {
  position: absolute;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-strong);
}

.circle-stat strong {
  display: block;
  font-size: 54px;
  letter-spacing: -0.05em;
}

.circle-stat.two strong {
  font-size: 50px;
}

.circle-stat span {
  display: block;
  max-width: 150px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.circle-stat.one {
  top: 0;
  left: 58px;
  width: 220px;
  height: 220px;
  background: var(--yellow);
}

.circle-stat.two {
  top: 108px;
  right: 0;
  width: 204px;
  height: 204px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.circle-stat.two span {
  color: rgba(255, 255, 255, 0.82);
}

.circle-stat.three {
  bottom: 0;
  left: 0;
  width: 172px;
  height: 172px;
}

.reviews-orbit {
  position: relative;
  min-height: 610px;
}

.reviews-orbit::before,
.reviews-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(10, 54, 161, 0.12);
  pointer-events: none;
}

.reviews-orbit::before {
  inset: 18px 28px 26px 4px;
}

.reviews-orbit::after {
  inset: 102px 118px 110px 94px;
  background: rgba(255, 255, 255, 0.18);
}

.review-card {
  position: absolute;
  z-index: 1;
  padding: 28px 30px;
  border: 1px solid rgba(219, 232, 245, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.review-card-main {
  top: 126px;
  left: 0;
  width: 492px;
  min-height: 288px;
}

.review-card-small {
  right: 36px;
  top: 34px;
  width: 306px;
  min-height: 214px;
}

.review-card-accent {
  top: auto;
  right: 106px;
  bottom: 40px;
  width: 340px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-color: transparent;
}

.review-card p {
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1.48;
}

.review-card-main p {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.review-card strong {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-size: 18px;
}

.review-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.review-card-accent p,
.review-card-accent strong,
.review-card-accent span {
  color: rgba(255, 255, 255, 0.88);
}

.stars {
  margin-bottom: 14px;
  color: var(--yellow);
  letter-spacing: 0.12em;
}

.final-cta {
  position: relative;
  overflow: hidden;
  max-width: 1050px;
  margin: 76px auto 118px;
  padding: 74px 48px;
  border-radius: 36px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 200, 73, 0.42), transparent 20%),
    radial-gradient(circle at 90% 20%, rgba(251, 98, 85, 0.22), transparent 20%),
    rgba(255, 255, 255, 0.82);
}

.final-cta h2 {
  max-width: 790px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

.final-cta .final-free-note {
  margin: 14px auto 0;
  font-size: 15px;
}

.site-footer {
  width: 100%;
  padding: 46px calc((100vw - min(1240px, calc(100vw - 48px))) / 2);
  color: rgba(255, 255, 255, 0.72);
  background: var(--blue);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: #fff;
  font-weight: 900;
  font-size: 24px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-weight: 800;
}

/* Compatibility with the current landing markup. */
.brand > span:not(.brand-mark) {
  font-weight: 900;
  font-size: 19px;
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-weight: 800;
}

.lang-button {
  display: inline-grid;
  min-width: 38px;
  min-height: 28px;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-button.active {
  color: #fff;
  background: var(--blue-2);
  box-shadow: 0 8px 18px rgba(52, 92, 255, 0.22);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 16px 34px rgba(52, 92, 255, 0.28);
  font-weight: 900;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.hero-chart-card > span,
.hero-search-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 132px;
  margin: 18px 0;
  padding: 18px;
  border-radius: 20px;
  background:
    repeating-linear-gradient(0deg, rgba(219, 232, 245, 0.75) 0 1px, transparent 1px 24px),
    rgba(255, 255, 255, 0.64);
}

.mini-chart i {
  width: 100%;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue-soft));
}

.hero-chart-card small,
.hero-user-card small {
  color: var(--muted);
}

.search-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.search-pill strong {
  font-size: 24px;
}

.search-pill em {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.search-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.search-stats b {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(245, 249, 253, 0.88);
  font-size: 22px;
}

.search-stats small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.avatar {
  grid-area: avatar;
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  font-size: 28px;
  font-weight: 900;
}

.hero-user-card .stars {
  grid-area: stars;
  margin: 0;
  color: var(--yellow);
  font-size: 25px;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-align: left;
}

.hero-user-card strong {
  grid-area: total;
  font-size: 22px;
  white-space: nowrap;
}

.hero-user-card small {
  grid-area: label;
  min-width: 0;
  font-size: 17px;
  line-height: 1.16;
}

.hero-benefits > div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(219, 232, 245, 0.86);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-benefits > div > span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 26px;
  font-weight: 900;
}

.hero-benefits > div p {
  margin: 0;
  color: var(--muted);
  line-height: 1.38;
}

.problem-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.46;
}

.problem-cards > article {
  min-height: 236px;
  padding: 28px;
  border: 1px solid rgba(219, 232, 245, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.problem-cards > article::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}

.problem-cards > article:nth-child(2)::before,
.problem-cards > article:nth-child(3)::before {
  background: linear-gradient(135deg, var(--coral), var(--orange));
}

.problem-cards > article p {
  color: var(--muted);
  line-height: 1.45;
}

.section-heading.center {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.center p:not(.eyebrow) {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

.solution-band .section-heading.center {
  color: #fff;
}

.solution-band .section-heading.center p {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

.income-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  max-width: 980px;
  margin: 48px auto 0;
}

.income-cards .income-card {
  display: grid;
  gap: 22px;
  min-height: 260px;
  padding: 34px;
}

.income-cards .income-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
}

.income-cards .income-card span {
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.income-cards .income-card small {
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.income-cards .income-card.strong {
  outline: 3px solid rgba(249, 200, 73, 0.9);
}

.income-cards .bars {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 118px;
  margin: 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(245, 249, 253, 0.88);
}

.income-cards .bars i {
  width: 100%;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue-soft));
}

.income-card.strong .bars i {
  background: linear-gradient(180deg, var(--coral), var(--orange));
}

.steps-section .step-line {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  display: block;
  max-width: 820px;
  margin: 0 auto -64px;
}

.steps > article {
  position: relative;
  min-height: 246px;
  padding: 32px;
  border: 1px solid rgba(219, 232, 245, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.steps > article > span {
  display: grid;
  width: 86px;
  height: 86px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 36px;
  font-weight: 900;
}

.steps > article:nth-child(2) > span {
  color: #fff;
  background: var(--blue-2);
}

.steps > article:nth-child(3) > span {
  color: #fff;
  background: var(--coral);
}

.line-chart {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 92px;
  border-radius: 20px;
  background:
    linear-gradient(150deg, transparent 44%, rgba(52, 92, 255, 0.34) 45% 47%, transparent 48%),
    repeating-linear-gradient(0deg, rgba(219, 232, 245, 0.75) 0 1px, transparent 1px 22px);
}

.signal-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.signal-chips b {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-2);
  font-size: 30px;
}

.signal-chips em {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(249, 200, 73, 0.3);
  font-style: normal;
  font-weight: 900;
}

.centered-button {
  display: flex;
  width: max-content;
  margin: 34px auto 0;
}

.niche-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(219, 232, 245, 0.92);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(219, 232, 245, 0.58);
  font-weight: 900;
}

.niche-cloud span:nth-child(3),
.niche-cloud span:nth-child(5),
.niche-cloud span:nth-child(8) {
  background: var(--yellow);
  border-color: transparent;
}

.sparkles {
  color: var(--yellow);
  font-size: 40px;
  letter-spacing: 0.4em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 22px;
  }

  .hero-section,
  .problem-section,
  .proof-layout,
  .solution-analytics {
    grid-template-columns: 1fr;
  }

  .proof-section::before {
    right: -220px;
  }

  .proof-copy h2,
  .proof-copy > p:not(.eyebrow) {
    max-width: 760px;
  }

  .stats-circles {
    max-width: 560px;
  }

  .reviews-orbit {
    min-height: 560px;
  }

  .hero-section {
    min-height: 0;
    gap: 32px;
  }

  .hero-art {
    min-height: 620px;
  }

  .hero-benefits {
    margin-top: 0;
  }

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

@media (max-width: 760px) {
  .site-header,
  main > section {
    width: min(100% - 28px, 640px);
  }

  .site-header {
    top: 10px;
    border-radius: 22px;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 39px;
  }

  .eyebrow {
    font-size: 13px;
    letter-spacing: 0.32em;
  }

  .hero-section {
    padding-top: 42px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-copy .lead,
  .section-text,
  .solution-copy p {
    font-size: 19px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-note {
    max-width: none;
  }

  .hero-art {
    min-height: 740px;
    overflow: hidden;
  }

  .orb {
    top: 28px;
    right: -120px;
    width: 430px;
    height: 430px;
  }

  .glass-card {
    left: 0;
    right: auto;
    width: 100%;
  }

  .hero-user-card {
    top: 12px;
    right: 0;
    left: auto;
    width: 214px;
  }

  .hero-user-card .stars {
    display: none;
  }

  .hero-chart-card {
    top: 160px;
  }

  .hero-search-card {
    top: 478px;
    bottom: auto;
  }

  .hero-benefits,
  .problem-cards,
  .steps,
  .feature-mosaic {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    grid-template-columns: 58px 1fr;
  }

  .benefit-num {
    width: 58px;
    height: 58px;
  }

  .problem-section,
  .proof-section,
  .steps-section,
  .features-section,
  .niches-section {
    padding: 72px 0;
  }

  .proof-section::before {
    top: 360px;
    right: -260px;
    width: 470px;
    height: 470px;
  }

  .stats-circles {
    min-height: 430px;
    margin-top: 28px;
  }

  .circle-stat.one {
    left: 0;
    width: 198px;
    height: 198px;
  }

  .circle-stat.two {
    top: 152px;
    right: 0;
    width: 162px;
    height: 162px;
  }

  .circle-stat.three {
    left: 18px;
    width: 154px;
    height: 154px;
  }

  .circle-stat strong {
    font-size: 42px;
  }

  .reviews-orbit {
    display: grid;
    gap: 18px;
    min-height: 0;
  }

  .reviews-orbit::before,
  .reviews-orbit::after {
    display: none;
  }

  .review-card,
  .review-card-main,
  .review-card-small,
  .review-card-accent {
    position: static;
    width: auto;
    min-height: 0;
  }

  .review-card-main p {
    font-size: 19px;
  }

  .solution-band {
    padding: 78px 14px;
  }

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

  .analytics-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px;
  }

  .step-line {
    display: none;
  }

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

  .stats-circles {
    min-height: 540px;
  }

  .circle-stat.one {
    left: 0;
  }

  .circle-stat.two {
    right: 0;
    top: 178px;
  }

  .circle-stat.three {
    left: 28px;
  }

  .final-cta {
    margin: 36px auto 72px;
    padding: 54px 24px;
    border-radius: 28px;
  }

  .site-footer {
    padding: 38px 18px;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
