:root {
  color-scheme: dark;
  --bg0: #070810;
  --bg1: #0b0d18;
  --panel: rgba(16, 18, 28, 0.78);
  --panel2: rgba(12, 14, 22, 0.72);
  --border: rgba(255, 255, 255, 0.14);
  --border2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.52);
  --teal: #a8b0ff;
  --teal2: #ffffff;
  --teal3: #cfd6ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow2: 0 10px 30px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius2: 12px;
  --mono:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono',
    'Courier New', monospace;
  --sans:
    ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    'Apple Color Emoji', 'Segoe UI Emoji';
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08);
    transform: scale(1.12);
    opacity: 0.9;
  }
}
@keyframes terminalGlow {
  0%,
  100% {
    box-shadow:
      var(--shadow),
      0 0 0 1px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow:
      var(--shadow),
      0 0 60px rgba(207, 214, 255, 0.15);
  }
}
@keyframes ctaGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
  }
  50% {
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.2);
  }
}
@keyframes bgFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.55;
  }
  25% {
    transform: translate(8%, -6%) scale(1.08);
    opacity: 0.75;
  }
  50% {
    transform: translate(-4%, 5%) scale(0.96);
    opacity: 0.6;
  }
  75% {
    transform: translate(5%, 3%) scale(1.04);
    opacity: 0.7;
  }
}
@keyframes bgFloat2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  33% {
    transform: translate(-10%, 8%) scale(1.12);
    opacity: 0.7;
  }
  66% {
    transform: translate(6%, -5%) scale(0.95);
    opacity: 0.55;
  }
}
@keyframes bgFloat3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.45;
  }
  30% {
    transform: translate(6%, 8%) scale(1.06);
    opacity: 0.65;
  }
  60% {
    transform: translate(-8%, -4%) scale(0.94);
    opacity: 0.5;
  }
  85% {
    transform: translate(3%, 2%) scale(1.02);
    opacity: 0.58;
  }
}
@keyframes bgFloat4 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  40% {
    transform: translate(8%, -8%) scale(1.1);
    opacity: 0.72;
  }
  70% {
    transform: translate(-5%, 4%) scale(0.97);
    opacity: 0.55;
  }
}
@keyframes statGlow {
  0%,
  100% {
    box-shadow: var(--shadow2);
  }
  50% {
    box-shadow:
      var(--shadow2),
      0 0 20px rgba(255, 255, 255, 0.03);
  }
}
html {
  background: var(--bg0);
}
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg0);
  min-height: 100%;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  position: relative;
  z-index: 1;
}
body.page-home {
  background: transparent;
}
/* Animated background layers – homepage only */
.page-home .bg-layers {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-home .bg-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform, opacity;
}
.page-home .bg-layer-1 {
  width: 100vmax;
  height: 100vmax;
  top: -40%;
  left: -30%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(168, 176, 255, 0.35),
    rgba(120, 130, 220, 0.12) 35%,
    transparent 65%
  );
  animation: bgFloat1 18s ease-in-out infinite;
}
.page-home .bg-layer-2 {
  width: 85vmax;
  height: 85vmax;
  top: 10%;
  right: -30%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(207, 214, 255, 0.28),
    rgba(160, 170, 240, 0.1) 40%,
    transparent 65%
  );
  animation: bgFloat2 20s ease-in-out infinite;
}
.page-home .bg-layer-3 {
  width: 75vmax;
  height: 75vmax;
  bottom: -30%;
  left: -10%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.12),
    rgba(200, 210, 255, 0.08) 45%,
    transparent 65%
  );
  animation: bgFloat3 22s ease-in-out infinite;
}
.page-home .bg-layer-4 {
  width: 70vmax;
  height: 70vmax;
  bottom: 0;
  right: -10%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(180, 190, 255, 0.25),
    rgba(140, 150, 230, 0.08) 40%,
    transparent 62%
  );
  animation: bgFloat4 16s ease-in-out infinite;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    180deg,
    rgba(8, 9, 14, 0.86),
    rgba(8, 9, 14, 0.5)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.mark img {
  height: 16px;
  width: auto;
  display: block;
}

/* Rate limit modal (shared) */
.modalOverlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}
.modalOverlay[hidden] {
  display: none;
}
.modal {
  width: min(520px, 100%);
  border-radius: 16px;
  padding: 16px 16px 14px;
  background: rgba(20, 22, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}
.modalTitle {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 6px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.modalTitle .pill {
  margin: 0;
  transform: translateY(-1px);
}
.modalBody {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}
.modalActions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.modalForm .modalField {
  margin-top: 14px;
}
.modalForm .modalField:first-of-type {
  margin-top: 12px;
}
.modalForm .modalField label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}
.modalForm .modalField label .optional {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.modalForm .modalField input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
.modalForm .modalField input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.modalForm .modalField input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}
.modalForm .hint {
  margin-top: 10px;
  font-size: 13px;
  min-height: 1.4em;
}
.modalForm .modalActions {
  margin-top: 18px;
}

/* Login / auth page card */
.authCard {
  width: min(420px, 100%);
  margin: 24px auto 0;
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(20, 22, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
}
.authCard .authTitle {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 6px;
}
.authCard .authSubtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
  line-height: 1.45;
}
.authCard .authTabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.authCard .authTab {
  padding: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin-bottom: -1px;
}
.authCard .authTab:hover {
  color: rgba(255, 255, 255, 0.8);
}
.authCard .authTab.isActive {
  color: rgba(255, 255, 255, 0.95);
}
.authCard .authTab.isActive::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px 2px 0 0;
}
.authCard .authForm .modalField {
  margin-top: 16px;
}
.authCard .authForm .modalField:first-of-type {
  margin-top: 0;
}
.authCard .authForm .modalActions {
  margin-top: 22px;
  flex-wrap: wrap;
}
.authCard .authForm .hint {
  margin-top: 12px;
}
.authCard .authSwitch {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.authCard .authSwitch button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  padding: 0;
}
.authCard .authSwitch button:hover {
  color: rgba(255, 255, 255, 1);
}
.authCard .authApiBase {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.authCard .authApiBase summary {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  user-select: none;
}
.authCard .authApiBase .modalField {
  margin-top: 10px;
}

/* Console tables */
.tableWrap {
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 16, 0.55);
}
.dataTable {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.dataTable thead th {
  position: sticky;
  top: 0;
  background: rgba(10, 12, 16, 0.95);
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}
.dataTable tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}
.dataTable tbody tr:last-child td {
  border-bottom: none;
}
.clickRow {
  cursor: pointer;
}
.clickRow:hover {
  background: rgba(255, 255, 255, 0.03);
}
.tdTitle {
  font-weight: 650;
  color: rgba(255, 255, 255, 0.88);
}
.tdSub {
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.tableLogo {
  height: 18px;
  width: 18px;
  min-height: 18px;
  min-width: 18px;
  max-height: 18px;
  max-width: 18px;
  object-fit: contain;
  display: block;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
}
.tableChip {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}
.tableChip.ok {
  border-color: rgba(80, 255, 190, 0.22);
  background: rgba(46, 201, 144, 0.12);
  color: rgba(165, 255, 220, 0.9);
}
.tableChip.warn {
  border-color: rgba(255, 200, 120, 0.22);
  background: rgba(255, 170, 90, 0.12);
  color: rgba(255, 220, 170, 0.92);
}
.tableChip.error {
  border-color: rgba(255, 120, 120, 0.22);
  background: rgba(255, 120, 120, 0.12);
  color: rgba(255, 190, 190, 0.92);
}

/* Utilities */
.muted {
  color: rgba(255, 255, 255, 0.55);
}
.mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    Liberation Mono,
    Courier New,
    monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.skeleton {
  height: 12px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.12) 20%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.06) 100%
  );
  background-size: 220% 100%;
  animation: shimmer 1.1s linear infinite;
}
.skeleton.small {
  height: 10px;
  width: 46%;
}
.skeleton.logo {
  height: 18px;
  width: 18px;
  border-radius: 6px;
}
@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 0;
  }
}

@keyframes chipPop {
  0% {
    transform: scale(0.92);
    opacity: 0.2;
  }
  60% {
    transform: scale(1.04);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.tableChip.pop {
  animation: chipPop 220ms ease-out;
}

/* Scroll-reveal (landing page) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}
.reveal-delay-4 {
  transition-delay: 0.32s;
}
.reveal-delay-5 {
  transition-delay: 0.4s;
}

/* Explorer input focus glow */
.field:focus-within {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Logo preview fade-in when image loads */
.logoPreview img.reveal-logo {
  animation: logoReveal 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Console panel enter */
.consolePanel {
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.consolePanel.panel-enter {
  animation: panelEnter 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes panelEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Console nav tab transition */
.consoleTab {
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}
.consoleTab[data-active='true']::before {
  transition: opacity 0.2s ease;
}

/* Card / JSON subtle enter (when content updates in explorer) */
.card.reveal-card .cardbody,
.card.reveal-card .json {
  animation: cardReveal 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes cardReveal {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

/* Timeline event stagger */
.event {
  animation: eventReveal 0.4s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
@keyframes eventReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tllist .event:nth-child(1) {
  animation-delay: 0.02s;
}
.tllist .event:nth-child(2) {
  animation-delay: 0.06s;
}
.tllist .event:nth-child(3) {
  animation-delay: 0.1s;
}
.tllist .event:nth-child(4) {
  animation-delay: 0.14s;
}
.tllist .event:nth-child(5) {
  animation-delay: 0.18s;
}
.tllist .event:nth-child(6) {
  animation-delay: 0.22s;
}
.tllist .event:nth-child(7) {
  animation-delay: 0.26s;
}
.tllist .event:nth-child(8) {
  animation-delay: 0.3s;
}
.tllist .event:nth-child(9) {
  animation-delay: 0.34s;
}
.tllist .event:nth-child(10) {
  animation-delay: 0.38s;
}

.pager {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.pagerEllipsis {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    Liberation Mono,
    Courier New,
    monospace;
  color: rgba(255, 255, 255, 0.55);
  padding-inline: 2px;
}
.pagerBtn[data-active='true'] {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}
.navlinks a {
  padding: 6px 8px;
  border-radius: 10px;
}
.navlinks a:hover {
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: var(--text);
}
.navcta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 120ms ease,
    background 120ms ease,
    border-color 120ms ease;
  user-select: none;
}
.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}
.btn:focus-visible,
.miniBtn:focus-visible,
.chip:focus-visible,
.navlinks a:focus-visible,
.field input:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}
.btn.primary {
  border-color: rgba(255, 255, 255, 0.26);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05)
  );
}
.btn.primary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.06)
  );
}
.hero .btn.primary {
  animation: ctaGlow 2.5s ease-in-out infinite;
}
.hero .btn.primary:hover {
  animation: none;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
}
.btn.ghost {
  background: transparent;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 56px 0 64px;
}
.hero .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.hero-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal2);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
  animation: dotPulse 2s ease-in-out infinite;
}
h1 {
  margin: 14px 0 10px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.accent {
  background: linear-gradient(90deg, var(--teal2), var(--teal3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.trust {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  color: var(--faint);
  font-size: 12px;
}
.trust .mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.chiplogo {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.hero .terminal {
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(16, 18, 28, 0.9),
    rgba(10, 12, 18, 0.82)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: terminalGlow 3s ease-in-out infinite;
}
.terminal {
  border-radius: var(--radius);
  background: linear-gradient(
    180deg,
    rgba(16, 18, 28, 0.86),
    rgba(10, 12, 18, 0.78)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.term-top {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}
.dots {
  display: flex;
  gap: 7px;
}
.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.85;
}
.dots span:nth-child(1) {
  background: #ff5f57;
}
.dots span:nth-child(2) {
  background: #febc2e;
}
.dots span:nth-child(3) {
  background: #28c840;
}
.term-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-left: auto;
  font-family: var(--mono);
}
.term-body {
  padding: 14px 14px 16px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.55;
}
.code {
  background: rgba(10, 12, 18, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  overflow: auto;
}
.code pre {
  margin: 0;
  white-space: pre;
  font-size: 12.5px;
  line-height: 1.6;
}
.code-hero {
  padding: 14px 16px;
}
.code-hero pre + pre {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.code-hero .prompt {
  color: rgba(255, 255, 255, 0.5);
  user-select: none;
}
.code-hero .cmd {
  color: rgba(168, 176, 255, 0.95);
  font-weight: 600;
}
.k {
  color: rgba(168, 176, 255, 0.92);
}
.s {
  color: rgba(165, 255, 200, 0.9);
}
.n {
  color: rgba(254, 188, 46, 0.95);
}
.b {
  color: rgba(207, 214, 255, 0.95);
}
.p {
  color: rgba(255, 255, 255, 0.55);
}

.stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat {
  border-radius: var(--radius);
  background: rgba(12, 14, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow2);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.stat:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    var(--shadow2),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}
.page-home .hero .stat {
  animation: statGlow 5s ease-in-out infinite;
}
.page-home .hero .stat:nth-child(2) {
  animation-delay: 0.8s;
}
.page-home .hero .stat:nth-child(3) {
  animation-delay: 1.6s;
}
.stat .label {
  font-size: 11px;
  color: var(--faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat .value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
}
.stat .value strong {
  font-size: 26px;
  letter-spacing: -0.02em;
}
.stat .value span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

.section {
  padding: 120px 0;
}
.section:first-of-type {
  padding-top: 96px;
}
.section .pill {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section .pill .dot {
  flex-shrink: 0;
}
.section h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.section p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.center {
  text-align: center;
}
.section .center > h2 + p {
  margin-top: 14px;
}
.demoFomo {
  margin-top: 8px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 600;
}

.robotsNote {
  margin: 18px auto 0;
  max-width: 64ch;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.64);
  text-align: center;
}

.explorer .demo-results-only {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  pointer-events: none;
  transition:
    max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    margin-top 0.4s ease;
}
.explorer.has-results .demo-results-only {
  max-height: 1200px;
  opacity: 1;
  overflow: visible;
  pointer-events: auto;
}
.explorer.has-results .chipsLabel {
  margin-top: 20px;
}
.explorer.has-results .chips {
  margin-top: 8px;
}
.explorer.has-results .explorergrid {
  margin-top: 16px;
}
.explorer.has-results .timeline {
  margin-top: 14px;
}
.explorer {
  margin-top: 36px;
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(
    180deg,
    rgba(16, 18, 28, 0.62),
    rgba(10, 12, 18, 0.5)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}
.explorerbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 10px 12px;
}
.field svg {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}
.field input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-family: var(--mono);
}
.field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  grid-column: 1 / -1;
  min-height: 16px;
}
.chipsLabel {
  margin: 20px 0 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.chips {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-family: var(--mono);
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 120ms ease,
    border-color 120ms ease,
    transform 120ms ease;
}
.chip input[type='checkbox'] {
  margin: 0;
  accent-color: rgba(120, 255, 210, 0.9);
}
.chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}
.chip.is-selected,
.chip[aria-pressed='true'] {
  background: rgba(180, 170, 155, 0.22);
  border-color: rgba(180, 170, 155, 0.55);
  color: rgba(220, 212, 200, 0.98);
}
.chip.is-selected::after,
.chip[aria-pressed='true']::after {
  content: '✓';
  margin-left: 4px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(180, 170, 155, 0.95);
}

.webhookEventsGroupTitle {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
.webhookEventChips {
  margin-top: 0;
}

.cardbody .modalField label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}
.cardbody .modalField label .optional {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.cardbody .modalField input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
.cardbody .modalField input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.cardbody .modalField input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}

.explorergrid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}
.card {
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.cardhead {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.cardhead .right {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.cardhead .title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge {
  font-family: var(--mono);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}
.miniBtn {
  font-family: var(--mono);
  font-size: 12px;
  padding: 6px 10px;
  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);
  cursor: pointer;
  transition:
    transform 120ms ease,
    background 120ms ease,
    border-color 120ms ease;
}
.miniBtn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}
.miniBtn:active {
  transform: translateY(0);
}
.miniBtn[aria-pressed='true'] {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}
.cardbody {
  padding: 14px;
}

/* Allow full-width sections inside 2-col grids */
.spanAll {
  grid-column: 1 / -1;
}
.logoPreview {
  position: relative;
  display: grid;
  place-items: center;
  height: auto;
  aspect-ratio: var(--preview-aspect, 16 / 9);
  min-height: 160px;
  max-height: 280px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      480px 200px at 50% 0%,
      rgba(255, 255, 255, 0.09),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.03);
  margin-bottom: 14px;
}
.logoPreview[data-loading='true']::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.12) 20%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.06) 100%
  );
  background-size: 220% 100%;
  animation: shimmer 1.1s linear infinite;
  border-radius: 14px;
}
.logoPreview[data-loading='true'] img {
  opacity: 0;
}
.logoEmptyState {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}
.logoEmptyState[hidden],
.logoPreview:has(img:not([hidden])) .logoEmptyState {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}
.logoEmptyState strong {
  color: rgba(255, 255, 255, 0.88);
}
.logoPreview img {
  display: block;
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.35s ease;
}
.logoPreview img[hidden] {
  display: none !important;
}
.logoPreview:has(img:not([hidden])) {
  background: rgba(255, 255, 255, 0.02);
}
.kv {
  display: grid;
  gap: 10px;
}
.kvrow {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}
.kvitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.kvitem span {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.kvitem strong {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
}
.meter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bar > i {
  display: block;
  height: 100%;
  width: 50%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55),
    rgba(207, 214, 255, 0.95)
  );
}
.meter code {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
}
#scoreBreakdown {
  margin-top: 10px;
}
#scoreBreakdown .kvitem span {
  color: rgba(255, 255, 255, 0.62);
}
#scoreBreakdown .kvitem strong {
  color: rgba(255, 255, 255, 0.9);
}
.json {
  padding: 14px;
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.55;
  overflow: auto;
  max-height: 360px;
}
.json pre {
  margin: 0;
  white-space: pre;
}
.card[data-expanded='true'] .json {
  max-height: 560px;
}
.json .key {
  color: rgba(255, 255, 255, 0.92);
}
.json .string {
  color: rgba(255, 255, 255, 0.86);
}
.json .number {
  color: rgba(254, 188, 46, 0.92);
}
.json .boolean {
  color: rgba(207, 214, 255, 0.9);
}
.json .null {
  color: rgba(255, 255, 255, 0.56);
}
.json pre.jsonPlaceholder {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--sans);
}

.timeline {
  margin-top: 14px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.tlhead {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tlhead .title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tllist {
  padding: 14px 14px 4px;
}
.event {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.event:first-child {
  border-top: 0;
}
.event time {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.event .desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}
.event .desc b {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.feature {
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow2);
}
.feature h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.feature p {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}
.feature code {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.faqList {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.faqItem {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.015)
  );
  box-shadow: var(--shadow2);
  overflow: clip;
}
.faqItem summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.faqItem summary::-webkit-details-marker {
  display: none;
}
.faqItem summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.15s ease;
}
.faqItem[open] summary::after {
  content: '−';
}
.faqItem summary:hover {
  background: rgba(255, 255, 255, 0.04);
}
.faqItem summary:focus-visible {
  outline: 2px solid rgba(158, 175, 255, 0.85);
  outline-offset: -2px;
}
.faqItem p {
  margin: 0;
  padding: 0 16px 14px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  font-size: 13px;
}

.seoPage main {
  padding-top: 18px;
}
.seoHero {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.seoHero h1 {
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.seoHero .lede {
  max-width: 780px;
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}
.seoBody {
  max-width: 980px;
  margin: 28px auto 0;
  display: grid;
  gap: 18px;
}
.seoBlock {
  border-radius: 18px;
  border: 1px solid rgba(167, 184, 255, 0.16);
  background: linear-gradient(
    180deg,
    rgba(126, 147, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: 0 18px 50px rgba(4, 8, 32, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 22px;
}
.seoBlock h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.1vw, 40px);
  letter-spacing: -0.03em;
}
.seoBlock h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.seoBlock p,
.seoBlock li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}
.seoBlock ol,
.seoBlock ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}
.seoActions {
  max-width: 980px;
  margin: 18px auto 0;
}
.seoActions .btn {
  min-width: 180px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}

.pricing {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price {
  border-radius: 18px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow2);
}
.price header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.price h3 {
  margin: 0;
  font-size: 16px;
}
.price .amount {
  font-family: var(--mono);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}
.price ul {
  margin: 14px 0 0;
  padding: 0 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 13px;
}
.pricing-intro {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.price .actions {
  margin-top: 16px;
}
.price .actions .btn {
  width: 100%;
}
.price-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

/* Legal / privacy policy page */
.legal {
  max-width: 64ch;
  margin: 0 auto;
  padding-top: 20px;
}
.legal-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-header h1 {
  margin: 0 0 14px;
  font-size: 1.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}
.legal-meta {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}
.legal-meta a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-meta a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.legal-section {
  margin-bottom: 28px;
}
.legal-section h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.legal-section p {
  margin: 0 0 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}
.legal-section p:last-child {
  margin-bottom: 0;
}
.legal-section ul {
  margin: 8px 0 14px;
  padding-left: 1.4em;
}
.legal-section li {
  margin-bottom: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.legal-section a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover {
  color: rgba(255, 255, 255, 0.95);
}

footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.68);
}
.footergrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 14px;
}
.footcol h4 {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}
.footcol a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}
.footnote {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.92);
}
.skip:focus {
  left: 16px;
  z-index: 50;
}

/* Mini console layout (account.html) */
.consoleFullscreen {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  min-height: 100vh;
}
.consoleFullscreen .consoleLayout {
  min-height: 100vh;
  height: 100vh;
}
.consoleFullscreen .consoleMain {
  overflow: auto;
}

.consoleLayout {
  --console-accent: #18d49f;
  --console-accent2: rgba(24, 212, 159, 0.22);
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 720px;
}
.consoleNav {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.12));
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.consoleBrandRow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.consoleBrandName {
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.1;
}
.consoleBrandSub {
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(24, 212, 159, 0.9);
  font-family: var(--mono);
}
.consoleGroupTitle {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.consoleNavLinks {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}
.consoleTab {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  font-size: 13px;
  text-decoration: none;
  position: relative;
}
.consoleTab:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transform: translateY(-1px);
}
.consoleTab[data-active='true'] {
  color: rgba(255, 255, 255, 0.9);
  border-color: var(--console-accent2);
  background: rgba(24, 212, 159, 0.08);
}
.consoleTab[data-active='true']::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: var(--console-accent);
}
.consoleMain {
  min-width: 0;
}
.consolePanel[hidden] {
  display: none;
}
.consoleTopbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.16);
  position: sticky;
  top: 0;
  z-index: 5;
}
.consoleTopbarLeft {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.consoleEnv {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-family: var(--mono);
  color: rgba(255, 255, 255, 0.75);
}
.consoleEnvDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--console-accent);
  box-shadow: 0 0 0 4px rgba(24, 212, 159, 0.14);
}
.consoleEnv input {
  all: unset;
  min-width: 220px;
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.consoleEnvCaret {
  opacity: 0.72;
}
.consoleBreadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.consoleTopbarRight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.consoleToast {
  padding: 6px 18px 0;
}
.consoleHero {
  padding: 42px 18px 10px;
  text-align: center;
}
.consoleHero h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.consoleHero p {
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.64);
  max-width: 64ch;
  line-height: 1.6;
}
.consoleSearch {
  margin: 18px auto 0;
  width: min(740px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.consoleSearch .hint {
  grid-column: 1 / -1;
}
.consoleLayout .btn.primary {
  border-color: rgba(24, 212, 159, 0.38);
  background: linear-gradient(
    180deg,
    rgba(24, 212, 159, 0.26),
    rgba(24, 212, 159, 0.12)
  );
}
.consoleLayout .btn.primary:hover {
  border-color: rgba(24, 212, 159, 0.52);
  background: linear-gradient(
    180deg,
    rgba(24, 212, 159, 0.32),
    rgba(24, 212, 159, 0.14)
  );
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .explorergrid {
    grid-template-columns: 1fr;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .footergrid {
    grid-template-columns: 1fr 1fr;
  }
  .navlinks {
    display: none;
  }
  .consoleLayout {
    grid-template-columns: 1fr;
  }
  .consoleNav {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    gap: 10px;
  }
  .consoleNavLinks {
    grid-template-columns: 1fr 1fr;
  }
  .consoleTopbar {
    position: static;
  }
  .consoleEnv input {
    min-width: 160px;
  }
  .consoleBreadcrumb {
    display: none;
  }
}

input {
  outline: none !important;
}

#domainInput {
  outline: none;
}

#discoverInput {
  outline: none;
}
