:root {
  --accent: #6366f1;
  --accent-dark: #4f46e5;
  --bg: #440a03;
  --bg-soft: #020617;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --danger: #ef4444;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(
    circle at top,
    var(--bg) 0,
    var(--bg-soft) 55%,
    var(--bg-soft) 100%
  );
  color: var(--text);
  min-height: 100vh;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 64px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #f97316, #e11d48);
  box-shadow: 0 0 0 2px rgba(248, 250, 252, 0.06),
              0 12px 30px rgba(15, 23, 42, 0.6);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

nav a {
  text-decoration: none;
  color: inherit;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
  cursor: pointer;
}

nav a:hover {
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.6);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  margin-bottom: 16px;
}

h1 span.highlight {
  background: linear-gradient(120deg, #a855f7, #6366f1, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.75);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.85);
  color: var(--muted);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(148, 163, 184, 0.95);
  background: rgba(15, 23, 42, 1);
}

.hero-note {
  font-size: 11px;
  color: var(--muted);
}

.hero-note strong {
  color: #e5e7eb;
  font-weight: 500;
}

.hero-card {
  border-radius: 24px;
  padding: 20px;
  background: radial-gradient(circle at top left, #1f2937, #020617);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top right, rgba(129, 140, 248, 0.12), transparent 55%),
    radial-gradient(circle at bottom left, rgba(248, 113, 113, 0.14), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 13px;
  margin-bottom: 12px;
}

.stat-label {
  color: var(--muted);
}

.stat-value {
  font-size: 20px;
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--muted);
  margin-bottom: 12px;
}

.pill-badge {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.mini-chart {
  margin-top: 8px;
  height: 90px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: flex-end;
  gap: 6px;
}

.mini-bar {
  border-radius: 999px;
  background: linear-gradient(to top, rgba(129, 140, 248, 0.1), rgba(129, 140, 248, 0.9));
  position: relative;
  overflow: hidden;
}

.mini-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, transparent, rgba(248, 250, 252, 0.55));
  mix-blend-mode: screen;
  opacity: 0.6;
}

.mini-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
}

.mini-stats span strong {
  color: var(--text);
  font-weight: 500;
}

.section {
  margin-bottom: 52px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 20px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 13px;
  color: var(--muted);
  max-width: 360px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.7);
}

.feature-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.cta-block {
  border-radius: 22px;
  padding: 20px 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: linear-gradient(120deg, rgba(79, 70, 229, 0.17), rgba(15, 23, 42, 0.95));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 44px;
}

.cta-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cta-text {
  font-size: 13px;
  color: var(--muted);
  max-width: 420px;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.input {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 8px 14px;
  font-size: 13px;
  background: rgba(15, 23, 42, 0.92);
  color: var(--text);
  outline: none;
  min-width: 0;
  flex: 1 1 160px;
}

.input::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.error {
  color: var(--danger);
  font-size: 12px;
  margin-top: 4px;
  text-align: right;
  min-height: 16px;
}

footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding-top: 18px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.8);
}

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

  .hero-card {
    order: -1;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-block {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-form {
    justify-content: flex-start;
  }
}

@media (max-width: 500px) {
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page {
    padding-inline: 14px;
  }

  nav {
    display: none;
  }
}
