/* Static SSR stylesheet for the marketing homepage. Keep this in sync with pages/index.vue. */
.landing-page .el-icon { display: inline-flex; align-items: center; justify-content: center; width: 1em; height: 1em; line-height: 1; }
.landing-page .el-icon svg { width: 1em; height: 1em; display: block; }
.landing-page .el-button > span { display: inline-flex; align-items: center; gap: 8px; }

.landing-page {
  --bg: #ffffff;
  --bg-alt: #f6f7f8;
  --bg-ink: #0b0f19;
  --ink: #0b0f19;
  --ink-2: #1f2937;
  --muted: #525a66;
  --muted-2: #6b7280;
  --line: #e5e7eb;
  --accent: #0d9488;
  --accent-2: #0f766e;
  --accent-soft: #f0fdfa;
  --secondary: #d97706;
  --secondary-soft: #fffbeb;
  --skel: rgba(11, 15, 25, 0.06);
  --skel-2: rgba(11, 15, 25, 0.04);
  --radius: 6px;
  --radius-lg: 12px;
  --max: 1240px;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-page p,
.landing-page figure {
  margin: 0;
}

.landing-page ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.band--alt {
  background: var(--bg-alt);
}

.band--ink {
  background: var(--bg-ink);
  color: #e8eaee;
}

.band--voice {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
  border-top: 1px solid #ccfbf1;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--ink);
  opacity: 0.6;
}

.eyebrow--accent {
  color: var(--accent-2);
}

.eyebrow--accent::before {
  background: var(--accent);
  opacity: 1;
}

.band--ink .eyebrow {
  color: rgba(232, 234, 238, 0.7);
}

.band--ink .eyebrow::before {
  background: rgba(232, 234, 238, 0.5);
}

.display-1 {
  margin: 0;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
}

.display-2 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 700;
  text-wrap: balance;
}

.display-3 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--muted);
}

.btn.el-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn.el-button + .btn.el-button {
  margin-left: 0;
}

.btn--primary.el-button,
.btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn--primary.el-button:hover,
.btn--primary.el-button:focus,
.btn--primary:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

.btn--ghost.el-button,
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost.el-button:hover,
.btn--ghost.el-button:focus,
.btn--ghost:hover {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-2);
}

.btn--invert.el-button,
.btn--invert {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn--invert.el-button:hover,
.btn--invert.el-button:focus,
.btn--invert:hover {
  background: #eceef1;
  color: var(--ink);
  border-color: #eceef1;
}

.btn--invert-ghost.el-button,
.btn--invert-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--invert-ghost.el-button:hover,
.btn--invert-ghost.el-button:focus,
.btn--invert-ghost:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--lg.el-button,
.btn--lg {
  height: 52px;
  padding: 0 24px;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.text-link:hover {
  color: var(--accent-2);
  border-color: var(--accent-2);
}

/* Header/footer styles live in MarketingHeader / MarketingFooter components. */

.hero {
  padding: 112px 0 0;
  position: relative;
}

.hero__top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.hero__title {
  margin-top: 28px;
  max-width: 760px;
  font-size: clamp(46px, 5.1vw, 74px);
}

.hero__sub {
  margin-top: 28px;
  max-width: 540px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__meta {
  max-width: 560px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 148, 136, 0.24);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.hero__meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero__mobile-showcase {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-top: -18px;
}

.hero__visual {
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
}

.hero__visual-image {
  display: block;
  width: min(100%, 640px);
  height: auto;
}

.hero__store-badge {
  display: inline-flex;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.hero__store-badge:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hero__store-badge img {
  display: block;
  height: 50px;
  width: auto;
}

.hero__store-note {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: -0.005em;
}

.hero__screens {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: end;
  margin-top: 64px;
}

.hero__continue {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 28px auto 0;
  color: var(--accent-2);
  font-size: 13.5px;
  font-weight: 600;
}

.hero__continue:hover,
.hero__continue:focus-visible {
  color: var(--ink);
}

.hero__shot {
  padding-bottom: 88px;
  background: #f8fefd;
}

.hero__shot.shot--real {
  padding-bottom: 0;
}

.hero__shot::after {
  border-color: rgba(13, 148, 136, 0.22);
}

.hero .eyebrow::before {
  width: 40px;
  height: 2px;
}

.proof-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip__label {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}

.proof-strip__items li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.proof-strip__items li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.shot {
  position: relative;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.shot--16x9 {
  aspect-ratio: 16 / 9;
}

.shot--4x3 {
  aspect-ratio: 4 / 3;
}

.shot--21x9 {
  aspect-ratio: 21 / 9;
}

.shot--5x4 {
  aspect-ratio: 5 / 4;
}

.shot--capture-followups {
  aspect-ratio: 1602 / 610;
}

.shot--capture-patient {
  aspect-ratio: 1602 / 850;
}

.shot--capture-invoices {
  aspect-ratio: 1602 / 560;
}

.shot--capture-payout {
  aspect-ratio: 1602 / 890;
}

.shot--capture-voice {
  aspect-ratio: 1602 / 1274;
}

.vc-shot {
  margin: 0;
}

.vc-shot__caption {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.vc-shot__caption::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.vc-points {
  margin-top: 36px;
  display: grid;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.vc-point__k {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.vc-point__p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 440px;
}

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

.shot__skel {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  display: grid;
  gap: 12px;
}

.shot__skel span {
  display: block;
  height: 10px;
  border-radius: 4px;
  background: var(--skel);
}

.shot__skel span:nth-child(1) {
  width: 28%;
}

.shot__skel span:nth-child(2) {
  width: 58%;
  background: var(--skel-2);
}

.shot__skel span:nth-child(3) {
  width: 42%;
  background: var(--skel-2);
}

.shot__label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted-2);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shot__caption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.shot__caption::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.shot--real {
  background: #fff;
  box-shadow: 0 18px 48px rgba(11, 15, 25, 0.08);
}

.shot--real::after {
  border-color: rgba(11, 15, 25, 0.1);
}

.shot--real .shot__label {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1px 8px rgba(11, 15, 25, 0.06);
}

.shot--real .shot__caption {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1px 8px rgba(11, 15, 25, 0.06);
}

.phone-shot {
  position: relative;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #f8fefd;
  box-shadow: 0 18px 48px rgba(11, 15, 25, 0.08);
}

.phone-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(11, 15, 25, 0.1);
  border-radius: 28px;
  pointer-events: none;
}

.phone-shot__image {
  display: block;
  width: 100%;
  height: auto;
}

.phone-shot__caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 8px rgba(11, 15, 25, 0.06);
  font-size: 12px;
}

.phone-shot__caption::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.section {
  padding: 128px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.band--alt + .section,
.section + .band--alt {
  border-top: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.section-head__meta {
  display: grid;
  gap: 18px;
  align-content: start;
}

.section-head__lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 480px;
}

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

.leak {
  display: grid;
  grid-template-columns: 80px minmax(0, 4fr) minmax(0, 6fr) auto;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}

.leaks .leak:last-child {
  border-bottom: 1px solid var(--line);
}

.leak__num {
  padding-top: 6px;
  color: var(--muted-2);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 500;
}

.leak__h {
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
}

.leak__p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 520px;
}

.leak__tag {
  padding-top: 6px;
  color: var(--muted-2);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.split {
  display: grid;
  gap: 80px;
  align-items: center;
}

.split--57 {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.split__copy h2 {
  margin-top: 20px;
}

.split__copy p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
}

.split__copy .text-link {
  margin-top: 32px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
  padding-right: 0;
}

.stat__v {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1;
}

.stat__v small {
  margin-left: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.stat__k {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
  max-width: 220px;
}

.pc-head {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.pc-head .eyebrow {
  margin: 0 auto;
}

.pc-head h2 {
  margin-top: 24px;
}

.pc-head p {
  margin-top: 24px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
  max-width: 640px;
}

.pc-shot {
  margin-top: 64px;
}

.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.pc-cell {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--line);
}

.pc-cell:last-child {
  border-right: 0;
  padding-right: 0;
}

.pc-cell__k {
  margin-bottom: 14px;
  color: var(--muted-2);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pc-cell__h {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pc-cell__p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.money-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.money-head .lead {
  max-width: 480px;
}

.money-head .eyebrow--accent {
  color: var(--secondary);
}

.money-head .eyebrow--accent::before {
  background: var(--secondary);
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
}

.outcome:last-child {
  border-right: 0;
  padding-right: 0;
}

.outcome__k {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--secondary);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.outcome__k::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}

.outcome__h {
  margin-bottom: 10px;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.outcome__p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 240px;
}

.money-shots {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

.money-shot {
  margin-top: 0;
}

.mc-row {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 80px;
  align-items: center;
}

.mc-lead {
  margin-top: 28px;
  max-width: 520px;
}

.mc-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.mc-meta div {
  padding: 22px 24px 22px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mc-meta div:nth-child(2n) {
  border-right: 0;
  padding-right: 0;
}

.mc-meta strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mc-meta span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.clinic-proof {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: center;
  min-height: 430px;
  margin: 0;
  padding: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clinic-proof::before {
  content: "";
  position: absolute;
  inset: 34px 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  pointer-events: none;
}

.clinic-proof__bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(160px, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.clinic-proof__search {
  min-width: 0;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted-2);
  font-size: 12.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.72);
}

.clinic-proof__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  background: rgba(240, 253, 250, 0.85);
}

.clinic-proof__avatar {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: #0f766e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.clinic-proof__avatar--alt {
  background: #0369a1;
}

.clinic-proof__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}

.clinic-proof__chev {
  color: var(--muted-2);
  flex: 0 0 auto;
}

.clinic-proof__menu {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(320px, 100%);
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(11, 15, 25, 0.07);
}

.clinic-proof__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
}

.clinic-proof__item--active {
  background: var(--accent-soft);
}

.clinic-proof__item strong,
.clinic-proof__item small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.clinic-proof__item strong {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
}

.clinic-proof__item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.clinic-proof__add {
  margin: 6px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: var(--accent-2);
  font-size: 13.5px;
  font-weight: 600;
}

.clinic-proof__caption {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.clinic-proof__caption::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.cta {
  padding: 144px 0;
  text-align: center;
  position: relative;
}

.cta .landing-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta h2 {
  margin: 28px auto 0;
  width: 100%;
  max-width: 900px;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  text-align: center;
}

.cta__lead {
  margin: 28px auto 0;
  width: 100%;
  max-width: 900px;
  color: rgba(232, 234, 238, 0.7);
  font-size: 17px;
  text-align: center;
}

.cta__btns {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.cta__foot {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 56px;
  color: rgba(232, 234, 238, 0.5);
  font-size: 13px;
}

.cta__foot span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta__foot span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(232, 234, 238, 0.35);
}

.faq {
  padding: 128px 0;
}

.faq__head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.faq__head p {
  color: var(--muted);
  font-size: 17px;
  max-width: 480px;
}

.faq__list {
  display: grid;
}

.faq__item {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.faq__a {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .leak {
    grid-template-columns: 60px 1fr;
    gap: 18px 24px;
    padding: 28px 0;
  }

  .leak__p {
    grid-column: 2;
    max-width: 100%;
  }

  .leak__tag {
    display: none;
  }

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

  .outcome {
    padding: 28px 24px 28px 0;
  }

  .outcome:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .outcome:nth-child(1),
  .outcome:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 960px) {
  .split,
  .split--57 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .hero__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero__visual {
    margin-top: 24px;
  }
}

@media (max-width: 860px) {
  .hero {
    padding: 64px 0 0;
  }

  .hero__phone {
    width: min(100%, 360px);
    justify-self: center;
  }

  .hero__shot {
    padding-bottom: 64px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section {
    padding: 88px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

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

  .stat {
    padding: 24px 20px 24px 0;
  }

  .stat:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

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

  .pc-cell {
    border-right: 0;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
  }

  .pc-cell:last-child {
    border-bottom: 0;
  }

  .money-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mc-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta {
    padding: 96px 0;
  }

  .faq {
    padding: 88px 0;
  }

  .faq__head,
  .faq__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq__item {
    padding: 24px 0;
  }

}

@media (max-width: 760px) {
  .landing-wrap {
    padding: 0 24px;
  }

  .hero {
    padding-top: 56px;
  }
}

@media (max-width: 540px) {
  .landing-wrap {
    padding: 0 20px;
  }

  .display-1 {
    font-size: 40px;
  }

  .hero__cta,
  .cta__btns {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__cta .btn,
  .cta__btns .btn {
    width: 100%;
  }

  .shot__skel {
    top: 22px;
    left: 22px;
    right: 22px;
  }

  .shot__caption {
    right: 18px;
    line-height: 1.35;
  }

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

  .stat {
    border-right: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

  .outcome {
    border-right: 0;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
  }

  .outcome:last-child {
    border-bottom: 0;
  }

  .mc-meta {
    grid-template-columns: 1fr;
  }

  .mc-meta div,
  .mc-meta div:nth-child(2n) {
    border-right: 0;
    padding: 20px 0;
  }
}
