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

:root {
  --ink: #07111f;
  --muted: #475569;
  --paper: #f8fafc;
  --cream: #ffffff;
  --sky: #eaf8ff;
  --line: #e2e8f0;
  --gold: #c9a86a;
  --gold-dark: #9a7a3e;
  --green: #07111f;
  --blue: #00b8ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 184, 255, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #ffffff 100%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.88);
  box-shadow: 0 16px 40px rgba(7, 17, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Sora, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--blue);
  font-family: Sora, Inter, sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #384047;
  font-size: 14px;
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--ink);
  background: var(--blue);
  font-size: 14px;
  font-family: Sora, Inter, sans-serif;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 184, 255, 0.22);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.button:hover::after {
  transform: translateX(120%);
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 56px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 76px 0 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 11px;
  border: 1px solid rgba(0, 184, 255, 0.24);
  border-radius: 999px;
  color: #0c5f82;
  background: rgba(234, 248, 255, 0.82);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(58px, 8vw, 108px);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Sora, Inter, sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
}

.service-grid h3,
.audience-grid h3,
.process h3,
.industry-card h3 {
  color: #07111f;
}

.proof-band h2,
.proof-band h3,
.final-cta h2 {
  color: var(--cream);
}

.proof-band .eyebrow,
.final-cta .eyebrow {
  border-color: rgba(0, 184, 255, 0.35);
  color: var(--blue);
  background: rgba(0, 184, 255, 0.1);
}

.hero-text,
.section p,
.proof-copy p,
.guarantee p,
.final-cta p,
.footer p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-text {
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.hero-stats div {
  padding: 14px 12px 14px 0;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.hero-stats div:hover {
  transform: translateY(-3px);
}

.hero-stats strong {
  display: block;
  color: #0b7fb0;
  font-size: 30px;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.hero-visual {
  min-width: 0;
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 248, 255, 0.92)),
    radial-gradient(circle at 78% 14%, rgba(0, 184, 255, 0.16), transparent 34%);
  box-shadow: var(--shadow);
  animation: float-panel 7s ease-in-out infinite;
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: auto -20% -28% 35%;
  height: 220px;
  background: rgba(0, 184, 255, 0.09);
  transform: rotate(-8deg);
}

.dash-topbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.dash-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8c6a7;
}

.dash-topbar p {
  margin: 0 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.dash-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.metric-card,
.funnel-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(16, 20, 23, 0.08);
}

.metric-card {
  padding: 20px;
}

.metric-card.tall {
  grid-row: span 2;
  min-height: 340px;
}

.metric-card span,
.funnel-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.metric-card strong {
  display: block;
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.metric-card em {
  display: inline-block;
  margin-top: 15px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(0, 184, 255, 0.14);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 210px;
  margin-top: 30px;
}

.chart-bars i {
  flex: 1;
  min-width: 18px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--blue), var(--ink));
  transform-origin: bottom;
  animation: grow-bar 900ms ease both;
}

.chart-bars i:nth-child(2) { animation-delay: 80ms; }
.chart-bars i:nth-child(3) { animation-delay: 160ms; }
.chart-bars i:nth-child(4) { animation-delay: 240ms; }
.chart-bars i:nth-child(5) { animation-delay: 320ms; }
.chart-bars i:nth-child(6) { animation-delay: 400ms; }

.industry-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 14px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 82px;
}

.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: -30% -40% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0, 184, 255, 0.12);
}

.industry-card.featured {
  color: var(--cream);
  background: linear-gradient(145deg, var(--ink), #0c2038);
}

.industry-card:hover,
.service-grid article:hover,
.audience-grid article:hover,
.process article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 255, 0.38);
  box-shadow: 0 26px 64px rgba(7, 17, 31, 0.13);
}

.industry-card span {
  position: relative;
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.industry-card h3 {
  position: relative;
  font-family: Sora, Inter, sans-serif;
  font-size: 30px;
}

.industry-card p {
  position: relative;
  color: var(--muted);
  line-height: 1.7;
}

.industry-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.industry-card div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.industry-card b {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--sky);
  font-size: 12px;
}

.industry-card.featured b {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.funnel-card {
  padding: 18px;
}

.funnel-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.funnel-line b {
  font-weight: 720;
}

.funnel-line i {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 820;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.logo-strip span {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 18px;
  color: #5f656a;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 820;
}

.section,
.service-grid,
.proof-band,
.audience-grid,
.process,
.guarantee,
.final-cta,
.footer,
.media-proof,
.dashboard-proof,
.founder-proof {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  margin-top: 76px;
  margin-bottom: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.68fr);
  gap: 56px;
  align-items: start;
}

.split > p {
  margin-top: 48px;
  max-width: 620px;
}

.center {
  max-width: 760px;
  margin-top: 82px;
  text-align: center;
}

.service-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article,
.audience-grid article,
.process article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(7, 17, 31, 0.06);
}

.service-grid article {
  min-height: 255px;
}

.proof-grid article:first-child,
.services-8 article:nth-child(1),
.services-8 article:nth-child(5),
.case-grid article:nth-child(2) {
  border-color: rgba(0, 184, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(234, 248, 255, 0.7), rgba(255, 255, 255, 0.9)),
    #ffffff;
}

.service-grid p,
.audience-grid p,
.process p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: inline-flex;
  margin-bottom: 36px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0c5f82;
  background: var(--sky);
  font-size: 13px;
  font-weight: 850;
}

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: 46px;
  align-items: center;
  margin-top: 82px;
  margin-bottom: 72px;
  padding: 48px;
  border-radius: 26px;
  color: var(--cream);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.proof-copy p {
  color: rgba(255, 251, 242, 0.72);
}

.proof-band .eyebrow {
  color: var(--blue);
}

.media-proof {
  display: grid;
  grid-template-columns: 0.82fr 1.08fr;
  gap: 42px;
  align-items: center;
  margin-top: 72px;
  margin-bottom: 74px;
  padding: 44px;
  border-radius: 30px;
  color: var(--cream);
  background:
    radial-gradient(circle at 72% 22%, rgba(0, 184, 255, 0.2), transparent 30%),
    linear-gradient(145deg, #07111f, #09213b);
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.18);
}

.media-proof h2 {
  color: var(--cream);
}

.media-proof p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.media-proof .button {
  margin-top: 22px;
}

.media-wall {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.media-card.large {
  grid-row: span 2;
  min-height: 424px;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 650ms ease, opacity 300ms ease;
}

.media-card:hover img {
  transform: scale(1.045);
  opacity: 0.95;
}

.media-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 850;
}

.dashboard-proof {
  margin-top: 76px;
  margin-bottom: 82px;
  padding: 58px 44px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(234, 248, 255, 0.62));
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.09);
}

.compact-center {
  margin-top: 0;
  margin-bottom: 36px;
}

.compact-center h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

.dashboard-proof-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.ad-snapshot,
.ad-notes {
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.07);
}

.ad-snapshot {
  overflow: hidden;
}

.snapshot-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--cream);
  background: var(--ink);
  font-weight: 850;
}

.snapshot-top b {
  color: var(--blue);
}

.snapshot-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.snapshot-metrics div {
  padding: 22px 18px;
  background: var(--sky);
}

.snapshot-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.snapshot-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.snapshot-table {
  padding: 18px 20px 22px;
}

.snapshot-table p {
  display: grid;
  grid-template-columns: 1fr 0.55fr 0.55fr;
  gap: 12px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.snapshot-table p:first-child {
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.snapshot-table i,
.snapshot-table em {
  font-style: normal;
  font-weight: 850;
}

.snapshot-table i {
  color: #0b7fb0;
}

.snapshot-table em {
  color: var(--ink);
}

.ad-notes {
  padding: 28px;
  background: linear-gradient(145deg, var(--ink), #0a2139);
  color: var(--cream);
}

.ad-notes h3 {
  color: var(--cream);
  font-family: Sora, Inter, sans-serif;
  font-size: 32px;
}

.ad-notes ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ad-notes li {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.founder-proof {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 46px;
  align-items: center;
  margin-top: 82px;
  margin-bottom: 82px;
}

.founder-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--sky);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.1);
}

.founder-card img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.founder-copy h2 {
  font-size: clamp(38px, 5vw, 68px);
}

.founder-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.founder-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.founder-points span {
  padding: 10px 13px;
  border: 1px solid rgba(0, 184, 255, 0.24);
  border-radius: 999px;
  color: #0b6f99;
  background: var(--sky);
  font-size: 13px;
  font-weight: 850;
}

.report-card {
  padding: 24px;
  border: 1px solid rgba(255, 251, 242, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.report-header,
.report-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.report-header {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 251, 242, 0.18);
}

.report-header span,
.report-row span {
  color: rgba(255, 251, 242, 0.66);
}

.report-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 251, 242, 0.12);
}

.progress-list {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.progress-list span {
  position: relative;
  display: block;
  padding-top: 14px;
  color: rgba(255, 251, 242, 0.78);
  font-size: 13px;
  font-weight: 760;
}

.progress-list span::before,
.progress-list span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
  border-radius: 999px;
}

.progress-list span::before {
  width: 100%;
  background: rgba(255, 251, 242, 0.13);
}

.progress-list span::after {
  width: var(--w);
  background: var(--blue);
}

.audience-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

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

.services-8 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: process;
}

.process article {
  min-height: 265px;
  background: var(--cream);
}

.five-step {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 850;
}

.guarantee {
  margin-top: 82px;
  padding: 72px 7vw;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(234, 248, 255, 0.78)),
    linear-gradient(135deg, rgba(0, 184, 255, 0.08), rgba(201, 168, 106, 0.13));
  text-align: center;
}

.guarantee h2,
.final-cta h2 {
  max-width: 930px;
  margin-inline: auto;
}

.guarantee p,
.final-cta p {
  max-width: 760px;
  margin-inline: auto;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.04);
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 18px;
  font-weight: 800;
}

.faq-item span::after {
  content: "+";
  color: var(--gold-dark);
}

.faq-item small {
  display: none;
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.is-open span::after {
  content: "-";
}

.faq-item.is-open small {
  display: block;
}

.final-cta {
  margin-top: 82px;
  padding: 78px 7vw;
  border-radius: 30px;
  color: var(--cream);
  background: var(--green);
  text-align: center;
}

.pain-band {
  align-items: start;
}

.pain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pain-list span {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255, 251, 242, 0.16);
  border-radius: 8px;
  color: rgba(255, 251, 242, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 760;
  line-height: 1.45;
}

.case-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 850;
}

.testimonial-grid article {
  min-height: 300px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.testimonial-person img {
  width: 58px;
  height: 58px;
  border: 3px solid var(--sky);
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person span {
  display: grid;
  gap: 3px;
}

.testimonial-person b {
  font-size: 15px;
}

.testimonial-person small {
  color: #0b7fb0;
  font-size: 12px;
  font-weight: 800;
}

.final-cta .eyebrow {
  color: var(--blue);
}

.final-cta p {
  color: rgba(255, 251, 242, 0.74);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 34px auto 0;
  text-align: left;
}

.faq-section {
  display: block;
}

.faq-section > div:first-child {
  max-width: 820px;
  margin-bottom: 26px;
}

.faq-section .faq-list {
  max-width: 980px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 251, 242, 0.74);
  font-size: 13px;
  font-weight: 780;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 251, 242, 0.22);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 251, 242, 0.48);
}

.contact-form textarea,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form label:has(textarea) {
  grid-column: 1 / -1;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-form .button {
  border-color: var(--cream);
  color: var(--ink);
  background: var(--cream);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 44px 0 56px;
}

.footer p {
  max-width: 430px;
  margin: 14px 0 0;
  font-size: 15px;
}

.footer-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes grow-bar {
  from {
    transform: scaleY(0.18);
    opacity: 0.45;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes float-panel {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    border-radius: 22px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .proof-band,
  .media-proof,
  .dashboard-proof-grid,
  .founder-proof {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .service-grid,
  .audience-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-8,
  .five-step,
  .case-grid,
  .testimonial-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .industry-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .button-small {
    display: none;
  }

  .hero,
  .section,
  .service-grid,
  .proof-band,
  .media-proof,
  .audience-grid,
  .process,
  .guarantee,
  .final-cta,
  .footer,
  .logo-strip,
  .industry-showcase,
  .dashboard-proof,
  .founder-proof {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: clamp(48px, 15vw, 64px);
  }

  .hero-stats,
  .dash-grid,
  .service-grid,
  .audience-grid,
  .process,
  .contact-form,
  .services-8,
  .five-step,
  .case-grid,
  .testimonial-grid,
  .proof-grid,
  .pain-list {
    grid-template-columns: 1fr;
  }

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

  .metric-card.tall {
    min-height: 280px;
  }

  .proof-band,
  .media-proof,
  .dashboard-proof,
  .guarantee,
  .final-cta {
    padding: 36px 22px;
  }

  .media-wall {
    grid-template-columns: 1fr;
  }

  .media-card.large {
    min-height: 280px;
  }

  .snapshot-metrics,
  .snapshot-table p {
    grid-template-columns: 1fr;
  }

  .founder-card img {
    height: 380px;
  }

  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 70px;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .industry-card {
    min-height: auto;
    padding: 24px;
  }
}

/* ===== Scalevara V2 refinement layer ===== */
:root {
  --container: min(1240px, calc(100% - 40px));
  --radius-v2: 18px;
  --focus: 0 0 0 4px rgba(0, 184, 255, 0.22);
}

html { scroll-padding-top: 110px; }
body { background: linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #ffffff 100%); }

.site-header { width: var(--container); top: 14px; margin-top: 14px; border-color: rgba(226, 232, 240, 0.9); background: rgba(255,255,255,0.92); }
.nav-links { gap: 22px; }
.nav-links a { min-height: 40px; display: inline-flex; align-items: center; }
.nav-cta { padding: 0 16px; border-radius: 999px; color: var(--ink) !important; background: var(--blue); font-weight: 800; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 999px; background: #fff; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.button { min-height: 52px; border-radius: 14px; color: #fff; background: var(--blue); }
.button-ghost { color: var(--ink); background: #fff; border-color: #b8c6d5; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: none; box-shadow: var(--focus); }

.section-pad, .trust-bar, .featured-result, .market-section, .results-layout, .visibility-section, .system-timeline, .comparison, .services-section, .pathways, .testimonials, .qualification, .process-30, .faq-section, .final-cta { width: var(--container); margin-inline: auto; }
.section-pad { padding: 86px 0 56px; }
.hero { min-height: auto; grid-template-columns: minmax(0, .98fr) minmax(360px, .86fr); gap: 48px; }
h1 { max-width: 840px; font-size: clamp(58px, 6.2vw, 76px); line-height: .98; letter-spacing: 0; }
h2 { font-size: clamp(38px, 4vw, 54px); line-height: 1.04; letter-spacing: 0; }
h3 { font-size: 23px; line-height: 1.18; }
.hero-text, .section-heading p, .featured-result p, .market-list p, .results-layout p, .visibility-section p, .comparison p, .services-section p, .pathways p, .founder-copy p:not(.eyebrow), .process-30 p { max-width: 700px; font-size: 18px; line-height: 1.7; color: var(--muted); }
.trust-note { display: inline-flex; margin: 4px 0 0; padding: 10px 12px; border-left: 3px solid var(--blue); color: #334155; background: #fff; font-weight: 700; }
.microcopy { margin: -18px 0 0; color: #64748b; font-size: 14px; }
.eyebrow { border-radius: 10px; background: #eef9ff; color: #075985; }

.trust-bar { display: grid; grid-template-columns: .72fr 1.28fr; gap: 22px; align-items: center; margin-bottom: 84px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.trust-bar p { margin: 0; color: #475569; font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.trust-bar div { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; overflow: hidden; border-radius: 12px; background: var(--line); }
.trust-bar span { display: grid; place-items: center; min-height: 58px; padding: 10px; background: #f8fafc; color: #0f172a; font-weight: 800; text-align: center; }
.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.compact { max-width: 860px; }

.featured-result { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: stretch; margin-bottom: 96px; padding: 44px; border-radius: 30px; background: var(--ink); color: #fff; box-shadow: 0 28px 80px rgba(7,17,31,.16); }
.featured-result h2, .featured-result p, .featured-result dd { color: #fff; }
.featured-result p { color: rgba(255,255,255,.72); }
.result-facts { display: grid; gap: 12px; margin: 28px 0 0; }
.result-facts div { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.14); }
.result-facts dt { color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.result-facts dd { margin: 6px 0 0; font-weight: 800; }
.result-metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.metric-tile { padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.07); }
.metric-tile.primary { grid-row: span 2; background: #fff; color: var(--ink); }
.metric-tile span { display: block; color: inherit; opacity: .72; font-weight: 800; }
.metric-tile strong { display: block; margin-top: 20px; font-size: clamp(42px, 7vw, 92px); line-height: .9; }

.market-section, .results-layout, .visibility-section, .system-timeline, .services-section, .pathways, .testimonials, .qualification, .process-30, .faq-section { margin-bottom: 104px; }
.market-list, .visibility-grid, .service-columns, .pathway-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.market-list article, .result-card, .visibility-grid article, .timeline article, .service-columns article, .pathway-list article, .qualification article, .testimonial-layout article { border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 14px 40px rgba(7,17,31,.055); }
.market-list article, .visibility-grid article, .service-columns article, .pathway-list article, .qualification article, .testimonial-layout article { padding: 28px; }
.market-list span, .result-card span, .service-columns span, .pathway-list span, .timeline span { color: #0b7fb0; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.market-list ul, .qualification ul, .comparison ul, .ad-notes ul { padding: 0; list-style: none; }
.market-list li, .qualification li, .comparison li { padding: 11px 0; border-top: 1px solid var(--line); color: var(--muted); }

.results-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 1fr); gap: 14px; }
.result-card { padding: 28px; }
.result-card.wide { grid-row: span 2; background: linear-gradient(145deg, #eaf8ff, #fff); }
.result-card strong { display: block; margin: 18px 0; font-size: clamp(42px, 7vw, 82px); line-height: .9; color: var(--ink); }
.media-proof, .comparison { margin-bottom: 104px; }
.visibility-grid span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--ink); background: var(--blue); font-weight: 900; }

.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: #fff; }
.timeline article { border: 0; border-right: 1px solid var(--line); border-radius: 0; padding: 30px; box-shadow: none; }
.timeline article:last-child { border-right: 0; }
.timeline small { display: block; margin-top: 18px; color: #0b7fb0; font-weight: 800; }
.comparison { display: grid; grid-template-columns: .82fr 1.18fr; gap: 32px; align-items: center; padding: 44px; border-radius: 30px; background: #07111f; color: #fff; }
.comparison h2, .comparison h3 { color: #fff; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.compare-grid article { padding: 28px; border-radius: 18px; }
.compare-muted { background: rgba(255,255,255,.06); }
.compare-strong { background: #fff; color: var(--ink); }
.compare-strong h3 { color: var(--ink); }
.compare-grid li { border-color: rgba(255,255,255,.12); }
.compare-strong li { border-color: var(--line); }

.service-columns article { min-height: 330px; }
.service-columns b { display: inline-flex; margin-top: 24px; padding: 10px 12px; border-radius: 12px; color: #075985; background: #eaf8ff; }
.testimonial-layout { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 14px; }
.featured-testimonial { background: linear-gradient(145deg, #07111f, #0a2139) !important; color: #fff; }
.featured-testimonial blockquote { margin: 20px 0; font-size: clamp(26px, 3vw, 40px); line-height: 1.15; font-weight: 800; }
.featured-testimonial p { color: rgba(255,255,255,.74); }
.qualification-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qualification article:first-child { border-color: rgba(0,184,255,.35); background: #f0fbff; }
.process-30 { padding: 44px; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: 0 16px 42px rgba(7,17,31,.055); }
.checklist { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.checklist span { padding: 14px; border: 1px solid var(--line); border-radius: 12px; color: #334155; background: #f8fafc; font-weight: 800; }
.faq-item { min-height: 72px; border-radius: 14px; background: #fff; }
.faq-item small { max-width: 850px; }
.form-note, .privacy-note { grid-column: 1 / -1; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.6; }
.privacy-note { display: block; }
.contact-form select { color: var(--cream); }
.contact-form option { color: var(--ink); }
.footer { width: 100%; padding: 56px max(20px, calc((100% - 1240px)/2)) 64px; color: #fff; background: var(--ink); }
.footer p, .footer-links { color: rgba(255,255,255,.72); }
.footer-links { max-width: 560px; justify-content: flex-end; flex-wrap: wrap; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-block; }
  .site-header { align-items: center; }
  .nav-links { position: fixed; inset: 78px 16px auto 16px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 24px 70px rgba(7,17,31,.18); }
  .nav-links.is-open { display: flex; }
  .nav-links a { justify-content: center; min-height: 52px; }
  .nav-cta { width: 100%; }
  .hero, .featured-result, .comparison, .dashboard-proof-grid, .founder-proof, .trust-bar { grid-template-columns: 1fr; }
  .market-list, .visibility-grid, .service-columns, .pathway-list, .testimonial-layout, .qualification-grid, .timeline { grid-template-columns: 1fr 1fr; }
  .timeline article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-bar div { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 22px); }
  .section-pad { padding-top: 48px; }
  h1 { font-size: clamp(40px, 12vw, 48px); line-height: 1.02; }
  h2 { font-size: clamp(30px, 9vw, 38px); }
  .hero-text, .section-heading p, .featured-result p, .market-list p, .results-layout p, .visibility-section p, .comparison p, .services-section p, .pathways p, .founder-copy p:not(.eyebrow), .process-30 p { font-size: 16px; }
  .hero-stats, .dash-grid, .result-metrics, .results-grid, .market-list, .visibility-grid, .service-columns, .pathway-list, .testimonial-layout, .qualification-grid, .timeline, .checklist, .compare-grid { grid-template-columns: 1fr; }
  .featured-result, .comparison, .dashboard-proof, .process-30 { padding: 28px 18px; }
  .metric-tile.primary, .result-card.wide { grid-row: auto; }
  .snapshot-metrics, .snapshot-table p { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

/* ===== Scalevara V3 premium polish layer ===== */
:root {
  --navy: #07111f;
  --cyan: #00b8ff;
  --sky: #eaf8ff;
  --gold: #c9a86a;
  --slate: #475569;
  --silver: #e2e8f0;
  --paper: #f8fafc;
}

body {
  color: var(--navy);
  font-size: 17px;
}

body.menu-open {
  overflow: hidden;
}

.site-header {
  min-height: 78px;
  padding: 10px 20px;
  border-radius: 28px;
  box-shadow: 0 18px 70px rgba(7, 17, 31, 0.08);
}

.brand {
  font-size: 24px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  box-shadow: inset 0 -10px 24px rgba(7, 17, 31, 0.08);
}

.nav-links a {
  font-size: 16px;
}

.nav-cta {
  min-height: 54px;
  padding-inline: 24px;
  box-shadow: 0 16px 34px rgba(0, 184, 255, 0.28);
}

.section-pad {
  padding-top: 116px;
  padding-bottom: 78px;
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 730px;
}

#hero-title {
  max-width: 760px;
  font-size: clamp(58px, 5.8vw, 86px);
  line-height: 0.94;
  letter-spacing: 0;
}

#hero-title span {
  display: block;
}

.hero-text {
  max-width: 640px;
  margin-top: 28px;
  font-size: 21px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 34px;
}

.dashboard-shell {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 184, 255, 0.22), transparent 30%),
    linear-gradient(145deg, #07111f, #0c2035 62%, #07111f);
  box-shadow: 0 34px 90px rgba(7, 17, 31, 0.26);
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 82%);
  pointer-events: none;
}

.dash-grid {
  position: relative;
  gap: 16px;
}

.metric-card,
.funnel-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.metric-card strong {
  font-size: clamp(38px, 4.8vw, 66px);
}

.trust-bar {
  margin-bottom: 106px;
}

.featured-result {
  position: relative;
  overflow: hidden;
  grid-template-columns: 0.92fr 1.08fr;
  padding: 56px;
  margin-bottom: 126px;
}

.featured-result::after {
  content: "";
  position: absolute;
  inset: auto -120px -160px auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(0, 184, 255, 0.14);
  filter: blur(10px);
}

.result-copy,
.result-metrics {
  position: relative;
  z-index: 1;
}

.metric-tile {
  min-height: 164px;
}

.metric-tile.primary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.market-section,
.results-layout,
.visibility-section,
.system-timeline,
.services-section,
.pathways,
.testimonials,
.qualification,
.process-30,
.faq-section {
  margin-bottom: 126px;
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading.compact {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.72fr);
  column-gap: 72px;
  align-items: end;
  max-width: none;
}

.section-heading.compact .eyebrow,
.section-heading.compact h2 {
  grid-column: 1;
}

.section-heading.compact p:not(.eyebrow) {
  grid-column: 2;
  margin-bottom: 10px;
}

.eyebrow {
  width: max-content;
  padding: 8px 12px;
  border: 1px solid rgba(0, 184, 255, 0.2);
  background: linear-gradient(180deg, #f6fcff, #eaf8ff);
  letter-spacing: 0.13em;
}

.market-list {
  grid-template-columns: 1fr;
  gap: 12px;
}

.market-list article {
  display: grid;
  grid-template-columns: 0.35fr 0.44fr 0.58fr;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  border-radius: 22px;
}

.market-list h3 {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
}

.market-list ul {
  margin: 0;
}

.results-grid {
  gap: 18px;
}

.result-card {
  padding: 36px;
  border-radius: 24px;
}

.result-card.wide {
  background:
    linear-gradient(90deg, rgba(0, 184, 255, 0.12), transparent 45%),
    #fff;
}

.media-proof {
  border-radius: 34px;
  background: linear-gradient(180deg, #07111f, #092238);
}

.media-card {
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.visibility-grid {
  position: relative;
  gap: 18px;
}

.visibility-grid article {
  position: relative;
  padding: 34px;
  border-radius: 24px;
}

.visibility-grid article:not(:last-child)::after,
.pathway-list article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  width: 20px;
  height: 2px;
  background: var(--cyan);
}

.dashboard-proof {
  padding: 58px;
  border-radius: 34px;
}

.dashboard-proof-grid {
  align-items: stretch;
}

.ad-snapshot {
  border-radius: 28px;
}

.snapshot-metrics {
  gap: 12px;
}

.snapshot-metrics div {
  border-radius: 18px;
}

.snapshot-metrics strong {
  font-size: clamp(38px, 4.8vw, 64px);
}

.timeline {
  border-radius: 28px;
}

.timeline article {
  position: relative;
  padding: 38px 32px;
}

.timeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -9px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 8px #fff;
}

.comparison {
  padding: 58px;
}

.service-columns {
  gap: 18px;
}

.service-columns article {
  padding: 36px;
  border-radius: 24px;
}

.pathway-list {
  gap: 18px;
}

.pathway-list article {
  position: relative;
  padding: 36px;
  border-radius: 24px;
}

.testimonial-layout {
  gap: 18px;
}

.testimonial-layout article {
  border-radius: 24px;
}

.featured-testimonial {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-person img {
  width: 68px;
  height: 68px;
}

.founder-proof {
  align-items: center;
  gap: 56px;
}

.founder-card {
  border-radius: 34px;
}

.founder-card img {
  min-height: 620px;
  object-position: center top;
}

.founder-copy h2 {
  font-size: clamp(42px, 4.2vw, 64px);
}

.founder-points span {
  border-color: rgba(0, 184, 255, 0.26);
  background: #f0fbff;
}

.process-30 {
  padding: 58px;
}

.checklist {
  counter-reset: checklist;
}

.checklist span {
  position: relative;
  padding: 22px 18px 22px 54px;
  border-radius: 18px;
}

.checklist span::before {
  counter-increment: checklist;
  content: counter(checklist, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 19px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 38px;
  align-items: start;
}

.faq-section .section-heading.compact {
  display: block;
  margin: 0;
}

.faq-list {
  gap: 12px;
}

.faq-item {
  min-height: 84px;
  padding: 0 28px;
  font-size: 20px;
}

.faq-item small {
  padding-bottom: 26px;
  font-size: 16px;
  line-height: 1.65;
}

.final-cta {
  max-width: none;
  width: 100%;
  padding: 92px max(22px, calc((100% - 1120px) / 2));
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(0, 184, 255, 0.12), transparent 34%),
    #07111f;
}

.final-cta h2,
.final-cta > p {
  max-width: 900px;
  margin-inline: auto;
}

.contact-form {
  max-width: 1120px;
  margin-inline: auto;
  gap: 18px 20px;
}

.contact-form label {
  font-size: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 62px;
  border-radius: 16px;
}

.contact-form textarea {
  min-height: 170px;
}

.contact-form .button {
  min-height: 62px;
  font-size: 16px;
}

@media (min-width: 981px) {
  .nav-links {
    margin-left: auto;
  }
}

@media (max-width: 1100px) {
  .section-heading.compact,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-heading.compact .eyebrow,
  .section-heading.compact h2,
  .section-heading.compact p:not(.eyebrow) {
    grid-column: auto;
  }

  .market-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
    border-radius: 22px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .section-pad {
    padding-top: 88px;
  }

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

  .dashboard-shell {
    min-height: 460px;
  }

  .visibility-grid article:not(:last-child)::after,
  .pathway-list article:not(:last-child)::after,
  .timeline article:not(:last-child)::after {
    display: none;
  }

  .faq-section {
    display: block;
  }

  .faq-section .section-heading {
    margin-bottom: 30px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    padding: 8px 12px;
  }

  .nav-links {
    inset: 78px 10px auto 10px;
  }

  #hero-title {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.98;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dashboard-shell {
    min-height: 0;
    border-radius: 24px;
  }

  .trust-bar,
  .featured-result,
  .comparison,
  .dashboard-proof,
  .process-30 {
    border-radius: 24px;
  }

  .featured-result,
  .comparison,
  .dashboard-proof,
  .process-30 {
    padding: 30px 20px;
  }

  .market-section,
  .results-layout,
  .visibility-section,
  .system-timeline,
  .services-section,
  .pathways,
  .testimonials,
  .qualification,
  .process-30,
  .faq-section {
    margin-bottom: 84px;
  }

  .market-list article,
  .result-card,
  .visibility-grid article,
  .timeline article,
  .service-columns article,
  .pathway-list article,
  .testimonial-layout article,
  .qualification article {
    padding: 24px;
  }

  .founder-card img {
    min-height: 420px;
  }

  .final-cta {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .faq-item {
    min-height: 76px;
    padding: 0 18px;
    font-size: 17px;
  }
}

/* ===== Scalevara final refinement layer ===== */
html,
body {
  overflow-x: hidden;
}

p,
li,
dd,
.market-list li,
.visibility-grid p,
.timeline p,
.service-flow p,
.journey-flow p,
.testimonial-layout p,
.qualification li,
.month-timeline p,
.faq-item small,
.footer p,
.footer a {
  font-size: max(16px, 1rem);
  line-height: 1.65;
}

.hero {
  grid-template-columns: minmax(0, 55fr) minmax(360px, 45fr);
  gap: clamp(42px, 5vw, 74px);
  align-items: start;
}

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

#hero-title {
  max-width: 740px;
  font-size: clamp(60px, 4.7vw, 68px);
  line-height: 1.01;
  text-wrap: balance;
}

#hero-title span {
  white-space: nowrap;
}

.hero-text {
  margin-top: 32px;
  max-width: 690px;
  font-size: clamp(19px, 1.45vw, 22px);
}

.trust-note {
  margin-top: 14px;
  font-size: 16px;
}

.hero-actions {
  margin-top: 38px;
  margin-bottom: 20px;
}

.microcopy {
  margin-top: 0;
  font-size: 15px;
}

.hero-visual {
  padding-top: 8px;
}

.dashboard-shell {
  min-height: 500px;
}

.dash-grid {
  grid-template-columns: 1.12fr 0.88fr;
  gap: 16px;
}

.metric-card,
.funnel-card {
  min-height: 148px;
  padding: 24px;
}

.metric-card.tall {
  min-height: 328px;
}

.metric-card span,
.metric-tile span,
.metric-tile small {
  font-size: 14px;
  line-height: 1.45;
}

.metric-card strong {
  overflow-wrap: normal;
  word-break: normal;
}

.featured-result {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.result-copy p {
  font-size: 18px;
}

.metric-tile strong {
  margin-top: 16px;
}

.metric-tile small {
  display: block;
  margin-top: 18px;
  color: inherit;
  opacity: 0.72;
  font-weight: 700;
}

.needs-verification {
  border-style: dashed;
}

.service-flow,
.journey-flow,
.month-timeline {
  position: relative;
  display: grid;
  gap: 0;
  border: 1px solid var(--silver);
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(7, 17, 31, 0.06);
}

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

.journey-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.month-timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-flow article,
.journey-flow article,
.month-timeline article {
  position: relative;
  padding: 36px 30px;
  min-height: 290px;
  border-right: 1px solid var(--silver);
  background:
    linear-gradient(180deg, rgba(234, 248, 255, 0.58), transparent 52%),
    #fff;
}

.service-flow article:last-child,
.journey-flow article:last-child,
.month-timeline article:last-child {
  border-right: 0;
}

.service-flow article:not(:last-child)::after,
.journey-flow article:not(:last-child)::after,
.month-timeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -13px;
  z-index: 3;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 8px #fff;
}

.service-flow span,
.journey-flow span,
.month-timeline span {
  display: inline-flex;
  margin-bottom: 32px;
  color: #0b7fb0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-flow h3,
.journey-flow h3,
.month-timeline h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.1vw, 32px);
}

.service-flow b {
  display: inline-flex;
  margin-top: 22px;
  padding: 11px 13px;
  border-radius: 14px;
  color: #075985;
  background: #eaf8ff;
  font-size: 15px;
  line-height: 1.4;
}

.journey-flow article {
  min-height: 250px;
}

.journey-flow h3 {
  font-size: clamp(21px, 1.8vw, 27px);
}

.testimonial-layout {
  grid-template-columns: 1.28fr 0.86fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.featured-testimonial {
  grid-row: 1 / span 2;
  padding: 46px;
}

.featured-testimonial blockquote {
  font-size: clamp(28px, 3vw, 36px);
}

.secondary-testimonial {
  padding: 30px;
}

.secondary-testimonial blockquote {
  margin: 22px 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 800;
}

.testimonial-person small {
  font-size: 14px;
  line-height: 1.4;
}

.founder-points {
  display: grid;
  gap: 12px;
}

.founder-points span {
  display: block;
  padding: 18px;
  font-size: 16px;
  line-height: 1.55;
}

.founder-points b {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.process-30 .section-heading {
  max-width: 920px;
}

.month-timeline {
  margin-top: 34px;
}

.month-timeline article {
  min-height: 270px;
}

.final-cta > p {
  font-size: 20px;
  line-height: 1.65;
}

.contact-form {
  margin-top: 38px;
  padding: 6px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 66px;
  font-size: 17px;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid,
.contact-form select.is-invalid {
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.18);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.form-status.is-error {
  color: #fecaca;
}

.form-status.is-success {
  color: #a7f3d0;
}

.final-cta .button {
  width: max-content;
  min-width: 280px;
  justify-content: center;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.footer .brand {
  font-size: 24px;
}

.footer p {
  max-width: 520px;
  margin-top: 18px;
  font-size: 16px;
}

.footer small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  font-size: 15px;
}

@media (max-width: 1280px) {
  #hero-title {
    font-size: clamp(56px, 4.35vw, 64px);
    max-width: 720px;
  }

  .hero {
    grid-template-columns: minmax(0, 56fr) minmax(340px, 44fr);
  }
}

@media (max-width: 1100px) {
  #hero-title {
    font-size: clamp(52px, 5.2vw, 60px);
  }

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

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

  .hero-visual {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .featured-result,
  .service-flow,
  .journey-flow,
  .month-timeline,
  .testimonial-layout,
  .footer {
    grid-template-columns: 1fr;
  }

  .testimonial-layout {
    grid-template-rows: auto;
  }

  .featured-testimonial {
    grid-row: auto;
  }

  .service-flow article,
  .journey-flow article,
  .month-timeline article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--silver);
  }

  .service-flow article:last-child,
  .journey-flow article:last-child,
  .month-timeline article:last-child {
    border-bottom: 0;
  }

  .service-flow article:not(:last-child)::after,
  .journey-flow article:not(:last-child)::after,
  .month-timeline article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 34px;
    bottom: -13px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  #hero-title {
    max-width: 650px;
    font-size: clamp(46px, 8.8vw, 58px);
  }

  #hero-title span {
    white-space: normal;
  }

  .dashboard-shell {
    min-height: auto;
  }
}

@media (max-width: 430px) {
  #hero-title {
    font-size: clamp(39px, 11.5vw, 48px);
    line-height: 1.03;
  }

  .hero-text,
  .final-cta > p {
    font-size: 17px;
  }

  .dash-grid,
  .result-metrics {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .metric-card.tall,
  .metric-tile {
    min-height: auto;
  }

  .featured-testimonial {
    padding: 30px 24px;
  }

  .featured-testimonial blockquote {
    font-size: clamp(22px, 6.5vw, 28px);
  }

  .secondary-testimonial blockquote {
    font-size: 16px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 60px;
    font-size: 16px;
  }

  .final-cta .button {
    width: 100%;
    min-width: 0;
  }

  .footer {
    gap: 28px;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    min-width: 44px;
  }
}

@media (max-width: 360px) {
  #hero-title {
    font-size: 36px;
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }
}

.microcopy,
.snapshot-table p {
  font-size: 16px;
}

/* ===== Scalevara production overflow and proof polish ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

section,
article,
div,
header,
footer,
main,
form,
label,
input,
textarea,
select,
button,
a {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
span,
strong,
small,
em,
i,
b,
dd {
  overflow-wrap: break-word;
  word-break: normal;
}

.dashboard-proof {
  overflow: visible;
}

.dashboard-proof-grid {
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.88fr);
  gap: 22px;
}

.ad-snapshot,
.ad-notes {
  min-width: 0;
}

.snapshot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 28px 10px;
}

.snapshot-top span {
  min-width: 0;
  color: var(--navy);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  font-weight: 900;
}

.snapshot-top b {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: #075985;
  background: var(--sky);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.snapshot-context {
  margin: 0;
  padding: 0 28px 24px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.55;
}

.snapshot-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 28px 26px;
  background: transparent;
}

.snapshot-metrics div {
  min-width: 0;
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(22px, 2vw, 30px);
  border: 1px solid rgba(0, 184, 255, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(234, 248, 255, 0.88)),
    var(--sky);
}

.snapshot-metrics strong {
  display: block;
  max-width: 100%;
  color: var(--navy);
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.snapshot-metrics div:last-child strong {
  font-size: clamp(2rem, 3.1vw, 3.5rem);
}

.snapshot-metrics span {
  display: block;
  color: #334155;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.snapshot-table {
  margin: 0 28px 30px;
  padding: 0;
  border: 1px solid var(--silver);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.snapshot-table p {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(120px, 0.55fr) minmax(120px, 0.55fr);
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--silver);
  font-size: 16px;
  line-height: 1.5;
}

.snapshot-table p:last-child {
  border-bottom: 0;
}

.snapshot-table .snapshot-head {
  color: var(--navy);
  background: #f8fafc;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.snapshot-table span,
.snapshot-table i,
.snapshot-table em,
.snapshot-table b {
  min-width: 0;
}

.snapshot-table i {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #075985;
  background: #eaf8ff;
}

.snapshot-table em {
  color: var(--navy);
}

.ad-notes {
  padding: clamp(28px, 3vw, 40px);
}

.ad-notes h3 {
  max-width: 360px;
  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1.08;
}

.ad-notes li {
  min-width: 0;
  font-size: 16px;
  line-height: 1.55;
}

.dash-topbar p {
  font-size: 14px;
}

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

.metric-card strong,
.metric-tile strong,
.result-card strong {
  max-width: 100%;
}

.metric-card strong {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  white-space: normal;
}

.metric-card.tall strong {
  font-size: clamp(2.4rem, 4.4vw, 4.3rem);
  white-space: nowrap;
}

.metric-card span,
.metric-card em {
  font-size: 15px;
  line-height: 1.45;
}

.metric-tile strong {
  font-size: clamp(2rem, 4.4vw, 5.2rem);
  line-height: 1;
  white-space: normal;
}

.metric-tile span,
.metric-tile small {
  font-size: 15px;
}

.faq-section {
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.18fr);
}

.faq-section .section-heading h2 {
  max-width: 680px;
  text-wrap: balance;
  font-size: clamp(42px, 3.6vw, 58px);
  line-height: 1.05;
}

.founder-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 620px;
  object-fit: cover;
  object-position: center 18%;
}

.form-note,
.privacy-note,
.footer small {
  font-size: 15px;
  line-height: 1.6;
}

.footer .brand-mark {
  width: 56px;
  height: 56px;
}

.footer-links a {
  font-size: 15px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .dashboard-proof-grid {
    grid-template-columns: 1fr;
  }

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

  .ad-notes h3 {
    max-width: none;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .snapshot-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .snapshot-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 20px;
  }

  .snapshot-context {
    padding-inline: 20px;
  }

  .snapshot-table {
    margin-inline: 20px;
  }

  .snapshot-table .snapshot-head {
    display: none;
  }

  .snapshot-table p {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .snapshot-table span::before,
  .snapshot-table i::before,
  .snapshot-table em::before {
    content: attr(data-label) ": ";
    display: inline;
    color: #64748b;
    font-style: normal;
    font-weight: 900;
  }

  .snapshot-table i {
    width: auto;
    justify-self: start;
  }

  .founder-card img {
    min-height: 500px;
    object-position: center 16%;
  }
}

@media (max-width: 430px) {
  .snapshot-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .snapshot-metrics div {
    min-height: 132px;
    padding: 22px;
  }

  .snapshot-metrics strong,
  .snapshot-metrics div:last-child strong {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .snapshot-top,
  .snapshot-context,
  .snapshot-metrics {
    padding-inline: 18px;
  }

  .snapshot-table {
    margin-inline: 18px;
  }

  .faq-section .section-heading h2 {
    font-size: clamp(32px, 9.5vw, 42px);
  }

  .founder-card img {
    min-height: 420px;
  }
}

/* ===== Final launch polish ===== */
.dashboard-shell {
  border: 1px solid rgba(148, 163, 184, 0.28);
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 184, 255, 0.34), transparent 32%),
    radial-gradient(circle at 18% 86%, rgba(201, 168, 106, 0.16), transparent 30%),
    linear-gradient(145deg, #0b1b2d 0%, #102b46 52%, #07111f 100%);
  box-shadow:
    0 38px 100px rgba(7, 17, 31, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dashboard-shell::before {
  opacity: 0.8;
}

.dash-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dash-topbar p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.metric-card,
.funnel-card {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.11));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.metric-card.tall {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 86% 16%, rgba(0, 184, 255, 0.2), transparent 35%);
}

.metric-card span,
.metric-card em {
  color: rgba(255, 255, 255, 0.82);
}

.metric-card strong {
  color: #ffffff;
  text-shadow: 0 12px 32px rgba(0, 184, 255, 0.22);
}

.chart-bars {
  align-items: end;
  height: 200px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: 100% 25%, 20% 100%, auto;
}

.chart-bars i {
  min-width: 0;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #77dcff, #00b8ff 58%, #1379a8);
  box-shadow: 0 10px 24px rgba(0, 184, 255, 0.28);
}

.dashboard-proof {
  background:
    linear-gradient(180deg, rgba(234, 248, 255, 0.78), rgba(255, 255, 255, 0.92)),
    #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 24px 72px rgba(7, 17, 31, 0.08);
}

.ad-snapshot {
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(7, 17, 31, 0.09);
}

.snapshot-context {
  color: #475569;
  font-weight: 700;
}

.snapshot-metrics div {
  align-items: flex-start;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.snapshot-metrics strong {
  color: #07111f;
  text-align: left;
}

.snapshot-metrics span {
  text-align: left;
}

.ad-notes {
  border-color: rgba(0, 184, 255, 0.22);
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 184, 255, 0.18), transparent 32%),
    linear-gradient(145deg, #07111f, #0b2238);
  box-shadow: 0 20px 60px rgba(7, 17, 31, 0.16);
}

.ad-notes .eyebrow {
  color: #07111f;
  background: #eaf8ff;
}

.ad-notes h3 {
  color: #ffffff;
}

.ad-notes li {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

.qualification-grid article {
  padding: clamp(28px, 3vw, 40px);
  border-radius: 26px;
}

.qualification-grid article h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 2.5vw, 38px);
}

.qualification-grid article:first-child {
  background:
    linear-gradient(180deg, rgba(234, 248, 255, 0.9), rgba(255, 255, 255, 0.96));
}

.qualification-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.qualification li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.qualification li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--cyan);
}

.founder-proof {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.founder-card {
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.12);
}

.founder-copy p:not(.eyebrow) {
  font-size: clamp(17px, 1.35vw, 19px);
}

.final-cta {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-form {
  padding: 16px 0 0;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1180px) {
  .founder-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dashboard-shell {
    border-radius: 26px;
  }

  .chart-bars {
    height: 160px;
  }

  .qualification li {
    grid-template-columns: 16px minmax(0, 1fr);
  }
}

/* ===== Final low-friction form update ===== */
.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.contact-form label {
  gap: 9px;
}

.contact-form label > span {
  display: inline-flex;
  width: max-content;
  margin-left: 8px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  vertical-align: middle;
}

.contact-form input,
.contact-form select {
  min-height: 58px;
  padding-inline: 18px;
}

.contact-form .button {
  min-height: 58px;
}

.contact-form .form-note,
.contact-form .form-status,
.contact-form .privacy-note {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .contact-form {
    grid-template-columns: 1fr;
  }

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

/* ===== Featured result readability fixes ===== */
.featured-result .eyebrow {
  color: #eaf8ff;
  background: rgba(234, 248, 255, 0.12);
  border-color: rgba(234, 248, 255, 0.22);
}

.featured-result .metric-tile:not(.primary) strong {
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .featured-result .metric-tile:not(.primary) strong {
    font-size: clamp(36px, 11vw, 56px);
  }
}

/* Founder section without portrait */
.founder-proof {
  display: block;
  padding: clamp(56px, 7vw, 92px) 0;
}

.founder-proof .founder-copy {
  max-width: 1120px;
  margin-inline: auto;
}

.founder-copy h2 {
  max-width: 1040px;
}

.founder-copy p:not(.eyebrow) {
  max-width: 880px;
}

.founder-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

@media (max-width: 900px) {
  .founder-points {
    grid-template-columns: 1fr;
  }
}

/* Centered founder statement */
.founder-proof {
  display: block !important;
  text-align: center;
}

.founder-proof .founder-copy,
.founder-copy h2,
.founder-copy p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.founder-copy h2 {
  max-width: 1180px;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 1.02;
}

.founder-copy p:not(.eyebrow) {
  max-width: 980px;
}

.founder-points {
  width: min(1040px, 100%);
  margin-left: auto;
  margin-right: auto;
}

/* Final production polish */
html {
  scroll-behavior: smooth;
}

.site-header {
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(226, 232, 240, 0.96);
  background: rgba(248, 250, 252, 0.86);
  box-shadow: 0 18px 60px rgba(7, 17, 31, 0.14);
  backdrop-filter: blur(18px);
}

.nav-links a.is-active {
  color: var(--blue);
}

.nav-links a:not(.nav-cta):hover,
.footer a:hover {
  color: var(--blue);
}

.section-pad,
.trust-bar,
.featured-result,
.market-section,
.results-layout,
.media-proof,
.visibility-section,
.dashboard-proof,
.system-timeline,
.comparison,
.services-section,
.pathways,
.qualification,
.founder-proof,
.process-30,
.faq-section,
.final-cta {
  scroll-margin-top: 120px;
}

.market-section,
.results-layout,
.media-proof,
.visibility-section,
.dashboard-proof,
.system-timeline,
.comparison,
.services-section,
.pathways,
.qualification,
.founder-proof,
.process-30,
.faq-section {
  margin-top: clamp(72px, 7vw, 104px);
  margin-bottom: 0;
}

.featured-result {
  margin-bottom: 0;
}

.section-heading .eyebrow,
.media-proof-copy .eyebrow,
.founder-copy .eyebrow,
.final-cta > .eyebrow {
  width: max-content;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  line-height: 1.2;
}

.section-heading.center .eyebrow,
.founder-copy .eyebrow,
.final-cta > .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.market-list article,
.result-card,
.visibility-grid article,
.timeline article,
.service-flow article,
.journey-flow article,
.qualification article,
.month-timeline article,
.metric-card,
.metric-tile,
.faq-item {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.market-list article:hover,
.result-card:hover,
.visibility-grid article:hover,
.timeline article:hover,
.service-flow article:hover,
.journey-flow article:hover,
.qualification article:hover,
.month-timeline article:hover,
.metric-card:hover,
.metric-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(7, 17, 31, 0.10);
}

.market-list article,
.visibility-grid article,
.service-flow article,
.journey-flow article,
.qualification article,
.month-timeline article {
  height: 100%;
}

.market-list p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  display: grid;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.faq-item span {
  padding: 24px 28px;
}

.faq-item small {
  display: block;
  max-height: 0;
  margin: 0;
  padding: 0 28px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 220ms ease, opacity 180ms ease, padding 220ms ease;
}

.faq-item.is-open small {
  max-height: 220px;
  padding-bottom: 24px;
  opacity: 1;
}

.contact-form textarea {
  padding: 18px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.calendar-fallback {
  display: none;
  grid-column: 1 / -1;
  width: max-content;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-decoration: none;
}

.calendar-fallback.is-visible {
  display: inline-flex;
}

.service-flow article > a {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.service-flow article > a::after {
  content: "->";
  margin-left: 8px;
  color: var(--blue);
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #fca5a5;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.18);
}

@media (max-width: 900px) {
  .section-heading.compact {
    display: block;
  }

  .market-section,
  .results-layout,
  .media-proof,
  .visibility-section,
  .dashboard-proof,
  .system-timeline,
  .comparison,
  .services-section,
  .pathways,
  .qualification,
  .founder-proof,
  .process-30,
  .faq-section {
    margin-top: clamp(56px, 10vw, 76px);
  }
}

@media (max-width: 640px) {
  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .faq-item span {
    padding: 20px;
    font-size: 16px;
    line-height: 1.35;
  }

  .faq-item small {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Visual storytelling graphics */
.hero-visual {
  position: relative;
}

.hero-float {
  position: absolute;
  z-index: 3;
  width: max-content;
  max-width: 210px;
  padding: 12px 14px;
  border: 1px solid rgba(226, 232, 240, 0.72);
  border-radius: 18px;
  color: #07111f;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.14);
  backdrop-filter: blur(14px);
  animation: float-card 7s ease-in-out infinite;
}

.hero-float span {
  display: block;
  margin-bottom: 4px;
  color: #0b7fb0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-float b {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.hero-float-ad {
  left: -26px;
  top: 18%;
}

.hero-float-ad i {
  display: block;
  height: 48px;
  margin-top: 10px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(0, 184, 255, 0.22), transparent 62%),
    repeating-linear-gradient(0deg, #eaf8ff 0 7px, #ffffff 7px 14px);
}

.hero-float-lead {
  right: -24px;
  top: 20%;
  animation-delay: -1.4s;
}

.hero-float-tag {
  left: 8%;
  bottom: 16%;
  animation-delay: -2.2s;
}

.hero-float-chip {
  right: 8%;
  bottom: 24%;
  color: #03364d;
  font-weight: 900;
  background: #eaf8ff;
  animation-delay: -3.4s;
}

.hero-float-message {
  right: 2%;
  bottom: 6%;
  animation-delay: -4.1s;
}

@keyframes float-card {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.acquisition-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.acquisition-flow span {
  position: relative;
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.acquisition-flow span:not(:last-child)::after {
  content: "->";
  position: absolute;
  right: -13px;
  color: var(--blue);
  font-weight: 900;
}

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

.creative-mockups article {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 16px 48px rgba(7, 17, 31, 0.07);
}

.creative-mockups article::before {
  content: "";
  display: block;
  height: 88px;
  margin-bottom: 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 74% 28%, rgba(0, 184, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #07111f, #113453);
}

.creative-mockups span,
.decision-widgets b,
.system-map-label span,
.system-compare span {
  color: #0b7fb0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creative-mockups h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 28px);
}

.creative-mockups p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.creative-mockups b {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  color: #03364d;
  background: #eaf8ff;
  font-size: 13px;
}

.decision-widgets {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.decision-widgets span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.decision-widgets i {
  color: #07111f;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.system-map-label {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: min(720px, 100%);
  margin: -16px auto 18px;
  text-align: center;
}

.journey-flow {
  background:
    linear-gradient(90deg, rgba(0, 184, 255, 0.10), transparent 50%, rgba(0, 184, 255, 0.08)),
    #ffffff;
}

.journey-flow article::before {
  content: "";
  position: absolute;
  inset: 22px auto auto 30px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(0, 184, 255, 0.12);
}

.system-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 38px auto 0;
  text-align: left;
}

.system-compare article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(7, 17, 31, 0.07);
}

.system-compare article:nth-child(1) {
  background:
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.system-compare article:nth-child(2) {
  border-color: rgba(0, 184, 255, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 184, 255, 0.16), transparent 34%),
    #ffffff;
}

.system-compare div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0;
}

.system-compare i {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #07111f;
  background: #f8fafc;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.system-compare article:first-child i:nth-child(even) {
  transform: translateY(12px);
  opacity: 0.62;
}

.system-compare article:nth-child(2) i {
  border-color: rgba(0, 184, 255, 0.28);
  background: #eaf8ff;
}

.system-compare p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.54;
  background-image:
    radial-gradient(circle at 22% 18%, rgba(0, 184, 255, 0.30), transparent 30%),
    radial-gradient(circle at 78% 68%, rgba(0, 184, 255, 0.18), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 18% 12% auto auto;
  z-index: -1;
  width: 260px;
  height: 180px;
  border: 1px solid rgba(0, 184, 255, 0.20);
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 184, 255, 0.24) 0 6px, transparent 7px),
    radial-gradient(circle at 70% 40%, rgba(0, 184, 255, 0.20) 0 5px, transparent 6px),
    radial-gradient(circle at 44% 78%, rgba(0, 184, 255, 0.18) 0 5px, transparent 6px);
}

.result-card strong {
  overflow-wrap: normal;
  word-break: keep-all;
}

.result-card:not(.wide) strong {
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.04;
}

@media (max-width: 1180px) {
  .hero-float {
    position: relative;
    inset: auto;
    display: inline-grid;
    margin: 12px 8px 0 0;
    animation: none;
  }

  .hero-visual {
    display: block;
  }
}

@media (max-width: 980px) {
  .acquisition-flow,
  .creative-mockups,
  .system-compare {
    grid-template-columns: 1fr;
  }

  .acquisition-flow span {
    min-height: 62px;
  }

  .acquisition-flow span:not(:last-child)::after {
    inset: auto auto -18px 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .system-map-label {
    display: none;
  }

  .system-compare div {
    grid-template-columns: 1fr;
  }

  .system-compare article:first-child i:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-float {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }

  .creative-mockups article,
  .system-compare article {
    padding: 20px;
  }

  .decision-widgets span {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final launch polish */
h1,
h2,
h3,
h4,
p,
li,
dt,
dd,
span,
small,
strong,
b,
a,
button {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.nowrap {
  white-space: nowrap;
}

.result-card:not(.wide) strong {
  font-size: clamp(2rem, 5vw, 3.85rem);
  line-height: 1.05;
}

.result-card strong .nowrap {
  display: inline-block;
  max-width: 100%;
}

.market-list p,
.result-card p,
.visibility-grid p,
.timeline p,
.service-flow p,
.journey-flow p,
.creative-mockups p,
.system-compare p,
.qualification li,
.month-timeline p,
.faq-item small,
.footer p,
.footer a,
.form-note,
.privacy-note {
  font-size: clamp(16px, 1.05vw, 17px);
  line-height: 1.62;
}

.contact-form label {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 16px;
}

.hidden-field {
  display: none !important;
}

@media (max-width: 980px) {
  .nav-links {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .nav-links a {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 16px;
  }

  .nav-links a:not(.nav-cta) {
    background: #f8fafc;
  }

  .menu-toggle {
    flex: 0 0 auto;
  }
}

.market-list article,
.result-card,
.visibility-grid article,
.timeline article,
.service-flow article,
.journey-flow article,
.creative-mockups article,
.qualification article,
.month-timeline article,
.metric-card,
.metric-tile,
.system-compare article {
  border-radius: 24px;
}

.market-list article,
.result-card,
.visibility-grid article,
.timeline article,
.service-flow article,
.journey-flow article,
.creative-mockups article,
.qualification article,
.month-timeline article,
.system-compare article {
  padding: clamp(22px, 2.4vw, 34px);
}

.hero-visual {
  padding: 12px 0 0;
}

.dashboard-shell {
  z-index: 2;
  width: min(100%, 640px);
  margin-inline: auto;
}

.hero-float {
  max-width: 184px;
  padding: 11px 13px;
}

.hero-float-ad {
  left: 8px;
  top: 11%;
}

.hero-float-lead {
  right: 8px;
  top: 12%;
}

.hero-float-tag {
  left: 18px;
  bottom: 12%;
}

.hero-float-chip {
  right: 22px;
  bottom: 24%;
}

.hero-float-message {
  right: 16px;
  bottom: 7%;
}

.creative-mockups {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.creative-mockups article {
  min-height: 0;
}

.creative-mockups article::before {
  height: clamp(70px, 7vw, 88px);
}

.system-compare {
  text-align: center;
}

.system-compare div {
  grid-template-columns: repeat(5, minmax(78px, 1fr));
}

.system-compare article:first-child i {
  border-style: dashed;
  color: #64748b;
  background: #f8fafc;
  opacity: 0.8;
}

.system-compare article:first-child i:nth-child(even) {
  transform: none;
}

.system-compare article:first-child div {
  gap: 14px;
}

.system-compare article:nth-child(2) div {
  gap: 0;
}

.system-compare article:nth-child(2) i {
  position: relative;
  border-radius: 14px;
}

.system-compare article:nth-child(2) i:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 12px;
  height: 2px;
  background: var(--blue);
  transform: translate(100%, -50%);
}

.faq-item span {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.35;
}

.faq-item small {
  color: #475569;
}

@media (max-width: 1180px) {
  .hero-float {
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 980px) {
  .creative-mockups {
    grid-template-columns: 1fr;
  }

  .creative-mockups article {
    min-height: 0;
  }

  .system-compare div {
    grid-template-columns: 1fr;
  }

  .system-compare article:nth-child(2) div {
    gap: 10px;
  }

  .system-compare article:nth-child(2) i:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -11px;
    width: 2px;
    height: 12px;
    transform: translateX(50%);
  }
}

@media (max-width: 640px) {
  .result-card:not(.wide) strong {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .hero-visual {
    padding-top: 4px;
  }

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

  .market-list article,
  .result-card,
  .visibility-grid article,
  .timeline article,
  .service-flow article,
  .journey-flow article,
  .creative-mockups article,
  .qualification article,
  .month-timeline article,
  .system-compare article {
    padding: 22px;
    border-radius: 20px;
  }
}

/* Final hero dashboard alignment polish */
.hero-visual {
  isolation: isolate;
  padding: 76px 24px 76px;
}

.dashboard-shell {
  width: min(100%, 640px);
  min-height: 548px;
}

.dash-topbar {
  min-height: 62px;
  padding: 18px 24px;
}

.dash-topbar p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1.55vw, 18px);
  line-height: 1.25;
  white-space: nowrap;
}

.dash-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  padding: 24px;
}

.metric-card {
  position: relative;
  min-width: 0;
  min-height: 180px;
  padding: 28px;
  border-radius: 24px;
  overflow: hidden;
}

.metric-card.tall {
  min-height: 356px;
}

.metric-card span {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.35;
}

.metric-card strong {
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.metric-card.tall strong {
  font-size: clamp(3rem, 4.4vw, 4.35rem);
}

.metric-card em {
  max-width: 100%;
  white-space: normal;
}

.chart-bars {
  height: 214px;
  margin-top: 32px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.16);
}

.hero-float {
  z-index: 5;
  max-width: 172px;
  padding: 10px 12px;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.18);
}

.hero-float span {
  font-size: 10px;
  line-height: 1.15;
}

.hero-float b {
  font-size: 13px;
  line-height: 1.22;
}

.hero-float-ad {
  left: 38px;
  top: 6px;
  width: 132px;
}

.hero-float-ad i {
  height: 6px;
  margin-top: 8px;
  border-radius: 999px;
}

.hero-float-lead {
  right: 38px;
  top: 10px;
  width: 154px;
}

.hero-float-tag {
  left: 48px;
  bottom: 12px;
  width: 160px;
}

.hero-float-chip {
  right: 204px;
  bottom: 36px;
  max-width: 178px;
  font-size: 15px;
  line-height: 1.25;
}

.hero-float-message {
  right: 36px;
  bottom: 14px;
  width: 158px;
}

@media (max-width: 1180px) {
  .hero-visual {
    padding: 10px 0 0;
  }

  .dashboard-shell {
    width: min(100%, 640px);
    min-height: auto;
  }

  .hero-float {
    position: relative;
    inset: auto;
    width: auto;
    max-width: calc(50% - 12px);
    margin: 12px 8px 0 0;
    animation: none;
  }
}

@media (max-width: 640px) {
  .dash-topbar {
    min-height: auto;
    padding: 16px 18px;
  }

  .dash-topbar p {
    white-space: normal;
    font-size: 15px;
  }

  .dash-grid {
    gap: 14px;
    padding: 18px;
  }

  .metric-card,
  .metric-card.tall {
    min-height: auto;
    padding: 22px;
  }

  .metric-card strong,
  .metric-card.tall strong {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
    white-space: normal;
  }

  .chart-bars {
    height: 160px;
    margin-top: 22px;
  }

  .hero-float {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
}

/* Final marked-issue fixes */
.metric-card strong {
  font-size: clamp(2.45rem, 3.25vw, 3.35rem);
  white-space: nowrap;
}

.metric-card.tall strong {
  font-size: clamp(2.7rem, 3.6vw, 3.8rem);
}

.featured-result .metric-tile {
  min-width: 0;
  overflow: hidden;
}

.featured-result .metric-tile:not(.primary) strong {
  font-size: clamp(2.55rem, 3vw, 3.9rem);
  line-height: 1.02;
  white-space: nowrap;
}

.featured-result .metric-tile small {
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.35;
}

.compare-muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.075));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-muted h3 {
  color: #ffffff;
}

.compare-muted li {
  color: rgba(234, 248, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.16);
}

.compare-grid article {
  min-height: 0;
}

@media (max-width: 640px) {
  .metric-card strong,
  .metric-card.tall strong {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .featured-result .metric-tile:not(.primary) strong {
    font-size: clamp(2.45rem, 10vw, 3.4rem);
  }

  .featured-result .metric-tile small {
    max-width: none;
  }
}

/* Production alignment safety pass */
html,
body {
  overflow-x: hidden;
}

.hero,
.featured-result,
.comparison,
.dashboard-shell,
.dash-grid,
.metric-card,
.metric-tile,
.compare-grid,
.compare-grid article,
.section-heading,
.result-copy,
.result-metrics {
  min-width: 0;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  padding: 0;
}

.dashboard-shell {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 620px;
  min-height: auto;
  margin-inline: auto;
}

.dash-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 14px;
  padding: 20px;
}

.metric-card,
.metric-card.tall {
  min-height: 0;
  padding: 22px;
}

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

.metric-card span {
  margin-bottom: 14px;
  font-size: 14px;
}

.metric-card strong,
.metric-card.tall strong {
  max-width: 100%;
  font-size: clamp(2.25rem, 3vw, 3.05rem);
  line-height: 1;
  white-space: nowrap;
}

.metric-card.tall strong {
  font-size: clamp(2.45rem, 3.25vw, 3.28rem);
}

.chart-bars {
  height: 184px;
  margin-top: 24px;
}

.metric-card em {
  display: block;
  width: fit-content;
  max-width: 100%;
  line-height: 1.25;
}

.hero-float {
  position: static;
  width: auto;
  max-width: none;
  min-height: 78px;
  margin: 0;
  animation: none;
}

.hero-float-ad,
.hero-float-lead,
.hero-float-tag,
.hero-float-chip,
.hero-float-message {
  inset: auto;
}

.hero-float-chip {
  display: grid;
  place-items: center;
  font-size: 14px;
}

.featured-result {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.result-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.metric-tile {
  min-width: 0;
  padding: 22px;
  overflow: hidden;
}

.metric-tile strong,
.featured-result .metric-tile:not(.primary) strong {
  max-width: 100%;
  font-size: clamp(2.15rem, 3.1vw, 3.45rem);
  line-height: 1.02;
  white-space: nowrap;
}

.metric-tile.primary strong {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
}

.metric-tile span,
.metric-tile small {
  overflow-wrap: normal;
}

.featured-result .metric-tile small {
  max-width: 100%;
  font-size: 14px;
}

.compare-grid {
  align-items: stretch;
}

.compare-grid article {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px;
}

.compare-grid ul {
  margin-bottom: 0;
}

.compare-muted {
  background: rgba(255, 255, 255, 0.11);
}

.compare-muted li {
  color: rgba(234, 248, 255, 0.86);
}

@media (max-width: 1180px) {
  .hero-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-float {
    width: auto;
    max-width: none;
  }
}

@media (max-width: 980px) {
  .featured-result {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-visual,
  .dash-grid,
  .result-metrics,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    max-width: 100%;
  }

  .metric-card.tall {
    grid-row: auto;
  }

  .metric-card strong,
  .metric-card.tall strong,
  .metric-tile strong,
  .featured-result .metric-tile:not(.primary) strong {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
    white-space: normal;
  }

  .metric-tile.primary strong {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .hero-float {
    min-height: 0;
  }
}

/* Alignment lock: stable production layout */
.hero {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.hero-copy,
.hero-visual,
.dashboard-shell,
.dash-grid,
.metric-card,
.featured-result,
.result-copy,
.result-metrics,
.metric-tile,
.comparison,
.compare-grid,
.compare-grid article {
  max-width: 100%;
  min-width: 0;
}

.hero-visual {
  display: block;
  padding: 0;
}

.hero-float {
  display: none;
}

.dashboard-shell {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 28px;
}

.dash-topbar {
  display: flex;
  min-height: 58px;
  padding: 16px 20px;
}

.dash-topbar p {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 12px;
  padding: 16px;
}

.metric-card,
.metric-card.tall {
  min-height: 0;
  padding: 18px;
  border-radius: 20px;
}

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

.metric-card span {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.3;
}

.metric-card strong,
.metric-card.tall strong {
  display: block;
  max-width: 100%;
  font-size: clamp(2rem, 2.75vw, 2.7rem);
  line-height: 1;
  white-space: nowrap;
}

.metric-card.tall strong {
  font-size: clamp(2.15rem, 3vw, 2.9rem);
}

.chart-bars {
  height: 160px;
  margin-top: 20px;
  padding: 14px;
}

.metric-card em {
  display: block;
  width: 100%;
  margin-top: 14px;
  white-space: normal;
}

.featured-result {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3vw, 34px);
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
}

.metric-tile,
.metric-tile.primary {
  min-height: 0;
  padding: clamp(18px, 2vw, 24px);
  overflow: hidden;
}

.metric-tile strong,
.metric-tile.primary strong,
.featured-result .metric-tile:not(.primary) strong {
  display: block;
  max-width: 100%;
  font-size: clamp(2rem, 2.9vw, 3.15rem);
  line-height: 1.04;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}

.metric-tile.primary strong {
  font-size: clamp(3rem, 5.6vw, 4.9rem);
}

.metric-tile span,
.metric-tile small {
  display: block;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.4;
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.compare-grid article {
  padding: clamp(22px, 2.3vw, 30px);
}

.compare-grid li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.compare-strong li {
  color: #334155;
}

@media (max-width: 1100px) {
  .hero,
  .featured-result {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    max-width: 620px;
  }

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

@media (max-width: 640px) {
  .dashboard-shell {
    border-radius: 22px;
  }

  .dash-topbar p {
    white-space: normal;
  }

  .dash-grid,
  .result-metrics,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .metric-card.tall {
    grid-row: auto;
  }

  .metric-card strong,
  .metric-card.tall strong {
    font-size: clamp(2.25rem, 12vw, 3.05rem);
  }

  .metric-tile strong,
  .featured-result .metric-tile:not(.primary) strong {
    font-size: clamp(2.25rem, 11vw, 3.05rem);
  }

  .metric-tile.primary strong {
    font-size: clamp(3.1rem, 18vw, 5rem);
  }
}

/* Reporting metrics lock */
.dashboard-proof {
  overflow: hidden;
}

.ad-snapshot,
.snapshot-metrics,
.snapshot-metrics div {
  min-width: 0;
}

.snapshot-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(18px, 3vw, 28px) 28px;
}

.snapshot-metrics div {
  min-height: 132px;
  padding: clamp(18px, 2.3vw, 24px);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.snapshot-metrics strong,
.snapshot-metrics div:last-child strong {
  display: block;
  max-width: 100%;
  color: #07111f;
  font-size: clamp(2.35rem, 4.2vw, 3.45rem);
  line-height: 0.98;
  text-align: center;
  white-space: nowrap;
}

.snapshot-metrics span {
  max-width: 14ch;
  margin-inline: auto;
  color: #334155;
  font-size: clamp(0.82rem, 1.35vw, 1rem);
  line-height: 1.25;
  text-align: center;
}

@media (min-width: 1280px) {
  .snapshot-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .snapshot-metrics strong,
  .snapshot-metrics div:last-child strong {
    font-size: clamp(2.3rem, 2.8vw, 3.15rem);
  }
}

@media (max-width: 520px) {
  .snapshot-metrics {
    grid-template-columns: 1fr;
  }
}
