:root {
  --accent: #5de0c4;

  --bg: #0b0f1a;
  --bg2: #0f1526;
  --surface: #121a2f;
  --surface2: #0f162a;
  --border: rgba(255, 255, 255, 0.10);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.52);

  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --radius: 18px;

  --container: 1120px;
}

/* Reset-ish */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background:
    radial-gradient(1000px 600px at 15% 10%, rgba(93, 224, 196, 0.12), transparent 60%),
    radial-gradient(900px 540px at 80% 20%, rgba(93, 224, 196, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.92;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 14, 26, 0.72);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 6px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-tag {
  color: var(--muted);
  margin-left: 2px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-link {
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.nav-link--muted {
  color: var(--faint);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 190px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 120ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.btn:active {
  transform: translateY(0px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(93, 224, 196, 0.22), rgba(93, 224, 196, 0.10));
  border-color: rgba(93, 224, 196, 0.35);
}

.btn-primary:hover {
  border-color: rgba(93, 224, 196, 0.55);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.10);
  color: var(--muted);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

/* Hero */
.hero {
  padding: 56px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  padding: 18px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.headline {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.accent {
  color: var(--accent);
}

.subhead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 64ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 16px;
}

.note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--faint);
  font-weight: 600;
  margin-top: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(93, 224, 196, 0.12);
}

/* Card */
.hero-card {
  display: flex;
  align-items: stretch;
}

.card {
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-title {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 12px;
}

.feature {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.12);
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(93, 224, 196, 0.10);
  border: 1px solid rgba(93, 224, 196, 0.22);
}

.feature-title {
  font-weight: 800;
  margin-bottom: 2px;
}

.feature-desc {
  color: var(--muted);
  font-size: 13px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.micro {
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 12px;
}

/* Strip */
.strip {
  padding: 18px 0 44px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.strip-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.strip-kicker {
  color: var(--faint);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.strip-text {
  color: var(--text);
  font-weight: 700;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(10, 14, 26, 0.55);
  padding: 18px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-left {
  color: var(--muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.footer-link:hover {
  color: var(--text);
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.22);
}

.pill {
  font-weight: 800;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(93, 224, 196, 0.28);
  background: rgba(93, 224, 196, 0.08);
  color: var(--text);
}

.stat-block {
  margin-bottom: 28px;
  font-size: 0.9em;
}

.stat-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-bar {
  width: 100%;
  height: 14px;
  background: #1c2733;
  border-radius: 8px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  transition: width 0.4s ease;
}

.stat-red {
  background: #d32f2f;
}

.stat-orange {
  background: #f57c00;
}

.stat-yellow {
  background: #fbc02d;
}

.stat-green {
  background: #4caf50;
}

.stat-gold {
  background: linear-gradient(90deg, #00e676, #1de9b6);
}

.stat-meta {
  font-size: 0.85rem;
  color: #9fb2c8;
  margin-top: 4px;
}


/* legal dosc */

.legal {
  line-height: 1.65;
}

/* § */
.legal-section > h2 {
  margin-top: 32px;
}

/* (1) */
.legal-p {
  margin-left: 16px;
}

/* 1. */
.legal-n {
  margin-left: 32px;
}

/* a.) */
.legal-a {
  margin-left: 48px;
}

/* - */
.legal-dash {
  margin-left: 64px;
}

.legal-p p,
.legal-n p,
.legal-a p,
.legal-dash p {
  margin: 4px 0;
}


/* Responsive */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    min-width: auto;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 520px) {
  .brand-name {
    display: none;
  }

  .brand-tag {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }

  .strip-grid {
    grid-template-columns: 1fr;
  }
}