/* ============================================================
   eBIZ SMARTZ — "Command Deck" login (light)
   aurora mesh · orbital motifs · kinetic panel
   ============================================================ */
:root {
  --bg: #F2F5FA;
  --ink: #0B1524;
  --ink-2: rgba(11,21,36,0.68);
  --ink-3: rgba(11,21,36,0.46);
  --ink-4: rgba(11,21,36,0.28);
  --line: rgba(11,21,36,0.08);
  --line-2: rgba(11,21,36,0.15);
  --c1: #6CBE45;   /* logo green      */
  --c2: #2596BE;   /* brand blue      */
  --c3: #1B75BB;   /* logo deep blue  */
  --c4: #F7941D;   /* logo orange     */
  --grad: linear-gradient(100deg, var(--c1), var(--c2) 45%, var(--c3) 80%);
  --grad-btn: linear-gradient(135deg, #6CBE45 0%, #2596BE 60%, #1B75BB 120%);
  --glass: rgba(255,255,255,0.72);
  --glow-g: rgba(108,190,69,0.35);
  --glow-c: rgba(37,150,190,0.32);
  /* module colors (logo palette) */
  --m-admin: #1B75BB;
  --m-fin:   #6CBE45;
  --m-bill:  #F7941D;
  --m-hr:    #D0342C;
  --m-mrp:   #29ABE2;
  --m-acc:   #14B8A6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
form { height: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; color: inherit; cursor: pointer; }
svg { display: block; }

/* ================= FIXED BACKDROP ================= */
.backdrop { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-mesh { position: absolute; inset: 0; }
.bg-mesh::before {
  content: ''; position: absolute; inset: -20%;
  background:
    radial-gradient(38% 45% at 12% 20%, rgba(108,190,69,0.16), transparent 70%),
    radial-gradient(42% 52% at 88% 12%, rgba(27,117,187,0.14), transparent 70%),
    radial-gradient(45% 55% at 78% 88%, rgba(247,148,29,0.09), transparent 70%),
    radial-gradient(36% 44% at 25% 92%, rgba(37,150,190,0.13), transparent 70%);
  animation: mesh-shift 24s ease-in-out infinite alternate;
}
@keyframes mesh-shift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-2.5%,2%) scale(1.06); }
  100% { transform: translate(2%,-2.5%) scale(1.02); }
}
.bg-floor {
  position: absolute; left: -25%; right: -25%; bottom: -12%; height: 55%;
  background-image:
    linear-gradient(to right, rgba(37,150,190,0.24) 1px, transparent 1px),
    linear-gradient(to top, rgba(37,150,190,0.24) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(620px) rotateX(64deg);
  transform-origin: 50% 100%;
  mask-image: linear-gradient(to top, rgba(0,0,0,.75), transparent 85%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,.75), transparent 85%);
  animation: floor-scroll 3.2s linear infinite;
}
@keyframes floor-scroll { from { background-position: 0 0; } to { background-position: 0 64px; } }
.star {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: rgba(37,150,190,0.75);
  animation: twinkle var(--tw, 3s) ease-in-out infinite;
}
@keyframes twinkle { 0%,100% { opacity: .1; } 50% { opacity: .8; } }
.mouse-glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,150,190,0.15), rgba(108,190,69,0.08) 40%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: opacity .4s ease;
  opacity: 0;
}
.noise {
  position: absolute; inset: 0; opacity: .028; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ================= SHARED BITS ================= */
.brand { display: flex; align-items: center; gap: 12px; }
.brand .brand-logo { height: 64px; width: auto; display: block; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 13px;
  background: var(--grad-btn);
  color: #03130D;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(108,190,69,0.4), 0 0 60px rgba(37,150,190,0.18);
}
.brand .wm { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: .01em; }
.brand .wm em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.live-status {
  display: flex; align-items: center; gap: 20px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.live-status .live { display: flex; align-items: center; gap: 8px; }
.live-status .live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--c1);
  box-shadow: 0 0 10px var(--glow-g);
  animation: blip 2.4s ease-in-out infinite;
}
@keyframes blip { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.live-status .js-clock { font-variant-numeric: tabular-nums; color: var(--ink-2); }

.eyebrow-code {
  font-size: 11px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* marquee */
.marquee {
  position: relative; z-index: 4;
  border-top: 1px solid var(--line);
  padding: 15px 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  flex-shrink: 0;
}
.marquee .track { display: flex; width: max-content; animation: scroll-x 30s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee .item {
  display: flex; align-items: center; gap: 26px;
  padding: 0 26px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.marquee .item::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--grad); }

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

/* ================= SCENE ================= */
.scene {
  position: relative; z-index: 1;
  height: 100vh;
  display: flex; flex-direction: column;
}
.topbar {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 38px 0;
}
.main {
  position: relative; z-index: 4;
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  padding: 0 72px;
  min-height: 0;
}

/* ---------- HERO ---------- */
.hero { position: relative; max-width: 640px; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  background: rgba(255,255,255,0.65);
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 28px;
  opacity: 0; animation: rise .8s cubic-bezier(.22,1,.36,1) .15s forwards;
}
.hero .eyebrow .spark {
  width: 14px; height: 14px;
  background: var(--grad);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  animation: spin-slow 7s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  opacity: 0; animation: rise .9s cubic-bezier(.22,1,.36,1) .28s forwards;
}
.hero h1 .swap-wrap { display: inline-grid; vertical-align: top; overflow: hidden; height: 1.06em; }
.hero h1 .swap {
  grid-area: 1 / 1;
  background: var(--grad);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: hue-slide 6s ease-in-out infinite alternate;
  transform: translateY(110%);
  transition: transform .65s cubic-bezier(.22,1,.36,1), opacity .5s ease;
  opacity: 0;
}
.hero h1 .swap.on { transform: translateY(0); opacity: 1; }
.hero h1 .swap.off { transform: translateY(-110%); opacity: 0; }
@keyframes hue-slide { from { background-position: 0% 0; } to { background-position: 100% 0; } }

.hero .sub {
  font-size: 15px; line-height: 1.65; color: var(--ink-2);
  max-width: 460px;
  margin-bottom: 42px;
  opacity: 0; animation: rise .9s cubic-bezier(.22,1,.36,1) .4s forwards;
}
.hero .sub b { color: var(--ink); font-weight: 600; }

.hero-row { display: flex; align-items: center; gap: 48px; }
.hero-stats {
  display: flex; gap: 34px;
  margin-top: 8px;
  opacity: 0; animation: rise .9s cubic-bezier(.22,1,.36,1) .5s forwards;
}
.hstat .v {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 700; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hstat .v em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hstat .l { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; margin-top: 4px; }

/* ---------- ORBITAL SYSTEM ---------- */
.orbit-zone {
  position: relative;
  width: 340px; height: 340px;
  opacity: 0; animation: orbit-in 1.2s cubic-bezier(.22,1,.36,1) .55s forwards;
}
@keyframes orbit-in { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
.orbit-zone::before {
  content: ''; position: absolute; inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,190,69,0.20), rgba(37,150,190,0.12) 45%, transparent 72%);
  filter: blur(6px);
  pointer-events: none;
}
.orbit-core {
  position: absolute; left: 50%; top: 50%;
  width: 86px; height: 86px;
  transform: translate(-50%,-50%);
  border-radius: 26px;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px;
  color: #03130D;
  box-shadow:
    0 0 40px rgba(108,190,69,0.5),
    0 0 110px rgba(37,150,190,0.28),
    inset 0 -8px 18px rgba(0,0,0,0.18);
  animation: core-breathe 4s ease-in-out infinite;
  z-index: 3;
}
@keyframes core-breathe {
  0%,100% { box-shadow: 0 0 40px rgba(108,190,69,.5), 0 0 110px rgba(37,150,190,.28), inset 0 -8px 18px rgba(0,0,0,.18); }
  50%     { box-shadow: 0 0 60px rgba(108,190,69,.7), 0 0 150px rgba(37,150,190,.4),  inset 0 -8px 18px rgba(0,0,0,.18); }
}
.orbit-ring {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  border: 1.5px dashed rgba(37,150,190,0.42);
  border-radius: 50%;
}
.orbit-ring.r1 { width: 190px; height: 190px; animation: ring-rot 40s linear infinite; }
.orbit-ring.r2 { width: 288px; height: 288px; border-style: solid; border-width: 1px; border-color: rgba(11,21,36,0.14); }
@keyframes ring-rot { to { transform: translate(-50%,-50%) rotate(360deg); } }
.orbit-track {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  animation: orbit-rot var(--dur, 22s) linear infinite;
}
.orbit-track.t1 { width: 190px; height: 190px; --dur: 20s; }
.orbit-track.t2 { width: 288px; height: 288px; --dur: 34s; animation-direction: reverse; }
@keyframes orbit-rot { to { transform: translate(-50%,-50%) rotate(360deg); } }
.orbit-chip {
  position: absolute;
  width: 44px; height: 44px; border-radius: 15px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--oc, var(--c2));
  box-shadow: 0 8px 20px rgba(11,21,36,0.12), 0 0 16px color-mix(in srgb, var(--oc, var(--c2)) 20%, transparent);
  animation: orbit-counter var(--dur, 22s) linear infinite;
}
.orbit-track.t2 .orbit-chip { animation-direction: reverse; }
@keyframes orbit-counter { to { transform: rotate(-360deg); } }
.orbit-chip svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.orbit-chip.oc-fin   { --oc: var(--m-fin); }
.orbit-chip.oc-bill  { --oc: var(--m-bill); }
.orbit-chip.oc-hr    { --oc: var(--m-hr); }
.orbit-chip.oc-mrp   { --oc: var(--m-mrp); }
.orbit-chip.oc-acc   { --oc: var(--m-acc); }
.orbit-chip.oc-admin { --oc: var(--m-admin); }
.orbit-track .p1 { left: 50%; top: 0;    margin-left: -22px; margin-top: -22px; }
.orbit-track .p2 { left: 100%; top: 50%; margin-left: -22px; margin-top: -22px; }
.orbit-track .p3 { left: 50%; top: 100%; margin-left: -22px; margin-top: -22px; }
.orbit-track .p4 { left: 0; top: 50%;    margin-left: -22px; margin-top: -22px; }

/* ---------- FORM PANEL ---------- */
.panel-wrap {
  position: relative;
  justify-self: end;
  width: 100%; max-width: 430px;
  perspective: 1200px;
}
.panel {
  position: relative;
  border-radius: 26px;
  padding: 1.5px;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    conic-gradient(from var(--ang, 0deg), transparent 0%, var(--c1) 12%, var(--c2) 26%, transparent 40%, transparent 60%, var(--c3) 72%, var(--c4) 84%, transparent 96%) border-box;
  border: 1.5px solid transparent;
  animation: border-spin 7s linear infinite, panel-in 1s cubic-bezier(.22,1,.36,1) .35s both;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .18s ease-out;
}
@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes border-spin { to { --ang: 360deg; } }
@keyframes panel-in { from { opacity: 0; transform: translateY(34px) rotateX(6deg); } to { opacity: 1; transform: translateY(0) rotateX(0); } }
.panel-inner {
  position: relative;
  border-radius: 24.5px;
  background: var(--glass);
  backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px);
  padding: 38px 36px 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,21,36,0.12), 0 4px 16px rgba(11,21,36,0.06);
}
.panel-inner::before {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60%;
  left: -80%;
  background: linear-gradient(105deg, transparent, rgba(37,150,190,0.04) 45%, rgba(37,150,190,0.09) 50%, rgba(37,150,190,0.04) 55%, transparent);
  transform: skewX(-18deg);
  animation: sheen 6.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sheen { 0%, 55% { left: -80%; } 85%, 100% { left: 140%; } }

.panel-head { margin-bottom: 28px; }
.panel-head .hello { margin-bottom: 12px; }
.panel-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 7px;
}
.panel-head p { font-size: 13px; color: var(--ink-3); }

.fld { position: relative; margin-bottom: 18px; }
.fld input {
  width: 100%;
  padding: 10px 16px 12px;
  padding-top: 26px;
  background: rgba(11,21,36,0.045);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-size: 14px; font-family: inherit;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.fld input:focus {
  border-color: var(--c2);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 4px rgba(37,150,190,0.12), 0 0 24px rgba(37,150,190,0.10);
}
.fld label {
  position: absolute; left: 17px; top: 19px;
  font-size: 13.5px; color: var(--ink-3);
  pointer-events: none;
  transition: all .22s cubic-bezier(.22,1,.36,1);
}
.fld input:focus + label,
.fld input:not(:placeholder-shown) + label {
  top: 9px;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c2);
}
.fld input::placeholder { color: transparent; }
.fld .eye {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--ink-4); display: flex; padding: 4px;
  transition: color .2s ease;
}
.fld .eye:hover { color: var(--ink-2); }
.fld .eye svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.frow {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px;
  margin: 4px 2px 24px;
}
.chk { display: flex; align-items: center; gap: 9px; color: var(--ink-2); cursor: pointer; user-select: none; }
.chk input { display: none; }
.chk .sw {
  width: 34px; height: 19px; border-radius: 100px;
  background: rgba(11,21,36,0.10);
  border: 1px solid var(--line-2);
  position: relative;
  transition: background .25s ease, border-color .25s ease;
}
.chk .sw::after {
  content: ''; position: absolute; left: 2px; top: 1.5px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--ink-2);
  transition: all .25s cubic-bezier(.22,1,.36,1);
}
.chk input:checked + .sw { background: var(--grad-btn); border-color: transparent; }
.chk input:checked + .sw::after { left: 17px; background: #04110C; }
.forgot { color: var(--c2); font-weight: 600; }
.forgot:hover { text-shadow: 0 0 14px var(--glow-c); }

.go-btn {
  position: relative;
  width: 100%;
  padding: 15px 20px;
  border-radius: 14px;
  background: var(--grad-btn);
  color: #04110C;
  font-size: 14.5px; font-weight: 800; letter-spacing: .02em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(108,190,69,0.28), 0 4px 14px rgba(37,150,190,0.22);
  transition: transform .2s ease, box-shadow .25s ease;
}
.go-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(108,190,69,0.4), 0 6px 18px rgba(37,150,190,0.3); color: #04110C; }
.go-btn:active { transform: translateY(0) scale(.985); }
.go-btn::before {
  content: ''; position: absolute; top: 0; bottom: 0; width: 40%;
  left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55) 50%, transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.go-btn:hover::before { left: 130%; }
.go-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.go-btn:hover svg { transform: translateX(4px); }
.go-btn .spinner {
  width: 16px; height: 16px;
  border: 2.4px solid rgba(4,17,12,0.25);
  border-top-color: #04110C;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.go-btn.loading .spinner { display: block; }
.go-btn.loading .arr { display: none; }

.login-error {
  display: block;
  margin-top: 16px;
  padding: 0 2px;
  font-size: 12.5px; font-weight: 600;
  color: #C2334D;
  text-align: center;
}
.login-error:empty { display: none; }

.panel-foot {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 11px; color: var(--ink-4); letter-spacing: .04em;
}
.panel-foot svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.8; }

@keyframes shake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(3px); }
  30%, 50%, 70% { transform: translateX(-5px); }
  40%, 60% { transform: translateX(5px); }
}
.panel.shake { animation: shake .5s ease, border-spin 7s linear infinite; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1180px) {
  .hero-row { gap: 24px; }
  .orbit-zone { width: 280px; height: 280px; }
  .orbit-ring.r2, .orbit-track.t2 { width: 240px; height: 240px; }
  .orbit-ring.r1, .orbit-track.t1 { width: 160px; height: 160px; }
}
/* shorter desktop screens: compress so everything fits without scrolling */
@media (max-height: 860px) and (min-width: 1021px) {
  .topbar { padding-top: 14px; }
  .hero .eyebrow { margin-bottom: 16px; }
  .hero h1 { font-size: clamp(36px, 3.8vw, 52px); margin-bottom: 16px; }
  .hero .sub { margin-bottom: 24px; }
  .orbit-zone { width: 260px; height: 260px; }
  .orbit-ring.r2, .orbit-track.t2 { width: 224px; height: 224px; }
  .orbit-ring.r1, .orbit-track.t1 { width: 150px; height: 150px; }
  .panel-inner { padding: 26px 30px 22px; }
  .panel-head { margin-bottom: 18px; }
  .panel-head h2 { font-size: 22px; }
  .fld { margin-bottom: 14px; }
  .frow { margin-bottom: 16px; }
  .go-btn { padding: 12px 20px; }
  .panel-foot { margin-top: 16px; }
  .marquee { padding: 10px 0; }
}
@media (max-height: 700px) and (min-width: 1021px) {
  .hero-stats, .marquee { display: none; }
  .hero h1 { font-size: clamp(30px, 3.2vw, 42px); }
  .orbit-zone { display: none; }
}

@media (max-width: 1020px) {
  html, body { overflow: hidden auto; }
  .scene { height: auto; min-height: 100vh; }
  .main { grid-template-columns: 1fr; padding: 40px 28px; gap: 48px; }
  .hero { max-width: 560px; margin: 0 auto; text-align: center; }
  .hero-row { flex-direction: column; }
  .hero .sub { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .orbit-zone { display: none; }
  .panel-wrap { justify-self: center; }
  .topbar { padding: 18px 22px 0; }
}
@media (max-width: 560px) {
  .panel-inner { padding: 30px 22px 24px; }
  .live-status .js-clock { display: none; }
  .hero h1 { font-size: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
