:root {
  --bg: #0b1120;
  --card: #111827;
  --primary: #22d3ee;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --border: rgba(255,255,255,0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.wrapper {
  max-width: 900px;
  width: 100%;
  background: var(--card);
  border-radius: 20px;
  padding: 60px;
  border: 1px solid var(--border);
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

.logo {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 8px;
}

.subtitle {
  font-size: 13px;
  color: var(--muted);
}

.hero h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 50px;
}

.section {
  margin-bottom: 50px;
}

.section h2 {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.section p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.section ul {
  list-style: none;
}

.section ul li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.section ul li::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}

.highlight {
  background: rgba(34, 211, 238, 0.06);
  padding: 30px;
  border-radius: 12px;
}

.metric-box {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.metric span {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.metric small {
  color: var(--muted);
  font-size: 13px;
}

.next-step .cta {
  margin-top: 30px;
  text-align: center;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #0b1120;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  opacity: 0.85;
}

.footer {
  margin-top: 60px;
  font-size: 12px;
  text-align: center;
  color: var(--muted);
}