:root {
  --bg: #e9f2ff;
  --surface: #ffffff;
  --surface-soft: #f5f9ff;
  --text: #11203a;
  --muted: #4f6388;
  --primary: #1e66ff;
  --primary-strong: #0f48c9;
  --accent: #08b4a8;
  --line: #d8e3f6;
  --shadow: 0 12px 28px rgba(20, 51, 116, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  background: linear-gradient(160deg, #eff6ff 0%, #e6f0ff 60%, #eaf7ff 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  position: relative;
}

.bg-orb {
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.32;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.bg-orb--a {
  background: #37d6c7;
  height: 260px;
  left: -90px;
  top: -60px;
  width: 260px;
}

.bg-orb--b {
  background: #4f8bff;
  bottom: -100px;
  height: 320px;
  right: -90px;
  width: 320px;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 20px;
}

.site-header {
  backdrop-filter: blur(8px);
  background: rgba(233, 242, 255, 0.78);
  border-bottom: 1px solid rgba(216, 227, 246, 0.9);
  position: sticky;
  top: 0;
  z-index: 30;
}

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

.brand {
  align-items: center;
  color: inherit;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  align-items: center;
  background: linear-gradient(145deg, #1f69ff, #0d4fd3);
  border-radius: 14px;
  color: #fff;
  display: grid;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 800;
  height: 52px;
  letter-spacing: 0.8px;
  width: 52px;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-family: "Sora", sans-serif;
  font-size: 17px;
}

.brand__text span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav a {
  border-radius: 12px;
  color: var(--text);
  font-weight: 700;
  padding: 10px 12px;
  text-decoration: none;
}

.nav a:hover {
  background: var(--surface);
}

.btn {
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--primary {
  background: linear-gradient(155deg, var(--primary), var(--primary-strong));
  box-shadow: 0 8px 18px rgba(30, 102, 255, 0.35);
  color: #fff;
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.hero {
  padding: 64px 0 34px;
}

.hero__grid {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr;
}

.kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Sora", sans-serif;
  margin: 0;
}

h1 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.hero__content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 640px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero__proof {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.hero__proof li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  padding: 10px 12px;
}

.media-card {
  align-items: center;
  background: linear-gradient(160deg, #1a5cff, #18b8aa);
  border: 10px solid #f3f8ff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: #fff;
  display: grid;
  height: 390px;
  justify-content: center;
  text-align: center;
}

.media-card__label {
  border: 1px dashed rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  font-weight: 700;
  padding: 24px;
}

.section {
  padding: 42px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.68));
  border-block: 1px solid rgba(216, 227, 246, 0.7);
}

.section-head {
  margin-bottom: 18px;
  text-align: center;
}

.section-head--left {
  text-align: left;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 12px 0 0;
}

.metrics {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.metric strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 30px;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.cards-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h3 {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  margin: 0;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0 0;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  grid-template-columns: 38px 1fr;
  padding: 14px;
}

.timeline-item__step {
  align-items: center;
  background: linear-gradient(145deg, #08b4a8, #1173f3);
  border-radius: 10px;
  color: #fff;
  display: grid;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 800;
  height: 30px;
  width: 30px;
}

.split {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 0.9fr;
}

.feature-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.feature-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 700;
  padding: 10px 12px;
}

.chart-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.chart-placeholder {
  align-items: center;
  background: repeating-linear-gradient(
    90deg,
    #eff5ff 0,
    #eff5ff 8px,
    #ffffff 8px,
    #ffffff 16px
  );
  border: 1px dashed #bfd0ef;
  border-radius: 14px;
  color: var(--muted);
  display: grid;
  font-weight: 700;
  height: 260px;
}

.cards-grid--testimonials .card {
  background: linear-gradient(170deg, #ffffff, #f5fbff);
}

.cta-panel {
  align-items: center;
  background: linear-gradient(155deg, #ffffff, #f4f9ff);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 22px;
}

.cta-panel p {
  color: var(--muted);
  margin: 8px 0 0;
  max-width: 700px;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer {
  border-top: 1px solid rgba(216, 227, 246, 0.7);
  margin-top: 36px;
  padding: 22px 0;
}

.footer-wrap {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .hero__grid,
  .split {
    grid-template-columns: 1fr;
  }

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

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

  .media-card {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 34px;
  }

  .metrics,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
