/* SharkBot landing page — static, Cloudflare-ready */

:root {
  --bg: #070b14;
  --bg2: #0b1220;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --muted2: rgba(255, 255, 255, 0.55);

  --brand: #38bdf8; /* cyan */
  --brand2: #a78bfa; /* violet */
  --ok: #22c55e;
  --warn: #f59e0b;
  --info: #60a5fa;
  --danger: #ef4444;

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius2: 22px;
  --container: 1120px;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 900px at 20% 0%, rgba(56, 189, 248, 0.09), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(167, 139, 250, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 22px;
  margin: 0 auto;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(800px 600px at 50% 15%, rgba(0, 0, 0, 0.9), transparent 70%);
  opacity: 0.25;
  transform: translateZ(0);
  animation: gridFloat 10s ease-in-out infinite;
}

.bg__glow {
  position: absolute;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
  transform: translateZ(0);
}

.bg__glow--a {
  left: -120px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.9), transparent 60%);
  animation: glowA 12s ease-in-out infinite;
}

.bg__glow--b {
  right: -160px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(167, 139, 250, 0.85), transparent 60%);
  animation: glowB 14s ease-in-out infinite;
}

.bg__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.25;
  mix-blend-mode: overlay;
  pointer-events: none;
}

@keyframes gridFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@keyframes glowA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, 18px) scale(1.08);
  }
}

@keyframes glowB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-28px, 22px) scale(1.06);
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 20, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.08), 0 0 40px rgba(56, 189, 248, 0.25);
  animation: markPulse 2.4s ease-in-out infinite;
}

.brand--small .brand__mark {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.08), 0 0 28px rgba(56, 189, 248, 0.22);
}

@keyframes markPulse {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    transform: scale(1.08);
    filter: saturate(1.2);
  }
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav__link {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 180ms ease, color 180ms ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.header__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: transform 120ms ease, background 180ms ease, border-color 180ms ease;
  user-select: none;
}

.btn--lg {
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 15px;
}

.btn--primary {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(167, 139, 250, 0.18));
  box-shadow: 0 18px 60px rgba(56, 189, 248, 0.10);
}

.btn--ghost {
  background: transparent;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn--primary:hover {
  border-color: rgba(56, 189, 248, 0.55);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.28), rgba(167, 139, 250, 0.22));
}

.btn__arrow {
  opacity: 0.9;
}

/* Hero */
.hero {
  padding: 58px 0 18px;
}

.hero--simple .hero__visual {
  min-height: 360px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: radial-gradient(circle at 30% 30%, var(--ok), rgba(34, 197, 94, 0.35));
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.10);
}

.hero__title {
  margin: 14px 0 0;
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: -1.2px;
}

.hero__titleAccent {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin: 22px 0 0;
  flex-wrap: wrap;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0 0;
}

.metaCard {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 12px 12px;
}

.metaCard__label {
  color: var(--muted2);
  font-weight: 600;
  font-size: 12px;
}

.metaCard__value {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.metaCard__hint {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 700;
}

.pill--ok {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.10);
}
.pill--warn {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.10);
}
.pill--info {
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(96, 165, 250, 0.10);
}

/* Hero visual */
.hero__visual {
  position: relative;
  min-height: 420px;
}

.orb {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 320px;
  height: 320px;
  transform: translateZ(0);
}

.orb__ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.12), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(167, 139, 250, 0.10), transparent 60%);
}

.orb__ring--outer {
  transform: scale(1.05);
  animation: spin 14s linear infinite;
}
.orb__ring--mid {
  transform: scale(0.86);
  animation: spin 10s linear infinite reverse;
}
.orb__ring--inner {
  transform: scale(0.66);
  animation: spin 8s linear infinite;
}

.orb__core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(56, 189, 248, 0.95), rgba(56, 189, 248, 0.18) 55%, transparent 70%),
    radial-gradient(circle at 70% 70%, rgba(167, 139, 250, 0.80), transparent 60%);
  filter: blur(0px);
  box-shadow: 0 30px 120px rgba(56, 189, 248, 0.18);
  animation: bob 3.6s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg) scale(var(--s, 1));
  }
}

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

.panel {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: min(420px, 92%);
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 17, 31, 0.68);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
}

.panel__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.panel__dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
  margin-right: 6px;
}

.panel__title {
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.panel__body {
  padding: 14px 14px 16px;
}

.line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 8px 0;
  font-size: 13px;
}

.line__k {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 700;
}
.line__v {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 10px 0 12px;
}

.log {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
  font-size: 13px;
}

.log__dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.10);
}

.log__dot--alt {
  background: rgba(167, 139, 250, 0.9);
  box-shadow: 0 0 0 6px rgba(167, 139, 250, 0.10);
}

/* Sections */
.section {
  padding: 64px 0;
}

.section--tight {
  padding: 28px 0 56px;
}

.miniGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.miniCard {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 12px 12px;
}

.miniCard__k {
  color: var(--muted2);
  font-weight: 700;
  font-size: 12px;
}

.miniCard__v {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 13px;
}

/* Dashboard */
.dash {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.dashCard {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 17, 31, 0.62);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}

.dashCard__top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.dashTitle {
  font-weight: 900;
  letter-spacing: -0.3px;
  font-size: 18px;
}

.dashSub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
}

.dashRow {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.dashRow__k {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.dashRow__v {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 13px;
  text-align: right;
}

.dashHint {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.6;
}

.btn--sm {
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 13px;
}

.tableWrap {
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.18);
}

.adminTable {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.adminTable th,
.adminTable td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  font-size: 13px;
}

.adminTable th {
  color: rgba(255, 255, 255, 0.70);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.adminTable td {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.adminTable .actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
  font-size: 12px;
}

.tag--ok {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.10);
}

.tag--bad {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.10);
}

.tabs {
  padding: 6px 0 0;
}

.tabs__inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 10px 0 8px;
}

.tabs__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 13px;
  transition: background 180ms ease, border-color 180ms ease, transform 120ms ease, color 180ms ease;
}

.tabs__tab:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.92);
}

.tabs__tab.is-active {
  border-color: rgba(56, 189, 248, 0.45);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(167, 139, 250, 0.12));
  color: rgba(255, 255, 255, 0.94);
}

.tabPanels {
  padding-top: 8px;
}

.tabPanel {
  display: none;
}

.tabPanel.is-active {
  display: block;
}

.section--alt {
  background: radial-gradient(900px 600px at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sectionHead__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.6px;
}

.sectionHead__subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

.cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.card__title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.card__text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.card__list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.steps {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.step__num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.20), rgba(167, 139, 250, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.step__title {
  margin: 0;
  font-size: 15px;
}
.step__text {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(167, 139, 250, 0.06));
}

.cta__title {
  margin: 0;
  font-size: 18px;
}
.cta__text {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.faq {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.faq__item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.faq__q {
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.faq__a {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

/* Embed previews */
.embedGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.embedPreview {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
}

.embedPreview__bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: rgba(255, 255, 255, 0.18);
}

.embedPreview__bar--legendary {
  background: rgba(155, 89, 182, 0.95);
}

.embedPreview__bar--epic {
  background: rgba(255, 215, 0, 0.95);
}

.embedPreview__title {
  font-weight: 800;
  letter-spacing: -0.2px;
  font-size: 15px;
  padding-left: 10px;
}

.embedPreview__body {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  padding-left: 10px;
}

.embedPreview__field {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 10px;
}

.embedPreview__fieldName {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.embedPreview__fieldValue {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.6;
}

.embedPreview__mono {
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.88);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.embedPreview__link {
  color: rgba(96, 165, 250, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: default;
}

.embedPreview__footer {
  margin-top: 12px;
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 700;
  font-size: 12px;
}

.embedPreview__buttons {
  margin-top: 12px;
  padding-left: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(56, 189, 248, 0.10);
  color: rgba(255, 255, 255, 0.90);
  font-weight: 800;
  font-size: 12px;
}

/* Commands */
.commandGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.commandCard {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.commandCard__name {
  font-weight: 800;
  font-size: 14px;
}

.commandCard__usage {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 700;
  font-size: 13px;
}

.commandCard__desc {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Rate limits */
.rateLimitGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.rateLimitCard {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.rateLimitCard__title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.rateLimitCard__text {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.rateLimitCard__list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

/* Media */
.mediaGrid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: start;
}

.mediaCard {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.mediaCard__title {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.mediaEmbed {
  margin-top: 12px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.25);
}

.mediaEmbed--tall {
  aspect-ratio: 9 / 16;
}

.mediaEmbed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.socials {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Footer */
.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer__note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 600;
  font-size: 13px;
}

.footer__right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer__link {
  color: rgba(255, 255, 255, 0.70);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 180ms ease, color 180ms ease;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 380px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .hero__meta {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .embedGrid {
    grid-template-columns: 1fr;
  }
  .commandGrid {
    grid-template-columns: 1fr;
  }
  .rateLimitGrid {
    grid-template-columns: 1fr;
  }
  .mediaGrid {
    grid-template-columns: 1fr;
  }
  .miniGrid {
    grid-template-columns: 1fr;
  }
  .dash {
    grid-template-columns: 1fr;
  }
}

