:root {
  --bg: #07080d;
  --bg-soft: #0d1017;
  --panel: rgba(17, 20, 29, 0.9);
  --panel-strong: #121621;
  --panel-soft: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 148, 71, 0.22);
  --text: #f5f7fb;
  --muted: #8e95ab;
  --accent: #ff9a54;
  --accent-strong: #ff7f33;
  --accent-soft: #ffc299;
  --button-text: #101217;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 127, 51, 0.16), transparent 24%),
    radial-gradient(circle at 8% 62%, rgba(255, 127, 51, 0.1), transparent 24%),
    linear-gradient(180deg, #06070b 0%, #07080d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.28;
}

.background-orb,
.noise-layer {
  position: fixed;
  pointer-events: none;
}

.background-orb {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.12;
}

.background-orb-left {
  left: -220px;
  top: 280px;
  background: #b2511e;
}

.background-orb-right {
  right: -180px;
  top: 0;
  background: #cf6428;
}

.noise-layer {
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7) 0 0.6px, transparent 0.7px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.5) 0 0.6px, transparent 0.7px);
  background-size: 24px 24px, 30px 30px;
}

.page-shell {
  position: relative;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
}

.panel-window,
.hero-stats article,
.info-card,
.support-card,
.script-window,
.leader-card,
.faq-item,
.site-footer {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(255, 154, 84, 0.12));
}

.brand-text,
.brand-text span {
  display: grid;
}

.brand-text {
  gap: 2px;
}

.brand-text strong,
.nav-cta,
.button-primary,
.button-secondary,
.copy-button,
.hero h1,
.section-heading h2,
.script-intro h2,
.faq-item strong {
  font-family: "Sora", "Segoe UI", sans-serif;
}

.brand-text strong {
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.nav-links a,
.hero-text,
.hero-stats span,
.panel-tag,
.info-card p,
.support-card p,
.script-intro p,
.faq-item p,
.leader-card p,
.site-footer p,
.section-kicker,
.support-strip-title {
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
  font-weight: 700;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.nav-cta,
.button-primary,
.button-secondary,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 15px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  color: var(--button-text);
  background: #f4f5f8;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 18px 30px rgba(255, 127, 51, 0.16);
}

.button-secondary,
.copy-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.button-primary:hover,
.button-secondary:hover,
.copy-button:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  gap: 62px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 70px 0 40px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-pill strong {
  font-size: 0.86rem;
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3bd97a;
  box-shadow: 0 0 14px rgba(59, 217, 122, 0.6);
}

.hero h1,
.section-heading h2,
.script-intro h2,
.info-card strong,
.leader-card strong,
.faq-item strong,
.panel-metric strong {
  margin: 0;
}

.hero h1 {
  max-width: 480px;
  margin-top: 24px;
  font-size: clamp(2.8rem, 4.8vw, 4.35rem);
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 470px;
  margin-top: 18px;
  font-size: 0.94rem;
  line-height: 1.66;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 430px);
  margin-top: 34px;
  overflow: hidden;
  border-radius: 16px;
}

.hero-stats article {
  padding: 16px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
}

.panel-window {
  max-width: 510px;
  margin-left: auto;
  padding: 21px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 154, 84, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(18, 21, 31, 0.96), rgba(14, 17, 25, 0.94));
}

.panel-top,
.panel-summary,
.script-window-top,
.script-meta,
.window-lights,
.faq-list {
  display: flex;
  align-items: center;
}

.panel-top {
  justify-content: space-between;
}

.window-lights {
  gap: 7px;
}

.window-lights span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.panel-tag,
.summary-live,
.run-badge {
  display: inline-flex;
  align-items: center;
  min-height: 33px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.77rem;
  font-weight: 800;
}

.panel-tag {
  color: rgba(242, 244, 252, 0.72);
  background: rgba(255, 255, 255, 0.025);
}

.panel-summary {
  justify-content: space-between;
  margin-top: 24px;
}

.summary-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.summary-copy strong,
.panel-count,
.metric-brand strong {
  font-family: "Sora", "Segoe UI", sans-serif;
}

.summary-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(10, 11, 18, 0.9);
}

.summary-mark img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.summary-mark-money {
  border-color: rgba(78, 214, 120, 0.28);
  background:
    radial-gradient(circle at 30% 30%, rgba(169, 255, 189, 0.42), transparent 42%),
    linear-gradient(180deg, rgba(58, 150, 87, 0.3), rgba(11, 34, 19, 0.92)),
    rgba(10, 18, 12, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(31, 125, 64, 0.2);
}

.summary-mark-money span {
  color: #8cffab;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 0 18px rgba(140, 255, 171, 0.24);
}

.summary-copy span {
  display: block;
  margin-bottom: 4px;
  color: rgba(160, 168, 190, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.summary-copy strong {
  display: block;
  font-size: 1.03rem;
  color: #f1f3f9;
  font-weight: 700;
}

.summary-live,
.run-badge {
  gap: 8px;
  color: #66e095;
  border-color: rgba(69, 201, 113, 0.25);
  background: rgba(29, 96, 55, 0.16);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px rgba(102, 224, 149, 0.45);
}

.panel-count {
  margin-top: 20px;
  font-size: clamp(2.8rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.panel-rate {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(201, 208, 226, 0.8);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.88rem;
  font-weight: 700;
}

.panel-rate-arrow {
  color: #66e095;
  font-size: 0.96rem;
  font-weight: 900;
}

.panel-metrics-row,
.why-grid,
.leaderboard-grid {
  display: grid;
  gap: 12px;
}

.panel-metrics-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.panel-metric,
.info-card,
.leader-card,
.faq-item {
  min-height: 126px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.panel-metric {
  position: relative;
  overflow: hidden;
}

.panel-metric::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 154, 77, 0.12), transparent 70%);
  pointer-events: none;
}

.metric-label {
  display: inline-block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-metric strong {
  display: block;
  margin-top: 12px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.panel-metric p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.panel-metric-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.metric-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.metric-brand img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.metric-brand strong {
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-top: 0;
}

.panel-metric-featured {
  grid-column: span 2;
  min-height: 140px;
  background:
    linear-gradient(135deg, rgba(255, 151, 71, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 153, 76, 0.18);
}

.panel-metric-featured strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.panel-metric-accent {
  background: linear-gradient(180deg, rgba(255, 167, 97, 0.1), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 167, 97, 0.16);
}

.support-strip {
  margin-top: 22px;
  width: min(100%, 940px);
  margin-left: auto;
  margin-right: auto;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 154, 84, 0.1), transparent 26%),
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.035), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(8, 11, 17, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.support-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.support-strip-copy {
  max-width: 460px;
  padding: 0 1px;
  text-align: left;
}

.support-strip-title {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 237, 247, 0.72);
}

.support-strip-note {
  margin: 6px 0 0;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(226, 231, 242, 0.72);
}

.support-strip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(241, 244, 250, 0.9);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 168px));
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.support-card {
  --support-accent: rgba(255, 255, 255, 0.1);
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 10px 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background:
    radial-gradient(circle at top right, var(--support-accent), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(10, 13, 19, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 24px rgba(0, 0, 0, 0.15);
  transition:
    transform 220ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.support-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 20px 34px rgba(0, 0, 0, 0.2);
}

.support-card:focus-visible {
  outline: none;
  border-color: rgba(255, 154, 84, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 0 0 2px rgba(255, 154, 84, 0.16),
    0 20px 34px rgba(0, 0, 0, 0.2);
}

.support-card-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(6, 9, 15, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -14px 24px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.support-card-image {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.03) contrast(1.03);
}

.support-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -20px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--support-accent), transparent 72%);
  opacity: 0.34;
  pointer-events: none;
  z-index: 1;
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  pointer-events: none;
  z-index: 2;
}

.support-card-meta {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 0;
}

.support-card-meta strong {
  display: block;
  margin-top: 0;
  font-size: 0.87rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: rgba(247, 249, 252, 0.96);
}

.support-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(205, 211, 225, 0.7);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-card-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff9a54;
  box-shadow: 0 0 14px rgba(255, 154, 84, 0.5);
}

.support-card-delta {
  --support-accent: rgba(255, 255, 255, 0.12);
}

.support-card-potassium {
  --support-accent: rgba(255, 255, 255, 0.13);
}

.support-card-volt {
  --support-accent: rgba(126, 79, 255, 0.24);
}

.support-card-madium {
  --support-accent: rgba(141, 205, 255, 0.16);
}

.support-card-codex {
  --support-accent: rgba(255, 88, 88, 0.22);
}

.info-section,
.script-section,
.faq-section {
  padding-top: 110px;
}

.section-heading,
.script-intro {
  text-align: center;
}

.section-kicker {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-heading h2,
.script-intro h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.section-heading + *,
.script-intro p,
.faq-item p {
  margin-top: 18px;
}

.script-intro p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.72;
}

.why-grid,
.leaderboard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.info-card strong,
.leader-card strong,
.faq-item strong {
  display: block;
  font-size: 1.12rem;
}

.info-card p,
.leader-card p,
.faq-item p {
  line-height: 1.72;
}

.script-window {
  width: min(100%, 820px);
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 22px;
}

.script-window-top {
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.script-meta {
  gap: 14px;
  min-width: 0;
}

.file-label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.script-code-wrap {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
}

.script-line-numbers {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px 0 30px 20px;
  color: rgba(142, 149, 171, 0.45);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.8;
  user-select: none;
}

.script-code {
  margin: 0;
  padding: 24px 24px 30px 0;
  overflow-x: auto;
}

code {
  color: #ffc79f;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.8;
  white-space: pre;
}

.copy-button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  cursor: pointer;
}

.copy-button.is-copied {
  color: var(--button-text);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  border-color: rgba(255, 194, 153, 0.26);
}

.leader-card {
  display: grid;
  gap: 18px;
  min-height: 0;
  padding: 18px;
}

.leader-card-top {
  display: grid;
  gap: 14px;
}

.leader-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 46px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.leader-profile {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.leader-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 241, 0.96);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, rgba(255, 160, 88, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.leader-avatar-first {
  background: linear-gradient(135deg, rgba(255, 175, 92, 0.34), rgba(255, 122, 57, 0.16));
}

.leader-avatar-second {
  background: linear-gradient(135deg, rgba(159, 171, 199, 0.3), rgba(104, 120, 160, 0.12));
}

.leader-avatar-third {
  background: linear-gradient(135deg, rgba(203, 145, 113, 0.3), rgba(129, 82, 63, 0.12));
}

.leader-meta {
  min-width: 0;
}

.leader-meta strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.12;
}

.leader-handle {
  margin: 6px 0 0;
  color: rgba(214, 220, 233, 0.68);
  font-size: 0.88rem;
  line-height: 1.35;
}

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

.leader-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.leader-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leader-badge-online {
  border-color: rgba(133, 230, 168, 0.16);
  background: rgba(32, 102, 54, 0.24);
  color: rgba(179, 245, 198, 0.94);
}

.leader-badge-offline {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.038);
  color: rgba(214, 220, 233, 0.72);
}

.leader-badge-farming {
  border-color: rgba(255, 179, 92, 0.18);
  background: rgba(255, 142, 70, 0.14);
  color: rgba(255, 215, 162, 0.94);
}

.leader-badge-idle {
  border-color: rgba(120, 139, 179, 0.18);
  background: rgba(87, 102, 138, 0.16);
  color: rgba(198, 210, 236, 0.78);
}

.leader-stat {
  padding: 12px 13px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.028);
}

.leader-stat small {
  display: block;
  margin-bottom: 8px;
  color: rgba(208, 214, 228, 0.64);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.leader-stat strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1;
}

.leader-inventory {
  margin: 0;
  color: rgba(220, 226, 237, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

.leader-footer {
  min-height: 18px;
}

.leader-last-seen {
  color: rgba(208, 214, 228, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.leader-card-first {
  background:
    radial-gradient(circle at top right, rgba(255, 176, 102, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 176, 102, 0.16);
}

.leader-card-second {
  background:
    radial-gradient(circle at top right, rgba(161, 171, 198, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.leader-card-third {
  background:
    radial-gradient(circle at top right, rgba(191, 137, 103, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.leader-card-empty {
  grid-column: 1 / -1;
  min-height: 0;
}

.leader-empty-copy {
  margin: 0;
}

.faq-list {
  width: min(100%, 860px);
  margin: 34px auto 0;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 110px;
  padding: 22px 24px;
  border-radius: 20px;
}

.site-footer strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.96rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .hero,
  .why-grid,
  .leaderboard-grid {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: repeat(3, minmax(0, 168px));
    justify-content: center;
  }

  .hero {
    gap: 36px;
    min-height: 0;
  }

  .panel-window {
    max-width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100% - 24px, 1160px);
  }

  .topbar {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-stats,
  .panel-metrics-row,
  .why-grid,
  .leaderboard-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 168px));
    justify-content: center;
  }

  .hero-stats article,
  .panel-metric {
    border-right: 0;
  }

  .panel-metric-featured {
    grid-column: auto;
  }

  .hero-stats article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    display: grid;
  }

  .leader-profile {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .leader-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 18px, 1160px);
    padding-top: 18px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .section-heading h2,
  .script-intro h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .support-strip-title {
    font-size: 0.74rem;
  }

  .support-strip-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-strip-note {
    font-size: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .support-strip {
    width: 100%;
    padding: 14px 12px 12px;
    border-radius: 18px;
  }

  .support-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    min-height: 72px;
    padding: 10px;
  }

  .support-card-media {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .nav-cta,
  .button-primary,
  .button-secondary,
  .copy-button {
    width: 100%;
  }

  .script-window-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .script-meta {
    width: 100%;
    flex-wrap: wrap;
  }

  .script-code-wrap {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .script-line-numbers {
    padding-left: 14px;
  }

  .leader-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .support-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
