:root {
  --void: #0a0a0f;
  --surface: rgba(4, 7, 22, 0.82);
  --surface-strong: rgba(7, 13, 34, 0.94);
  --border: rgba(120, 160, 255, 0.16);
  --border-h: rgba(120, 200, 255, 0.42);
  --text: #dce8ff;
  --muted: #9db0d6;
  --dim: #6d7ea1;
  --void-deep: #02030a;

  --c1: #00d4ff;
  --c2: #7c5cfc;
  --c3: #ff2d8b;
  --c4: #00ffb2;
  --c5: #ffaa00;

  --holo: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.55) 0%,
    rgba(124, 92, 252, 0.55) 35%,
    rgba(255, 45, 139, 0.55) 65%,
    rgba(0, 255, 178, 0.45) 100%
  );

  --radius-card: 28px;
  --radius-btn: 18px;
  --radius-chip: 999px;
  --shadow-card: 0 30px 80px rgba(0, 0, 0, 0.78),
    0 0 0 1px rgba(120, 160, 255, 0.1);
  --shadow-btn: 0 8px 30px rgba(0, 0, 0, 0.48);

  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(
      circle at 18% 12%,
      rgba(0, 212, 255, 0.11),
      transparent 32rem
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(255, 45, 139, 0.09),
      transparent 30rem
    ),
    var(--void);
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--c4);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  color: #00140f;
  background: var(--c4);
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  position: relative;
  z-index: 10;
  width: min(94vw, 620px);
  margin-inline: auto;
  padding: 3.5rem 0 4rem;
}

.card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 32px 24px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  backdrop-filter: saturate(150%) blur(20px);
  -webkit-backdrop-filter: saturate(150%) blur(20px);
  transform-style: preserve-3d;
  animation: cardReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: transform;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--holo);
  background-size: 300% 300%;
  background-position: calc(var(--mx, 50) * 1%) calc(var(--my, 50) * 1%);
  opacity: 0;
  mix-blend-mode: color-dodge;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.18) 0%,
    transparent 40%,
    rgba(255, 45, 139, 0.12) 80%,
    transparent 100%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.card:hover::before {
  opacity: 0.08;
}

.card:hover::after {
  opacity: 1;
}

.orb,
.nebula,
.dust,
.cosmic-vignette,
#space-canvas {
  pointer-events: none;
}

.orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(54px);
  mix-blend-mode: screen;
  opacity: 0.82;
}

.orb-tl {
  width: 210px;
  height: 210px;
  top: -86px;
  left: -86px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.28) 0%,
    transparent 70%
  );
  animation: orbDrift 10s ease-in-out infinite alternate;
}

.orb-br {
  width: 240px;
  height: 240px;
  right: -92px;
  bottom: -92px;
  background: radial-gradient(
    circle,
    rgba(255, 45, 139, 0.22) 0%,
    transparent 70%
  );
  animation: orbDrift 14s ease-in-out infinite alternate-reverse;
}

.identity-header {
  position: relative;
  z-index: 1;
  text-align: center;
}

.avatar-wrap {
  position: relative;
  width: 108px;
  height: 108px;
  margin: 0 auto 8px;
}

.avatar-ring {
  position: absolute;
  inset: -3px;
  z-index: 1;
  border-radius: 50%;
  background: conic-gradient(
    var(--c1),
    var(--c2),
    var(--c3),
    var(--c4),
    var(--c1)
  );
  animation: spinRing 8s linear infinite;
}

.avatar-ring::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #000;
}

.avatar {
  position: absolute;
  inset: 3px;
  z-index: 2;
  overflow: hidden;
  border-radius: 50%;
  background: #000;
}

.avatar img {
  width: 100%;
  height: 100%;
  padding: 5px;
  object-fit: contain;
}

.check {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid var(--void);
  border-radius: 50%;
  color: #052e16;
  background: conic-gradient(from 0deg, #fde68a, #22c55e, #fde68a);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
}

.check svg {
  width: 13px;
  height: 13px;
}

.identity {
  margin-top: 12px;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.52rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
  background: linear-gradient(
    90deg,
    #fff 0%,
    var(--c1) 28%,
    #fff 50%,
    var(--c4) 72%,
    #fff 100%
  );
  background-size: 260% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 5.5s linear infinite;
}

.role-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 8px 0 0;
  padding: 5px 13px;
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: var(--radius-chip);
  color: var(--c1);
  background: rgba(0, 212, 255, 0.07);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.role-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c4);
  box-shadow: 0 0 8px var(--c4);
  animation: blink 2.2s ease-in-out infinite;
}

.intro {
  max-width: 34rem;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.trust-strip span {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px 8px;
  border: 1px solid rgba(120, 160, 255, 0.13);
  border-radius: 12px;
  color: #b7c9f0;
  background: rgba(0, 212, 255, 0.045);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.divider {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 21px 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--c2),
    var(--c1),
    var(--c3),
    transparent
  );
  opacity: 0.34;
}

.section-title {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
}

.quick-actions,
.content-block {
  position: relative;
  z-index: 1;
}

.utility-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 14px;
}

.utility-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(0, 255, 178, 0.22);
  border-radius: 14px;
  color: #dffdf6;
  background: rgba(0, 255, 178, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.utility-button svg {
  width: 17px;
  height: 17px;
}

.utility-button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 178, 0.48);
  background: rgba(0, 255, 178, 0.1);
}

.utility-button:active {
  transform: translateY(0);
}

.list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.link {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(
    135deg,
    rgba(4, 8, 28, 0.86) 0%,
    rgba(6, 12, 38, 0.92) 100%
  );
  box-shadow: var(--shadow-btn);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  will-change: transform;
}

.link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(0, 212, 255, 0.08) 50%,
    transparent 62%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.link::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.2),
    rgba(124, 92, 252, 0.16),
    rgba(255, 45, 139, 0.14)
  );
  opacity: 0;
  filter: blur(8px);
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.link:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--border-h);
  background: linear-gradient(
    135deg,
    rgba(4, 10, 35, 0.95) 0%,
    rgba(8, 16, 52, 0.92) 100%
  );
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.68), 0 0 0 1px rgba(0, 212, 255, 0.16),
    0 0 26px rgba(0, 212, 255, 0.07);
}

.link:hover::before {
  transform: translateX(100%);
}

.link:hover::after {
  opacity: 1;
}

.link:active {
  transform: translateY(-1px) scale(1);
}

.link:visited .label {
  color: #c9d8f6;
}

.icon {
  position: relative;
  z-index: 1;
  flex: 0 0 40px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.16) 0%,
    rgba(4, 8, 28, 0.9) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 10px rgba(0, 0, 0, 0.4);
  transition: border-color 0.22s ease, box-shadow 0.22s ease,
    background 0.22s ease;
}

.icon svg {
  width: 18px;
  height: 18px;
  color: #a5d8ff;
  transition: color 0.22s ease;
}

.link:hover .icon {
  border-color: rgba(0, 212, 255, 0.42);
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.26) 0%,
    rgba(4, 8, 28, 0.9) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 10px rgba(0, 0, 0, 0.4), 0 0 16px rgba(0, 212, 255, 0.18);
}

.link:hover .icon svg {
  color: var(--c1);
}

.label {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
  transition: color 0.22s ease;
}

.link:hover .label {
  color: #eaf4ff;
}

.out {
  position: relative;
  z-index: 1;
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  color: var(--dim);
  opacity: 0.55;
  transform: translate(-2px, 2px);
  transition: opacity 0.22s ease, transform 0.22s ease, color 0.22s ease;
}

.link:hover .out {
  color: var(--c1);
  opacity: 1;
  transform: translate(0, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.content-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(120, 160, 255, 0.09);
}

.content-block p,
.content-block li {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.content-block p {
  margin: 0;
}

.split-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.split-list li {
  position: relative;
  padding-left: 14px;
}

.split-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c4);
  box-shadow: 0 0 9px rgba(0, 255, 178, 0.48);
}

.faq {
  display: grid;
  gap: 8px;
}

.faq .section-title {
  margin-bottom: 2px;
}

details {
  border-bottom: 1px solid rgba(120, 160, 255, 0.08);
}

summary {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #e8f0ff;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  color: var(--c1);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 34px 12px 0;
}

.meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(120, 160, 255, 0.09);
  color: var(--dim);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 212, 255, 0.14);
  border-radius: var(--radius-chip);
  color: rgba(0, 212, 255, 0.72);
  background: rgba(0, 212, 255, 0.055);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.meta-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c4);
  box-shadow: 0 0 6px var(--c4);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: min(280px, calc(100vw - 36px));
  padding: 11px 14px;
  border: 1px solid rgba(0, 255, 178, 0.28);
  border-radius: 14px;
  color: #dffdf6;
  background: rgba(2, 12, 18, 0.9);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

#space-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.nebula {
  position: fixed;
  z-index: 1;
  border-radius: 50%;
  filter: blur(84px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: nebulaBreath ease-in-out infinite alternate;
}

.nebula-1 {
  width: 520px;
  height: 420px;
  top: -10%;
  left: -12%;
  background: radial-gradient(
    ellipse,
    rgba(0, 100, 255, 0.12) 0%,
    rgba(124, 92, 252, 0.07) 50%,
    transparent 75%
  );
  animation-duration: 22s;
}

.nebula-2 {
  width: 480px;
  height: 380px;
  right: -10%;
  bottom: -8%;
  background: radial-gradient(
    ellipse,
    rgba(255, 45, 139, 0.1) 0%,
    rgba(124, 92, 252, 0.06) 55%,
    transparent 75%
  );
  animation-duration: 28s;
  animation-delay: -9s;
}

.nebula-3 {
  width: 360px;
  height: 300px;
  top: 40%;
  left: 60%;
  background: radial-gradient(
    ellipse,
    rgba(0, 212, 255, 0.07) 0%,
    rgba(0, 255, 178, 0.04) 55%,
    transparent 75%
  );
  animation-duration: 18s;
  animation-delay: -5s;
}

.dust {
  position: fixed;
  z-index: 2;
  height: 1px;
  border-radius: var(--radius-chip);
  opacity: 0;
}

.dust-1 {
  width: 280px;
  top: 22%;
  left: -5%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(167, 139, 250, 0.35),
    transparent
  );
  animation: dustDrift1 18s linear infinite;
}

.dust-2 {
  width: 180px;
  top: 65%;
  right: -5%;
  background: linear-gradient(
    270deg,
    transparent,
    rgba(96, 165, 250, 0.3),
    transparent
  );
  animation: dustDrift2 24s linear infinite;
}

.dust-3 {
  width: 120px;
  top: 45%;
  left: 30%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(244, 114, 182, 0.25),
    transparent
  );
  animation: dustDrift3 30s linear infinite;
}

.dust-4 {
  width: 200px;
  top: 80%;
  left: 10%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(52, 211, 153, 0.2),
    transparent
  );
  animation: dustDrift4 20s linear infinite;
}

.dust-5 {
  width: 150px;
  top: 12%;
  right: 20%;
  background: linear-gradient(
    270deg,
    transparent,
    rgba(0, 212, 255, 0.22),
    transparent
  );
  animation: dustDrift5 26s linear infinite;
}

.cosmic-vignette {
  position: fixed;
  inset: 0;
  z-index: 3;
  background: radial-gradient(
    ellipse at 50% 50%,
    transparent 38%,
    rgba(0, 0, 8, 0.6) 100%
  );
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--void);
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: linear-gradient(180deg, var(--c1), var(--c2), var(--c3));
}

* {
  scrollbar-color: var(--c2) var(--void);
  scrollbar-width: thin;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes shimmerText {
  to {
    background-position: -260% center;
  }
}

@keyframes orbDrift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(12px, -12px) scale(1.08);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.65);
  }
}

@keyframes nebulaBreath {
  from {
    opacity: 0;
    transform: scale(0.94) translate(0, 0);
  }

  to {
    opacity: 1;
    transform: scale(1.06) translate(10px, -10px);
  }
}

@keyframes dustDrift1 {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  10% {
    opacity: 1;
  }

  85% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: translateX(115vw);
  }
}

@keyframes dustDrift2 {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  10% {
    opacity: 0.9;
  }

  85% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateX(-115vw);
  }
}

@keyframes dustDrift3 {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  15% {
    opacity: 0.7;
  }

  80% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateX(80vw);
  }
}

@keyframes dustDrift4 {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0);
  }

  12% {
    opacity: 0.6;
  }

  88% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateX(95vw) translateY(-12px);
  }
}

@keyframes dustDrift5 {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  10% {
    opacity: 0.8;
  }

  85% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateX(-90vw);
  }
}

@media (max-width: 600px) {
  body {
    background: radial-gradient(
        circle at 20% 10%,
        rgba(0, 212, 255, 0.09),
        transparent 20rem
      ),
      radial-gradient(
        circle at 92% 90%,
        rgba(255, 45, 139, 0.07),
        transparent 18rem
      ),
      var(--void);
  }

  .wrap {
    width: min(100% - 1rem, 620px);
    padding: 1.35rem 0.25rem 2.5rem;
  }

  .card {
    padding: 22px 15px 20px;
    border-radius: 24px;
    backdrop-filter: saturate(140%) blur(16px);
    -webkit-backdrop-filter: saturate(140%) blur(16px);
  }

  .avatar-wrap {
    width: 90px;
    height: 90px;
  }

  .name {
    font-size: 1.24rem;
  }

  .intro {
    font-size: 0.88rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .utility-row,
  .split-list ul {
    grid-template-columns: 1fr;
  }

  .link {
    min-height: 61px;
    gap: 11px;
    padding: 11px 12px;
  }

  .icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .label {
    font-size: 0.88rem;
  }

  .meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .nebula {
    filter: blur(64px);
  }
}

@media (max-width: 360px) {
  .card {
    padding-inline: 12px;
  }

  .role-tag {
    max-width: 100%;
    white-space: normal;
    justify-content: center;
  }
}

@media (min-width: 900px) {
  .wrap {
    padding-top: 4.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  #space-canvas,
  .dust,
  .nebula,
  .orb {
    display: none;
  }
}
