:root {
  --bg: #070b12;
  --bg-2: #0d111a;
  --panel: rgba(17, 20, 30, 0.84);
  --panel-2: rgba(25, 28, 39, 0.78);
  --line: rgba(172, 186, 211, 0.14);
  --muted: #98a1b5;
  --text: #f6f1e8;
  --soft: #d5dae7;
  --pink: #dc2f89;
  --pink-2: #ff4aa6;
  --aqua: #8ee7df;
  --green: #75f0a7;
  --gold: #f7d974;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--soft);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 68% 6%, rgba(178, 70, 129, 0.22), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(35, 139, 139, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(16, 8, 23, 0.45), transparent 38%),
    var(--bg);
  overflow-x: hidden;
  zoom: 0.8;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(4, 10, 18, 0.46), rgba(4, 8, 14, 0.92)),
    url("./assets/page-bg.png") center top / cover no-repeat;
  opacity: 1;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, black 80px, black 80%, transparent);
}

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sidebar {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 10;
  width: 286px;
  padding: 26px 22px 32px;
  overflow: visible;
  background:
    radial-gradient(circle at 8% 0, rgba(218, 47, 137, 0.12), transparent 28%),
    rgba(8, 8, 16, 0.88);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 0.9;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.side-nav {
  margin-top: 38px;
}

.side-nav p {
  margin: 30px 10px 14px;
  color: #73798d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.side-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  color: #c7ccda;
  border-radius: 12px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.side-nav a:hover,
.side-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(2px);
}

.side-nav .nav-icon {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: currentColor;
  opacity: 0.78;
  transition: opacity 0.18s ease, transform 0.18s ease;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.side-nav a:hover .nav-icon,
.side-nav a.active .nav-icon {
  opacity: 1;
  transform: scale(1.06);
}

.nav-icon.home { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 11.6 12 4l9 7.6v8.9h-6.2v-5.8H9.2v5.8H3z'/%3E%3C/svg%3E"); }
.nav-icon.calendar { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v3h6V2h2v3h3v17H4V5h3zm11 8H6v10h12z'/%3E%3C/svg%3E"); }
.nav-icon.scroll { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 3h11a3 3 0 0 1 3 3v1h-4V6a1 1 0 0 0-1-1H6a2 2 0 0 0-2 2v12a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3v-1h-4v1a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1zm3 5h6v2H9zm0 4h7v2H9z'/%3E%3C/svg%3E"); }
.nav-icon.monitor { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 4h18v12H3zm2 2v8h14V6zm4 12h6l1 2H8z'/%3E%3C/svg%3E"); }
.nav-icon.settings { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 2 3.1 3.6-.8 1.1 3.5 3.1 2-2.4 2.8.3 3.7-3.6.8-2 3.1-3.1-2-3.6.8-.3-3.7-3.1-2 2.4-2.8L4.2 6.8l3.6-.8zm0 7a3 3 0 1 0 0 6 3 3 0 0 0 0-6'/%3E%3C/svg%3E"); }
.nav-icon.ticket { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 7h18v4a2 2 0 0 0 0 4v4H3v-4a2 2 0 0 0 0-4zm6 2v2h2V9zm0 4v2h2v-2zm0 4v1h2v-1z'/%3E%3C/svg%3E"); }
.nav-icon.compass { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m4.5 5.5-2.8 6.2-6.2 2.8 2.8-6.2z'/%3E%3C/svg%3E"); }
.nav-icon.gamepad { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 8h10a5 5 0 0 1 4.8 3.7l.9 3.5A3 3 0 0 1 17.8 18l-2.1-2H8.3l-2.1 2a3 3 0 0 1-4.9-2.8l.9-3.5A5 5 0 0 1 7 8m0 3v2H5v2h2v2h2v-2h2v-2H9v-2zm9.5 1.2a1.2 1.2 0 1 0 0 2.4 1.2 1.2 0 0 0 0-2.4M19 10a1.2 1.2 0 1 0 0 2.4A1.2 1.2 0 0 0 19 10'/%3E%3C/svg%3E"); }
.nav-icon.globe { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20M5 11h4.1a17 17 0 0 1 1.1-6A8 8 0 0 0 5 11m0 2a8 8 0 0 0 5.2 6 17 17 0 0 1-1.1-6zm7 6.5c.7-1 1.5-3.1 1.7-6.5h-3.4c.2 3.4 1 5.5 1.7 6.5m1.7-8.5C13.5 7.6 12.7 5.5 12 4.5c-.7 1-1.5 3.1-1.7 6.5zm.1 8A8 8 0 0 0 19 13h-4.1a17 17 0 0 1-1.1 6M14.9 11H19a8 8 0 0 0-5.2-6 17 17 0 0 1 1.1 6'/%3E%3C/svg%3E"); }
.nav-icon.users { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8m9 2a3 3 0 1 1 0 6 3 3 0 0 1 0-6M2 20a7 7 0 0 1 14 0zm13.5-1.5a8.5 8.5 0 0 0-2.2-4.3A5.5 5.5 0 0 1 22 18.5z'/%3E%3C/svg%3E"); }
.nav-icon.branch { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 4a3 3 0 0 1 2 5.2V11h4a2 2 0 0 0 2-2V8.8a3 3 0 1 1 2 0V9a4 4 0 0 1-4 4H9v1.2a3 3 0 1 1-2 0V9.2A3 3 0 0 1 7 4'/%3E%3C/svg%3E"); }
.nav-icon.swords { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m4 3 7 7-2 2-7-7V3zm16 0v2l-7 7-2-2 7-7zM7 14l3 3-4 4H3v-3zm10 0 4 4v3h-3l-4-4z'/%3E%3C/svg%3E"); }
.nav-icon.anchor { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a3 3 0 0 1 1 5.8V10h4v2h-4v6a6 6 0 0 0 5-5h-3l4-4 4 4h-3a8 8 0 0 1-16 0H1l4-4 4 4H6a6 6 0 0 0 5 5v-6H7v-2h4V7.8A3 3 0 0 1 12 2m0 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2'/%3E%3C/svg%3E"); }
.nav-icon.ship { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M11 2h2v4h5l2 8H4l2-8h5zm-8 14c2 0 2 1 4 1s2-1 4-1 2 1 4 1 2-1 4-1 2 1 4 1v3c-2 0-2-1-4-1s-2 1-4 1-2-1-4-1-2 1-4 1-2-1-4-1z'/%3E%3C/svg%3E"); }
.nav-icon.spark { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 2.2 7.8L22 12l-7.8 2.2L12 22l-2.2-7.8L2 12l7.8-2.2z'/%3E%3C/svg%3E"); }
.nav-icon.user { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10M4 21a8 8 0 0 1 16 0z'/%3E%3C/svg%3E"); }
.nav-icon.book { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 3h7a3 3 0 0 1 3 3v15a3 3 0 0 0-3-3H4zm16 0v15h-7a3 3 0 0 0-3 3V6a3 3 0 0 1 3-3z'/%3E%3C/svg%3E"); }
.nav-icon.sail { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2v15h8c-2.2-7.4-5-12-8-15M10 5C7 8.5 5 12.5 4 17h6zM3 19h18l-2 3H5z'/%3E%3C/svg%3E"); }
.nav-icon.flag { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M5 3h12l-1.5 4L17 11H7v10H5z'/%3E%3C/svg%3E"); }
.nav-icon.database { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 3c5 0 9 1.6 9 3.5v11c0 1.9-4 3.5-9 3.5s-9-1.6-9-3.5v-11C3 4.6 7 3 12 3m0 2c-4 0-6.5 1-7 1.5.5.5 3 1.5 7 1.5s6.5-1 7-1.5C18.5 6 16 5 12 5m0 6c-2.8 0-5.3-.5-7-1.4v2.9c.6.6 3 1.5 7 1.5s6.4-.9 7-1.5V9.6c-1.7.9-4.2 1.4-7 1.4m0 6c-2.8 0-5.3-.5-7-1.4v1.9c.5.5 3 1.5 7 1.5s6.5-1 7-1.5v-1.9c-1.7.9-4.2 1.4-7 1.4'/%3E%3C/svg%3E"); }
.nav-icon.newspaper { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 4h14v3h2v13H4zm2 2v12h10V6zm12 3v9h1V9zM7 8h8v3H7zm0 5h8v2H7z'/%3E%3C/svg%3E"); }
.nav-icon.info { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m1 15h-2v-6h2zm0-8h-2V7h2z'/%3E%3C/svg%3E"); }

.side-nav b {
  margin-left: auto;
  padding: 4px 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  background: rgba(247, 217, 116, 0.12);
  border: 1px solid rgba(247, 217, 116, 0.22);
  border-radius: 999px;
}

.shell {
  max-width: 1450px;
  margin-left: 286px;
  padding: 16px 28px 64px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 9;
  display: grid;
  grid-template-columns: minmax(320px, 580px) 1fr;
  gap: 24px;
  align-items: center;
  min-height: 60px;
  margin: -16px -28px 22px;
  padding: 16px 28px;
  background: rgba(8, 12, 20, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.search {
  display: grid;
  height: 44px;
  grid-template-columns: 36px 1fr 32px;
  align-items: center;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.search span {
  color: var(--muted);
  font-size: 24px;
}

.search input {
  min-width: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  outline: 0;
}

.search input::placeholder {
  color: #72798b;
}

kbd {
  display: grid;
  width: 24px;
  height: 26px;
  place-items: center;
  color: #a1a8ba;
  font-size: 14px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.top-links {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.top-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 18px;
  color: #cdd3df;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.top-links a.hot {
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  border-color: transparent;
}

.hero-card {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr) 384px;
  gap: 36px;
  align-items: end;
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px) clamp(28px, 5vw, 50px) 48px;
  background:
    linear-gradient(90deg, rgba(11, 13, 22, 0.96) 0 46%, rgba(12, 16, 26, 0.5)),
    radial-gradient(circle at 58% 25%, rgba(245, 198, 135, 0.16), transparent 18%),
    radial-gradient(circle at 88% 30%, rgba(229, 54, 137, 0.18), transparent 24%),
    url("./assets/page-bg.png") center / cover no-repeat,
    #0b1018;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-redesign {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1.08fr);
  gap: 22px;
  min-height: 600px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(9, 13, 24, 0.9), rgba(15, 18, 31, 0.68)),
    radial-gradient(circle at 34% 12%, rgba(220, 47, 137, 0.16), transparent 30%);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-dashboard {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 58px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 0 100%, rgba(142, 231, 223, 0.12), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
}

.hero-dashboard h1 {
  max-width: 650px;
  margin-top: 22px;
  font-size: clamp(48px, 4.7vw, 74px);
  line-height: 0.96;
}

.hero-dashboard p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #dbe5f5;
  font-size: 20px;
  line-height: 1.55;
}

.hero-searchline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 26px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.hero-searchline span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-searchline a {
  padding: 9px 12px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.hero-metrics a {
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.hero-metrics b {
  display: block;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.hero-metrics span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.hero-visual img,
.hero-visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 11, 18, 0.18), transparent 34%),
    linear-gradient(180deg, transparent 58%, rgba(7, 11, 18, 0.68));
}

.route-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: min(320px, calc(100% - 44px));
  padding: 18px;
  background: rgba(13, 16, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  backdrop-filter: blur(16px);
}

.route-card span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.route-card b {
  display: block;
  margin: 8px 0 14px;
  color: #fff;
  font-size: 19px;
}

.route-card a {
  display: inline-flex;
  padding: 9px 13px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  border-radius: 999px;
}

.hero-card::before {
  position: absolute;
  inset: auto -5% 0;
  height: 185px;
  content: "";
  background:
    radial-gradient(ellipse at 60% 80%, rgba(65, 164, 166, 0.28), transparent 50%),
    linear-gradient(180deg, transparent, rgba(13, 37, 48, 0.8));
}

.hero-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.3));
}

.hero-copy,
.status-card {
  position: relative;
  z-index: 1;
}

.eyebrows {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrows span,
.panel-head span,
.guide-grid span,
.module-grid em {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.eyebrows span + span {
  color: #cbd0dc;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -1px;
}

h1 {
  max-width: 660px;
  font-size: clamp(54px, 6.2vw, 88px);
  line-height: 0.96;
}

.hero-copy p {
  max-width: 650px;
  margin: 28px 0 0;
  color: #d5dbea;
  font-size: 20px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  font-weight: 900;
  border-radius: 15px;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
}

.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.status-card {
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(28, 22, 34, 0.94), rgba(17, 25, 31, 0.92));
  border: 1px solid rgba(205, 219, 232, 0.16);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.status-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-size: 16px;
}

.status-title span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.status-card p {
  margin: 5px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.status-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.status-card dl div {
  display: grid;
  min-height: 38px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 12px;
}

dt {
  color: var(--muted);
  font-size: 12px;
}

dd {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(520px, 1.55fr);
  gap: 20px;
  margin-top: 20px;
}

.panel {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(17, 20, 30, 0.86), rgba(13, 16, 24, 0.82));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 14% 10%, rgba(220, 47, 137, 0.1), transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(142, 231, 223, 0.08), transparent 24%);
}

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

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.panel-head span {
  min-height: auto;
  padding: 0;
  color: #a7afc3;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.panel-head a {
  color: #a9b0c2;
  font-size: 14px;
}

h2 {
  margin-bottom: 22px;
  font-size: 34px;
}

.news-row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
}

.news-row + .news-row {
  margin-top: 12px;
}

.news-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #d9dfef;
  font-size: 28px;
  background:
    linear-gradient(135deg, rgba(220, 47, 137, 0.14), transparent),
    #111927;
  border-radius: 16px;
}

.news-row b,
.guide-grid b,
.access-grid b,
.module-grid b,
.crew-list b {
  display: block;
  color: #fff;
}

.news-row small,
.guide-grid small,
.access-grid small,
.module-grid small,
.crew-list small,
.note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.news-row em {
  color: #a9b1c2;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.guide-grid a {
  min-height: 214px;
  padding: 18px 16px;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.18), transparent 23%),
    linear-gradient(135deg, rgba(92, 111, 139, 0.28), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.guide-grid a:nth-child(2) {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.18), transparent 23%),
    linear-gradient(135deg, rgba(115, 63, 118, 0.42), rgba(255, 255, 255, 0.03));
}

.guide-grid a:nth-child(3) {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.18), transparent 23%),
    linear-gradient(135deg, rgba(47, 102, 127, 0.42), rgba(255, 255, 255, 0.03));
}

.guide-grid a:nth-child(4) {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.18), transparent 23%),
    linear-gradient(135deg, rgba(121, 55, 96, 0.42), rgba(255, 255, 255, 0.03));
}

.guide-grid span {
  margin-bottom: 78px;
  color: #d3d8e6;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.quick-access,
.database,
.crew-table {
  margin-top: 20px;
}

.access-grid,
.module-grid,
.crew-list {
  display: grid;
  gap: 12px;
}

.access-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.access-grid a,
.module-grid a,
.crew-list a {
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
}

.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module-grid em {
  margin-bottom: 16px;
  color: var(--aqua);
  letter-spacing: 1px;
  background: rgba(142, 231, 223, 0.08);
}

.note {
  max-width: 760px;
  margin: -8px 0 20px;
}

.crew-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.crew-list a {
  min-height: 78px;
}

.crew-list small {
  color: #c7a2c2;
  font-size: 13px;
}

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

.roster-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crew-entry {
  display: grid;
  min-height: 142px;
  grid-template-columns: 54px 1fr;
  gap: 8px 14px;
  align-content: start;
  padding: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(220, 47, 137, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.crew-entry:hover {
  border-color: rgba(255, 74, 166, 0.45);
  background:
    radial-gradient(circle at 88% 12%, rgba(220, 47, 137, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  transform: translateY(-2px);
}

.avatar-token {
  position: relative;
  overflow: hidden;
  display: grid;
  width: 54px;
  height: 54px;
  grid-row: span 4;
  place-items: center;
  color: #0b1018;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--aqua), var(--gold));
  border-radius: 17px;
}

.avatar-token img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.avatar-token i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-style: normal;
  background: rgba(232, 244, 196, 0.48);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.crew-entry b,
.crew-entry strong {
  color: #fff;
}

.crew-entry small {
  color: #c7a2c2;
  font-size: 13px;
}

.crew-entry em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.crew-entry strong {
  font-size: 13px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: end;
  padding: clamp(32px, 5vw, 62px);
  background:
    linear-gradient(90deg, rgba(11, 13, 22, 0.96), rgba(13, 18, 29, 0.72)),
    radial-gradient(circle at 78% 20%, rgba(220, 47, 137, 0.22), transparent 28%),
    radial-gradient(circle at 40% 100%, rgba(142, 231, 223, 0.16), transparent 30%);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.detail-hero h1 {
  max-width: 760px;
}

.detail-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d5dbea;
  font-size: 19px;
  line-height: 1.55;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px;
  margin-top: 20px;
}

.file-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.file-list div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}

.file-list dt {
  margin-bottom: 7px;
}

.file-list dd {
  overflow-wrap: anywhere;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

th {
  color: var(--aqua);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

td {
  color: #f3f6ff;
  font-size: 14px;
}

tr:last-child td {
  border-bottom: 0;
}

.prose {
  max-width: 900px;
}

.prose p {
  margin: 0;
  color: #d5dbea;
  font-size: 16px;
  line-height: 1.75;
}

.prose p + p {
  margin-top: 12px;
}

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

.skill-list article {
  padding: 18px;
  background:
    radial-gradient(circle at 85% 12%, rgba(142, 231, 223, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.skill-list span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(142, 231, 223, 0.08);
  border-radius: 999px;
}

.skill-list b {
  display: block;
  color: #fff;
  font-size: 18px;
}

.skill-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-grid span {
  padding: 9px 12px;
  color: #d8eef0;
  background: rgba(142, 231, 223, 0.08);
  border: 1px solid rgba(142, 231, 223, 0.16);
  border-radius: 999px;
}

.guide-hero {
  min-height: 380px;
  padding: clamp(32px, 6vw, 70px);
  background:
    linear-gradient(110deg, rgba(9, 13, 24, 0.94), rgba(12, 29, 43, 0.62)),
    url("./assets/hero-generated.png") center / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.guide-hero h1 {
  max-width: 760px;
  margin-top: 28px;
}

.guide-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #dbe5f5;
  font-size: 20px;
  line-height: 1.55;
}

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

.guide-list article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.guide-list b {
  display: block;
  color: #fff;
}

.seo-hero {
  min-height: 320px;
}

.seo-intro {
  max-width: 860px;
  margin-top: 22px;
}

.seo-intro p,
.seo-section p,
.seo-section li {
  color: #d8deec;
  font-size: 16px;
  line-height: 1.72;
}

.seo-intro p {
  margin: 0;
}

.seo-intro p + p,
.seo-section p + p {
  margin-top: 12px;
}

.seo-section {
  margin-top: 20px;
}

.seo-section h2 {
  max-width: 900px;
}

.seo-section h3 {
  margin: 18px 0 8px;
  color: #fff;
  font-size: 19px;
}

.seo-section ul,
.seo-section ol {
  display: grid;
  gap: 8px;
  max-width: 900px;
  margin: 10px 0 16px;
  padding-left: 22px;
}

.seo-section li::marker {
  color: var(--aqua);
}

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

.faq-list article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.faq-list h3 {
  margin-top: 0;
}

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

.fleet-card {
  padding: 20px;
  background:
    radial-gradient(circle at 88% 10%, rgba(220, 47, 137, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.fleet-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(142, 231, 223, 0.08);
  border-radius: 999px;
}

.fleet-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.fleet-card .fleet-subtitle {
  color: var(--gold);
  font-weight: 800;
}

.fleet-members {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.fleet-members b {
  padding: 7px 10px;
  color: #fff;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.site-footer {
  margin-top: 28px;
  padding: 22px 24px;
  color: #9fa8ba;
  background: rgba(5, 8, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
}

.site-footer p {
  max-width: 1040px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.site-footer p + p {
  margin-top: 8px;
}

.seo-section a {
  color: var(--aqua);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.guide-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.media-gallery figure {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.media-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 20%, rgba(142, 231, 223, 0.12), transparent 32%),
    #0b1018;
}

.media-gallery figcaption {
  padding: 10px 12px 12px;
  color: #d8deec;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1220px) {
  .sidebar {
    width: 248px;
  }

  .shell {
    margin-left: 248px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    min-height: 620px;
  }

  .hero-redesign {
    grid-template-columns: 1fr;
  }

  .hero-dashboard,
  .hero-visual {
    min-height: auto;
  }

  .hero-visual {
    aspect-ratio: 16 / 10;
  }

  .status-card {
    max-width: 460px;
  }

  .content-grid,
  .access-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crew-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .roster-grid,
  .roster-grid.compact,
  .detail-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .skill-list {
    grid-template-columns: 1fr;
  }

  .media-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  body {
    zoom: 1;
  }

  .sidebar {
    position: static;
    width: auto;
    max-height: none;
    padding: 18px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .side-nav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 8px;
    margin-top: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .side-nav::-webkit-scrollbar {
    display: none;
  }

  .side-nav p {
    display: none;
  }

  .side-nav a {
    min-height: 38px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.045);
    white-space: nowrap;
  }

  .shell {
    margin-left: 0;
    padding: 14px 14px 44px;
  }

  .topbar {
    grid-template-columns: 1fr;
    margin: -14px -14px 16px;
    padding: 14px;
  }

  .top-links {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .top-links::-webkit-scrollbar {
    display: none;
  }

  .top-links a {
    flex: 0 0 auto;
    min-width: 0;
    padding: 0 16px;
    white-space: nowrap;
  }

  .hero-card {
    min-height: auto;
    padding: 34px 20px;
    border-radius: 24px;
  }

  .hero-redesign {
    padding: 12px;
    border-radius: 24px;
  }

  .hero-dashboard {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .hero-dashboard h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .hero-dashboard p {
    font-size: 17px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(44px, 12vw, 68px);
  }

  .hero-copy p {
    font-size: 17px;
  }

  .news-row {
    grid-template-columns: 54px 1fr;
  }

  .news-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .news-row em {
    grid-column: 2;
  }

  .crew-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roster-grid,
  .roster-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .file-list {
    grid-template-columns: 1fr;
  }

  .media-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .brand strong {
    font-size: 20px;
  }

  .brand small {
    letter-spacing: 2px;
  }

  .top-links a {
    flex: 1;
    justify-content: center;
  }

  .search {
    grid-template-columns: 30px 1fr;
  }

  kbd {
    display: none;
  }

  .eyebrows span {
    letter-spacing: 2px;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .status-card dl div {
    grid-template-columns: 1fr;
    padding: 11px 13px;
  }

  .guide-grid,
  .crew-list,
  .roster-grid,
  .roster-grid.compact {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 30px;
  }
}
