:root {
  --bg-1: #060b18;
  --bg-2: #0f1a31;
  --panel: rgba(14, 26, 44, 0.64);
  --panel-border: rgba(0, 229, 255, 0.22);
  --line: rgba(255, 255, 255, 0.1);
  --text: #eef6ff;
  --text-dim: #9eb2ca;
  --cyan: #00e5ff;
  --rose: #ff4081;
  --emerald: #10b981;
  --amber: #fcd34d;
  --shadow: rgba(4, 8, 22, 0.58);
  --radius-lg: 22px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Poppins", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 7% 5%, #20345f 0%, transparent 35%),
    radial-gradient(circle at 94% 15%, #1a2745 0%, transparent 34%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  min-height: 100%;
}

a {
  color: #bff6ff;
}

.bg-shape {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.24;
  z-index: 0;
}

.bg-shape.one {
  width: 260px;
  height: 260px;
  top: 8%;
  left: -72px;
  background: var(--cyan);
}

.bg-shape.two {
  width: 250px;
  height: 250px;
  right: -90px;
  top: 34%;
  background: var(--rose);
}

.bg-shape.three {
  width: 210px;
  height: 210px;
  left: 38%;
  bottom: 2%;
  background: var(--emerald);
}

.site-wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 46px;
}

.header {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(140deg, var(--cyan), #8ef6ff);
  color: #071425;
  box-shadow: 0 10px 26px rgba(0, 229, 255, 0.32);
}

.brand h1 {
  font-size: 20px;
  margin: 0;
  line-height: 1.08;
}

.brand p {
  margin: 3px 0 0;
  color: var(--text-dim);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover,
.nav a.active {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.13) inset;
  color: #dcfbff;
  transform: translateY(-1px);
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(13px);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 16px 36px var(--shadow);
}

.card h2,
.card h3,
.card h4 {
  margin: 0 0 10px;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  color: #061423;
  background: linear-gradient(140deg, var(--amber), #ffe39f);
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(26px, 5vw, 46px);
  line-height: 1.04;
  margin: 7px 0 10px;
}

.muted {
  color: var(--text-dim);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.stat {
  flex: 1 1 140px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 12px;
}

.stat strong {
  display: block;
  font-size: 20px;
  margin-bottom: 3px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  font-size: 12px;
  padding: 5px 10px;
  color: #dff6ff;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.section-title small {
  color: var(--text-dim);
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 8px;
  color: #eaf3ff;
}

.list.tight li {
  margin-bottom: 6px;
}

.note {
  border-left: 3px solid var(--cyan);
  padding-left: 10px;
  color: #d7f8ff;
  margin: 10px 0 0;
  font-size: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(140deg, var(--cyan), #83f5ff);
  color: #071425;
}

.btn.ghost {
  color: #d4f7ff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.footer {
  margin-top: 18px;
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 900px) {
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .header {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: flex-start;
  }
}
