:root {
  --ink: #121326;
  --ink-soft: #555970;
  --indigo: #4f46e5;
  --indigo-deep: #3730a3;
  --indigo-pale: #eef2ff;
  --green: #059669;
  --amber: #d97706;
  --line: #e7e8ef;
  --paper: #ffffff;
  --wash: #f7f7fb;
  --shell: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "SF Pro Display", "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(231, 232, 239, .75);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(20px);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  color: var(--indigo);
  filter: drop-shadow(0 8px 14px rgba(79, 70, 229, .18));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: -.025em;
}

.brand-copy small {
  margin-top: 4px;
  color: #7c8093;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 70px;
}

.desktop-nav a,
.login-link {
  position: relative;
  color: #55596b;
  font-size: 14px;
  font-weight: 560;
  transition: color .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--indigo);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.desktop-nav a:hover,
.login-link:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--indigo);
  border-radius: 13px;
  background: var(--indigo);
  box-shadow: 0 10px 28px rgba(79, 70, 229, .23);
  color: white;
  font-size: 14px;
  font-weight: 670;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  transition: transform .2s ease;
}

.button:hover {
  background: var(--indigo-deep);
  box-shadow: 0 14px 34px rgba(79, 70, 229, .3);
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button:focus-visible,
.desktop-nav a:focus-visible,
.login-link:focus-visible,
.brand:focus-visible,
.text-link:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid rgba(79, 70, 229, .25);
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 11px;
  box-shadow: none;
  font-size: 13px;
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
  border-radius: 15px;
  font-size: 15px;
}

.menu-button {
  width: 43px;
  height: 43px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.menu-button span {
  width: 18px;
  height: 1.5px;
  border-radius: 99px;
  background: var(--ink);
  transition: transform .2s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
  background:
    linear-gradient(rgba(79, 70, 229, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, .028) 1px, transparent 1px),
    linear-gradient(180deg, #fbfbff 0%, #fff 88%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  background: linear-gradient(transparent, white);
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: 90px;
  left: -190px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(99, 102, 241, .12), transparent 68%);
}

.hero-glow-two {
  right: -160px;
  bottom: 20px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(16, 185, 129, .08), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(570px, 1.18fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  padding-bottom: 20px;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 9px 13px;
  border: 1px solid #dedff7;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 5px 20px rgba(79, 70, 229, .06);
  color: #4a4d67;
  font-size: 12px;
  font-weight: 650;
}

.live-dot {
  width: 8px;
  height: 8px;
  position: relative;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}

.live-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(16, 185, 129, .4);
  border-radius: inherit;
  animation: pulse 2.4s ease-out infinite;
  content: "";
}

@keyframes pulse {
  0% { opacity: .9; transform: scale(.6); }
  70%, 100% { opacity: 0; transform: scale(1.6); }
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  color: #15162a;
  font-size: clamp(48px, 5.15vw, 76px);
  font-weight: 690;
  letter-spacing: -.065em;
  line-height: .98;
}

.hero h1 span {
  display: block;
  background: linear-gradient(105deg, var(--indigo) 15%, #7c3aed 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: #606478;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #404358;
  font-size: 14px;
  font-weight: 650;
}

.text-link span {
  color: var(--indigo);
  font-size: 16px;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 33px;
  color: #717588;
  font-size: 11px;
  font-weight: 620;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof i {
  width: 16px;
  height: 16px;
  position: relative;
  border-radius: 50%;
  background: #e9fbf4;
}

.hero-proof i::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid var(--green);
  border-left: 1.5px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

.product-stage {
  min-width: 0;
  position: relative;
  padding: 50px 0 74px;
  perspective: 1400px;
}

.stage-halo {
  position: absolute;
  inset: 2% -8% 0 10%;
  border-radius: 45%;
  background: radial-gradient(circle, rgba(79, 70, 229, .19), rgba(99, 102, 241, .06) 42%, transparent 70%);
  filter: blur(20px);
}

.app-window {
  width: 108%;
  min-height: 442px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 20px;
  background: white;
  box-shadow:
    0 42px 95px rgba(40, 38, 92, .2),
    0 10px 24px rgba(40, 38, 92, .1),
    inset 0 0 0 1px rgba(31, 32, 58, .05);
  transform: rotateY(-4deg) rotateX(1.5deg);
  transform-origin: left center;
}

.window-topbar {
  height: 61px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 18px;
  border-bottom: 1px solid #ececf2;
  background: rgba(255, 255, 255, .96);
}

.window-brand {
  width: 145px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.window-brand-mark {
  width: 25px;
  height: 25px;
  color: var(--indigo);
}

.window-search {
  height: 32px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #e7e7ed;
  border-radius: 9px;
  background: #fafafe;
  color: #9b9dab;
  font-size: 10px;
}

.window-avatar {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-size: 9px;
  font-weight: 700;
}

.window-body {
  min-height: 381px;
  display: flex;
  background: #f8f8fb;
}

.mock-sidebar {
  width: 150px;
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 12px;
  border-right: 1px solid #ececf2;
  background: white;
}

.mock-side-title {
  padding: 0 9px 7px;
  color: #a4a6b3;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.mock-side-title.second {
  margin-top: 15px;
}

.mock-sidebar b {
  height: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border-radius: 8px;
  color: #737686;
  font-size: 9px;
  font-weight: 600;
}

.mock-sidebar b i {
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  opacity: .75;
}

.mock-sidebar b.active {
  background: var(--indigo-pale);
  color: var(--indigo);
}

.scanner-panel {
  min-width: 0;
  flex: 1;
  padding: 22px;
}

.scanner-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.scanner-heading span {
  color: var(--indigo);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.scanner-heading h2 {
  margin: 4px 0 0;
  font-size: 18px;
  letter-spacing: -.04em;
}

.updated {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #777a8c;
  font-size: 8px;
  font-weight: 600;
}

.updated i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #e8f9f3;
}

.scanner-filters {
  display: flex;
  gap: 7px;
  margin: 17px 0 14px;
}

.scanner-filters span,
.scanner-filters button {
  height: 27px;
  display: flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid #e5e5ed;
  border-radius: 7px;
  background: white;
  color: #777a89;
  font-size: 8px;
}

.scanner-filters button {
  margin-left: auto;
  border-color: var(--indigo);
  background: var(--indigo);
  color: white;
}

.odds-table {
  overflow: hidden;
  border: 1px solid #e8e8ef;
  border-radius: 10px;
  background: white;
}

.odds-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(145px, 1fr) repeat(4, 52px);
  align-items: center;
  padding: 0 10px;
  border-top: 1px solid #eeeeF3;
  color: #3c3f50;
  font-size: 10px;
  text-align: center;
}

.odds-row:first-child {
  border-top: 0;
}

.odds-head {
  min-height: 31px;
  background: #fafafd;
  color: #999ba9;
  font-size: 8px;
  font-weight: 700;
}

.odds-row > span:first-child {
  text-align: left;
}

.event-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.event-cell b {
  color: #252737;
  font-size: 10px;
}

.event-cell small {
  color: #9a9ca9;
  font-size: 8px;
}

.edge-chip {
  width: fit-content;
  justify-self: center;
  padding: 5px 6px;
  border-radius: 6px;
  font-size: 8px;
  font-weight: 750;
}

.edge-chip.green {
  background: #e9faf3;
  color: #05845e;
}

.edge-chip.amber {
  background: #fff6e8;
  color: #c46b08;
}

.float-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 20px 48px rgba(35, 34, 76, .16);
  backdrop-filter: blur(15px);
}

.edge-card {
  top: 18px;
  right: -48px;
  min-width: 220px;
  display: grid;
  grid-template-columns: 37px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 15px;
  animation: float 5s ease-in-out infinite;
}

.float-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 19px;
  font-weight: 700;
}

.float-icon.positive {
  background: #eafaf4;
  color: var(--green);
}

.edge-card div {
  display: flex;
  flex-direction: column;
}

.edge-card small,
.float-book {
  color: #8b8e9c;
  font-size: 8px;
  font-weight: 600;
}

.edge-card strong {
  margin-top: 2px;
  color: var(--green);
  font-size: 17px;
  letter-spacing: -.04em;
}

.float-book {
  padding: 5px 6px;
  border-radius: 6px;
  background: #f4f4f7;
}

.movement-card {
  right: -8px;
  bottom: 8px;
  width: 240px;
  padding: 14px 15px 11px;
  border-radius: 16px;
  animation: float 5s 1.1s ease-in-out infinite;
}

.movement-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #363849;
  font-size: 9px;
  font-weight: 700;
}

.movement-head small {
  color: #989aa8;
  font-size: 7px;
  font-weight: 500;
}

.sparkline {
  height: 43px;
  margin-top: 7px;
}

.sparkline svg {
  width: 100%;
  height: 100%;
}

.movement-values {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: -2px;
  font-size: 9px;
}

.movement-values b {
  color: #8c8f9c;
}

.movement-values span {
  color: #b2b4bf;
}

.movement-values strong {
  color: var(--indigo);
}

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

.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.trust-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-inner p {
  margin: 0;
  color: #4f5265;
  font-size: 14px;
  font-weight: 620;
}

.trust-inner div {
  display: flex;
  align-items: center;
  gap: 40px;
}

.trust-inner span {
  position: relative;
  color: #9a9ca9;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.trust-inner span + span::before {
  position: absolute;
  top: 50%;
  left: -22px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbcdd6;
  content: "";
  transform: translateY(-50%);
}

.section {
  padding: 122px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 58px;
}

.section-heading.centered {
  display: block;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.section-kicker,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--indigo);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-heading h2,
.process-heading h2,
.mobile-first-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 16px 0 0;
  color: #17182c;
  font-size: clamp(38px, 4.25vw, 58px);
  font-weight: 670;
  letter-spacing: -.055em;
  line-height: 1.06;
}

.section-heading > p,
.process-heading > p {
  margin: 0 0 3px;
  color: #696d7f;
  font-size: 16px;
  line-height: 1.75;
}

.platform-section {
  overflow: hidden;
  background: #fff;
}

.showcase {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(320px, .77fr) minmax(0, 1.23fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fafafe;
  box-shadow: 0 20px 70px rgba(31, 32, 66, .07);
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  padding: 38px;
  border-right: 1px solid var(--line);
  background: white;
}

.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 5px;
  border: 1px solid #e9e9f0;
  border-radius: 13px;
  background: #f7f7fa;
}

.showcase-tabs button {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #777a8c;
  cursor: pointer;
  font-size: 10px;
  font-weight: 680;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.showcase-tabs button span {
  color: #adafba;
  font-size: 8px;
  font-weight: 750;
}

.showcase-tabs button[aria-selected="true"] {
  background: white;
  box-shadow: 0 4px 15px rgba(39, 39, 72, .08);
  color: var(--indigo);
}

.showcase-tabs button:focus-visible {
  outline: 3px solid rgba(79, 70, 229, .18);
  outline-offset: 2px;
}

.showcase-text {
  display: flex;
  flex: 1;
  justify-content: center;
  flex-direction: column;
  padding: 48px 6px 12px;
}

.showcase-text > span {
  color: var(--indigo);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.showcase-text h3 {
  max-width: 390px;
  margin: 14px 0 16px;
  color: #1d1e31;
  font-size: 34px;
  font-weight: 660;
  letter-spacing: -.045em;
  line-height: 1.1;
}

.showcase-text p {
  margin: 0;
  color: #6d7082;
  font-size: 14px;
  line-height: 1.75;
}

.showcase-text ul,
.check-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-text li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #404356;
  font-size: 12px;
  font-weight: 620;
}

.showcase-text li::before {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #e9faf3;
  box-shadow: inset 0 0 0 5px #e9faf3;
  color: var(--green);
  content: "✓";
  font-size: 10px;
  line-height: 17px;
  text-align: center;
}

.showcase-preview {
  min-width: 0;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 45px 38px;
  background:
    linear-gradient(rgba(79, 70, 229, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, .03) 1px, transparent 1px),
    linear-gradient(145deg, #f8f8ff, #f2f4fb);
  background-size: 35px 35px, 35px 35px, 100% 100%;
}

.preview-orbit {
  position: absolute;
  border: 1px solid rgba(79, 70, 229, .1);
  border-radius: 50%;
}

.preview-orbit-one {
  width: 410px;
  height: 410px;
  top: -190px;
  right: -140px;
}

.preview-orbit-two {
  width: 290px;
  height: 290px;
  bottom: -180px;
  left: -90px;
}

.feature-screen {
  width: 100%;
  min-height: 455px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 32px 75px rgba(34, 33, 74, .17);
  animation: screen-enter .35s ease both;
}

@keyframes screen-enter {
  from { opacity: .3; transform: translateY(8px) scale(.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.screen-command {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid #ececf2;
}

.screen-command > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.screen-command div > span {
  color: var(--indigo);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.screen-command strong {
  color: #272839;
  font-size: 14px;
}

.screen-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #878997;
  font-size: 8px;
  font-weight: 600;
}

.screen-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px #eafaf4;
}

.screen-command button {
  height: 31px;
  padding: 0 11px;
  border: 0;
  border-radius: 8px;
  background: var(--indigo);
  color: white;
  font-size: 8px;
  font-weight: 700;
}

.scan-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px 22px 15px;
}

.scan-summary div,
.tracker-kpis > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 13px;
  border: 1px solid #ececf2;
  border-radius: 11px;
  background: #fafafd;
}

.scan-summary small,
.tracker-kpis small {
  color: #9496a3;
  font-size: 7px;
}

.scan-summary b {
  color: #2c2e40;
  font-size: 16px;
}

.positive {
  color: var(--green) !important;
}

.advanced-scan-list {
  overflow: hidden;
  margin: 0 22px 22px;
  border: 1px solid #ececf2;
  border-radius: 11px;
}

.advanced-scan-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 30px minmax(145px, 1fr) 62px 62px 46px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border-top: 1px solid #efeff4;
}

.advanced-scan-row:first-child {
  border-top: 0;
}

.scan-rank {
  color: #b7b8c2;
  font-size: 8px;
  font-weight: 800;
}

.scan-event,
.book-quote {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.scan-event b {
  color: #303244;
  font-size: 10px;
}

.scan-event small,
.book-quote small {
  color: #a0a2ae;
  font-size: 7px;
}

.book-quote {
  text-align: center;
}

.book-quote b {
  color: #383a4d;
  font-size: 12px;
}

.muted-quote b {
  color: #858795;
}

.analysis-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 18px 24px 0;
}

.analysis-controls span,
.analysis-controls b {
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0 11px;
  border: 1px solid #e5e5ed;
  border-radius: 7px;
  background: white;
  color: #7d7f8e;
  font-size: 8px;
  font-weight: 650;
}

.analysis-controls span.selected {
  border-color: var(--indigo);
  background: var(--indigo);
  color: white;
}

.analysis-controls b:first-of-type {
  margin-left: auto;
  color: var(--indigo);
}

.analysis-chart {
  height: 285px;
  position: relative;
  margin: 20px 24px 0;
  overflow: hidden;
  border: 1px solid #ececf2;
  border-radius: 13px;
  background: #fff;
}

.chart-axis {
  position: absolute;
  inset: 24px auto 30px 12px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  color: #afb0ba;
  font-size: 7px;
}

.chart-grid {
  position: absolute;
  inset: 24px 18px 30px 45px;
  background: repeating-linear-gradient(0deg, #eeeeF3 0 1px, transparent 1px 55px);
}

.analysis-chart svg {
  width: calc(100% - 70px);
  height: 190px;
  position: absolute;
  right: 16px;
  bottom: 25px;
  overflow: visible;
}

.chart-tooltip {
  min-width: 100px;
  position: absolute;
  top: 55px;
  right: 68px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid #e6e6ee;
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 25px rgba(34, 34, 70, .12);
}

.chart-tooltip small,
.chart-tooltip span {
  color: #999ba8;
  font-size: 7px;
}

.chart-tooltip b {
  color: var(--indigo);
  font-size: 15px;
}

.chart-legend {
  display: flex;
  gap: 20px;
  padding: 14px 25px;
  color: #777988;
  font-size: 8px;
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chart-legend span::before {
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.chart-legend .indigo { color: var(--indigo); }
.chart-legend .green { color: var(--green); }

.tracker-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px 22px 15px;
}

.tracker-kpis strong {
  color: #2f3143;
  font-size: 15px;
  letter-spacing: -.03em;
}

.tracker-kpis span {
  color: #a0a2af;
  font-size: 7px;
}

.tracker-table {
  overflow: hidden;
  margin: 0 22px 22px;
  border: 1px solid #ececf2;
  border-radius: 11px;
}

.tracker-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 58px 58px 58px;
  align-items: center;
  padding: 0 13px;
  border-top: 1px solid #efeff4;
  color: #4f5263;
  font-size: 9px;
}

.tracker-row:first-child {
  border-top: 0;
}

.tracker-row > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tracker-row b {
  color: #303244;
  font-size: 9px;
}

.tracker-row small {
  color: #a1a3af;
  font-size: 7px;
}

.tracker-head {
  min-height: 32px;
  background: #fafafd;
  color: #a1a3af;
  font-size: 7px;
  font-weight: 700;
}

.result {
  width: fit-content;
  padding: 5px 7px;
  border-radius: 6px;
  font-size: 7px;
  font-weight: 700;
}

.result.won {
  background: #e9faf3;
  color: #05845e;
}

.result.open {
  background: #eef2ff;
  color: var(--indigo);
}

.result.lost {
  background: #fff0f1;
  color: #d83b48;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.capability-card {
  min-height: 365px;
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.capability-card:hover {
  border-color: #d8d9e4;
  box-shadow: 0 20px 50px rgba(34, 35, 66, .08);
  transform: translateY(-4px);
}

.capability-large {
  min-height: 390px;
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(330px, 1.1fr);
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, #fafafe 0%, #f4f4ff 100%);
}

.icon-box {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #eef2ff;
  color: var(--indigo);
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.icon-box.lavender {
  background: #f3efff;
  color: #7c3aed;
}

.icon-box.green {
  background: #eafaf4;
  color: var(--green);
}

.icon-box.amber {
  background: #fff6e8;
  color: var(--amber);
}

.capability-card h3 {
  margin: 12px 0 13px;
  color: #242537;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1.18;
}

.capability-card p {
  margin: 0;
  color: #707385;
  font-size: 13px;
  line-height: 1.72;
}

.capability-large h3 {
  max-width: 420px;
  font-size: 32px;
}

.edge-visual {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .96);
  border-radius: 17px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 22px 50px rgba(44, 43, 95, .12);
}

.edge-event {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ececf2;
}

.edge-event > span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.edge-event b {
  color: #2f3042;
  font-size: 12px;
}

.edge-event small,
.edge-event em {
  color: #9a9ca9;
  font-size: 8px;
  font-style: normal;
}

.edge-event em {
  padding: 5px 7px;
  border-radius: 6px;
  background: #f4f4f8;
}

.edge-comparison {
  display: grid;
  grid-template-columns: 1fr 82px 1fr;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
}

.edge-comparison > div:not(.comparison-line) {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  padding: 14px 8px;
  border-radius: 11px;
  background: #f8f8fb;
}

.edge-comparison small,
.edge-comparison span {
  color: #9a9ca9;
  font-size: 7px;
}

.edge-comparison b {
  color: #303143;
  font-size: 21px;
}

.comparison-line {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-line i {
  height: 1px;
  flex: 1;
  background: #dfe0e8;
}

.comparison-line strong {
  padding: 7px;
  border-radius: 7px;
  background: #e9faf3;
  color: var(--green);
  font-size: 9px;
}

.mini-market {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: auto;
  padding-top: 25px;
}

.mini-market span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  padding: 11px 5px;
  border: 1px solid #e8e8ef;
  border-radius: 10px;
  background: #fafafd;
}

.mini-market small {
  color: #a0a2ae;
  font-size: 8px;
}

.mini-market b {
  color: #37394b;
  font-size: 14px;
}

.mini-market > strong {
  grid-column: 1 / -1;
  padding: 8px;
  border-radius: 8px;
  background: #e9faf3;
  color: var(--green);
  font-size: 10px;
  text-align: center;
}

.dark-card {
  border-color: #1f2036;
  background:
    radial-gradient(circle at 90% 10%, rgba(99, 102, 241, .25), transparent 36%),
    #111225;
}

.dark-card:hover {
  border-color: #34365d;
  box-shadow: 0 24px 55px rgba(16, 17, 38, .22);
}

.dark-icon {
  background: rgba(255, 255, 255, .1);
  color: #a9a5ff;
}

.dark-card .card-kicker {
  color: #9a95ff;
}

.dark-card h3 {
  color: white;
}

.dark-card p {
  color: #a8aabd;
}

.notification-card {
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.telegram-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #4f46e5;
  color: white;
  font-size: 18px;
}

.notification-card > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.notification-card small,
.notification-card span,
.notification-card em {
  color: #8f91a7;
  font-size: 7px;
  font-style: normal;
}

.notification-card b {
  color: white;
  font-size: 9px;
}

.member-stack {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 25px;
}

.member-stack span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 3px solid white;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--indigo);
  font-size: 8px;
  font-weight: 800;
}

.member-stack span:first-child {
  margin-left: 0;
  background: var(--indigo);
  color: white;
}

.member-stack span:nth-child(2) {
  background: #eafaf4;
  color: var(--green);
}

.member-stack span:nth-child(3) {
  background: #fff6e8;
  color: var(--amber);
}

.member-stack b {
  margin-left: 11px;
  color: #4d5061;
  font-size: 10px;
}

.feed-status {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.feed-status span {
  min-height: 35px;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid #ebebf0;
  border-radius: 9px;
  color: #55586a;
  font-size: 9px;
  font-weight: 620;
}

.feed-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.feed-status i.ok {
  background: #10b981;
  box-shadow: 0 0 0 3px #e9faf3;
}

.feed-status i.wait {
  background: #f59e0b;
  box-shadow: 0 0 0 3px #fff6e8;
}

.feed-status b {
  color: #a0a2ae;
  font-size: 8px;
}

.process-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    #101122;
  background-size: 48px 48px, 48px 48px, 100% 100%;
  color: white;
}

.process-glow {
  position: absolute;
  top: -300px;
  left: 28%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, .27), transparent 65%);
  pointer-events: none;
}

.process-heading {
  max-width: 760px;
  position: relative;
  z-index: 2;
  margin: 0 auto 65px;
  text-align: center;
}

.section-kicker.inverted {
  color: #9d98ff;
}

.process-heading h2 {
  color: white;
}

.process-heading > p {
  max-width: 610px;
  margin: 20px auto 0;
  color: #aeb0c2;
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .1);
  list-style: none;
}

.process-grid li {
  min-height: 330px;
  position: relative;
  padding: 35px;
  background: rgba(17, 18, 37, .92);
}

.process-grid li::after {
  position: absolute;
  right: 35px;
  bottom: 35px;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, #6560cf, transparent);
  content: "";
}

.process-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(255, 255, 255, .16);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -.06em;
}

.process-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-top: 55px;
  border: 1px solid rgba(153, 147, 255, .24);
  border-radius: 14px;
  background: rgba(79, 70, 229, .14);
  color: #a6a2ff;
}

.process-icon svg {
  width: 24px;
  height: 24px;
}

.process-grid h3 {
  margin: 24px 0 12px;
  font-size: 25px;
  letter-spacing: -.04em;
}

.process-grid p {
  max-width: 280px;
  margin: 0;
  color: #9c9eb1;
  font-size: 13px;
  line-height: 1.7;
}

.process-note {
  max-width: 760px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 34px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
}

.process-note > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--indigo);
  font-size: 10px;
  font-weight: 800;
}

.process-note p {
  margin: 0;
  color: #9598ac;
  font-size: 10px;
  line-height: 1.6;
}

.process-note strong {
  color: #d8d9e4;
}

.mobile-first-section {
  overflow: hidden;
  background: #f7f7fb;
}

.mobile-first-grid {
  display: grid;
  grid-template-columns: minmax(430px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 95px;
}

.phone-stage {
  min-height: 700px;
  position: relative;
  display: grid;
  place-items: center;
}

.phone-glow {
  position: absolute;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, .17), rgba(79, 70, 229, .04) 48%, transparent 70%);
}

.phone-stage::before,
.phone-stage::after {
  position: absolute;
  border: 1px solid rgba(79, 70, 229, .1);
  border-radius: 50%;
  content: "";
}

.phone-stage::before {
  width: 490px;
  height: 490px;
}

.phone-stage::after {
  width: 620px;
  height: 620px;
}

.phone {
  width: 302px;
  height: 634px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 8px solid #16172a;
  border-radius: 42px;
  background: #f6f7fb;
  box-shadow: 0 45px 90px rgba(31, 31, 69, .27), inset 0 0 0 1px #55566b;
}

.phone::before {
  width: 90px;
  height: 22px;
  position: absolute;
  z-index: 5;
  top: 7px;
  left: 50%;
  border-radius: 999px;
  background: #16172a;
  content: "";
  transform: translateX(-50%);
}

.phone-top {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  background: white;
  color: #252637;
  font-size: 8px;
  font-weight: 750;
}

.phone-top i {
  width: 55px;
}

.phone-appbar {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid #ececf2;
  background: white;
}

.phone-appbar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.phone-logo {
  width: 29px;
  height: 29px;
  color: var(--indigo);
}

.phone-appbar div > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-appbar b {
  color: #28293a;
  font-size: 11px;
}

.phone-appbar small {
  color: #9b9da9;
  font-size: 6px;
}

.phone-appbar button {
  width: 31px;
  height: 31px;
  border: 1px solid #e6e6ed;
  border-radius: 9px;
  background: white;
  color: #56596a;
}

.phone-filter {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  overflow: hidden;
  background: white;
}

.phone-filter span {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid #e6e6ed;
  border-radius: 8px;
  color: #777989;
  font-size: 7px;
  font-weight: 650;
}

.phone-filter span.active {
  border-color: var(--indigo);
  background: var(--indigo);
  color: white;
}

.phone-events {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 11px;
}

.phone-events article {
  padding: 13px;
  border: 1px solid #e5e6ed;
  border-radius: 13px;
  background: white;
  box-shadow: 0 5px 13px rgba(28, 29, 58, .035);
}

.phone-events article > div:first-child > span {
  display: flex;
  justify-content: space-between;
  color: #303143;
  font-size: 10px;
}

.phone-events article > div:first-child > small {
  display: block;
  margin-top: 5px;
  color: #9c9eaa;
  font-size: 6px;
}

.phone-odds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 11px;
}

.phone-odds span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  padding: 8px 4px;
  border-radius: 8px;
  background: #f7f7fb;
}

.phone-odds small {
  color: #9b9da9;
  font-size: 6px;
}

.phone-odds b {
  color: #3a3c4e;
  font-size: 10px;
}

.phone-events footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
  color: #999ba7;
  font-size: 6px;
}

.phone-events footer strong {
  padding: 5px 6px;
  border-radius: 6px;
  background: #e9faf3;
  color: var(--green);
  font-size: 6px;
}

.phone-dock {
  height: 60px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e6ec;
  background: rgba(255, 255, 255, .97);
}

.phone-dock span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  color: #9294a1;
  font-size: 6px;
  font-weight: 650;
}

.phone-dock i {
  font-size: 12px;
  font-style: normal;
}

.phone-dock span.active {
  color: var(--indigo);
}

.phone-float {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid white;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 40px rgba(35, 35, 77, .16);
  backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}

.phone-float svg {
  width: 23px;
  height: 23px;
  color: var(--indigo);
}

.phone-float span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-float b {
  color: #3a3b4e;
  font-size: 9px;
}

.phone-float small {
  color: #9a9ca8;
  font-size: 7px;
}

.mobile-first-copy {
  max-width: 550px;
}

.mobile-first-copy > p {
  margin: 24px 0 0;
  color: #686c7e;
  font-size: 16px;
  line-height: 1.75;
}

.check-list {
  gap: 19px;
  margin-top: 34px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.check-list li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #e2e3eb;
  border-radius: 12px;
  background: white;
  color: var(--indigo);
}

.check-list svg {
  width: 20px;
  height: 20px;
}

.check-list div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.check-list b {
  color: #343648;
  font-size: 13px;
}

.check-list small {
  color: #858897;
  font-size: 11px;
}

.audience-section {
  background: white;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.audience-grid article {
  min-height: 255px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, white, #fafafe);
}

.audience-grid article > span {
  color: var(--indigo);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.audience-grid h3 {
  margin: 65px 0 12px;
  color: #282a3b;
  font-size: 21px;
  letter-spacing: -.035em;
}

.audience-grid p {
  margin: 0;
  color: #777a8b;
  font-size: 13px;
  line-height: 1.7;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #fafafe;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 100px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: 45px;
}

.faq-intro > p {
  margin: 20px 0 28px;
  color: #717485;
  font-size: 14px;
  line-height: 1.72;
}

.faq-intro .text-link {
  color: var(--indigo);
}

.faq-intro .text-link svg {
  width: 18px;
  height: 18px;
}

.faq-list {
  overflow: hidden;
  border-top: 1px solid #dedfe7;
}

.faq-list details {
  border-bottom: 1px solid #dedfe7;
}

.faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #333547;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid #dadbe4;
  border-radius: 9px;
  color: var(--indigo);
  font-size: 17px;
  font-weight: 400;
  transition: transform .2s ease, background .2s ease;
}

.faq-list details[open] summary span {
  background: var(--indigo);
  color: white;
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -7px 50px 26px 0;
  color: #757889;
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--indigo);
  color: white;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 75%);
}

.cta-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.cta-orbit-one {
  width: 460px;
  height: 460px;
  top: -280px;
  left: -80px;
}

.cta-orbit-two {
  width: 600px;
  height: 600px;
  right: -190px;
  bottom: -440px;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #e6e5ff;
  font-size: 10px;
  font-weight: 650;
}

.cta-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 0 4px rgba(110, 231, 183, .13);
}

.final-cta h2 {
  max-width: 800px;
  margin: 20px auto 0;
  color: white;
  font-size: clamp(42px, 5.5vw, 68px);
}

.final-cta p {
  max-width: 650px;
  margin: 21px auto 31px;
  color: #d9d7ff;
  font-size: 16px;
  line-height: 1.7;
}

.cta-inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.button-light {
  border-color: white;
  background: white;
  box-shadow: 0 15px 35px rgba(31, 26, 101, .25);
  color: var(--indigo);
}

.button-light:hover {
  background: #f5f4ff;
}

.cta-login {
  color: #d8d6ff;
  font-size: 12px;
}

.cta-login strong {
  color: white;
}

.site-footer {
  padding: 65px 0 28px;
  background: #0d0e1b;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-bottom: 54px;
}

.footer-brand .brand-mark {
  color: #625be9;
}

.footer-brand .brand-copy strong {
  color: white;
}

.footer-brand .brand-copy small {
  color: #74768b;
}

.footer-brand > p {
  margin: 19px 0 0;
  color: #77798b;
  font-size: 12px;
}

.footer-top nav {
  display: flex;
  gap: 90px;
}

.footer-top nav > div {
  min-width: 110px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-top nav b {
  margin-bottom: 5px;
  color: #d9dae3;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-top nav a {
  color: #7f8192;
  font-size: 11px;
  transition: color .2s ease;
}

.footer-top nav a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom p {
  margin: 0;
  color: #626477;
  font-size: 9px;
  line-height: 1.6;
}

.footer-bottom p:last-child {
  max-width: 580px;
  text-align: right;
}

@media (max-width: 1120px) {
  .desktop-nav {
    margin-left: 20px;
    gap: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr);
    gap: 32px;
  }

  .app-window {
    width: 104%;
  }

  .edge-card {
    right: -18px;
  }

  .showcase {
    grid-template-columns: minmax(310px, .82fr) minmax(0, 1.18fr);
  }

  .showcase-copy {
    padding: 29px;
  }

  .showcase-preview {
    padding-inline: 28px;
  }

  .capability-card {
    padding: 26px;
  }

  .mobile-first-grid {
    grid-template-columns: minmax(390px, .9fr) minmax(0, 1.1fr);
    gap: 55px;
  }

  .phone-float {
    right: -1%;
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .login-link {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 76px 0 auto;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    width: min(calc(100% - 40px), 700px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 auto;
    padding: 17px 0 24px;
  }

  .mobile-menu nav > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid #f0f0f4;
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-menu .button {
    margin-top: 12px;
  }

  .hero {
    padding-top: 140px;
  }

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

  .hero-copy {
    max-width: 700px;
    text-align: center;
    margin-inline: auto;
  }

  .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(52px, 9vw, 76px);
  }

  .hero-lead {
    margin-inline: auto;
  }

  .product-stage {
    width: min(100%, 720px);
    margin-inline: auto;
  }

  .app-window {
    width: 100%;
    transform: none;
  }

  .edge-card {
    right: -18px;
  }

  .trust-inner {
    flex-direction: column;
    justify-content: center;
    padding-block: 23px;
    text-align: center;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 46px;
  }

  .section-heading > p {
    max-width: 650px;
  }

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

  .showcase-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .showcase-text {
    padding-top: 36px;
  }

  .showcase-text h3 {
    max-width: 560px;
  }

  .showcase-preview {
    min-height: 590px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-large {
    grid-column: span 2;
  }

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

  .process-grid li {
    min-height: 260px;
  }

  .process-icon {
    margin-top: 32px;
  }

  .mobile-first-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .phone-stage {
    order: 2;
  }

  .mobile-first-copy {
    max-width: 680px;
    order: 1;
    margin-inline: auto;
    text-align: center;
  }

  .check-list {
    max-width: 560px;
    margin-inline: auto;
    text-align: left;
  }

  .audience-grid {
    gap: 12px;
  }

  .audience-grid article {
    padding: 23px;
  }

  .faq-grid {
    grid-template-columns: minmax(230px, .65fr) minmax(0, 1.35fr);
    gap: 50px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    height: 68px;
  }

  .site-header {
    background: rgba(255, 255, 255, .92);
  }

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

  .brand-copy small {
    display: none;
  }

  .header-actions {
    gap: 9px;
  }

  .button-small {
    display: none;
  }

  .mobile-menu {
    inset-block-start: 68px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 48px;
    background-size: 34px 34px, 34px 34px, 100% 100%;
  }

  .eyebrow {
    margin-bottom: 20px;
    padding: 8px 11px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.01;
  }

  .hero-lead {
    margin-top: 21px;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    flex-direction: column;
    gap: 18px;
    margin-top: 27px;
  }

  .button-large {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 8px;
    margin-top: 27px;
    text-align: left;
  }

  .hero-proof span:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .product-stage {
    margin-top: -8px;
    padding: 35px 0 82px;
  }

  .app-window {
    min-height: 374px;
    border-radius: 16px;
    box-shadow: 0 30px 64px rgba(40, 38, 92, .18);
  }

  .window-topbar {
    height: 49px;
    padding: 0 11px;
  }

  .window-brand {
    width: auto;
  }

  .window-brand strong {
    display: none;
  }

  .window-brand-mark {
    width: 23px;
    height: 23px;
  }

  .window-search {
    height: 28px;
  }

  .window-avatar {
    width: 27px;
    height: 27px;
  }

  .window-body {
    min-height: 325px;
  }

  .mock-sidebar {
    display: none;
  }

  .scanner-panel {
    padding: 16px 12px;
  }

  .scanner-heading h2 {
    font-size: 16px;
  }

  .scanner-filters span:first-child {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .odds-row {
    grid-template-columns: minmax(112px, 1fr) repeat(4, 40px);
    padding-inline: 7px;
  }

  .event-cell b {
    font-size: 9px;
  }

  .edge-chip {
    padding-inline: 4px;
  }

  .edge-card {
    top: 2px;
    right: -5px;
    min-width: 190px;
    grid-template-columns: 33px 1fr auto;
  }

  .float-icon {
    width: 33px;
    height: 33px;
  }

  .movement-card {
    right: 8px;
    bottom: 20px;
    width: 210px;
  }

  .trust-inner div {
    flex-direction: column;
    gap: 12px;
  }

  .trust-inner span + span::before {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

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

  .section-heading h2,
  .process-heading h2,
  .mobile-first-copy h2,
  .faq-intro h2 {
    font-size: 36px;
  }

  .section-heading > p,
  .mobile-first-copy > p {
    font-size: 14px;
  }

  .showcase {
    min-height: auto;
    border-radius: 20px;
  }

  .showcase-copy {
    padding: 18px;
  }

  .showcase-tabs {
    gap: 3px;
  }

  .showcase-tabs button {
    min-height: 52px;
    font-size: 9px;
  }

  .showcase-text {
    padding: 32px 2px 8px;
  }

  .showcase-text h3 {
    font-size: 28px;
  }

  .showcase-preview {
    min-height: 445px;
    padding: 22px 11px;
  }

  .feature-screen {
    min-height: 392px;
    border-radius: 15px;
  }

  .screen-command {
    min-height: 65px;
    padding-inline: 15px;
  }

  .screen-command strong {
    font-size: 11px;
  }

  .screen-status {
    font-size: 7px;
  }

  .scan-summary {
    gap: 5px;
    padding: 13px 11px 10px;
  }

  .scan-summary div,
  .tracker-kpis > div {
    padding: 9px 7px;
  }

  .advanced-scan-list {
    margin: 0 11px 13px;
  }

  .advanced-scan-row {
    grid-template-columns: 23px minmax(95px, 1fr) 46px 40px;
    min-height: 67px;
    gap: 6px;
    padding-inline: 8px;
  }

  .advanced-scan-row .muted-quote {
    display: none;
  }

  .analysis-controls {
    padding: 13px 13px 0;
  }

  .analysis-controls b {
    padding-inline: 7px;
  }

  .analysis-controls b:last-child {
    display: none;
  }

  .analysis-chart {
    height: 245px;
    margin: 14px 13px 0;
  }

  .chart-tooltip {
    right: 24px;
  }

  .tracker-kpis {
    gap: 5px;
    padding: 13px 11px 10px;
  }

  .tracker-kpis strong {
    font-size: 12px;
  }

  .tracker-table {
    margin: 0 11px 13px;
  }

  .tracker-row {
    grid-template-columns: minmax(120px, 1fr) 45px 50px;
    padding-inline: 9px;
  }

  .tracker-row > span:nth-child(3) {
    display: none;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .capability-large {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .capability-card {
    min-height: 340px;
    padding: 25px;
    border-radius: 19px;
  }

  .capability-large h3 {
    font-size: 28px;
  }

  .capability-card h3 {
    font-size: 22px;
  }

  .edge-visual {
    width: 100%;
    padding: 13px;
  }

  .edge-comparison {
    grid-template-columns: 1fr 65px 1fr;
    gap: 5px;
  }

  .process-section {
    background-size: 36px 36px, 36px 36px, 100% 100%;
  }

  .process-heading {
    margin-bottom: 42px;
  }

  .process-grid {
    border-radius: 18px;
  }

  .process-grid li {
    min-height: 250px;
    padding: 27px;
  }

  .process-number {
    top: 20px;
    right: 22px;
  }

  .process-note {
    align-items: flex-start;
    padding: 13px;
  }

  .phone-stage {
    min-height: 660px;
    margin-inline: -6px;
  }

  .phone-stage::before {
    width: 410px;
    height: 410px;
  }

  .phone-stage::after {
    width: 510px;
    height: 510px;
  }

  .phone {
    width: 286px;
    height: 605px;
  }

  .phone-float {
    right: -4px;
    bottom: 80px;
  }

  .check-list small {
    line-height: 1.5;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .audience-grid article {
    min-height: 220px;
  }

  .audience-grid h3 {
    margin-top: 50px;
  }

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

  .faq-intro {
    position: static;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 13px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta {
    padding: 82px 0;
  }

  .final-cta h2 {
    font-size: 42px;
  }

  .final-cta p {
    font-size: 14px;
  }

  .cta-inner > div {
    flex-direction: column;
    gap: 19px;
  }

  .button-light {
    width: 100%;
  }

  .site-footer {
    padding-top: 50px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-top nav {
    gap: 55px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

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

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

/* Static distribution */
[hidden] { display: none !important; }
body { min-width: 320px; }
body.menu-open, body.modal-open { overflow: hidden; }

.reading-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}
.reading-progress span {
  width: 0;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #4f46e5, #7c3aed, #10b981);
  box-shadow: 0 0 14px rgba(79,70,229,.35);
}
.site-header.is-scrolled {
  border-bottom-color: rgba(220,221,231,.9);
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 35px rgba(18,19,38,.055);
}
.desktop-nav a[aria-current="page"] { color: var(--ink); }
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.button-arrow { display: inline-flex; font-size: 19px; line-height: 1; transition: transform .2s ease; }
.button:hover .button-arrow { transform: translateX(3px); }

.reveal.is-observed {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-observed.is-visible { opacity: 1; transform: none; }

.footer-contact {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d9d9e4;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
}
.footer-contact:hover { color: #fff; }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-modal {
  width: min(680px, calc(100% - 28px));
  max-height: min(860px, calc(100dvh - 32px));
  overflow: auto;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 28px 90px rgba(18,19,38,.28);
}
.contact-modal::backdrop { background: rgba(16,18,35,.68); backdrop-filter: blur(8px); }
.contact-modal[open] { animation: modal-in .25s ease both; }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: none; }
}
.contact-modal-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  background: radial-gradient(circle at 95% 0%, rgba(79,70,229,.12), transparent 34%), #fff;
}
.modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
}
.modal-heading { padding-right: 45px; }
.modal-heading img { display: block; margin-bottom: 18px; filter: drop-shadow(0 10px 16px rgba(79,70,229,.22)); }
.modal-heading > span {
  display: block;
  margin-bottom: 7px;
  color: var(--indigo);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.modal-heading h2 { margin: 0; font-size: clamp(27px,4vw,38px); letter-spacing: -.045em; line-height: 1.06; }
.modal-heading p { margin: 12px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; }

.contact-form { display: grid; gap: 17px; margin-top: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.contact-form label:not(.consent-row) { display: grid; gap: 8px; }
.contact-form label > span:first-child { color: #3f4356; font-size: 11px; font-weight: 730; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #dfe1ea;
  border-radius: 11px;
  outline: 0;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { min-height: 118px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: rgba(79,70,229,.7);
  box-shadow: 0 0 0 4px rgba(79,70,229,.1);
}
.consent-row {
  display: grid;
  grid-template-columns: 18px minmax(0,1fr);
  align-items: start;
  gap: 10px;
  color: #6a6e80;
  font-size: 11px;
  line-height: 1.55;
}
.consent-row input { min-height: 0; margin: 1px 0 0; accent-color: var(--indigo); }
.consent-row a { color: var(--indigo); text-decoration: underline; text-underline-offset: 2px; }
.submit-button { width: 100%; border: 0; cursor: pointer; }
.submit-button[disabled] { cursor: wait; opacity: .72; transform: none; }
.form-status { min-height: 18px; margin: -4px 0 0; color: var(--ink-soft); font-size: 12px; text-align: center; }
.form-status.success { color: var(--green); }
.form-status.error { color: #dc2626; }

.back-to-top {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 13px;
  background: rgba(18,19,38,.92);
  box-shadow: 0 14px 34px rgba(18,19,38,.2);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--indigo); }

/* Secondary pages */
.inner-page { background: #fff; }
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 164px 0 88px;
  background:
    linear-gradient(rgba(79,70,229,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,70,229,.03) 1px, transparent 1px),
    linear-gradient(180deg,#fafaff 0%,#fff 100%);
  background-size: 44px 44px,44px 44px,100% 100%;
}
.page-hero::before {
  position: absolute;
  top: -300px;
  left: 50%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(79,70,229,.13),transparent 66%);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}
.page-hero .shell { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; color: #86899a; font-size: 12px; }
.breadcrumb a { color: var(--indigo); font-weight: 650; }
.page-hero-copy { max-width: 880px; }
.page-hero-copy .section-kicker { margin-bottom: 18px; }
.page-hero h1 { margin: 0; font-size: clamp(48px,7vw,80px); letter-spacing: -.064em; line-height: .98; }
.page-hero h1 span { display: block; color: var(--indigo); }
.page-hero-lead { max-width: 760px; margin: 25px 0 0; color: var(--ink-soft); font-size: 18px; letter-spacing: -.015em; line-height: 1.7; }
.legal-hero { padding-bottom: 68px; }

.content-section { padding: 100px 0; }
.content-section.alt { background: var(--wash); }
.content-heading { max-width: 800px; margin-bottom: 48px; }
.content-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.content-heading h2 { margin: 12px 0 0; font-size: clamp(35px,5vw,54px); letter-spacing: -.052em; line-height: 1.04; }
.content-heading p { margin: 18px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.feature-detail-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.feature-detail-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(18,19,38,.045);
}
.feature-detail-card > span {
  min-width: 42px;
  width: fit-content;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  padding-inline: 10px;
  border-radius: 12px;
  background: var(--indigo-pale);
  color: var(--indigo);
  font-size: 15px;
  font-weight: 800;
}
.feature-detail-card h3 { margin: 0; font-size: 20px; letter-spacing: -.03em; }
.feature-detail-card p { margin: 13px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.72; }
.split-content { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-items: center; gap: 80px; }
.split-copy h2 { margin: 12px 0 0; font-size: clamp(36px,5vw,56px); letter-spacing: -.055em; line-height: 1.02; }
.split-copy > p { margin: 20px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.78; }
.number-list { display: grid; gap: 20px; margin: 30px 0 0; padding: 0; list-style: none; }
.number-list li { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 14px; }
.number-list li > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: var(--indigo-pale); color: var(--indigo); font-size: 10px; font-weight: 800; }
.number-list b { display: block; margin-bottom: 5px; font-size: 14px; }
.number-list small { color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.metric-panel { padding: 28px; border: 1px solid #e5e5ef; border-radius: 24px; background: linear-gradient(145deg,#fff,#f8f8ff); box-shadow: 0 24px 70px rgba(18,19,38,.08); }
.metric-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.metric-grid > div { min-height: 138px; display: flex; justify-content: space-between; flex-direction: column; padding: 19px; border: 1px solid #ececf3; border-radius: 16px; background: #fff; }
.metric-grid small { color: #888b9d; font-size: 10px; font-weight: 700; }
.metric-grid b { font-size: 27px; letter-spacing: -.04em; }
.metric-grid span { color: var(--green); font-size: 10px; font-weight: 700; }

.legal-wrap { display: grid; grid-template-columns: 250px minmax(0,760px); align-items: start; justify-content: center; gap: 68px; padding: 74px 0 110px; }
.legal-nav { position: sticky; top: 110px; display: grid; gap: 6px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.legal-nav b { padding: 8px 10px; color: #8a8d9d; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.legal-nav a { padding: 10px; border-radius: 9px; color: #686b7d; font-size: 12px; font-weight: 600; }
.legal-nav a:hover { background: var(--indigo-pale); color: var(--indigo); }
.legal-content { min-width: 0; }
.updated-date { display: inline-flex; padding: 7px 10px; border-radius: 8px; background: var(--indigo-pale); color: var(--indigo); font-size: 10px; font-weight: 700; }
.legal-content h2 { margin: 42px 0 14px; font-size: 25px; letter-spacing: -.035em; scroll-margin-top: 110px; }
.legal-content p, .legal-content li { color: #5d6173; font-size: 14px; line-height: 1.8; }
.legal-content a { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }

.contact-page-grid { display: grid; grid-template-columns: minmax(0,.75fr) minmax(480px,1fr); gap: 70px; }
.contact-options { display: grid; gap: 12px; margin-top: 30px; }
.contact-option { display: grid; grid-template-columns: 42px minmax(0,1fr); align-items: center; gap: 14px; padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.contact-option > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--indigo-pale); color: var(--indigo); font-weight: 800; }
.contact-option b { display: block; margin-bottom: 4px; font-size: 13px; }
.contact-option small, .contact-option a { color: var(--ink-soft); font-size: 12px; }
.contact-page-form { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 24px 70px rgba(18,19,38,.07); }

.not-found { min-height: 100dvh; display: grid; place-items: center; padding: 40px 20px; background: radial-gradient(circle at 50% 15%,rgba(79,70,229,.16),transparent 35%),var(--wash); text-align: center; }
.not-found-card { width: min(620px,100%); padding: 50px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 30px 90px rgba(18,19,38,.1); }
.not-found-card > span { display: block; margin-top: 26px; color: var(--indigo); font-size: 88px; font-weight: 850; letter-spacing: -.08em; line-height: 1; }
.not-found-card h1 { margin: 18px 0 0; font-size: 38px; letter-spacing: -.045em; }
.not-found-card p { margin: 15px auto 28px; color: var(--ink-soft); line-height: 1.7; }

@media (max-width: 980px) {
  .feature-detail-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .split-content, .contact-page-grid { grid-template-columns: 1fr; }
  .split-content { gap: 48px; }
  .legal-wrap { grid-template-columns: 1fr; gap: 30px; }
  .legal-nav { position: static; display: flex; overflow-x: auto; padding: 10px; scrollbar-width: none; }
  .legal-nav b { display: none; }
  .legal-nav a { flex: 0 0 auto; white-space: nowrap; }
}
@media (max-width: 680px) {
  .reading-progress { height: 2px; }
  .contact-modal { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 19px; }
  .contact-modal-card { padding: 24px 18px 20px; border-radius: 19px; }
  .modal-close { top: 14px; right: 14px; }
  .form-grid, .feature-detail-grid, .metric-grid { grid-template-columns: 1fr; }
  .back-to-top { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); }
  .page-hero { padding: 126px 0 64px; }
  .page-hero h1 { font-size: 43px; }
  .page-hero-lead { font-size: 15px; }
  .content-section { padding: 72px 0; }
  .feature-detail-card { min-height: 0; }
  .metric-panel { padding: 18px; }
  .legal-wrap { padding: 50px 0 78px; }
  .legal-content h2 { font-size: 22px; }
  .contact-page-grid { gap: 40px; }
  .contact-page-form { padding: 20px 17px; }
  .not-found-card { padding: 38px 24px; }
}
