* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f1f5f9;
  color: #08142e;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.hero {
  min-height: 100vh;

  background:
    linear-gradient(rgba(8, 20, 50, 0.9), rgba(8, 20, 50, 0.9)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1600");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;

  padding: 4rem;
  color: white;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 2rem;
  max-width: 850px;
  margin-bottom: 5rem;
}

.hero span {
  font-size: 1.3rem;
  color: #cbd5e1;
  font-weight: bold;
}

.story {
  background: white;
  max-width: 1200px;

  margin: 4rem auto;
  padding: 4rem;

  border-radius: 24px;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.story:hover {
  transform: translateY(-4px);

  box-shadow:
    0 14px 35px rgba(0, 0, 0, 0.1);
}

.story h2,
.conclusion h2 {
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.story p,
.conclusion p {
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 1000px;
}

.story ul {
  margin-top: 2rem;
  padding-left: 2rem;
}

.story li {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.kpi-container {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.kpi {
  flex: 1;

  background: #dbe4ff;

  border-radius: 20px;

  padding: 2rem;

  text-align: center;
}

.kpi strong {
  display: block;

  font-size: 3.5rem;
  color: #1e3a8a;

  margin-bottom: 1rem;
}

.kpi span {
  font-size: 1.4rem;
}

.kpi.danger strong {
  color: #dc2626;
}

canvas {
  margin-top: 2rem;
  max-height: 520px;
}

.conclusion {
  background: #08142e;
  color: white;
  padding: 4rem;
}

footer {
  background: #020817;
  color: white;

  text-align: center;

  padding: 2rem;

  font-size: 1.1rem;
}

@media (max-width: 768px) {

  .hero {
    padding: 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.5rem;
  }

  .story {
    margin: 2rem 1rem;
    padding: 2rem;
  }

  .story h2,
  .conclusion h2 {
    font-size: 2.2rem;
  }

  .story p,
  .story li,
  .conclusion p {
    font-size: 1.2rem;
  }

  .kpi-container {
    flex-direction: column;
  }

  .kpi strong {
    font-size: 2.8rem;
  }

  .conclusion {
    padding: 2rem;
  }
}