:root {
  --bg0: #070a14;
  --bg1: #0b1020;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.14);
  --stroke2: rgba(255, 255, 255, 0.09);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.54);

  --blue: #4a83ff;
  --purple: #8b5cf6;
  --cyan: #22d3ee;
  --pink: #ff4fd8;
  --softWhite: rgba(255, 255, 255, 0.88);

  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --shadow2: 0 10px 28px rgba(0, 0, 0, 0.32);

  --radius: 18px;
  --radius2: 24px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1200px 900px at 20% 10%, rgba(74, 131, 255, 0.16), transparent 60%),
    radial-gradient(1100px 900px at 70% 20%, rgba(139, 92, 246, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.2px;
  overflow-x: hidden;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg__blur {
  position: absolute;
  width: 560px;
  height: 560px;
  filter: blur(80px);
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
}

.bg__blur--a {
  left: -160px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(74, 131, 255, 0.95), rgba(74, 131, 255, 0) 60%);
}

.bg__blur--b {
  right: -200px;
  top: 0px;
  background: radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.95), rgba(139, 92, 246, 0) 60%);
}

.bg__blur--c {
  left: 20%;
  bottom: -260px;
  background: radial-gradient(circle at 40% 40%, rgba(34, 211, 238, 0.58), rgba(34, 211, 238, 0) 62%);
}

.bg__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 50% 0%, black 0%, transparent 55%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 20, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, rgba(74, 131, 255, 0.32), rgba(139, 92, 246, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.brand__name {
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(
    90deg,
    #ff4fd8 0%,
    #ffbf3f 18%,
    #30d158 36%,
    #22d3ee 56%,
    #4a83ff 76%,
    #8b5cf6 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: color 140ms ease, background 140ms ease;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header__cta {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 120ms ease, filter 120ms ease, background 120ms ease, border-color 120ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(135deg, rgba(74, 131, 255, 0.95), rgba(139, 92, 246, 0.95));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(74, 131, 255, 0.16);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--ghost {
  color: var(--softWhite);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 64px 0 26px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--muted);
  font-weight: 600;
  box-shadow: var(--shadow2);
}

.chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 1), rgba(139, 92, 246, 1));
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.10);
}

.hero__title {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.rainbow {
  background: linear-gradient(
    90deg,
    #ff4fd8 0%,
    #ffbf3f 18%,
    #30d158 36%,
    #22d3ee 56%,
    #4a83ff 76%,
    #8b5cf6 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
}

.card__title {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.card__text {
  margin: 10px 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.card__link {
  display: inline-flex;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.card__link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.pill {
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: 34px 0 28px;
}

.section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section__title {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  max-width: 70ch;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
}

.panel__title {
  margin: 0;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 16px;
}

.list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.linkRow {
  display: grid;
  gap: 2px;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 120ms ease, background 120ms ease;
}

.linkRow:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
}

.linkRow__label {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.linkRow__hint {
  color: var(--muted2);
  font-weight: 600;
  font-size: 13px;
}

.contactCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(74, 131, 255, 0.10), rgba(139, 92, 246, 0.10));
  box-shadow: var(--shadow);
}

.contactCard__label {
  margin: 0;
  color: var(--muted2);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.contactCard__value {
  margin: 8px 0 0;
  font-weight: 800;
}

.contactCard__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer {
  padding: 26px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(7, 10, 20, 0.35);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted2);
  font-weight: 700;
}

.footer__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__link {
  color: var(--muted2);
  text-decoration: none;
  font-weight: 800;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.84);
}

.footer__tag {
  color: var(--muted2);
}

.legal {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.legal h3 {
  margin: 18px 0 8px;
  font-family: "Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.legal p {
  margin: 10px 0;
}

.legal ul {
  margin: 10px 0 14px;
  padding-left: 18px;
  color: var(--muted);
}

.legal hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin: 18px 0;
}

.legal__note {
  margin: 0;
  color: var(--muted2);
  font-weight: 600;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }
  .hero__cards {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .section__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .contactCard {
    flex-direction: column;
    align-items: flex-start;
  }
}
