:root {
  --font-body: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter Tight", "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  --ink: #11182f;
  --muted: #67708f;
  --line: #e8e9f7;
  --violet: #6b30f8;
  --violet-2: #9d6cff;
  --navy: #030618;
  --panel: #0a0f2f;
  --soft: #f7f6ff;
  --white: #ffffff;
  --green: #31d78b;
  --red: #ff6a7a;
  --shadow: 0 18px 50px rgba(31, 24, 91, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-body);
}
main .section:not(.hero) h2,
main .section:not(.hero) h3,
main .section:not(.hero) h4,
main .section:not(.hero) p,
main .section:not(.hero) li,
main .section:not(.hero) blockquote {
  font-family: var(--font-body);
}

.shell {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}
.narrow { max-width: 760px; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #010513;
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(128, 78, 255, 0.5);
  border-inline: 1px solid rgba(128, 78, 255, 0.28);
  border-bottom: 0;
}
.nav {
  height: 70px;
  width: min(1360px, calc(100% - 56px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: var(--white);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}
.brand em { color: var(--violet-2); font-style: normal; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 20px;
  height: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 58% 36%, transparent 0 5px, #050918 6px 10px, transparent 11px),
    linear-gradient(160deg, #6733ff 0 55%, #9f5bff 56% 100%);
  border-radius: 12px 12px 12px 2px;
  font-size: 0;
  position: relative;
}
.brand-mark::after {
  content: "P";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  justify-self: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}
.nav-links a {
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #8c49ff, #6725df);
  box-shadow: 0 14px 28px rgba(88, 41, 216, 0.34);
}
.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.56);
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.btn-outline {
  color: var(--violet);
  border-color: #cfc3ff;
  background: var(--white);
}
.btn-small {
  min-height: 52px;
  padding-inline: 26px 23px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-transform: none;
  gap: 16px;
}
.btn-arrow {
  width: 23px;
  height: 23px;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}
.btn-arrow::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 10px;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.btn-arrow::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero {
  padding: 40px 0 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 18%, rgba(107,48,248,0.22), transparent 27%),
    linear-gradient(180deg, #010513 0%, #020713 100%);
  border-inline: 1px solid rgba(128, 78, 255, 0.28);
  border-bottom: 1px solid rgba(128, 78, 255, 0.26);
}
.hero > .shell {
  width: min(1360px, calc(100% - 56px));
}
.hero-grid {
  display: grid;
  grid-template-columns: 650px 620px;
  align-items: center;
  justify-content: center;
  gap: 72px;
}
.hero-copy {
  padding-left: 0;
  width: 650px;
  max-width: 100%;
}
.eyebrow, .section-kicker, .mini-label {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero .eyebrow {
  color: #9855ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 0 14px rgba(152,85,255,0.24);
}
.hero-title, .hero-subtitle, .section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}
.hero-title {
  max-width: 660px;
  font-size: 63px;
  line-height: 1.02;
  color: #f8f8f5;
  text-shadow: 0 2px 0 rgba(255,255,255,0.08), 0 0 14px rgba(255,255,255,0.1);
}
.hero-subtitle {
  max-width: 680px;
  margin-top: 29px;
  font-size: 61px;
  line-height: 1.02;
  color: #f8f8f5;
  text-shadow: 0 2px 0 rgba(255,255,255,0.08), 0 0 14px rgba(255,255,255,0.1);
}
.hero-subtitle span {
  color: #9855ff;
  text-shadow: 0 0 22px rgba(152,85,255,0.24);
}
.section h2 span, .faq h2 span, .proof h2 span, .video h2 span { color: var(--violet); }
.hero-blurb {
  position: relative;
  max-width: 610px;
  margin: 31px 0 0;
  padding-left: 70px;
  color: #f8f8f5;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.34;
}
.rocket-icon {
  position: absolute;
  left: 1px;
  top: 2px;
  width: 46px;
  height: 46px;
  fill: none;
  stroke: #9855ff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-blurb strong { color: #9855ff; font-weight: 700; }
.hero-actions { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 40px; }
.hero-actions .btn {
  min-width: 257px;
  min-height: 64px;
  border-radius: 8px;
  gap: 18px;
  font-size: 18px;
  font-weight: 700;
}
.hero-actions .btn-ghost {
  min-width: 286px;
  border-color: rgba(248,248,245,0.58);
}
.hero-actions .btn-arrow {
  width: 20px;
  height: 20px;
}
.hero-actions .btn-arrow::before {
  top: 9px;
  width: 18px;
}
.hero-actions .btn-arrow::after {
  top: 5px;
  width: 8px;
  height: 8px;
}
.score-card {
  width: 100%;
  min-height: 652px;
  padding: 44px 46px 42px;
  border: 1px solid rgba(151,85,255,0.55);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(107,48,248,0.28), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(52,26,112,0.16), transparent 34%),
    linear-gradient(180deg, rgba(8, 10, 31, 0.98), rgba(3, 7, 20, 0.98));
  box-shadow: 0 28px 80px rgba(0,0,0,0.38), inset 0 0 56px rgba(107,48,248,0.08);
}
.card-top, .score-row, .bars div, .platform-strip, .logos, .callout, .metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-top { color: #ffffff; font-size: 24px; font-weight: 900; }
.chip, .badge {
  padding: 10px 12px;
  border-radius: 12px;
  color: #dcccff;
  background: rgba(120,91,196,0.28);
  font-size: 15px;
  font-weight: 900;
}
.score-row {
  justify-content: flex-start;
  gap: 36px;
  margin: 34px 0 27px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.score-row strong { color: #61df68; font-size: 38px; }
.score-row p { margin: 14px 0 0; color: #ffffff; font-size: 20px; }
.score-ring {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 73%, rgba(188,104,255,0.5), transparent 0 10%, transparent 11%),
    conic-gradient(from -18deg, #b875ff 0 78%, #242842 78% 100%);
  position: relative;
}
.score-ring::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: inherit;
  background: var(--panel);
}
.score-ring span { position: relative; font-size: 54px; font-weight: 900; }
.bars { display: grid; gap: 0; }
.bars div {
  display: grid;
  grid-template-columns: 230px minmax(160px, 1fr) 42px;
  gap: 24px;
  min-height: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}
.bars div:last-child { border-bottom: 0; }
.bars div span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.bars svg {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  fill: none;
  stroke: #9855ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bars i {
  height: 6px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, #a850ff, #b36bff) 0 0 / var(--w) 100% no-repeat,
    rgba(255,255,255,0.1);
  width: 100%;
  max-width: 238px;
  align-self: center;
}
.bars b {
  font-size: 24px;
  font-weight: 800;
  text-align: right;
}
.platform-strip {
  margin-top: 42px;
  padding-top: 31px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.11);
  color: #ffffff;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
}
.platform-strip > span {
  color: rgba(248,248,245,0.78);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}
.logos {
  width: 100%;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0;
  color: #ffffff;
}
.logos b {
  min-height: 61px;
  padding: 0 46px;
  display: inline-flex;
  align-items: center;
  gap: 19px;
  border-left: 1px solid rgba(248,248,245,0.28);
  font-size: 29px;
  font-weight: 500;
  line-height: 1.05;
}
.logos b:first-child { border-left: 0; }
.logos svg,
.logos img {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.logos img {
  border-radius: 12px;
}

.section {
  padding: 76px 0;
  scroll-margin-top: 86px;
}
.section h2 {
  font-size: 48px;
  line-height: 1.06;
  color: #071129;
}
.section p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}
.problem, .steps, .pricing, .faq { background: linear-gradient(180deg, #fbfbff, #ffffff); }
.problem .narrow {
  max-width: 940px;
}
.problem .section-kicker {
  margin-bottom: 14px;
  color: #3c4d86;
  font-size: 13px;
  font-weight: 800;
}
.problem h2 {
  font-size: 50px;
  line-height: 1.05;
  text-wrap: balance;
}
.problem .narrow > p:not(.section-kicker) {
  max-width: 880px;
  margin: 22px auto 0;
  color: #4f5d86;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}
.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 34px;
}
.compare-card, .price-card, .chart-card, .step-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.compare-card { padding: 32px 36px; }
.compare-card.dark {
  color: var(--white);
  border-color: rgba(157,108,255,0.28);
  background: linear-gradient(180deg, #0b1235, #05091f);
}
.compare-card h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}
.bad-list, .good-list, .price-card ul, .step-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.bad-list li, .good-list li, .price-card li, .step-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.compare-card li {
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.45;
}
.compare-card.dark li { color: rgba(255,255,255,0.84); }
.bad-list li::before, .good-list li::before, .price-card li::before, .step-grid li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}
.compare-card li::before {
  top: -1px;
  font-size: 17px;
}
.bad-list li::before { content: "x"; color: var(--red); }
.good-list li::before, .price-card li::before, .step-grid li::before { content: "✓"; color: var(--violet); }
.vs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  border: 3px solid #ffffff;
  box-shadow:
    0 0 0 1px rgba(107, 48, 248, 0.22),
    0 10px 26px rgba(17, 24, 47, 0.22);
  font-weight: 900;
  font-size: 12px;
  z-index: 2;
}
.callout {
  margin-top: 28px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  gap: 18px;
}
.callout strong { font-size: 20px; }
.callout p { margin: 4px 0 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 58px;
}
.network-panel, .entity-card, .split-dark {
  border-radius: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 20%, rgba(106,48,248,0.5), transparent 35%),
    linear-gradient(180deg, #0a1037, #040719);
  box-shadow: var(--shadow);
  border: 1px solid rgba(157,108,255,0.28);
}
.network-panel { padding: 30px; min-height: 430px; }
.network-panel h3 { margin: 0; font-size: 32px; line-height: 1.08; }
.network {
  position: relative;
  min-height: 300px;
  margin-top: 20px;
  background-image:
    linear-gradient(rgba(157,108,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,108,255,0.18) 1px, transparent 1px);
  background-size: 42px 42px;
}
.node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 82px;
  min-height: 42px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(157,108,255,0.65);
  background: rgba(6, 11, 38, 0.9);
  font-size: 11px;
  font-weight: 900;
}
.node.main {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  height: 82px;
  border-radius: 14px;
  background: linear-gradient(135deg, #602cf2, #1c164d);
}
.n1 { left: 5%; top: 24%; } .n2 { right: 10%; top: 18%; } .n3 { right: 3%; bottom: 20%; }
.n4 { left: 11%; bottom: 14%; } .n5 { left: 42%; top: 8%; } .n6 { left: 35%; bottom: 4%; }
.section-copy h2 { font-size: 42px; }
blockquote {
  margin: 24px 0 0;
  padding: 20px;
  border-left: 4px solid var(--violet);
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid #dfe3ef;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(17, 24, 47, 0.08);
}
.stats-grid div {
  min-height: 214px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 82px 1fr;
  grid-template-rows: 56px minmax(90px, auto) 22px;
  column-gap: 24px;
  align-content: start;
  align-items: start;
  border-right: 1px solid #dfe3ef;
  border-bottom: 1px solid #dfe3ef;
  background: rgba(255,255,255,0.78);
}
.stats-grid div:nth-child(3n) { border-right: 0; }
.stats-grid div:nth-child(n+4) { border-bottom: 0; }
.stat-icon {
  grid-row: 1 / span 3;
  width: 66px;
  height: 66px;
  padding: 17px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.22) 34%, transparent 35%),
    linear-gradient(180deg, rgba(242,238,255,0.98), rgba(230,222,255,0.9));
  fill: none;
  stroke: #4d24df;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 12px 28px rgba(107, 48, 248, 0.12);
}
.stat-icon-fill {
  fill: #4d24df;
  stroke: #4d24df;
}
.stat-bars {
  stroke-width: 4;
}
.stats-grid strong {
  grid-column: 2;
  grid-row: 1;
  display: block;
  color: #4d24df;
  font-family: var(--font-body);
  font-size: 58px;
  font-weight: 800;
  line-height: 0.95;
}
.stats-grid span {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  color: #071129;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.entity-card { padding: 22px; }
.entity-orbit {
  position: relative;
  aspect-ratio: 1.48;
  min-height: 270px;
}
.entity-orbit span {
  position: absolute;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(157,108,255,0.58);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.86);
  font-size: 11px;
  font-weight: 900;
}
.entity-orbit::before, .entity-orbit::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(157,108,255,0.25);
  border-radius: 50%;
}
.entity-orbit::after { inset: 27%; }
.entity-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 104px;
  height: 76px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #6a30f8, #211454) !important;
}
.entity-orbit span:nth-child(2) { left: 42%; top: 2%; }
.entity-orbit span:nth-child(3) { right: 5%; top: 30%; }
.entity-orbit span:nth-child(4) { right: 18%; bottom: 7%; }
.entity-orbit span:nth-child(5) { left: 14%; bottom: 8%; }
.entity-orbit span:nth-child(6) { left: 2%; top: 35%; }
.entity-orbit span:nth-child(7) { left: 22%; top: 12%; }
.graph > .narrow {
  margin-bottom: 44px;
}

.step-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
.process-list {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}
.process-list article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-items: start;
  padding: 28px 34px;
  border: 1px solid #e4e6f0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 47, 0.08);
}
.process-list article > span {
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  line-height: 0.95;
  text-shadow: 0 4px 12px rgba(107, 48, 248, 0.16);
}
.process-label {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 4px 8px;
  border-radius: 5px;
  color: #3f18e8 !important;
  background: #eee9ff;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-transform: uppercase;
}
.process-list h3 {
  margin: 0 0 20px;
  color: #071129;
  font-size: 24px;
  line-height: 1.15;
}
.process-list p:not(.process-label) {
  max-width: 860px;
  margin: 0;
  color: #1c2540;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}
.process-list blockquote {
  margin: 24px 0 0;
  padding: 16px 18px 16px 48px;
  border: 0;
  border-left: 3px solid var(--violet);
  border-radius: 7px;
  background: #f4f0ff;
  color: #071129;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
}
.process-list blockquote::before {
  content: "→";
  position: absolute;
  left: 18px;
  top: 12px;
  color: #3f18e8;
  font-size: 20px;
  font-weight: 800;
}
.steps .narrow {
  max-width: 980px;
}
.steps h2,
.pricing h2 {
  font-size: 52px;
  line-height: 1.02;
  text-wrap: balance;
}
.pricing .narrow {
  max-width: 980px;
}
.steps-intro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #101730 !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}
.steps-intro::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #3a16d7;
  background: #9e87ff;
  box-shadow: inset 0 0 0 1px rgba(58, 22, 215, 0.38);
  font-size: 12px;
  font-weight: 900;
}
.step-grid {
  gap: 20px;
  align-items: stretch;
}
.plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1400px, calc(100% - 56px));
}
.step-grid article {
  display: grid;
  grid-template-rows: auto auto minmax(214px, auto) auto minmax(178px, auto) minmax(116px, auto) auto;
  min-height: 660px;
  padding: 28px;
  border-color: #e6e7f0;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(17, 24, 47, 0.08);
}
.plan-grid article {
  grid-template-rows: 88px 68px 250px 58px 204px 132px 62px;
  min-height: 862px;
}
.step-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.step-grid .step-head span {
  display: block;
  color: var(--violet);
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 900;
  line-height: 0.88;
  text-shadow: 0 4px 12px rgba(107, 48, 248, 0.18);
}
.step-grid h3 {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 4px 8px;
  border-radius: 5px;
  color: #3f18e8;
  background: #eee9ff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.step-grid small {
  display: block;
  color: #071129;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.step-icon {
  width: 70px;
  height: 70px;
  display: grid;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.22) 34%, transparent 35%),
    linear-gradient(180deg, rgba(242,238,255,0.98), rgba(230,222,255,0.9)),
    #eee9ff;
  border: 1px solid rgba(107, 48, 248, 0.08);
  padding: 17px;
  fill: none;
  stroke: var(--violet);
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 10px 28px rgba(107, 48, 248, 0.12);
  filter: drop-shadow(0 6px 10px rgba(107, 48, 248, 0.2));
}
.step-grid h4 {
  margin: 0 0 12px;
  color: #071129;
  font-size: 24px;
  line-height: 1.18;
}
.step-grid article > p {
  margin: 0 0 12px;
  color: #11182f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.58;
}
.step-grid h4 + p {
  margin-bottom: 18px;
}
.plan-grid article > p:nth-of-type(2) {
  margin: 0;
  align-self: start;
  line-height: 1.35;
}
.step-grid article > p strong {
  color: #3f18e8;
  font-weight: 800;
}
.step-grid ul {
  gap: 7px;
  margin: 0 0 18px;
  align-self: start;
}
.step-grid li {
  padding-left: 28px;
  color: #11182f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.38;
}
.step-grid li::before {
  color: #3f18e8;
}
.step-grid blockquote {
  margin: 0;
  padding: 16px 18px 16px 54px;
  border: 0;
  border-radius: 8px;
  color: #071129;
  background: linear-gradient(135deg, #f4f0ff, #eee9ff);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  align-self: start;
}
.step-grid blockquote::before {
  content: "→";
  position: absolute;
  left: 20px;
  top: 14px;
  color: #3f18e8;
  font-size: 24px;
  font-weight: 800;
}
.plan-grid .btn {
  width: 100%;
  margin-top: 18px;
  align-self: end;
  min-height: 44px;
}
.plan-grid article:nth-child(3) .step-icon {
  stroke-width: 2.35;
}
main .section:not(.hero) :is(h2, h3, h4, p, li, blockquote, button, a.btn) {
  font-family: var(--font-body);
}
main .section:not(.hero) h2 {
  font-weight: 800;
  letter-spacing: 0;
}
main .section:not(.hero) h3,
main .section:not(.hero) h4 {
  font-weight: 800;
  letter-spacing: 0;
}
main .section:not(.hero) p,
main .section:not(.hero) li,
main .section:not(.hero) blockquote {
  font-weight: 500;
}
main .proof .case-note li {
  font-weight: 800;
}
.section-kicker,
.process-label,
.step-grid h3,
.step-grid small,
.step-grid .btn {
  font-family: var(--font-body);
}
.section-kicker {
  font-weight: 800 !important;
}
.plan-flow {
  margin-top: 36px;
  text-align: center;
}
.plan-flow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  color: #071129;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.plan-flow-row span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.plan-flow-row svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--violet);
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.plan-flow-row i {
  color: var(--violet);
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
}
.plan-flow p {
  margin: 22px auto 0;
  max-width: 780px;
  color: #101730;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}
.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 900;
}
.flow span {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), transparent);
}

.split-dark {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.08fr);
  gap: 34px 52px;
  padding: 46px 54px;
  align-items: start;
}
.split-dark h2, .split-dark p { color: var(--white); }
.split-dark p { color: rgba(255,255,255,0.72); }
.engine-heading {
  align-self: start;
}
.engine-heading .section-kicker {
  color: var(--violet-2);
}
.engine-heading h2 {
  max-width: 570px;
  font-size: 40px;
  line-height: 1.05;
}
.engine-copy {
  display: grid;
  gap: 18px;
}
.engine-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
}
.engine-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.engine-visual span {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, #6b30f8, #1a1451);
  font-size: 18px;
  font-weight: 900;
}
.engine-visual i {
  position: absolute;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(157,108,255,0.6);
  background: rgba(255,255,255,0.08);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}
.engine-visual i:nth-child(2) { left: 5%; top: 18%; }
.engine-visual i:nth-child(3) { right: 6%; top: 25%; }
.engine-visual i:nth-child(4) { right: 8%; bottom: 18%; }
.theory {
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px 22px;
  border-radius: 8px;
  background: rgba(107,48,248,0.2);
}
.theory span { color: rgba(255,255,255,0.72); line-height: 1.6; }

.chart-stack {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}
.chart-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  padding: 24px;
}
.case-site-placeholder {
  position: relative;
  align-self: start;
  aspect-ratio: 1.22;
  width: 100%;
  min-height: 248px;
  border: 1px solid #dfe3f1;
  border-radius: 8px;
  background: #fbfbff;
  box-shadow: 0 16px 36px rgba(17, 24, 47, 0.08);
  overflow: hidden;
}
.case-site-placeholder img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  transform: none;
}
.chart-card h3 { margin: 0 0 20px; font-size: 20px; }
.result-label.good {
  margin-top: 24px;
}
.result-label.good::before {
  content: "✓";
  color: var(--violet);
  font-weight: 900;
}
.case-note {
  max-width: 300px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--violet);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}
.case-note li {
  position: relative;
  margin: 0 0 9px;
  padding-left: 22px;
  font-weight: 800;
}
.case-note li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--violet);
  font-weight: 900;
}
.metric-row { justify-content: flex-start; gap: 20px; }
.metric-row b {
  min-width: 84px;
  padding: 14px;
  border-radius: 7px;
  color: var(--violet);
  background: var(--soft);
  font-size: 24px;
}
.chart {
  height: 190px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px) 0 0/100% 25%,
    #fbfbff;
}
.chart span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #9d6cff, #6b30f8);
}
.growth span:nth-child(1) { height: 18%; } .growth span:nth-child(2) { height: 24%; }
.growth span:nth-child(3) { height: 34%; } .growth span:nth-child(4) { height: 52%; }
.growth span:nth-child(5) { height: 72%; } .growth span:nth-child(6) { height: 90%; }

.pricing-grid { align-items: stretch; }
.price-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  color: var(--white);
  border-color: rgba(157,108,255,0.38);
  background: linear-gradient(180deg, #101746, #070b24);
  transform: translateY(-12px);
}
.price-card h3 { margin: 0; font-size: 23px; }
.price-card p, .price-card li { color: var(--muted); }
.featured p, .featured li { color: rgba(255,255,255,0.76); }
.price {
  margin: 26px 0;
  font-size: 42px;
  font-weight: 900;
}
.price span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.featured .price span { color: rgba(255,255,255,0.58); }
.price-card .btn { margin-top: auto; width: 100%; }
.badge { position: absolute; right: 22px; top: 22px; }

.video-frame {
  position: relative;
  min-height: 330px;
  margin-top: 34px;
  padding: 42px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 28px;
  color: var(--white);
  border-radius: 10px;
  background:
    radial-gradient(circle at 72% 42%, rgba(157,108,255,0.52), transparent 24%),
    linear-gradient(135deg, #070b24, #100948 58%, #050719);
  overflow: hidden;
}
.play {
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  background: var(--violet);
  position: relative;
}
.play::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 23px;
  border-left: 20px solid var(--white);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}
.video-frame h3 {
  max-width: 520px;
  margin: 0;
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
}
.video-frame p { color: rgba(255,255,255,0.72); }
.video-stats {
  display: grid;
  grid-template-columns: auto auto;
  gap: 6px 12px;
  align-items: center;
}
.video-stats b { font-size: 42px; }
.video-stats span { color: rgba(255,255,255,0.62); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.mini-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.mini-steps div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(31,24,91,0.07);
}
.mini-steps b { color: var(--violet); font-size: 20px; }
.mini-steps span { display: block; margin-top: 6px; color: var(--muted); font-weight: 800; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 34px;
  max-width: 900px;
}
.faq-card {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 9px 24px rgba(31,24,91,0.06);
}
.faq-item {
  min-height: 70px;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
}
.faq-item span::before { content: "+"; color: var(--violet); font-size: 22px; }
.faq-item.active span::before { content: "-"; }
.faq-answer {
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
}
.faq-answer p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.7;
}
.contact-strip {
  margin-top: 32px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-strip strong { font-size: 20px; }
.contact-strip p { margin: 4px 0 0; }

.footer {
  padding: 58px 0;
  color: var(--white);
  background: #06102d;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 44px;
}
.footer p, .footer a {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  line-height: 1.7;
}
.footer .brand {
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.footer .brand em {
  color: var(--violet-2);
  font-style: normal;
}
.footer h4 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-weight: 800;
}
.footer a { display: block; margin: 8px 0; }
.footer-newsletter input {
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 14px;
}
.footer-newsletter .btn { margin-top: 10px; width: 100%; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* --- Stat sources --- */
.stats-grid div { position: relative; }
.stats-grid .stat-source {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  display: block;
  margin-top: 0;
  color: #5e6790 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: none;
  letter-spacing: 0;
}

/* --- Graph badge + counters --- */
.graph-badge {
  display: inline-block;
  margin-left: 10px;
  color: var(--violet-2);
  font-size: 12px;
  font-weight: 900;
}
.counter-grid {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.counter-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(157,108,255,0.22);
}
.counter-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}
.counter-card b { font-size: 20px; color: var(--white); }
.counter-card span { display: block; color: rgba(255,255,255,0.68); font-size: 12px; font-weight: 700; }
.icon-violet { background: linear-gradient(135deg, #8c49ff, #5a24d6); }
.icon-blue { background: linear-gradient(135deg, #4f7bff, #2a4fc7); }
.icon-green { background: linear-gradient(135deg, #34cf8a, #1a9c62); }
.icon-orange { background: linear-gradient(135deg, #ffab40, #d97a1d); }

/* --- Mini benefits strip (graph -> steps bridge) --- */
.mini-bridge {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.mini-bridge-inline {
  width: 100%;
  margin-top: 22px;
  padding-top: 0;
  border-top: 0;
}
.mini-bridge-inline .mini-bridge-cols {
  grid-template-columns: 1fr;
  gap: 12px;
}
.mini-bridge-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mini-bridge-cols div {
  position: relative;
  padding-left: 22px;
  color: #071129;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.mini-bridge-inline .mini-bridge-cols div {
  font-size: 14px;
  font-weight: 700;
}
.mini-bridge-cols div::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--violet);
  font-size: 16px;
  font-weight: 900;
}
.mini-bridge-note {
  display: none;
  padding-left: 18px;
  border-left: 3px solid var(--violet);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
}

/* --- Chart meta strip --- */
.chart-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.chart-meta div {
  padding: 10px 12px;
  border-radius: 7px;
  background: var(--soft);
}
.chart-meta div.active { background: var(--violet); color: var(--white); }
.chart-card .chart-meta div:nth-child(1) {
  color: var(--white);
  background: #4285f4;
}
.chart-card .chart-meta div:nth-child(2) {
  color: var(--white);
  background: #5b32b4;
}
.chart-meta span { display: block; font-size: 11px; font-weight: 700; opacity: 0.72; text-transform: uppercase; }
.chart-meta b { display: block; font-size: 20px; font-weight: 900; }
.chart-date { margin-top: 10px; color: var(--muted); font-size: 12px; font-weight: 700; }
.result-label { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 800; margin-top: 6px; }
.result-label.bad { color: var(--red); }
.result-label.good { color: var(--violet); }
.search-console-style {
  position: relative;
  height: 210px;
  align-items: stretch;
  gap: 0;
  padding: 24px 22px 30px;
}
.search-console-style::before,
.search-console-style::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #4285f4, #5b32b4 52%, #ef7600);
}
.search-console-style::before {
  bottom: 54px;
  transform: skewY(-9deg);
}
.search-console-style::after {
  bottom: 92px;
  opacity: 0.9;
  transform: skewY(-4deg);
}
.search-console-style span {
  align-self: end;
  margin-inline: 5px;
  background: linear-gradient(180deg, #4285f4, #6b30f8);
}

/* --- Live case study grid --- */
.case-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) 1fr;
  gap: 14px;
  margin-top: 30px;
  align-items: stretch;
}
.case-grid > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 9px 24px rgba(31,24,91,0.06);
}
.case-lead p { margin: 10px 0 0; font-size: 13px; }
.case-stat { text-align: center; }
.case-stat b { display: block; font-size: 32px; color: var(--violet); }
.case-stat strong {
  display: block;
  margin-top: 6px;
  color: #071129;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.case-stat span {
  display: block;
  max-width: 150px;
  margin: 8px auto 0;
  color: #5f6a8e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}
.case-cta { text-align: center; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.case-cta .btn { width: 100%; }
.case-cta span {
  color: #5f6a8e;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
}
.own-strip {
  margin-top: 28px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 8px;
  background: var(--soft);
}
.own-strip strong { display: block; }
.own-strip p { margin: 4px 0 0; }

@media (max-width: 860px) {
  .mini-bridge, .case-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1400px) {
  .nav {
    display: flex;
    width: min(1180px, calc(100% - 56px));
    justify-content: space-between;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .score-card {
    max-width: 680px;
  }
  .logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 0;
  }
  .logos b {
    width: auto;
    padding: 0 28px;
    border-left: 0;
  }
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .plan-grid article {
    grid-template-rows: 88px 58px 180px 48px 166px 116px 62px;
    min-height: 718px;
  }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-grid, .two-col, .split-dark, .chart-card {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    min-width: 0;
  }
  .hero { padding-top: 46px; }
  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 47px; }
  .section h2, .section-copy h2 { font-size: 36px; }
  .engine-heading h2 { font-size: 36px; }
  .problem h2 { font-size: 40px; }
  .problem .narrow > p:not(.section-kicker) { font-size: 16px; }
  .steps h2, .pricing h2 { font-size: 40px; }
  .steps-intro { font-size: 15px !important; }
  .video-frame h3 { font-size: 40px; }
  .platform-strip, .callout, .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-grid { gap: 42px; }
  .hero-copy { padding-left: 0; width: 100%; min-width: 0; }
  .score-card { max-width: 680px; min-width: 0; overflow: hidden; }
  .logos {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 0;
  }
  .logos b {
    width: 50%;
    padding: 0 20px 0 0;
    border-left: 0;
    font-size: 24px;
  }
  .compare-grid, .step-grid, .pricing-grid, .stats-grid, .faq-grid, .mini-steps, .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid div {
    grid-template-columns: 70px 1fr;
    border-right: 0;
  }
  .stats-grid div:nth-child(n+4) {
    border-bottom: 1px solid #dfe3ef;
  }
  .stats-grid div:last-child {
    border-bottom: 0;
  }
  .compare-card { padding: 28px; }
  .entity-card {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .step-grid article,
  .plan-grid article {
    grid-template-rows: auto;
    min-height: auto;
  }
  .process-list article {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .plan-flow-row {
    font-size: 21px;
    gap: 16px;
  }
  .vs { position: static; transform: none; margin: -8px auto; }
  .price-card.featured { transform: none; }
  .video-frame { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 1120px); }
  .site-header .btn { display: none; }
  .hero-title { font-size: 37px; }
  .hero-subtitle { font-size: 36px; }
  .section h2, .section-copy h2 { font-size: 30px; }
  .engine-heading h2 { font-size: 30px; }
  .problem h2 { font-size: 32px; }
  .steps h2, .pricing h2 { font-size: 34px; }
  .steps-intro {
    align-items: flex-start;
    text-align: left;
  }
  .step-head {
    grid-template-columns: auto 1fr;
  }
  .step-icon {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 58px;
    height: 58px;
    padding: 16px;
  }
  .step-grid .step-head span { font-size: 52px; }
  .step-grid h4 { font-size: 22px; }
  .process-list article > span { font-size: 42px; }
  .process-list h3 { font-size: 22px; }
  .plan-flow-row {
    justify-content: flex-start;
    font-size: 20px;
  }
  .plan-flow-row i {
    display: none;
  }
  .plan-flow-row span {
    width: calc(50% - 8px);
  }
  .plan-flow p {
    text-align: left;
    font-size: 15px;
  }
  .compare-card h3 { font-size: 19px; }
  .compare-card li { font-size: 14px; }
  .video-frame h3 { font-size: 32px; }
  .section { padding: 56px 0; }
  .score-card, .split-dark, .video-frame { padding: 22px; }
  .score-card { min-height: auto; }
  .score-row { gap: 18px; }
  .score-ring {
    width: 112px;
    height: 112px;
  }
  .score-ring span { font-size: 38px; }
  .bars div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 0;
  }
  .bars b { text-align: left; }
  .logos b {
    width: 100%;
    min-height: 52px;
    font-size: 21px;
  }
  .logos svg,
  .logos img {
    width: 42px;
    height: 42px;
  }
  .network-panel { min-height: 380px; padding: 22px; }
  .stats-grid div {
    min-height: auto;
    padding: 22px;
  }
  .stat-icon {
    width: 56px;
    height: 56px;
    padding: 14px;
  }
  .stats-grid strong {
    font-size: 46px;
  }
  .network-panel h3 { font-size: 26px; }
  .node { min-width: 70px; font-size: 10px; }
  .entity-orbit { min-height: 300px; }
}
