:root {
  --bg0: #070a12;
  --bg1: #0b1020;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --faint: rgba(255, 255, 255, 0.55);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --accent: #67e8f9;
  --accent2: #a78bfa;
  --danger: #fb7185;
  --radius: 18px;
  --radius2: 22px;
  --max: 1120px;
  color-scheme: dark;
}

* {
  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);
  background:
    radial-gradient(1200px 800px at 15% 10%, rgba(103, 232, 249, 0.12), transparent 60%),
    radial-gradient(1000px 700px at 70% 25%, rgba(167, 139, 250, 0.12), transparent 55%),
    radial-gradient(900px 600px at 50% 90%, rgba(103, 232, 249, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a {
  color: inherit;
}

.link {
  color: var(--muted);
  text-decoration: none;
}
.link:hover {
  color: var(--text);
  text-decoration: underline;
}

.linkLike {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.linkLike:hover {
  color: var(--text);
}

.shell {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 24px;
  max-width: 920px;
  margin: 0 auto;
  align-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.25), rgba(167, 139, 250, 0.25));
  border: 1px solid var(--stroke);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.brand__mark--small {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.brand__name {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand__tag {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.card {
  background: linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card__title {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.card__subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.form {
  margin-top: 18px;
}
.label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.fieldRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.input {
  flex: 1 1 260px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}
.input:focus {
  border-color: rgba(103, 232, 249, 0.45);
  box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.12);
}

.button {
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(103, 232, 249, 0.25);
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.2), rgba(167, 139, 250, 0.18));
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}
.button:hover {
  border-color: rgba(103, 232, 249, 0.45);
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.24), rgba(167, 139, 250, 0.22));
}
.button:active {
  transform: translateY(1px);
}
.button--ghost {
  background: rgba(0, 0, 0, 0.24);
  border-color: var(--stroke);
}
.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.formMsg {
  margin: 12px 0 0;
  min-height: 18px;
  color: var(--faint);
}

.fineprint {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--faint);
  font-size: 13px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(103, 232, 249, 0.55);
  box-shadow: 0 0 0 4px rgba(103, 232, 249, 0.12);
}

.footer {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: var(--faint);
  font-size: 13px;
}
.footer__sep {
  opacity: 0.55;
}

.skipLink {
  position: absolute;
  left: -9999px;
  top: 12px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  border-radius: 12px;
}
.skipLink:focus {
  left: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(7, 10, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar__title {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.topbar__subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-top: 1px;
}
.topnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.topnav__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.topnav__link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  padding: 34px 18px 18px;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.hero__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero__lead {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
  max-width: 60ch;
}
.hero__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.stat {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 12px 14px;
  min-width: 160px;
}
.stat__num {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.stat__label {
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.hero__panel {
  display: grid;
  gap: 12px;
}
.heroCard {
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  padding: 14px 14px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.35);
}
.heroCard--alt {
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.08), rgba(167, 139, 250, 0.08));
}
.heroCard__kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.heroCard__title {
  font-size: 18px;
  font-weight: 850;
  margin-top: 6px;
}
.heroCard__body {
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
}
.heroCard__meta {
  margin-top: 10px;
  color: var(--faint);
  font-size: 13px;
}

.section {
  padding: 26px 18px;
}
.section--muted {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section__title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.section__subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 75ch;
}

.grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tile {
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius2);
  padding: 14px;
}
.tile__title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.tile__body {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.split {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 12px;
  align-items: start;
}
.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.callout {
  border: 1px solid rgba(103, 232, 249, 0.22);
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.08), rgba(167, 139, 250, 0.08));
  border-radius: var(--radius2);
  padding: 14px;
}
.callout__title {
  font-weight: 850;
  letter-spacing: -0.01em;
}
.callout__link {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}
.callout__link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.stack {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.news {
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius2);
  padding: 14px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
}
.news__date {
  color: var(--faint);
  font-weight: 800;
}
.news__title {
  font-weight: 850;
  letter-spacing: -0.01em;
}
.news__body {
  grid-column: 2;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.siteFooter {
  padding: 22px 18px 30px;
}
.siteFooter__inner {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.siteFooter__brand {
  font-weight: 900;
}
.siteFooter__fine {
  color: var(--muted);
  margin-top: 6px;
  font-size: 13px;
}
.siteFooter__links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .grid,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .news {
    grid-template-columns: 1fr;
  }
  .news__body {
    grid-column: 1;
  }
}

