* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: #172033;
  background: #f7f9fc;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e7ecf3;
}

.nav {
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 0;
}

.logo img {
  height: 96px;
  width: auto;
  display: block;
}

.logo-tagline {
  margin: -0.65rem 0 0 1.05rem;
  padding: 0;
  position: relative;
  z-index: 1;
  align-self: stretch;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #3e4f64;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.95rem;
  color: #526071;
}

.nav-links a:hover {
  color: #0b3b75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #0b63ce;
  color: white;
  box-shadow: 0 12px 28px rgba(11, 99, 206, 0.22);
}

.btn-primary:hover {
  background: #084fA8;
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: #0b3b75;
  border-color: #d7e3f4;
}

.btn-secondary:hover {
  border-color: #0b63ce;
  transform: translateY(-1px);
}

.hero {
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at top right, rgba(11, 99, 206, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #e7f0ff;
  color: #0b63ce;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  color: #111827;
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.12rem;
  color: #536174;
  max-width: 650px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dbe7f6;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 26px 70px rgba(27, 54, 93, 0.12);
}

.dashboard {
  background: #101827;
  border-radius: 22px;
  padding: 22px;
  color: white;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #64748b;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.metric {
  background: #182336;
  border: 1px solid #263850;
  border-radius: 16px;
  padding: 18px;
}

.metric span {
  display: block;
  color: #9fb0c8;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.metric strong {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.chart {
  height: 140px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(54, 161, 255, 0.24), rgba(54, 161, 255, 0.02));
  border: 1px solid #263850;
  position: relative;
  overflow: hidden;
}

.chart::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 58px;
  background: linear-gradient(135deg, transparent 5%, #4ca3ff 6%, #4ca3ff 8%, transparent 9%, transparent 24%, #4ca3ff 25%, #4ca3ff 27%, transparent 28%, transparent 44%, #4ca3ff 45%, #4ca3ff 47%, transparent 48%, transparent 64%, #4ca3ff 65%, #4ca3ff 67%, transparent 68%);
  opacity: 0.85;
}

section {
  padding: 84px 0;
}

#platform {
  background: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  color: #111827;
  margin-bottom: 16px;
}

.section-header p {
  color: #657386;
  font-size: 1.05rem;
}

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

.card {
  background: white;
  border: 1px solid #e5ebf3;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(30, 48, 78, 0.06);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #eaf3ff;
  color: #0b63ce;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: #111827;
}

.card p {
  color: #657386;
  font-size: 0.98rem;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.split h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.13;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  color: #111827;
}

.split p {
  color: #657386;
  margin-bottom: 24px;
  font-size: 1.04rem;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #334155;
}

.check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dff6e8;
  color: #147d3f;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 900;
  margin-top: 2px;
}

.platform-panel {
  background: #ffffff;
  border: 1px solid #e4eaf2;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 46px rgba(30, 48, 78, 0.08);
}

.platform-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #edf1f6;
}

.platform-row:last-child {
  border-bottom: 0;
}

.platform-row strong {
  color: #111827;
}

.platform-row span {
  color: #657386;
  text-align: right;
}

.stats {
  background: #0b3b75;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat strong {
  font-size: 2.3rem;
  display: block;
  letter-spacing: -0.04em;
}

.stat span {
  color: #c8d9ef;
  font-size: 0.95rem;
}

.cta {
  padding: 76px 0;
}

.cta-box {
  background: linear-gradient(135deg, #111827 0%, #0b3b75 100%);
  border-radius: 32px;
  padding: 58px;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: 0 24px 64px rgba(11, 59, 117, 0.2);
}

.cta-box h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.cta-box p {
  color: #d7e5f6;
  max-width: 650px;
}

footer {
  border-top: 1px solid #e4eaf2;
  padding: 28px 0;
  color: #657386;
  background: white;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .cards,
  .stats-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 68px 0;
  }

  section {
    padding: 64px 0;
  }

  .cta-box {
    padding: 36px;
  }
}
