:root {
  --bg: #070a12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.58);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --accent: #8b5cf6;
  --accent-2: #22d3ee;
  --good: #34d399;
  --radius: 18px;
  --radius-sm: 14px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(139, 92, 246, 0.26), transparent 60%),
    radial-gradient(800px 520px at 80% 0%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(900px 520px at 60% 100%, rgba(52, 211, 153, 0.12), transparent 55%),
    var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.skip:focus {
  left: 12px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7, 10, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255, 255, 255, 0.7), transparent 50%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(34, 211, 238, 0.75));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.brand__text {
  display: grid;
}
.brand__title {
  font-weight: 700;
  line-height: 1.15;
}
.brand__subtitle {
  font-size: 12.5px;
  color: var(--muted-2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav__link {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
}
.nav__link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

/* Hero */
.hero {
  padding: 56px 0 30px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  align-items: center;
  gap: 34px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--good), rgba(52, 211, 153, 0.4));
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.12);
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.accent {
  background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(34, 211, 238, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 58ch;
}

.cta {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}
.btn:active {
  transform: translateY(0px);
}

.btn--primary {
  border-color: rgba(139, 92, 246, 0.55);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(34, 211, 238, 0.62));
  box-shadow: 0 18px 45px rgba(139, 92, 246, 0.18);
}
.btn--primary:hover {
  border-color: rgba(139, 92, 246, 0.75);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.note {
  margin: 16px 0 0;
  color: var(--muted-2);
  font-size: 13px;
}

.hero__panel {
  justify-self: end;
  width: 100%;
}
.panel {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(400px 250px at 10% 0%, rgba(139, 92, 246, 0.22), transparent 55%),
    radial-gradient(400px 250px at 100% 10%, rgba(34, 211, 238, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel__top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.panel__pill {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.panel__pill--faint {
  opacity: 0.55;
}
.panel__content {
  padding: 16px;
  display: grid;
  gap: 12px;
}
.mini-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}
.mini-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.mini-card__icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.85);
}
.mini-card__title {
  font-weight: 700;
  line-height: 1.2;
}
.mini-card__sub {
  color: var(--muted-2);
  font-size: 13px;
  margin-top: 2px;
}
.panel__hint {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
  text-align: center;
}

/* Sections */
.section {
  padding: 46px 0;
}
.section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section__head {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.015em;
}
.section__sub {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(500px 240px at 0% 0%, rgba(139, 92, 246, 0.14), transparent 55%),
    rgba(255, 255, 255, 0.04);
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  min-height: 170px;
  display: grid;
  align-content: start;
  gap: 8px;
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(22px 22px at 30% 30%, rgba(255, 255, 255, 0.25), transparent 55%),
    rgba(255, 255, 255, 0.04);
}
.card__icon svg {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.86);
}
.card h3 {
  margin: 0;
  font-size: 16px;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}
.card__link {
  margin-top: 6px;
  display: inline-flex;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
  font-size: 13px;
}
.card__link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.card--wide {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}
.card__wideBody {
  display: grid;
  gap: 8px;
}
.contactRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.pill {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.pill__label {
  font-size: 12px;
  color: var(--muted-2);
}
.pill__value {
  font-weight: 700;
  font-size: 13px;
}

.callout {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 4px;
}
.callout__title {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.callout__text {
  color: var(--muted);
  font-size: 13.5px;
}

/* Discord section */
.discord {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
}
.small {
  margin: 12px 0 0;
  color: var(--muted-2);
  font-size: 13px;
}
.discordCard {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(500px 280px at 0% 0%, rgba(88, 101, 242, 0.22), transparent 58%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: 16px;
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.discordCard__row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.95), rgba(34, 211, 238, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.avatar--alt {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(88, 101, 242, 0.6));
}
.avatar--alt2 {
  background: linear-gradient(135deg, rgba(34, 211, 153, 0.8), rgba(34, 211, 238, 0.5));
}
.lines {
  display: grid;
  gap: 8px;
}
.line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  width: 70%;
}
.line--strong {
  width: 52%;
  background: rgba(255, 255, 255, 0.18);
}
.discordCard__chip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.18);
  border: 1px solid rgba(88, 101, 242, 0.34);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 750;
  font-size: 12px;
}

/* Footer */
.footer {
  padding: 30px 0 40px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}
.footer__brand {
  font-weight: 800;
}
.footer__sub {
  color: var(--muted-2);
  font-size: 13px;
  margin-top: 2px;
}
.linklike {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 650;
}
.linklike:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__panel {
    justify-self: stretch;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card--wide {
    grid-column: span 2;
  }
  .discord {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 32px));
  }
  .brand {
    min-width: unset;
  }
  .nav {
    display: none;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
}
