﻿:root {
  --ink: #0e172a;
  --muted: #64748b;
  --line: #dbe5f2;
  --paper: #f7fbff;
  --white: #ffffff;
  --blue: #2f66eb;
  --blue-deep: #1d3f9d;
  --green: #059669;
  --green-deep: #047857;
  --action-gradient: linear-gradient(135deg, #17499a 0%, #0f657f 46%, #047857 100%);
  --action-gradient-hover: linear-gradient(135deg, #123f8a 0%, #0b5c75 46%, #036c4d 100%);
  --green-soft: #dff8eb;
  --orange: #f59e0b;
  --red: #e11d48;
  --shadow: 0 24px 70px rgba(22, 45, 84, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  font-family: Manrope, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 102, 235, 0.14), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(5, 150, 105, 0.13), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 48%, #ffffff 100%);
}

body.variant-two {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 8%, rgba(245, 158, 11, 0.18), transparent 26%),
    #f7fbff;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

body.variant-three {
  background:
    radial-gradient(circle at 50% 0%, rgba(5, 150, 105, 0.17), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #eef7f4 42%, #f6f9ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(14, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 100% 4px;
  mix-blend-mode: multiply;
  opacity: 0.28;
}

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

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

.page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: white;
  background: var(--action-gradient);
  box-shadow: 0 12px 28px rgba(47, 102, 235, 0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #40516f;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: rgba(47, 102, 235, 0.08);
}

.cta, .secondary, .ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cta {
  color: #fff;
  background: var(--action-gradient);
  box-shadow: 0 18px 42px rgba(4, 120, 87, 0.24), 0 10px 24px rgba(23, 73, 154, 0.2);
}

.cta:hover, .secondary:hover, .ghost:hover {
  transform: translateY(-2px);
}

.cta:hover {
  background: var(--action-gradient-hover);
  box-shadow: 0 20px 48px rgba(4, 120, 87, 0.3), 0 12px 28px rgba(23, 73, 154, 0.24);
}

.secondary {
  color: #fff;
  background: var(--action-gradient);
  box-shadow: 0 14px 32px rgba(23, 73, 154, 0.16);
}

.ghost {
  color: #104f83;
  border: 1px solid rgba(4, 120, 87, 0.18);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--action-gradient) border-box;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 46px;
  align-items: center;
  padding: 52px 0 70px;
}

.hero.compact {
  grid-template-columns: 1fr;
  text-align: center;
  padding-top: 70px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(47, 102, 235, 0.18);
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 900;
}

.hero.compact .kicker {
  margin: 0 auto;
}

h1 {
  margin: 22px 0 18px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.hero.compact h1 {
  max-width: 1050px;
  margin-inline: auto;
}

.lead {
  max-width: 710px;
  color: #53647f;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero.compact .actions {
  justify-content: center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(30, 55, 95, 0.08);
}

.metric strong {
  display: block;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.panel {
  position: relative;
  border: 1px solid rgba(47, 102, 235, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.17), transparent 70%);
}

.mock-app {
  padding: 22px;
}

.mock-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.mock-pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: #edf4ff;
  color: #496280;
  font-weight: 900;
  font-size: 13px;
}

.tender-card {
  position: relative;
  margin: 12px 0;
  padding: 18px 18px 18px 24px;
  border: 1px solid #dfe8f6;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(29, 63, 157, 0.08);
}

.tender-card::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 6px;
  border-radius: 999px;
  background: var(--green);
}

.tender-title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.score-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #596a85;
  font-weight: 800;
}

.score {
  padding: 7px 10px;
  border-radius: 12px;
  color: var(--green);
  background: var(--green-soft);
}

.product-slider {
  position: relative;
  min-width: 0;
}

.slider-shell {
  position: relative;
  min-height: 610px;
  padding: 24px;
  border: 1px solid rgba(47, 102, 235, 0.13);
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 18%, rgba(47, 102, 235, 0.11), transparent 32%),
    radial-gradient(circle at 84% 76%, rgba(5, 150, 105, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.slider-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(239,246,255,0.54));
  opacity: 0.72;
}

.slides,
.slider-controls {
  position: relative;
  z-index: 1;
}

.slider-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #55708f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.slides {
  min-height: 540px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  opacity: 0;
  transform: translateX(22px) scale(0.985);
  pointer-events: none;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.slide-caption {
  max-width: 520px;
}

.slide-caption span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 999px;
  color: #0c5f7b;
  background: rgba(5, 150, 105, 0.11);
  font-size: 12px;
  font-weight: 900;
}

.slide-caption h2 {
  margin: 0;
  max-width: 460px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.slide-caption p {
  margin: 10px 0 0;
  color: #5a6f8a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.slide-caption .caption-note {
  margin-top: 12px;
  padding-left: 16px;
  border-left: 4px solid rgba(5, 150, 105, 0.24);
  color: #314866;
  font-size: 14px;
}

.visual {
  position: relative;
  min-height: 310px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.23);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,250,255,0.74)),
    radial-gradient(circle at 100% 100%, rgba(5,150,105,0.14), transparent 32%);
  box-shadow: 0 18px 48px rgba(22, 45, 84, 0.1);
  overflow: hidden;
}

.mini-pill-row,
.source-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.mini-pill-row span,
.source-bar span,
.source-bar em {
  padding: 9px 12px;
  border-radius: 999px;
  color: #506985;
  background: #edf4ff;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.mini-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 14px;
  margin-top: 12px;
  padding: 18px 18px 18px 24px;
  border: 1px solid #deebf8;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(29, 63, 157, 0.08);
}

.mini-card::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 7px;
  border-radius: 999px;
  background: var(--green);
}

.mini-card.soft {
  background: linear-gradient(135deg, #fff, #f7fbff);
}

.mini-card b {
  font-size: 17px;
  line-height: 1.25;
}

.mini-card em {
  align-self: start;
  padding: 8px 10px;
  border-radius: 14px;
  color: var(--green);
  background: var(--green-soft);
  font-style: normal;
  font-weight: 900;
}

.mini-card small {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
}

.mini-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  color: #103d79;
  background: linear-gradient(135deg, #eef6ff, #f5fffb);
  font-weight: 900;
}

.mini-summary span {
  color: #5a6f8a;
  font-size: 13px;
}

.ai-card {
  padding: 20px;
  border: 1px solid rgba(47, 102, 235, 0.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 45, 84, 0.08);
}

.ai-card b {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.ai-card p {
  margin: 0;
  color: #53647f;
  line-height: 1.55;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip-grid span,
.question-card span {
  padding: 10px 13px;
  border: 1px solid rgba(47, 102, 235, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #142033;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(22, 45, 84, 0.06);
}

.status-board {
  display: grid;
  align-content: start;
  gap: 12px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(100%, 330px);
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 900;
}

.status-pill strong {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
}

.status-pill.match { color: #fff; background: var(--green); }
.status-pill.maybe { color: #bd6800; background: #fff7e0; border: 1px solid #ffd48a; }
.status-pill.reject { color: #d8174a; background: #fff0f4; border: 1px solid #ffc3d2; }

.status-lane {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(22, 45, 84, 0.06);
}

.status-lane span {
  width: 9px;
  height: 44px;
  border-radius: 999px;
}

.status-lane.match span { background: var(--green); }
.status-lane.maybe span { background: var(--orange); }
.status-lane.reject span { background: var(--red); }

.message-head,
.prompt-row,
.folder-card,
.profile-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 45, 84, 0.08);
  font-weight: 900;
}

.message-head i,
.folder-card span,
.profile-card small {
  color: #64748b;
  font-style: normal;
  font-weight: 800;
}

.answer-lines {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.answer-lines span {
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dce9fb, #eef7ff);
}

.answer-lines span:nth-child(2) { width: 78%; }
.answer-lines span:nth-child(3) { width: 88%; }
.answer-lines span:nth-child(4) { width: 62%; }

.ai-answer-visual ul {
  margin: 0;
  padding-left: 22px;
  color: #26364d;
  font-weight: 800;
  line-height: 1.75;
}

.docs-visual,
.source-visual,
.admin-visual,
.onboarding-visual {
  display: grid;
  align-content: start;
  gap: 12px;
}

.doc-row,
.source-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #deebf8;
  border-radius: 18px;
  background: #fff;
  font-weight: 900;
}

.doc-row em,
.source-card small {
  display: inline-grid;
  place-items: center;
  height: 34px;
  border-radius: 12px;
  color: #0f5f80;
  background: #eaf7ff;
  font-style: normal;
  font-size: 12px;
}

.doc-row.accent {
  border-color: rgba(5, 150, 105, 0.24);
  background: linear-gradient(135deg, #fff, #effdf7);
}

.doc-row.accent em {
  color: #047857;
  background: #d8f7e8;
}

.request-visual {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 12px;
}

.request-chip {
  position: relative;
  padding: 12px 16px 12px 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(22, 45, 84, 0.08);
  font-weight: 900;
}

.request-chip::before,
.request-card span {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 7px;
  border-radius: 999px;
}

.request-chip.blue::before { background: var(--blue); }
.request-chip.green::before { background: var(--green); }
.request-chip.amber::before { background: var(--orange); }

.request-card {
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding: 24px 20px 24px 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22, 45, 84, 0.08);
}

.request-card span:nth-child(1) { left: 0; background: var(--blue); }
.request-card span:nth-child(2) { left: 9px; background: var(--green); }

.request-card b,
.request-card small,
.profile-card strong,
.profile-card small {
  display: block;
}

.request-card small {
  margin-top: 8px;
  color: #64748b;
  font-weight: 800;
}

.question-card {
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(22, 45, 84, 0.08);
}

.question-card b {
  display: block;
  margin-bottom: 14px;
}

.sync-visual {
  display: grid;
  place-items: center;
  text-align: center;
}

.sync-ring {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: conic-gradient(var(--green) 0 72%, #dfe8f6 72% 100%);
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.16);
  animation: sliderSpin 4s linear infinite;
}

.sync-ring::after {
  content: "";
  display: block;
  width: 74px;
  height: 74px;
  margin: 18px;
  border-radius: 999px;
  background: #fff;
}

.sync-copy {
  margin: 18px 0;
}

.sync-copy b,
.sync-copy span {
  display: block;
}

.sync-copy span {
  margin-top: 6px;
  color: #64748b;
  font-weight: 800;
}

.progress {
  width: min(280px, 100%);
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe8f6;
}

.progress i {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: var(--action-gradient);
}

.source-bar button {
  border: 1px solid #d9e6f6;
  border-radius: 999px;
  background: #fff;
  color: #355172;
  font: inherit;
  font-weight: 900;
  padding: 9px 12px;
}

.prompt-row b {
  color: var(--green);
}

.admin-glow {
  display: grid;
  place-items: center;
  min-height: 86px;
  border-radius: 24px;
  color: #fff;
  background: var(--action-gradient);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 22px 44px rgba(4, 120, 87, 0.2);
}

.slider-controls {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(47, 102, 235, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #17499a;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(22, 45, 84, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.slider-controls button:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 102, 235, 0.42);
  background: #f7fbff;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c6d5ea;
  box-shadow: none;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--action-gradient);
}

.radar {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  padding: 22px;
}

.radar-list, .radar-main {
  border: 1px solid #dfe8f6;
  border-radius: 24px;
  background: #fff;
  padding: 18px;
}

.radar-dot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eef3fb;
  font-weight: 900;
}

.radar-dot:last-child {
  border-bottom: 0;
}

.radar-dot span {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
}

.radar-screen {
  min-height: 300px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(47, 102, 235, 0.14) 29% 30%, transparent 31% 52%, rgba(5, 150, 105, 0.14) 53% 54%, transparent 55%),
    conic-gradient(from 60deg, rgba(47, 102, 235, 0.08), rgba(5, 150, 105, 0.18), rgba(245, 158, 11, 0.16), rgba(47, 102, 235, 0.08));
  position: relative;
  overflow: hidden;
}

.radar-screen::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 46%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(5, 150, 105, 0.8), transparent);
  animation: sweep 5s linear infinite;
}

.radar-card {
  position: absolute;
  width: 210px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.13);
  font-weight: 900;
}

.radar-card.one { left: 9%; top: 13%; }
.radar-card.two { right: 7%; top: 34%; }
.radar-card.three { left: 31%; bottom: 11%; }

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

.step, .feature, .variant-card {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(22, 45, 84, 0.08);
}

.step {
  padding: 24px;
}

.step b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #fff;
  border-radius: 15px;
  background: var(--blue);
}

.step h3, .feature h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.step p, .feature p, .variant-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 44px 0 70px;
}

.feature {
  padding: 26px;
}

.pricing-section {
  position: relative;
  margin: 26px 0 90px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(47, 102, 235, 0.12);
  border-radius: 42px;
  background:
    radial-gradient(circle at 8% 12%, rgba(47, 102, 235, 0.1), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(5, 150, 105, 0.11), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,250,255,0.74));
  box-shadow: 0 22px 70px rgba(22, 45, 84, 0.08);
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: auto -12% -42% 46%;
  height: 260px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22, 73, 154, 0.14), rgba(5, 150, 105, 0.16));
  filter: blur(42px);
  pointer-events: none;
}

.pricing-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 28px;
}

.pricing-head .section-title {
  margin-top: 10px;
  margin-bottom: 12px;
}

.pricing-head p {
  margin: 0;
  color: #5a6f8a;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.pricing-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(22, 45, 84, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, #17499a, #059669);
}

.price-card.economy::before {
  background: linear-gradient(90deg, #5b7495, #2f66eb);
}

.price-card.maximum::before {
  background: linear-gradient(90deg, #0f766e, #f59e0b);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 102, 235, 0.26);
  box-shadow: 0 24px 58px rgba(22, 45, 84, 0.13);
}

.price-card.featured {
  border-color: rgba(5, 150, 105, 0.34);
  background:
    radial-gradient(circle at 88% 8%, rgba(5, 150, 105, 0.14), transparent 34%),
    #fff;
  box-shadow: 0 26px 70px rgba(5, 150, 105, 0.16);
}

.popular-badge {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--action-gradient);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.price-top span {
  color: #526987;
  font-size: 15px;
  font-weight: 900;
}

.price-top strong {
  padding: 8px 12px;
  border-radius: 999px;
  color: #103d79;
  background: #edf4ff;
  font-size: 13px;
  font-weight: 900;
}

.price-card h3 {
  margin: 0 0 12px;
  color: #101827;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.price-card p {
  margin: 0 0 20px;
  color: #5b6f8b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  color: #1a2b42;
  font-weight: 800;
  line-height: 1.4;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 28%, transparent 30%),
    var(--green);
  box-shadow: 0 8px 18px rgba(5, 150, 105, 0.18);
}

.price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(47, 102, 235, 0.16);
  border-radius: 18px;
  color: #103d79;
  background: #fff;
  box-shadow: 0 12px 26px rgba(22, 45, 84, 0.08);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.price-cta.primary,
.price-cta:hover {
  color: #fff;
  background: var(--action-gradient);
  box-shadow: 0 18px 34px rgba(4, 120, 87, 0.2);
}

.price-cta:hover {
  transform: translateY(-2px);
}

.section-title {
  max-width: 780px;
  margin: 70px 0 24px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 54px 0 84px;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--action-gradient);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.055em;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.cta-band .cta {
  color: #103d79;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 38px 0 90px;
}

.variant-card {
  padding: 22px;
  min-height: 240px;
}

.variant-preview {
  height: 110px;
  margin-bottom: 18px;
  border-radius: 22px;
  border: 1px solid #dfe8f6;
  background: linear-gradient(135deg, rgba(47, 102, 235, 0.16), rgba(5, 150, 105, 0.14));
}

.variant-card:nth-child(2) .variant-preview {
  background: conic-gradient(from 60deg, rgba(47, 102, 235, 0.2), rgba(245, 158, 11, 0.24), rgba(5, 150, 105, 0.18));
}

.variant-card:nth-child(3) .variant-preview {
  background: radial-gradient(circle at 50% 30%, rgba(5, 150, 105, 0.26), transparent 55%), linear-gradient(135deg, #fff, #eaf4ff);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

@keyframes sliderSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

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

  .slider-shell {
    min-height: 640px;
  }

  .metrics, .steps, .features, .pricing-grid, .variant-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .page {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    font-size: 48px;
  }

  .actions, .footer {
    flex-direction: column;
  }

  .cta, .secondary, .ghost {
    width: 100%;
  }

  .pricing-section {
    padding: 22px;
    border-radius: 30px;
  }

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

  .slider-shell {
    min-height: 720px;
    padding: 18px;
    border-radius: 30px;
  }

  .slide {
    inset: 0;
  }

  .visual {
    min-height: 350px;
    padding: 16px;
  }

  .mini-card {
    grid-template-columns: 1fr;
  }

  .slider-topline {
    font-size: 11px;
  }
}

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

  .slide,
  .cta,
  .secondary,
  .ghost,
  .price-card,
  .price-cta,
  .slider-controls button {
    transition: none;
  }

  .sync-ring,
  .radar-screen::before {
    animation: none;
  }
}
