:root {
  --bg: #05070b;
  --bg-elevated: #10151d;
  --ink: #eef2f6;
  --muted: rgba(226, 232, 240, 0.62);
  --accent: #00e5ff;
  --violet: #a855f7;
  --health: #00e676;
  --glass: rgba(16, 21, 29, 0.62);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glow: 0 0 28px rgba(0, 229, 255, 0.28);
  --radius: 18px;
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font: "DM Sans", "Segoe UI", Roboto, system-ui, sans-serif;
  --space-section: 5.5rem;
  --header-h: 84px;
  --spot-x: 50%;
  --spot-y: 20%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.hidden {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #041016;
  font-weight: 700;
  border-radius: 10px;
}

.skip-link:focus {
  top: 1rem;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 140;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.55);
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    520px circle at var(--spot-x) var(--spot-y),
    rgba(0, 229, 255, 0.1),
    transparent 55%
  );
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 20%, black 18%, transparent 78%);
  pointer-events: none;
  z-index: 0;
  animation: grid-shift 28s linear infinite;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  margin: 12px auto;
  width: min(1120px, 92vw);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(0, 229, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-by {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand img,
.brand-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 12px;
}

.brand strong {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(238, 242, 246, 0.62);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
}

.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.7rem 1.3rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.28), rgba(168, 85, 247, 0.12));
  color: #d7fbff;
  border: 1px solid rgba(0, 229, 255, 0.45);
}

.btn-glow {
  box-shadow: var(--glow);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 16px rgba(0, 229, 255, 0.22);
  }
  50% {
    box-shadow: 0 0 34px rgba(0, 229, 255, 0.48);
  }
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--glass-border);
}

.btn-xl {
  font-size: 1.05rem;
  padding: 1rem 2rem;
  margin-top: 1rem;
}

.hero {
  padding: 4.5rem 0 2.5rem;
  position: relative;
  z-index: 3;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.7s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 1.15rem;
  font-weight: 800;
}

.grad {
  background: linear-gradient(120deg, #fff 10%, var(--accent) 48%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.25rem 0 0;
}

.hero-stats div {
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
}

.section {
  padding: var(--space-section) 0;
  position: relative;
  z-index: 3;
}

.section-head h2,
.download-card h2,
.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
  letter-spacing: -0.035em;
  margin: 0 0 0.5rem;
}

.kicker {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head p {
  color: var(--muted);
  margin: 0;
  max-width: 40rem;
}

.silver-author {
  color: rgba(192, 192, 210, 0.9) !important;
  font-size: 1rem !important;
  margin-top: 0.75rem !important;
  font-weight: 500;
}

.bento,
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.card {
  padding: 1.45rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.card-wide {
  grid-column: span 1;
}

.card-index {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: rgba(0, 229, 255, 0.55);
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.card h3 {
  color: var(--ink);
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.timeline {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(var(--accent), rgba(168, 85, 247, 0.2));
  opacity: 0.35;
}

.timeline-step {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.timeline-step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

code {
  font-size: 0.85em;
  background: rgba(0, 229, 255, 0.1);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.download-card {
  text-align: center;
  padding: 3.4rem 2rem;
  border-color: rgba(0, 229, 255, 0.22);
  background:
    radial-gradient(600px circle at 50% 0%, rgba(0, 229, 255, 0.12), transparent 55%),
    var(--glass);
}

.download-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(224, 224, 224, 0.45);
}

.download-sub {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(224, 224, 224, 0.45);
}

.download-sub a {
  color: var(--accent);
}

.comment-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  font-family: inherit;
  background: rgba(5, 7, 11, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 229, 255, 0.35);
  border-color: rgba(0, 229, 255, 0.4);
}

.comment-feed {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 420px;
  overflow-y: auto;
}

.comment-bubble {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(16, 21, 29, 0.55);
  border: 1px solid var(--glass-border);
}

.comment-bubble strong {
  color: var(--accent);
}

.comment-meta {
  font-size: 0.8rem;
  color: rgba(224, 224, 224, 0.45);
  margin-bottom: 0.35rem;
}

.site-footer {
  padding: 2.5rem 0 3.2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  position: relative;
  z-index: 3;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: left;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.footer-brand p {
  margin: 0;
}

.footer-meta {
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin: 1rem 0 0;
  font-size: 0.8rem;
}

.footer-links a,
.linkish {
  color: rgba(224, 224, 224, 0.62);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: color 0.15s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.linkish:hover,
.linkish:focus-visible {
  color: var(--accent);
}

.footer-links span {
  color: rgba(224, 224, 224, 0.25);
  user-select: none;
}

.legal-page {
  position: relative;
  z-index: 1;
}

.legal-content {
  position: relative;
  z-index: 3;
  padding: 2rem 0 1rem;
}

.legal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.legal-header h1 {
  margin: 0.35rem 0 0.5rem;
  font-weight: 800;
}

.legal-updated {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(224, 224, 224, 0.45);
}

.legal-body {
  padding: 2rem 2.25rem;
  max-width: 820px;
  margin: 0 auto 2rem;
}

.legal-body h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.legal-body h2:first-of-type {
  margin-top: 1.25rem;
}

.legal-body h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.legal-body p,
.legal-body ul {
  margin: 0 0 1rem;
  color: var(--muted);
}

.legal-body li {
  margin-bottom: 0.4rem;
}

.legal-body a {
  color: var(--accent);
  text-decoration: none;
}

.legal-body a:hover,
.legal-body a:focus-visible {
  text-decoration: underline;
}

.legal-body strong {
  color: var(--ink);
  font-weight: 600;
}

.adsense-slot {
  margin-top: 1.5rem;
  padding: 1rem;
  min-height: 90px;
  border-radius: 12px;
  background: rgba(11, 12, 16, 0.45);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-social,
.btn-discord {
  border: 1px solid rgba(0, 229, 255, 0.28);
  background: rgba(0, 229, 255, 0.08);
  color: #d7fbff;
}

.btn-discord {
  border-color: rgba(88, 101, 242, 0.5);
  background: rgba(88, 101, 242, 0.14);
  color: #c7ccff;
}

.btn-social:hover,
.btn-discord:hover {
  border-color: var(--accent);
}

.advisor-card {
  padding: 0 0 1.6rem;
  overflow: hidden;
}

.advisor-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.22);
}

.advisor-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
}

.advisor-chrome span:nth-child(2) {
  background: #febc2e;
}

.advisor-chrome span:nth-child(3) {
  background: #28c840;
}

.advisor-chrome em {
  margin-left: 0.6rem;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.advisor-kicker,
.advisor-card h3,
.advisor-card p,
.advisor-list {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.advisor-kicker {
  margin: 1.2rem 0 0.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 700;
}

.advisor-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.85rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.advisor-list {
  margin: 1rem 0 0;
  padding-left: 2.8rem;
  color: rgba(224, 224, 224, 0.82);
}

.advisor-list li {
  margin-bottom: 0.4rem;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.48;
  animation: orb-drift 18s ease-in-out infinite;
}

.orb-a {
  width: 460px;
  height: 460px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.38), transparent 68%);
}

.orb-b {
  width: 380px;
  height: 380px;
  right: -6%;
  top: 16%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent 68%);
  animation-delay: -7s;
}

.orb-c {
  width: 300px;
  height: 300px;
  bottom: -10%;
  left: 38%;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.14), transparent 68%);
  animation-delay: -12s;
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes grid-shift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 56px 56px, 56px 56px;
  }
}

.brand-logo {
  animation: logo-idle 4.2s ease-in-out infinite;
}

@keyframes logo-idle {
  0%,
  100% {
    transform: translateZ(0) scale(1);
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.35));
  }
  50% {
    transform: translateZ(0) scale(1.05);
    filter: drop-shadow(0 0 22px rgba(0, 229, 255, 0.55));
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
}

.hud {
  position: absolute;
  inset: 6%;
  pointer-events: none;
}

.hud-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 229, 255, 0.45);
}

.hud-corner.tl {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}

.hud-corner.tr {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}

.hud-corner.bl {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
}

.hud-corner.br {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}

.hud-label {
  position: absolute;
  top: -0.35rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: rgba(0, 229, 255, 0.7);
}

.hero-logo {
  width: min(280px, 70%);
  height: auto;
  position: relative;
  z-index: 1;
  animation: logo-idle 4.8s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(0, 229, 255, 0.35));
}

.hero-rings {
  position: absolute;
  inset: 10%;
  pointer-events: none;
}

.hero-rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.18);
  animation: ring-spin 22s linear infinite;
}

.hero-rings span:nth-child(2) {
  inset: 10%;
  border-color: rgba(168, 85, 247, 0.22);
  animation-duration: 16s;
  animation-direction: reverse;
}

.hero-rings span:nth-child(3) {
  inset: 22%;
  border-style: dashed;
  border-color: rgba(0, 229, 255, 0.28);
  animation-duration: 12s;
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.9rem 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: rgba(238, 242, 246, 0.55);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.marquee-track span::before {
  content: "◆";
  color: var(--accent);
  margin-right: 2.4rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.bento .reveal:nth-child(2),
.card-grid .reveal:nth-child(2) {
  animation-delay: 0.08s;
}
.bento .reveal:nth-child(3),
.card-grid .reveal:nth-child(3) {
  animation-delay: 0.16s;
}
.bento .reveal:nth-child(4),
.card-grid .reveal:nth-child(4) {
  animation-delay: 0.24s;
}

.timeline-step.reveal:nth-child(2) {
  animation-delay: 0.1s;
}
.timeline-step.reveal:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.82);
  }
}

.card {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 229, 255, 0.12);
}

.js-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: none;
}

.js-reveal.is-visible {
  animation: reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-404 {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
}

.page-404 img {
  width: 88px;
  height: 88px;
  animation: logo-idle 4.8s ease-in-out infinite;
}

@media (min-width: 860px) {
  .card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 260px;
  }

  .hero-logo {
    width: min(200px, 56%);
  }

  .bento,
  .card-grid,
  .hero-stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .card-wide {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  .site-header.is-open .nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .nav {
    justify-content: flex-start;
    padding-bottom: 0.35rem;
  }

  .header-actions .btn {
    flex: 1;
  }

  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  .legal-body {
    padding: 1.35rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .bg-grid,
  .brand-logo,
  .hero-logo,
  .hero-rings span,
  .btn-glow,
  .reveal,
  .js-reveal,
  .marquee-track,
  .live-dot,
  .page-404 img {
    animation: none !important;
  }

  .reveal,
  .js-reveal {
    opacity: 1;
    transform: none;
  }
}
