:root {
  --bg: #f4f8ff;
  --bg-2: #eaf1ff;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --ink: #111a3a;
  --muted: #5a678d;
  --line: #dbe5ff;
  --brand: #5a5cff;
  --brand-2: #2f7cff;
  --brand-3: #1ecbff;
  --ok: #00b894;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 20px 48px rgba(28, 47, 122, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(900px 440px at 0% -8%, rgba(90, 92, 255, 0.14), transparent 64%),
    radial-gradient(960px 440px at 100% -10%, rgba(30, 203, 255, 0.13), transparent 66%),
    linear-gradient(180deg, #f8faff 0%, var(--bg) 55%, var(--bg-2) 100%);
}

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

a:hover {
  text-decoration: underline;
}

.site-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 18px 86px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}

.topbar-note {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4c5dbe;
}

.topbar-link {
  font-size: 13px;
  color: var(--muted);
}

.nav {
  margin-top: 12px;
  position: sticky;
  top: 12px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand img {
  border-radius: 9px;
  box-shadow: 0 6px 18px rgba(90, 92, 255, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.chip.active {
  color: #2a3470;
  background: linear-gradient(90deg, #eef0ff, #edf6ff);
  border-color: #c7d8ff;
}

.chip.download {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px rgba(63, 99, 255, 0.28);
}

.hero {
  margin-top: 20px;
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid #d8e3ff;
  background:
    radial-gradient(760px 300px at 10% 0%, rgba(90, 92, 255, 0.14), transparent 62%),
    radial-gradient(640px 260px at 100% 0%, rgba(30, 203, 255, 0.14), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c9d8ff;
  border-radius: 999px;
  background: #f1f5ff;
  color: #4a5ed4;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 14px 0 12px;
  font-size: clamp(36px, 4.3vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0;
  color: #3e4c79;
  font-size: 18px;
  max-width: 62ch;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 15px;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 28px rgba(63, 99, 255, 0.3);
}

.btn.secondary {
  background: #fff;
  color: #2d3a71;
  border-color: #ccd8ff;
}

.metric-board {
  border: 1px solid #d7e2ff;
  border-radius: 20px;
  background: linear-gradient(160deg, #f8fbff 0%, #eef4ff 100%);
  padding: 18px;
}

.metric-title {
  margin: 0 0 12px;
  font-size: 12px;
  color: #5667a8;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

.metric-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #d4e0ff;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

.metric-item b {
  font-size: 14px;
}

.metric-item span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: #3d5ce8;
}

.section {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(26, 45, 120, 0.08);
}

.section h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.section p {
  margin: 0;
  color: #485a8f;
}

.bullet-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.bullet {
  padding: 10px 12px;
  border: 1px solid #d4dfff;
  border-radius: 999px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #354a91;
  background: #f7faff;
}

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

.card {
  grid-column: span 6;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  background: linear-gradient(155deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 10px 24px rgba(35, 55, 140, 0.07);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: #4d6099;
}

.card .small-link {
  margin-top: 12px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  color: #3556ea;
}

.page-hero {
  margin-top: 20px;
  border: 1px solid #d8e2ff;
  border-radius: 24px;
  padding: 34px;
  background:
    radial-gradient(650px 260px at 5% 0%, rgba(90, 92, 255, 0.14), transparent 60%),
    radial-gradient(640px 250px at 100% 0%, rgba(30, 203, 255, 0.14), transparent 58%),
    #fff;
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 10px 0;
  font-size: clamp(34px, 4vw, 52px);
}

.page-hero p {
  margin: 0;
  font-size: 18px;
  color: #425487;
  max-width: 72ch;
}

.content {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 24px;
}

.content h2 {
  margin: 18px 0 8px;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.content h2:first-child {
  margin-top: 0;
}

.content p {
  margin: 0 0 8px;
  color: #4b5f96;
}

.content ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.content li {
  margin: 5px 0;
}

.qa-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.qa {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9fbff;
  padding: 14px;
}

.qa b {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.links-row {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #5c6992;
  font-size: 14px;
}

.footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: #6474a5;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.small {
  font-size: 13px;
  color: var(--muted);
}

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

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

  .card {
    grid-column: span 12;
  }
}

@media (max-width: 720px) {
  .site-wrap {
    padding: 16px 12px 56px;
  }

  .hero,
  .page-hero,
  .section,
  .content {
    padding: 20px;
  }

  .topbar {
    border-radius: 18px;
  }

  .nav {
    top: 8px;
  }

  .lead,
  .page-hero p {
    font-size: 16px;
  }

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

/* Home page refinement */
.home-hero {
  margin-top: 20px;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid #d8e3ff;
  background: radial-gradient(760px 300px at 10% 0%, rgba(90, 92, 255, 0.14), transparent 62%),
    radial-gradient(640px 260px at 100% 0%, rgba(30, 203, 255, 0.14), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.home-hero-copy h1 {
  max-width: 15ch;
}

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

.home-kpi {
  border: 1px solid #d7e2ff;
  border-radius: 12px;
  padding: 10px;
  background: #f8fbff;
}

.home-kpi b {
  display: block;
  font-size: 13px;
}

.home-kpi span {
  font-size: 12px;
  color: #6071a3;
}

.home-device {
  min-width: 0;
}

.shots {
  position: relative;
  min-height: 520px;
}

.shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #cfddff;
  box-shadow: 0 14px 30px rgba(35, 55, 140, 0.18);
  background: #fff;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shot.second {
  position: absolute;
  width: 80%;
  right: -4%;
  bottom: -26px;
}

.trust-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trust-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.8);
}

.trust-item b {
  display: block;
  font-size: 13px;
}

.trust-item span {
  font-size: 12px;
  color: #61709d;
}

.feature-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-card {
  border: 1px solid #d7e2ff;
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(160deg, #ffffff, #f8fbff);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: #50629b;
}

.home-band {
  margin-top: 22px;
  border: 1px solid #cfdcff;
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(120deg, #eff4ff, #ecf8ff);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.home-band h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.home-band p {
  margin: 0;
  color: #475b95;
  max-width: 72ch;
}

.home-band-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

  .home-kpis {
    grid-template-columns: 1fr;
  }

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

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

  .shots {
    min-height: 0;
    display: grid;
    gap: 10px;
  }

  .shot.second {
    position: static;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .home-hero {
    padding: 20px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}

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

a,
.btn,
.chip,
.feature-card,
.trust-item,
.home-kpi,
.card,
.qa {
  transition: all 0.22s ease;
}

.nav {
  box-shadow: 0 10px 28px rgba(30, 56, 160, 0.08);
}

.chip:hover {
  transform: translateY(-1px);
  border-color: #c5d6ff;
  background: #f2f6ff;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.section,
.content,
.feature-card,
.card,
.trust-item,
.home-kpi,
.qa {
  box-shadow: 0 8px 20px rgba(31, 52, 132, 0.05);
}

.feature-card:hover,
.card:hover,
.trust-item:hover,
.home-kpi:hover,
.qa:hover {
  transform: translateY(-2px);
  border-color: #c6d6ff;
}

.content p,
.content li,
.section p,
.home-band p {
  max-width: 72ch;
}

.trust-note {
  margin-top: 10px;
  max-width: 62ch;
}

.home-hero,
.page-hero,
.section,
.content,
.home-band,
.footer {
  animation: fadeup 0.35s ease both;
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav {
    position: static;
  }

  .home-hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(32px, 10.6vw, 44px);
  }

  .section h2,
  .home-band h2,
  .content h2 {
    font-size: 22px;
  }

  .cta-row,
  .home-band-actions {
    width: 100%;
  }

  .cta-row .btn,
  .home-band-actions .btn {
    width: 100%;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .chip {
    font-size: 12px;
  }
}
