:root {
  --bg: #0b1220;
  --card: #0f1725;
  --muted: #9aa4b2;
  --brand: #0ea5e9;
  --accent: #38bdf8;
  --text: #e5e7eb;
  --highlight: #22d3ee;
  --border: #243042;
  --shadow: rgba(56, 189, 248, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1000px 700px at 85% -10%, rgba(34, 211, 238, 0.15), transparent), var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  line-height: 1.5;
}

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

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  color: #00131a;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 24px var(--shadow);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--shadow);
}

.btn-outline {
  border: 1px solid #244055;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--text);
  transition: background 0.1s ease, color 0.1s ease;
}

.btn-outline:hover {
  background: #244055;
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 60px 0;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin: 0.2em 0;
  font-weight: 800;
}

.sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.5em;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s ease;
}

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

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

.pill {
  display: inline-block;
  background: #0e1a28;
  border: 1px solid #23425a;
  color: #9edcff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.95rem;
  margin: 4px;
}

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

.kpi {
  background: #0f1728;
  border: 1px solid #213042;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: background 0.1s ease;
}

.kpi:hover {
  background: #142033;
}

.kpi .n {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--highlight);
}

.hero-art {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0) 30%, rgba(11, 18, 32, 0.85) 100%);
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #c8e6ff;
  font-size: 1.05rem;
}

.section {
  padding: 40px 0;
}

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

.footer {
  border-top: 1px solid #1f2a38;
  color: #8aa3b7;
  padding: 32px 0;
  margin-top: 32px;
  font-size: 0.95rem;
  text-align: center;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 1em;
  font-weight: 700;
}

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

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

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

@media (max-width: 600px) {
  .container {
    padding: 16px;
  }

  .hero {
    padding: 40px 0;
  }

  .btn,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .hero h1 {
    text-align: center;
  }

  .sub {
    text-align: center;
  }

  .kpis {
    gap: 12px;
  }
}