:root {
  --ink: #17151f;
  --soft: rgba(23, 21, 31, 0.72);
  --muted: rgba(23, 21, 31, 0.54);
  --line: rgba(23, 21, 31, 0.12);
  --brand: #5038f8;
  --brand-2: #7663ff;
  --green: #21a879;
  --paper: #ffffff;
  --wash: #f6f4ff;
  --warm: #fff7eb;
  --shadow: 0 18px 50px rgba(28, 24, 58, 0.14);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(80, 56, 248, 0.14), transparent 18rem),
    linear-gradient(180deg, #fbfaff 0%, #ffffff 46%, #f7f8fb 100%);
}

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

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

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

.topbar {
  width: min(100% - 28px, 540px);
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: min(190px, 54vw);
  height: auto;
}

.topbar span {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(80, 56, 248, 0.18);
  border-radius: 999px;
  color: #34257c;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
}

main {
  width: min(100% - 28px, 540px);
  margin: 0 auto;
  padding: 18px 0 34px;
}

.hero {
  display: grid;
  gap: 18px;
}

.hero-copy {
  padding: 24px 0 2px;
}

.eyebrow,
.section-label {
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin-top: 10px;
  font-size: clamp(3.05rem, 16vw, 4.85rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.lead {
  margin-top: 18px;
  color: var(--soft);
  font-size: 1.08rem;
  font-weight: 660;
  line-height: 1.5;
}

.primary-cta {
  min-height: 56px;
  width: 100%;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 18px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 16px 34px rgba(80, 56, 248, 0.26);
  font-weight: 950;
  text-align: center;
}

.cta-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
  text-align: center;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(80, 56, 248, 0.14);
  border-radius: 18px;
  background: var(--warm);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  object-position: 68% center;
}

.offer-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-width: 116px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(23, 21, 31, 0.8);
  box-shadow: 0 14px 34px rgba(23, 21, 31, 0.22);
  backdrop-filter: blur(14px);
}

.offer-badge span,
.offer-badge strong {
  display: block;
}

.offer-badge span {
  font-size: 2.2rem;
  font-weight: 1000;
  line-height: 0.9;
}

.offer-badge strong {
  margin-top: 4px;
  font-size: 0.83rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.proof-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.proof-strip div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.proof-strip strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 780;
  line-height: 1.18;
}

.section,
.final-panel {
  margin-top: 22px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(28, 24, 58, 0.08);
}

h2 {
  margin-top: 9px;
  font-size: clamp(2rem, 10vw, 3.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.section > p:not(.section-label),
.feature-card p,
.revenue > p,
.final-panel > p:not(.section-label):not(.smallprint) {
  margin-top: 14px;
  color: var(--soft);
  font-size: 1.01rem;
  font-weight: 620;
  line-height: 1.55;
}

.benefit-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.benefit-list article,
.objections article {
  padding: 16px;
  border: 1px solid rgba(80, 56, 248, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(80, 56, 248, 0.06), rgba(33, 168, 121, 0.04)),
    #ffffff;
}

.benefit-list span {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 950;
}

h3 {
  margin-top: 7px;
  font-size: 1.18rem;
  line-height: 1.12;
}

.benefit-list p,
.objections p {
  margin-top: 7px;
  color: var(--soft);
  font-size: 0.96rem;
  font-weight: 620;
  line-height: 1.48;
}

.feature-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(33, 168, 121, 0.11), transparent 16rem),
    rgba(255, 255, 255, 0.9);
}

.feature-card ul {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.feature-card li {
  position: relative;
  padding-left: 28px;
  color: var(--soft);
  font-weight: 760;
  line-height: 1.4;
}

.feature-card li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 950;
}

.revenue {
  background:
    linear-gradient(135deg, rgba(255, 247, 235, 0.94), rgba(246, 244, 255, 0.94)),
    #ffffff;
}

.metric-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.metric-grid div {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 13px 8px;
  border: 1px solid rgba(80, 56, 248, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.metric-grid strong {
  color: var(--brand);
  font-size: clamp(1.35rem, 7vw, 2.2rem);
  line-height: 0.9;
}

.objections {
  display: grid;
  gap: 10px;
}

.objections h2 {
  margin-bottom: 8px;
}

.final-panel {
  margin-bottom: 16px;
  color: #ffffff;
  background:
    radial-gradient(circle at 100% 0%, rgba(33, 168, 121, 0.28), transparent 17rem),
    linear-gradient(135deg, #17151f, #302371);
}

.final-panel .section-label {
  color: #bfffe9;
}

.final-panel h2 {
  color: #ffffff;
}

.final-panel p {
  color: rgba(255, 255, 255, 0.78) !important;
}

.smallprint {
  margin-top: 16px;
  font-size: 0.78rem;
  line-height: 1.4;
}

@media (min-width: 700px) {
  .topbar,
  main {
    width: min(100% - 48px, 1040px);
  }

  .topbar {
    margin-top: 22px;
  }

  .hero {
    min-height: 760px;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: 34px;
  }

  h1 {
    max-width: 11ch;
  }

  .hero-image img {
    min-height: 520px;
    aspect-ratio: auto;
  }

  .primary-cta {
    width: auto;
    min-width: 280px;
  }

  .cta-note {
    text-align: left;
  }

  .section,
  .final-panel {
    padding: 36px;
  }

  .benefit-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    gap: 28px;
    align-items: start;
  }

  .objections {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .objections .section-label,
  .objections h2 {
    grid-column: 1 / -1;
  }

  main {
    padding-bottom: 48px;
  }
}

@media (max-width: 370px) {
  h1 {
    font-size: 2.82rem;
  }

  .proof-strip,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .metric-grid div {
    min-height: auto;
  }
}
