:root {
  --bg: #070a12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.14);
  --accent: #7c5cff;
  --accent-2: #21d4a6;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  /* Dark gradients can show "banding" on some displays.
     We keep the same look but smooth the stops + add subtle noise below. */
  background-color: var(--bg);
  background-image:
    radial-gradient(1200px 800px at 16% 8%, rgba(124, 92, 255, 0.26), transparent 62%),
    radial-gradient(1200px 800px at 88% 16%, rgba(33, 212, 166, 0.20), transparent 62%),
    radial-gradient(1400px 1000px at 40% 92%, rgba(124, 92, 255, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00) 55%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.5;
}

/* Subtle noise overlay to reduce gradient banding (no assets / no deps). */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

/* Ensure page content sits above the background overlay. */
.header,
.main,
.footer {
  position: relative;
  z-index: 1;
}

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

.container {
  width: min(1100px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  z-index: 50;
}

.skip-link:focus {
  left: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 18, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
}

.brand:focus-visible {
  outline: 2px solid rgba(124, 92, 255, 0.6);
  outline-offset: 2px;
}

.brand__logo {
  width: 28px;
  height: 28px;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__link {
  color: var(--muted);
  font-weight: 550;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 150ms ease, color 150ms ease;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.main {
  padding-bottom: 40px;
}

.hero {
  padding: 64px 0 36px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.2px;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.16);
}

.hero__title {
  margin: 0 0 14px;
  font-size: clamp(32px, 4.0vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.hero__subtitle {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.6;
  max-width: 64ch;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  font-weight: 650;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}

.button:active {
  transform: translateY(0px);
}

.button--primary {
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.25);
}

.button--primary:hover {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.98), rgba(33, 212, 166, 0.98));
}

.button--ghost {
  background: rgba(255, 255, 255, 0.02);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero__card .card {
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: 0.9;
}

.dot--green {
  background: #3ddc97;
}
.dot--yellow {
  background: #ffd166;
}
.dot--red {
  background: #ff5d7a;
}

.card__title {
  margin-left: 8px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.card__body {
  padding: 16px;
}

.kv {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 8px 0;
}

.kv__k {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.kv__v {
  color: rgba(255, 255, 255, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 13px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 12px 0;
}

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

.checks li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.82);
}

.check {
  color: var(--accent-2);
  font-weight: 800;
}

.card__note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.section {
  padding: 54px 0;
}

.section--alt {
  padding: 54px 0;
}

.section__head {
  margin-bottom: 22px;
}

.section__title {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.3px;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 65ch;
}

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

.feature {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  min-height: 180px;
}

.feature__title {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.1px;
}

.feature__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.00));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.cta__title {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.2px;
}

.cta__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta__form {
  display: grid;
  gap: 10px;
  align-content: start;
}

.input {
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.input:focus {
  border-color: rgba(124, 92, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.16);
}

.form-hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  min-height: 18px;
}

.footer {
  padding: 34px 0 24px;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer__logo {
  width: 22px;
  height: 22px;
  opacity: 0.95;
}

.footer__name {
  font-weight: 750;
}

.footer__tagline {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer__right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__link {
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 10px;
  border-radius: 12px;
}

.footer__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.footer__sub {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

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

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 560px) {
  .container {
    width: min(1100px, calc(100% - 32px));
  }

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

  .nav {
    gap: 6px;
  }

  .nav__link {
    padding: 10px 10px;
  }
}
