:root {
  --bg: #060d24;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-hover: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #d0d0d0;
  --orange: #ff6a1a;
  --orange-2: #ff8a3d;
  --orange-soft: rgba(255, 106, 26, 0.16);
  --display: "DM Sans", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --max: 460px;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.side-stage {
  position: fixed;
  top: 50%;
  z-index: 1;
  width: min(240px, 18vw);
  height: min(78vh, 640px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.7;
}

.side-left {
  left: max(8px, calc(50% - 520px));
  animation: stageIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.side-right {
  right: max(8px, calc(50% - 520px));
  animation: stageIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.side-aura {
  position: absolute;
  inset: 10% -10%;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.1), transparent 68%);
  filter: blur(18px);
  animation: auraBreath 5s ease-in-out infinite;
}

.side-tower {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 420px;
  perspective: 700px;
  transform-style: preserve-3d;
}

.side-tower.mirror {
  transform: scaleX(-1);
}

.st-line {
  position: absolute;
  left: 50%;
  top: 8%;
  bottom: 8%;
  width: 2px;
  translate: -50% 0;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 138, 61, 0.55),
    rgba(91, 184, 255, 0.45),
    transparent
  );
  box-shadow: 0 0 16px rgba(255, 106, 26, 0.25);
}

.st-card {
  position: absolute;
  left: 50%;
  width: 92px;
  height: 58px;
  margin-left: -46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 106, 26, 0.08) 45%, rgba(40, 90, 200, 0.1)),
    rgba(8, 16, 40, 0.45);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform-style: preserve-3d;
  animation: sideCardFloat 6.5s ease-in-out infinite;
}

.st-card.sc1 {
  top: 12%;
  transform: rotateY(-28deg) rotateX(8deg);
}

.st-card.sc2 {
  top: 40%;
  width: 108px;
  height: 66px;
  margin-left: -54px;
  animation-delay: -2s;
  transform: rotateY(-22deg) rotateX(6deg);
  border-color: rgba(91, 184, 255, 0.28);
}

.st-card.sc3 {
  top: 68%;
  animation-delay: -4s;
  transform: rotateY(-30deg) rotateX(10deg);
}

.st-bar {
  position: absolute;
  left: 18%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a1a, #ffb07a);
  box-shadow: 0 0 12px rgba(255, 106, 26, 0.45);
  animation: sideBarPulse 3.4s ease-in-out infinite;
}

.st-bar.sb1 { top: 24%; width: 42%; }
.st-bar.sb2 { top: 52%; width: 56%; animation-delay: 0.5s; background: linear-gradient(90deg, #2f6fff, #5bb8ff); box-shadow: 0 0 12px rgba(91, 184, 255, 0.45); }
.st-bar.sb3 { top: 80%; width: 36%; animation-delay: 1s; }

.st-orb {
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: #ff8a3d;
  box-shadow: 0 0 14px rgba(255, 106, 26, 0.8);
  animation: sideOrbRide 5.5s linear infinite;
}

.st-orb.so1 { animation-delay: 0s; }
.st-orb.so2 { background: #5bb8ff; box-shadow: 0 0 14px rgba(91, 184, 255, 0.8); animation-delay: -1.8s; }
.st-orb.so3 { background: #7dffb3; box-shadow: 0 0 14px rgba(125, 255, 179, 0.7); animation-delay: -3.6s; }

@keyframes sideCardFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes sideBarPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.92);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes sideOrbRide {
  0% {
    top: 10%;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    top: 88%;
    opacity: 0;
  }
}

.crystal,
.mesh {
  position: relative;
  z-index: 1;
  width: 100%;
}

.crystal-svg,
.mesh-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.hex-lattice .draw {
  fill: rgba(255, 106, 26, 0.015);
  stroke-width: 1.1;
  stroke-linejoin: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: hexDraw 3.4s ease forwards, hexPulse 4s ease-in-out infinite;
  opacity: 0.55;
}

.hex-lattice .d2 { animation-delay: 0.12s, 0.2s; }
.hex-lattice .d3 { animation-delay: 0.24s, 0.4s; }
.hex-lattice .d4 { animation-delay: 0.36s, 0.6s; }
.hex-lattice .d5 { animation-delay: 0.2s, 0.3s; }
.hex-lattice .d6 { animation-delay: 0.28s, 0.5s; }
.hex-lattice .d7 { animation-delay: 0.34s, 0.7s; }
.hex-lattice .d8 { animation-delay: 0.42s, 0.9s; }

.spine {
  opacity: 0.35;
  animation: dashMove 2.2s linear infinite;
}

.packet {
  filter: drop-shadow(0 0 4px rgba(255, 138, 61, 0.4));
  opacity: 0.5;
}

.packet.p1 { animation: rideSpine 3.2s linear infinite; }
.packet.p2 { animation: rideSpine 3.2s linear 1.05s infinite; }
.packet.p3 { animation: rideSpine 3.2s linear 2.1s infinite; }

.crystal-mirror {
  transform: scaleX(-1);
}

.side-right .packet.p1 {
  animation-delay: 0.4s;
}

.side-right .packet.p2 {
  animation-delay: 1.45s;
}

.side-right .packet.p3 {
  animation-delay: 2.5s;
}

.side-right .hex-lattice .draw {
  animation-delay: 0.15s, 0.25s;
}

.side-right .hex-lattice .d2 { animation-delay: 0.27s, 0.35s; }
.side-right .hex-lattice .d3 { animation-delay: 0.39s, 0.55s; }
.side-right .hex-lattice .d4 { animation-delay: 0.51s, 0.75s; }
.side-right .hex-lattice .d5 { animation-delay: 0.35s, 0.45s; }
.side-right .hex-lattice .d6 { animation-delay: 0.43s, 0.65s; }
.side-right .hex-lattice .d7 { animation-delay: 0.49s, 0.85s; }
.side-right .hex-lattice .d8 { animation-delay: 0.57s, 1.05s; }

.orbit-core {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
}

.orbit-core.mirror {
  transform: scaleX(-1);
}

.oc-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 26, 0.35);
  box-shadow: inset 0 0 18px rgba(255, 106, 26, 0.08);
}

.oc-ring.r1 {
  inset: 8px;
  animation: spin 9s linear infinite;
  border-style: dashed;
}

.oc-ring.r2 {
  inset: -6px;
  border-color: rgba(91, 184, 255, 0.3);
  animation: spin 14s linear infinite reverse;
}

.oc-ring.r3 {
  inset: -22px;
  border-color: rgba(255, 176, 122, 0.18);
  animation: spin 20s linear infinite;
}

.oc-core {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #ff6a1a 55%, #8a2e00);
  box-shadow: 0 0 16px rgba(255, 106, 26, 0.4);
  animation: corePulse 2.4s ease-in-out infinite;
}

.oc-sat {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff8a3d;
  box-shadow: 0 0 12px rgba(255, 106, 26, 0.9);
}

.oc-sat.s1 {
  animation: satOrbitA 5s linear infinite;
}

.oc-sat.s2 {
  background: #5bb8ff;
  box-shadow: 0 0 12px rgba(91, 184, 255, 0.9);
  animation: satOrbitB 7.5s linear infinite;
}

.mesh-line {
  fill: none;
  stroke-linecap: round;
  opacity: 0.55;
  stroke-dasharray: 8 12;
  animation: dashMove 3s linear infinite;
}

.mesh-line.m2 { animation-duration: 3.6s; }
.mesh-line.m3 { animation-duration: 4s; }
.mesh-line.m4 { animation-duration: 2.6s; opacity: 0.75; }

.mesh-node {
  filter: drop-shadow(0 0 6px rgba(255, 106, 26, 0.8));
  animation: nodeGlow 2.4s ease-in-out infinite;
}

.mesh-node.n-b,
.mesh-node.n-e,
.mesh-node.n-h {
  fill: #5bb8ff;
  filter: drop-shadow(0 0 6px rgba(91, 184, 255, 0.85));
  animation-delay: 0.4s;
}

.mesh-node.n-j,
.mesh-node.n-k {
  fill: #7dffb3;
  filter: drop-shadow(0 0 6px rgba(125, 255, 179, 0.75));
  animation-delay: 0.8s;
}

.beam {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.85));
}

.prism-stack {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
}

.prism {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 1px solid rgba(255, 106, 26, 0.45);
  background: linear-gradient(145deg, rgba(255, 106, 26, 0.18), rgba(91, 184, 255, 0.08), transparent);
  animation: prismFloat 4.5s ease-in-out infinite;
}

.prism.p-b {
  inset: 10px;
  animation-delay: 0.4s;
  border-color: rgba(91, 184, 255, 0.4);
}

.prism.p-c {
  inset: 22px;
  animation-delay: 0.8s;
  border-color: rgba(125, 255, 179, 0.35);
}

@media (min-width: 1100px) {
  .side-stage {
    display: flex;
  }
}

@media (min-width: 1400px) {
  .side-stage {
    width: 260px;
  }

  .side-left {
    left: max(24px, calc(50% - 560px));
  }

  .side-right {
    right: max(24px, calc(50% - 560px));
  }
}

@keyframes stageIn {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 28px)) scale(0.96);
  }
  to {
    opacity: 0.42;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes auraBreath {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.04);
  }
}

@keyframes hexDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes hexPulse {
  0%,
  100% {
    fill: rgba(255, 106, 26, 0.01);
  }
  50% {
    fill: rgba(255, 106, 26, 0.04);
  }
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -80;
  }
}

@keyframes rideSpine {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 0.55;
  }
  90% {
    opacity: 0.55;
  }
  100% {
    transform: translateY(280px);
    opacity: 0;
  }
}

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

@keyframes corePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(255, 106, 26, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 18px rgba(255, 106, 26, 0.5);
  }
}

@keyframes satOrbitA {
  from {
    transform: rotate(0deg) translateX(48px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(48px) rotate(-360deg);
  }
}

@keyframes satOrbitB {
  from {
    transform: rotate(180deg) translateX(62px) rotate(-180deg);
  }
  to {
    transform: rotate(540deg) translateX(62px) rotate(-540deg);
  }
}

@keyframes nodeGlow {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

@keyframes prismFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(8deg);
  }
}

.network {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.fx {
  --px: 0;
  --py: 0;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #060d24;
}

.fx-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 55% at 50% -5%, rgba(255, 106, 26, 0.16), transparent 58%),
    radial-gradient(55% 45% at 100% 30%, rgba(64, 120, 255, 0.1), transparent 60%),
    #060d24;
}

.fx-layer {
  position: absolute;
  inset: -8%;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.layer-back {
  transform: translate3d(calc(var(--px) * 12px), calc(var(--py) * 10px), 0);
  filter: blur(42px) contrast(1.2) saturate(1.15);
  opacity: 0.85;
}

.layer-mid {
  transform: translate3d(calc(var(--px) * 28px), calc(var(--py) * 22px), 0);
  filter: blur(28px) contrast(1.25) saturate(1.2);
  opacity: 0.9;
}

.layer-front {
  transform: translate3d(calc(var(--px) * 48px), calc(var(--py) * 36px), 0);
  filter: blur(10px) contrast(1.15);
  opacity: 0.75;
}

.metal {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}

.metal.m1 {
  width: min(520px, 62vw);
  height: min(520px, 62vw);
  top: 2%;
  left: 22%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 230, 200, 0.55), transparent 28%),
    radial-gradient(circle at 62% 58%, rgba(255, 106, 26, 0.5), transparent 52%),
    radial-gradient(circle at 48% 72%, rgba(140, 170, 255, 0.22), transparent 55%);
  animation: metalMorphA 14s ease-in-out infinite;
}

.metal.m2 {
  width: min(420px, 52vw);
  height: min(420px, 52vw);
  right: -4%;
  top: 28%;
  background:
    radial-gradient(circle at 40% 30%, rgba(200, 220, 255, 0.4), transparent 34%),
    radial-gradient(circle at 60% 65%, rgba(70, 130, 255, 0.38), transparent 55%);
  animation: metalMorphB 17s ease-in-out infinite;
}

.metal.m3 {
  width: min(360px, 46vw);
  height: min(360px, 46vw);
  left: -2%;
  bottom: 10%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 200, 150, 0.45), transparent 30%),
    radial-gradient(circle at 70% 55%, rgba(255, 120, 40, 0.42), transparent 58%);
  animation: metalMorphC 15s ease-in-out infinite;
}

.metal.m4 {
  width: min(300px, 40vw);
  height: min(300px, 40vw);
  right: 14%;
  bottom: 18%;
  background:
    radial-gradient(circle at 45% 40%, rgba(180, 210, 255, 0.35), transparent 36%),
    radial-gradient(circle at 55% 70%, rgba(90, 150, 255, 0.28), transparent 60%);
  animation: metalMorphA 19s ease-in-out infinite reverse;
}

.metal.m5 {
  width: min(220px, 32vw);
  height: min(220px, 32vw);
  left: 38%;
  top: 34%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.28), transparent 26%),
    radial-gradient(circle at 55% 60%, rgba(255, 138, 61, 0.4), transparent 60%);
  animation: metalMorphB 12s ease-in-out infinite;
}

.metal-ring {
  position: absolute;
  left: 50%;
  top: 16%;
  width: min(480px, 70vw);
  height: min(480px, 70vw);
  translate: -50% 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(#060d24, #060d24) padding-box,
    conic-gradient(from 0deg, transparent, rgba(255, 138, 61, 0.55), transparent 35%, rgba(120, 170, 255, 0.4), transparent 70%) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 2px;
  opacity: 0.45;
  animation: metalSpin 28s linear infinite;
  filter: blur(0.2px);
}

.spec {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 230, 200, 0.85);
  box-shadow: 0 0 18px rgba(255, 180, 120, 0.8);
  animation: specGlow 4.5s ease-in-out infinite;
}

.spec.s1 { top: 24%; left: 18%; }
.spec.s2 { top: 42%; right: 16%; animation-delay: 1.2s; background: rgba(180, 210, 255, 0.9); box-shadow: 0 0 18px rgba(120, 170, 255, 0.75); }
.spec.s3 { bottom: 26%; left: 48%; animation-delay: 2.4s; }

.fx-sheen {
  position: absolute;
  inset: -25%;
  background: linear-gradient(
    118deg,
    transparent 38%,
    rgba(255, 255, 255, 0.07) 49%,
    transparent 60%
  );
  animation: sheenSweep 10s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

.fx-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 32%, transparent 18%, rgba(6, 13, 36, 0.5) 100%);
}


.shell {
  position: relative;
  z-index: 1;
  width: min(100% - 28px, var(--max));
  margin: 0 auto;
  min-height: 100lvh;
  padding: 48px 0 40px;
  display: flex;
  flex-direction: column;
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 28px;
}

.logo-orbit {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  animation: brandIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0s backwards;
}

.logo-orbit a {
  position: relative;
  z-index: 2;
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background: #060d24;
  animation: logoPulse 3s ease-in-out infinite;
}

.brand-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.28);
  transform-origin: center center;
  background: #060d24;
  position: relative;
  z-index: 2;
}

.ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 26, 0.35);
  animation: spin 10s linear infinite;
}

.ring-a {
  inset: 4px;
}

.ring-b {
  inset: -8px;
  border-style: dashed;
  border-color: rgba(255, 138, 61, 0.28);
  animation-duration: 16s;
  animation-direction: reverse;
}

.orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 106, 26, 0.8);
  animation: orbit 5s linear infinite;
  z-index: 3;
}

.brand-name,
.tagline,
.link-title,
.link-url,
.foot {
  transform: none;
  filter: none;
  text-shadow: none;
}

.brand-name {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 5.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
  animation: brandIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s backwards;
}

.tagline {
  margin: 0;
  max-width: 34ch;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  color: #e4e4e4;
  text-wrap: balance;
  animation: brandIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}

.links {
  flex: 1;
}

.link-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link {
  --i: 0;
  --accent: #ff6a1a;
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 70px;
  padding: 11px 12px 11px 11px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      420px circle at var(--mx) var(--my),
      color-mix(in srgb, var(--accent) 18%, transparent),
      transparent 42%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(12, 12, 12, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 30px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  animation: slideInLeft 0.75s cubic-bezier(0.22, 1, 0.36, 1) calc(0.32s + var(--i) * 0.1s) backwards;
}

.link:nth-child(even) {
  animation-name: slideInRight;
}

.link::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    color-mix(in srgb, var(--accent) 85%, #fff) 10%,
    transparent 24%,
    transparent 58%,
    color-mix(in srgb, var(--accent) 50%, transparent) 70%,
    transparent 84%
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
  animation: beamSpin 5.5s linear infinite;
  animation-delay: calc(var(--i) * -0.55s);
}

.link::after {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-20deg) translateX(-140%);
  pointer-events: none;
  z-index: 1;
}

.link:hover::after {
  animation: slashSweep 0.85s ease;
}

.link:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 0 28px color-mix(in srgb, var(--accent) 22%, transparent);
}

.link:hover::before {
  opacity: 0.75;
  animation-duration: 1.5s;
}

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

.link-web { --accent: #ff6a1a; }
.link-tg { --accent: #2aabee; }
.link-x { --accent: #e7e9ea; }

.link-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 18%,
    color-mix(in srgb, var(--accent) 14%, transparent) 48%,
    transparent 72%
  );
  transform: translateX(-120%);
  animation: shimmer 3.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.35s);
  pointer-events: none;
  z-index: 0;
}

.link:hover .link-shimmer {
  animation-duration: 1.35s;
}

.link-ico {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #0a0a0a;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px color-mix(in srgb, var(--accent) 18%, transparent);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  overflow: visible;
}

.link-ico::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

.link:hover .link-ico::before {
  animation: iconRing 0.9s ease-out;
}

.link-ico::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.28), transparent 55%);
  opacity: 0.35;
  pointer-events: none;
}

.link-ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.link-ico svg {
  display: block;
  position: relative;
  z-index: 1;
}

.link:hover .link-ico {
  transform: scale(1.1) rotate(-6deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 28px color-mix(in srgb, var(--accent) 45%, transparent);
}

.link:hover .link-ico svg {
  animation: iconPop 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-tg .link-ico {
  background: linear-gradient(145deg, #2aabee, #229ed9);
  color: #fff;
  border-color: transparent;
}

.link-x .link-ico {
  background: #000;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.link-web .link-ico {
  padding: 0;
  background: #060d24;
  border-color: rgba(255, 106, 26, 0.45);
  overflow: hidden;
}

.link-web .link-ico img {
  transform: scale(1.28);
  transform-origin: center center;
  object-position: center 45%;
  border-radius: 0;
}

.link-web .link-ico::after {
  display: none;
}

.link-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.link-title {
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #ffffff;
  transition: color 0.25s ease;
}

.link:hover .link-title {
  color: #fff;
}

.link-url {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.35;
  color: #d6d6d6;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  transition: color 0.25s ease;
}

.link:hover .link-url {
  color: #f0f0f0;
}

.link-go {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  align-self: center;
  border-radius: 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.link:hover .link-go {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  animation: goBounce 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.foot {
  margin-top: 28px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #cfcfcf;
  animation: riseFade 0.7s ease 0.95s both;
}

.foot a {
  color: #e8e8e8;
}

.foot a:hover {
  color: var(--orange-2);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes brandIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes metalMorphA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(5%, 7%) scale(1.12);
  }
}

@keyframes metalMorphB {
  0%,
  100% {
    transform: translate(0, 0) scale(1.04);
  }
  50% {
    transform: translate(-6%, 4%) scale(0.94);
  }
}

@keyframes metalMorphC {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(7%, -5%) scale(1.1);
  }
}

@keyframes metalSpin {
  to {
    transform: translate(-50%, 0) rotate(360deg);
  }
}

@keyframes specGlow {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes liquidShift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(2%, 2%, 0) scale(1.06);
  }
}

@keyframes liqA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4%, 6%) scale(1.12);
  }
}

@keyframes liqB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-5%, 4%) scale(1.1);
  }
}

@keyframes liqC {
  0%,
  100% {
    transform: translate(0, 0) scale(1.05);
  }
  50% {
    transform: translate(6%, -5%) scale(0.95);
  }
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -280;
  }
}

@keyframes sheenSweep {
  0%,
  100% {
    transform: translateX(-18%) rotate(8deg);
    opacity: 0.25;
  }
  50% {
    transform: translateX(18%) rotate(8deg);
    opacity: 0.55;
  }
}

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

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(72px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(72px) rotate(-360deg);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 26, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(255, 106, 26, 0);
  }
}

@keyframes shimmer {
  0%,
  55% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

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

@keyframes linkFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5px);
  }
}

@keyframes slashSweep {
  from {
    transform: skewX(-20deg) translateX(-140%);
  }
  to {
    transform: skewX(-20deg) translateX(320%);
  }
}

@keyframes iconRing {
  0% {
    opacity: 0.9;
    transform: scale(0.75);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes iconPop {
  0% {
    transform: scale(0.85);
  }
  60% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes goBounce {
  0% {
    transform: translate(0, 0) scale(0.9);
  }
  55% {
    transform: translate(4px, -4px) scale(1.08);
  }
  100% {
    transform: translate(2px, -2px) scale(1);
  }
}

@keyframes sheen {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 480px) {
  .shell {
    width: min(100% - 20px, var(--max));
    padding-top: 36px;
  }

  .logo-orbit {
    width: 136px;
    height: 136px;
  }

  .logo-orbit a {
    width: 98px;
    height: 98px;
  }

  .brand-logo {
    transform: scale(1.28);
  }

  .orbit-dot {
    animation-name: orbitMobile;
  }
}

@keyframes orbitMobile {
  from {
    transform: rotate(0deg) translateX(64px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(64px) rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
