:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --slate: #64748b;
  --muted: #94a3b8;
  --line: #e2e8f0;
  --canvas: #eef2f7;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #dbeafe;
  --green: #047857;
  --green-light: #dcfce7;
  --amber: #b45309;
  --amber-light: #fef3c7;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--font);
}

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

button {
  color: inherit;
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 11px;
  background: var(--ink);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.brand-mark::before,
.brand-mark::after,
.brand-signal::before {
  position: absolute;
  border: 1.5px solid #60a5fa;
  border-radius: 50%;
  content: "";
}

.brand-mark::before {
  width: 25px;
  height: 25px;
  opacity: 0.35;
}

.brand-mark::after {
  width: 15px;
  height: 15px;
  opacity: 0.72;
}

.brand-signal {
  position: relative;
  z-index: 1;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
}

.brand-signal::before {
  bottom: 1px;
  left: 2px;
  width: 20px;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.1px;
}

.brand small {
  margin-top: 3px;
  color: var(--slate);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  transition: color 160ms ease;
}

.main-nav > a:not(.button):hover {
  color: var(--blue);
}

.nav-login {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28);
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 12px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 154px 0 92px;
  background:
    linear-gradient(104deg, rgba(248, 250, 252, 0.98) 0%, rgba(238, 242, 247, 0.9) 56%, rgba(219, 234, 254, 0.65) 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.075) 0.8px, transparent 0.8px);
  background-size: 23px 23px;
  content: "";
  mask-image: linear-gradient(to right, #000 0%, transparent 72%);
  pointer-events: none;
}

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

.hero-glow-one {
  top: 40px;
  right: -190px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 0 0 70px rgba(37, 99, 235, 0.025), 0 0 0 145px rgba(37, 99, 235, 0.02);
}

.hero-glow-two {
  bottom: -300px;
  left: 25%;
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.07);
  filter: blur(90px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
  gap: 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

.hero-copy .eyebrow {
  color: var(--blue);
}

.hero-copy h1 {
  max-width: 600px;
  margin: 20px 0 22px;
  font-size: clamp(48px, 5.1vw, 70px);
  font-weight: 780;
  letter-spacing: -3.6px;
  line-height: 0.99;
}

.hero-copy h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
}

.text-link span {
  color: var(--blue);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 30px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 650;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.check {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.radar-preview {
  position: relative;
  padding: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 23px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: perspective(1500px) rotateY(-2deg) rotateX(1deg);
}

.radar-preview::after {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(96, 165, 250, 0.04), 0 0 0 88px rgba(96, 165, 250, 0.03);
  content: "";
}

.preview-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 19px;
  border-bottom: 1px solid var(--line);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-brand strong,
.preview-brand small {
  display: block;
}

.preview-brand strong {
  font-size: 11px;
  line-height: 1.3;
}

.preview-brand small {
  margin-top: 2px;
  color: var(--slate);
  font-size: 9px;
}

.preview-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
}

.preview-icon span {
  width: 10px;
  height: 10px;
  border: 2px solid #60a5fa;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.18);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.live-pill i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.preview-hero {
  position: relative;
  z-index: 1;
  padding: 27px 27px 30px;
  background: var(--ink);
  color: #ffffff;
}

.preview-hero > span {
  color: #93c5fd;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.25px;
}

.preview-hero h2 {
  max-width: 370px;
  margin: 11px 0 7px;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.preview-hero p {
  margin: 0;
  color: #cbd5e1;
  font-size: 11px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 18px 20px 12px;
}

.metric-grid article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-soft);
}

.metric-grid strong,
.metric-grid small {
  display: block;
}

.metric-grid strong {
  margin-top: 8px;
  font-size: 19px;
  line-height: 1;
}

.metric-grid small {
  margin-top: 4px;
  color: var(--slate);
  font-size: 8px;
  font-weight: 650;
}

.metric-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 800;
}

.metric-blue {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.metric-green {
  background: var(--green-light);
  color: var(--green);
}

.metric-amber {
  background: var(--amber-light);
  color: var(--amber);
}

.opportunity-card {
  margin: 4px 20px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.opportunity-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--slate);
  font-size: 8px;
  font-weight: 650;
}

.opportunity-topline strong {
  color: var(--ink);
}

.status-priority {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.7px;
}

.opportunity-card h3 {
  margin: 12px 0 5px;
  font-size: 14px;
  line-height: 1.35;
}

.opportunity-card > p {
  margin: 0;
  color: var(--slate);
  font-size: 9px;
}

.opportunity-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 14px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-soft);
}

.opportunity-meta > span {
  padding: 10px 12px;
}

.opportunity-meta > span + span {
  border-left: 1px solid var(--line);
}

.opportunity-meta small,
.opportunity-meta strong {
  display: block;
}

.opportunity-meta small {
  color: var(--muted);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.opportunity-meta strong {
  margin-top: 3px;
  font-size: 10px;
}

.fit-bar {
  height: 4px;
  margin-top: 13px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.fit-bar span {
  display: block;
  width: 93%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.opportunity-card .ai-note {
  margin-top: 12px;
  padding: 9px 11px;
  border-left: 2px solid var(--blue);
  border-radius: 6px;
  background: #eff6ff;
  color: #1e3a5f;
  font-size: 8px;
  line-height: 1.5;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 24px;
}

.proof-grid > div + div {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--blue);
  font-size: 21px;
  letter-spacing: -0.6px;
}

.proof-grid span {
  color: var(--slate);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.45;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

.section-heading {
  max-width: 690px;
  margin-bottom: 52px;
}

.section-heading h2,
.process-copy h2,
.intelligence-copy h2,
.pricing-copy h2,
.faq-heading h2 {
  margin: 16px 0 18px;
  font-size: clamp(36px, 4vw, 51px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.section-heading p,
.process-copy > p,
.intelligence-copy > p,
.pricing-copy > p {
  max-width: 640px;
  margin: 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}

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

.benefit-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  transform: translateY(-5px);
}

.benefit-card.featured {
  border-color: rgba(37, 99, 235, 0.4);
  background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
}

.recommended-label {
  position: absolute;
  top: 0;
  right: 25px;
  padding: 7px 12px;
  border-radius: 0 0 8px 8px;
  background: var(--blue);
  color: #ffffff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.card-number {
  position: absolute;
  top: 19px;
  right: 24px;
  color: #e2e8f0;
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
}

.featured .card-number {
  top: 48px;
  color: #dbeafe;
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 800;
}

.feature-blue {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.feature-green {
  background: var(--green-light);
  color: var(--green);
}

.feature-amber {
  background: var(--amber-light);
  color: var(--amber);
}

.benefit-card h3 {
  margin: 72px 0 13px;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.benefit-card p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.75;
}

.process-section {
  background: var(--surface-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 100px;
}

.review-message {
  display: flex;
  gap: 14px;
  margin-top: 35px;
  padding: 20px;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  background: #eff6ff;
}

.review-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.review-message strong {
  color: #1e3a5f;
  font-size: 13px;
}

.review-message p {
  margin: 4px 0 0;
  color: #475569;
  font-size: 12px;
  line-height: 1.6;
}

.steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 24px;
  width: 1px;
  background: var(--line);
  content: "";
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 20px 22px 20px 0;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
}

.steps li + li {
  margin-top: 10px;
}

.steps li > span {
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--slate);
  font-size: 13px;
  font-weight: 800;
}

.steps li strong {
  display: block;
  margin-top: 2px;
  font-size: 16px;
}

.steps li p {
  margin: 3px 0 0;
  color: var(--slate);
  font-size: 13px;
}

.steps .step-review {
  border-color: #bfdbfe;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.steps .step-review > span {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.intelligence-section {
  overflow: hidden;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: minmax(500px, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  gap: 95px;
}

.intelligence-panel {
  position: relative;
  padding: 38px;
  border-top: 5px solid var(--blue);
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow);
  color: #ffffff;
}

.intelligence-panel::before {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(96, 165, 250, 0.035), 0 0 0 85px rgba(96, 165, 250, 0.025);
  content: "";
}

.panel-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: #93c5fd;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.panel-topline small {
  padding: 5px 8px;
  border: 1px solid #334155;
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 7px;
  letter-spacing: 0.7px;
}

.intelligence-panel h3 {
  position: relative;
  z-index: 1;
  margin: 17px 0 31px;
  font-size: 28px;
  line-height: 1.24;
  letter-spacing: -0.8px;
}

.intelligence-panel ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intelligence-panel li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: #cbd5e1;
  font-size: 13px;
}

.intelligence-panel li + li {
  margin-top: 19px;
  padding-top: 19px;
  border-top: 1px solid #263349;
}

.intelligence-panel li i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.intelligence-panel li strong {
  color: #ffffff;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

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

.check-list span {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
  border-radius: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.pricing-section {
  background: var(--ink);
  color: #ffffff;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 455px;
  align-items: center;
  gap: 110px;
}

.pricing-copy h2 {
  max-width: 580px;
}

.pricing-copy > p {
  color: #cbd5e1;
}

.price-card {
  padding: 33px;
  border: 1px solid #334155;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  color: var(--ink);
}

.price-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-topline strong {
  font-size: 18px;
}

.price-topline span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.7px;
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 23px 0 13px;
}

.price > small {
  margin: 14px 5px 0 0;
  color: var(--slate);
  font-size: 16px;
  font-weight: 700;
}

.price > strong {
  font-size: 65px;
  line-height: 0.95;
  letter-spacing: -3px;
}

.price > span {
  margin: 9px 0 0 4px;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.2;
}

.price > span small {
  color: var(--slate);
  font-size: 11px;
  font-weight: 650;
}

.price-card > p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
}

.price-card ul {
  margin: 25px 0;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.price-card li + li {
  margin-top: 12px;
}

.price-card li span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
}

.button-full {
  width: 100%;
}

.price-note {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 45px 25px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  transition: transform 160ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 0 25px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.75;
}

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

.final-cta-inner {
  position: relative;
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  padding: 52px 58px;
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: #ffffff;
}

.final-cta-inner::before {
  position: absolute;
  top: -170px;
  right: -80px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.045), 0 0 0 125px rgba(255, 255, 255, 0.025);
  content: "";
}

.final-cta-inner > * {
  position: relative;
  z-index: 1;
}

.final-cta-inner > div > span {
  color: #bfdbfe;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.final-cta-inner h2 {
  max-width: 670px;
  margin: 11px 0 0;
  font-size: clamp(31px, 4vw, 45px);
  line-height: 1.12;
  letter-spacing: -1.8px;
}

.button-light {
  min-width: 190px;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
  color: var(--blue-dark);
}

.button-light:hover {
  border-color: #eff6ff;
  background: #eff6ff;
  color: var(--blue-dark);
}

.site-footer {
  padding: 55px 0 28px;
  background: var(--ink);
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.6fr;
  align-items: center;
  gap: 60px;
}

.footer-brand strong {
  color: #ffffff;
}

.footer-brand small {
  color: var(--muted);
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid #263349;
  color: #64748b;
  font-size: 9px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.coming-soon-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.15), transparent 31%),
    radial-gradient(circle at 10% 90%, rgba(96, 165, 250, 0.1), transparent 35%),
    var(--canvas);
}

.coming-soon-card {
  width: min(590px, 100%);
  padding: 42px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.coming-soon-card .brand {
  margin-bottom: 55px;
}

.coming-soon-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 15px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 800;
}

.coming-soon-card h1 {
  margin: 15px 0 15px;
  font-size: clamp(35px, 7vw, 49px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.coming-soon-card > p {
  margin: 0 0 28px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav > a:nth-child(-n + 2) {
    display: none;
  }

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

  .hero-copy h1 {
    font-size: 55px;
  }

  .process-grid,
  .intelligence-grid {
    gap: 55px;
  }

  .pricing-wrap {
    gap: 60px;
  }
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a,
  .main-nav > a:nth-child(-n + 2) {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 12px;
  }

  .nav-login {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .main-nav .button {
    margin-top: 8px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid,
  .process-grid,
  .intelligence-grid,
  .pricing-wrap,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .radar-preview {
    width: min(610px, 100%);
    margin-inline: auto;
    transform: none;
  }

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

  .proof-grid > div:nth-child(3) {
    border-left: 0;
  }

  .proof-grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .benefit-card {
    min-height: auto;
  }

  .process-grid,
  .intelligence-grid,
  .pricing-wrap,
  .faq-grid {
    gap: 55px;
  }

  .intelligence-panel {
    order: 2;
  }

  .pricing-copy {
    text-align: center;
  }

  .pricing-copy .eyebrow {
    justify-content: center;
  }

  .price-card {
    width: min(500px, 100%);
    margin-inline: auto;
  }

  .faq-heading {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    font-size: 8px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .hero {
    min-height: 0;
    padding: 112px 0 70px;
  }

  .hero-copy h1 {
    margin-top: 16px;
    font-size: 43px;
    letter-spacing: -2.4px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

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

  .hero-trust {
    display: grid;
    justify-content: start;
    width: max-content;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .preview-toolbar,
  .preview-hero {
    padding-right: 17px;
    padding-left: 17px;
  }

  .preview-hero h2 {
    font-size: 20px;
  }

  .metric-grid {
    gap: 5px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .metric-grid article {
    padding: 9px;
  }

  .metric-grid strong {
    font-size: 16px;
  }

  .opportunity-card {
    margin-right: 12px;
    margin-left: 12px;
    padding: 14px;
  }

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

  .proof-grid > div {
    min-height: 85px;
    justify-content: flex-start;
    padding-left: 35px;
  }

  .proof-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .process-copy h2,
  .intelligence-copy h2,
  .pricing-copy h2,
  .faq-heading h2 {
    font-size: 35px;
    letter-spacing: -1.4px;
  }

  .section-heading p,
  .process-copy > p,
  .intelligence-copy > p,
  .pricing-copy > p {
    font-size: 15px;
  }

  .benefit-card {
    padding: 24px;
  }

  .steps li {
    grid-template-columns: 43px 1fr;
    gap: 13px;
    padding-right: 12px;
  }

  .steps li > span {
    width: 43px;
    height: 43px;
  }

  .steps::before {
    left: 21px;
  }

  .intelligence-panel,
  .price-card {
    padding: 25px;
    border-radius: 20px;
  }

  .intelligence-panel h3 {
    font-size: 23px;
  }

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

  .price > strong {
    font-size: 58px;
  }

  .final-cta {
    padding-bottom: 14px;
  }

  .final-cta-inner {
    width: 100%;
    padding: 42px 28px;
    border-radius: 0;
  }

  .button-light {
    width: 100%;
  }

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

  .coming-soon-page {
    padding: 14px;
  }

  .coming-soon-card {
    padding: 28px 23px;
    border-radius: 20px;
  }

  .coming-soon-card .brand {
    margin-bottom: 42px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
