:root {
  --bg: #070814;
  --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.66);
  --line: rgba(255, 255, 255, 0.10);
  --a: #7c3aed;
  --b: #22d3ee;
  --c: #f97316;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  min-height: 100svh;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg__fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.bg__grid {
  position: absolute;
  inset: -2px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(60% 60% at 50% 30%, black 0%, transparent 68%);
  opacity: 0.55;
  transform: perspective(900px) rotateX(50deg);
  transform-origin: 50% 0%;
  animation: gridFloat 10s ease-in-out infinite;
}

@keyframes gridFloat {
  0% {
    translate: 0 0;
    filter: hue-rotate(0deg);
  }
  50% {
    translate: 0 -16px;
    filter: hue-rotate(20deg);
  }
  100% {
    translate: 0 0;
    filter: hue-rotate(0deg);
  }
}

.bg__glow {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.55;
}

.bg__glow--a {
  top: -240px;
  left: -220px;
  background: radial-gradient(circle at 30% 30%, var(--a), transparent 55%);
  animation: driftA 12s ease-in-out infinite;
}

.bg__glow--b {
  bottom: -260px;
  right: -260px;
  background: radial-gradient(circle at 40% 40%, var(--b), transparent 58%);
  animation: driftB 14s ease-in-out infinite;
}

@keyframes driftA {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(90px, 60px) scale(1.06);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes driftB {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-80px, -70px) scale(1.08);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.top {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(7, 8, 20, 0.82), rgba(7, 8, 20, 0.35));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.top__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.top__name {
  font-weight: 800;
  letter-spacing: 0.6px;
}

.top__tag {
  color: var(--muted);
  font-size: 12px;
  text-transform: lowercase;
}

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

.pill {
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.pill:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.20);
}

.logo {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.logo__ring {
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  background: conic-gradient(from 0deg, var(--a), var(--b), var(--c), var(--a));
  animation: spin 2.4s linear infinite;
  filter: blur(1px);
  opacity: 0.9;
}

.logo__dot {
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  padding: 46px 0 22px;
  align-items: center;
}

.hero__title {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.7px;
}

.hero__accent {
  background: linear-gradient(90deg, var(--b), var(--a), var(--c));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 18px 40px rgba(34, 211, 238, 0.22));
  animation: hue 6s linear infinite;
}

@keyframes hue {
  to {
    filter: hue-rotate(360deg) drop-shadow(0 18px 40px rgba(34, 211, 238, 0.22));
  }
}

.hero__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.type {
  color: rgba(255, 255, 255, 0.84);
}

.caret {
  display: inline-block;
  width: 10px;
  height: 18px;
  translate: 0 3px;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  animation: blink 800ms steps(1, end) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero__cta {
  display: flex;
  gap: 12px;
  padding-top: 18px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn--primary {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.18), rgba(124, 58, 237, 0.18), rgba(249, 115, 22, 0.14));
  border-color: rgba(34, 211, 238, 0.28);
}

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 18px;
}

.badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  position: relative;
  overflow: hidden;
}

.badge::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: conic-gradient(from 0deg, transparent 0 60%, rgba(255, 255, 255, 0.22) 62%, transparent 64%);
  opacity: 0.65;
  animation: sweep 2.8s linear infinite;
}

@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}

.hero__right {
  position: relative;
  min-height: 320px;
}

.card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}

.card__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(34, 211, 238, 0.18) 30%, transparent 60%);
  translate: 0 -60%;
  animation: scan 3.2s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes scan {
  0% {
    translate: 0 -70%;
  }
  50% {
    translate: 0 30%;
  }
  100% {
    translate: 0 -70%;
  }
}

.card__inner {
  padding: 18px 18px 16px;
  transform: translateZ(20px);
}

.card__kicker {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
}

.card__big {
  font-size: 34px;
  letter-spacing: -0.5px;
  font-weight: 900;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--b), var(--a));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card__lines {
  padding-top: 18px;
  display: grid;
  gap: 10px;
}

.line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
}

.line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.30), transparent);
  transform: translateX(-60%);
  animation: shimmer 2.1s ease-in-out infinite;
}

.line:nth-child(2)::after {
  animation-delay: 180ms;
}

.line:nth-child(3)::after {
  animation-delay: 360ms;
}

@keyframes shimmer {
  0% {
    transform: translateX(-60%);
  }
  60% {
    transform: translateX(60%);
  }
  100% {
    transform: translateX(60%);
  }
}

.card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
}

.dot--ok {
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.10);
  }
}

.orbs {
  position: absolute;
  inset: -10px -10px -10px -10px;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.orb--1 {
  width: 140px;
  height: 140px;
  left: -20px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, var(--c), transparent 60%);
  animation: orb 8s ease-in-out infinite;
}

.orb--2 {
  width: 190px;
  height: 190px;
  right: -40px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, var(--a), transparent 60%);
  animation: orb 10s ease-in-out infinite reverse;
}

.orb--3 {
  width: 120px;
  height: 120px;
  right: 10px;
  bottom: 16px;
  background: radial-gradient(circle at 30% 30%, var(--b), transparent 60%);
  animation: orb 7s ease-in-out infinite;
}

@keyframes orb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-16px, 12px) scale(1.07);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.section-title {
  margin: 26px 0 12px;
  font-size: 18px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.86);
}

.grid {
  padding-top: 10px;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tile {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 16px 14px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(400px 180px at 10% 0%, rgba(34, 211, 238, 0.18), transparent 55%),
    radial-gradient(400px 180px at 90% 100%, rgba(124, 58, 237, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.075);
}

.tile:hover::before {
  opacity: 1;
}

.tile > * {
  position: relative;
  z-index: 1;
}

.tile h3 {
  margin: 0 0 8px;
  letter-spacing: 0.2px;
}

.tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
}

.chip {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 10px;
  border-radius: 999px;
}

.about {
  padding-top: 8px;
}

.about__box {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
}

.about__box p {
  margin: 0;
  line-height: 1.65;
}

.about__box p + p {
  margin-top: 10px;
}

.links {
  padding-top: 10px;
}

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

.social {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 14px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.social::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg, rgba(34, 211, 238, 0.0), rgba(34, 211, 238, 0.22), rgba(124, 58, 237, 0.0));
  opacity: 0;
  transition: opacity 220ms ease;
}

.social:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.social:hover::before {
  opacity: 1;
  animation: spin 3s linear infinite;
}

.social__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.social__text {
  display: grid;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.social__title {
  font-weight: 800;
}

.social__meta {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.links__note {
  margin: 12px 0 0;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

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

.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .links__row {
    grid-template-columns: 1fr;
  }
  .tiles {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .bg__fx {
    display: none !important;
  }
}
