:root {
  color-scheme: light;
  --ink: #111315;
  --muted: #69707a;
  --line: #e5e7eb;
  --panel: #ffffff;
  --soft: #f6f7f8;
  --cream: #fff8ec;
  --mint: #0fb981;
  --cyan: #11a8c7;
  --rose: #ef476f;
  --amber: #f59f24;
  --violet: #7c3aed;
  --gold: #c99736;
  --navy: #18243a;
  --shadow: 0 18px 50px rgba(17, 19, 21, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7f8f8;
  color: var(--ink);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 36px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 19, 21, .08);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 20px;
}
.brand.compact { font-size: 18px; margin-bottom: 22px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #111315, #0fb981 52%, #c99736);
}
nav { display: flex; align-items: center; gap: 6px; }
nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #30343a;
  font-weight: 650;
  font-size: 14px;
}
nav a:hover, .nav-cta {
  background: #111315;
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  max-height: 860px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 70px 7vw 110px;
  border-bottom: 1px solid var(--line);
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247,248,248,.98) 0%, rgba(247,248,248,.84) 36%, rgba(24,36,58,.18) 74%),
    linear-gradient(180deg, rgba(247,248,248,0) 68%, #f7f8f8 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .95;
  letter-spacing: 0;
}
.lead {
  margin: 24px 0 0;
  width: min(610px, 100%);
  color: #41464d;
  font-size: 20px;
  line-height: 1.6;
}
.hero-actions, .inline-form {
  display: flex;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-badges span {
  padding: 9px 12px;
  border: 1px solid rgba(17, 19, 21, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  color: #242930;
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}
.button, button {
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.button.primary {
  color: #fff;
  background: #111315;
  box-shadow: 0 10px 28px rgba(17, 19, 21, .20);
}
.button.ghost {
  background: #fff;
  border: 1px solid var(--line);
}
.button.icon-only { background: var(--mint); color: #fff; }
.mini {
  padding: 8px 10px;
  background: #111315;
  color: #fff;
  border-radius: 7px;
  font-size: 12px;
}

.metric-strip {
  width: min(1120px, calc(100% - 32px));
  margin: -62px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}
.metric-strip div {
  background: #fff;
  padding: 28px;
}
.metric-strip strong {
  display: block;
  font-size: 32px;
}
.metric-strip span { color: var(--muted); font-weight: 700; }
.ad-slot {
  width: min(728px, calc(100% - 32px));
  min-height: 90px;
  margin: 28px auto;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ad-slot iframe,
.ad-slot img {
  max-width: 100%;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 80px auto;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.05;
}
.premium-band, .payout-band {
  display: grid;
  grid-template-columns: minmax(260px, .52fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.premium-band h2, .payout-band h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}
.payout-band {
  padding: 34px;
  border-radius: 8px;
  background: #111315;
  color: #fff;
}
.payout-band .muted { color: #cfd5d9; }
.logo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.logo-row article {
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(17, 19, 21, .10);
}
.logo-row strong { font-size: 16px; }
.logo-row span { color: var(--muted); font-size: 12px; font-weight: 800; }
.logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.wire-logo {
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #111315, #c99736);
  font-weight: 950;
}
.fallback-logo {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #111315;
  color: #fff;
  font-weight: 950;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.social-grid article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 19, 21, .04);
}
.social-grid strong, .social-grid span {
  display: block;
}
.social-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.social-grid b {
  font-size: 13px;
  text-align: right;
}
.coverage-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.coverage-preview article {
  min-height: 180px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(17,168,199,.06), rgba(15,185,129,.12)),
    #fff;
}
.coverage-preview strong {
  font-size: clamp(26px, 4vw, 42px);
}
.coverage-preview span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.trust-band {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(420px, 1.2fr);
  gap: 28px;
  align-items: start;
}
.trust-intro h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}
.trust-intro > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}
.trust-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.earnings-example {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.earnings-example > span,
.earnings-example > p {
  grid-column: 1 / -1;
}
.earnings-example > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.earnings-example div {
  min-width: 0;
}
.earnings-example strong,
.earnings-example small {
  display: block;
}
.earnings-example strong {
  font-size: clamp(22px, 3vw, 34px);
}
.earnings-example small {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 750;
}
.earnings-example > b {
  color: var(--muted);
  font-size: 20px;
}
.earnings-example .example-total {
  padding: 14px;
  border-radius: 8px;
  background: #e7faf3;
  color: #087b57;
}
.earnings-example > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.trust-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.trust-points article {
  padding: 20px;
  border-top: 3px solid var(--ink);
  background: #fff;
}
.trust-points strong,
.trust-points span {
  display: block;
}
.trust-points span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}
.trust-points a {
  color: #087b57;
  text-decoration: underline;
}
.map-card {
  display: grid;
  gap: 14px;
}
.world-map {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  border: 1px solid rgba(17, 19, 21, .10);
  background: #0b2530;
  box-shadow: 0 18px 44px rgba(17, 19, 21, .08);
}
.world-map img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(.92) contrast(1.12);
}
.world-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(17,19,21,.08)),
    linear-gradient(90deg, rgba(15,185,129,.06), rgba(17,168,199,.04));
  pointer-events: none;
}
.premium-map {
  border-color: rgba(17, 168, 199, .24);
  box-shadow: 0 24px 54px rgba(17, 168, 199, .14);
}
.premium-map img {
  filter: saturate(1.08) contrast(1.04);
}
.premium-map::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(17,19,21,.10)),
    radial-gradient(circle at 50% 50%, rgba(15,185,129,.10), transparent 62%);
}
.map-marker {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--rose);
  border: 3px solid #fff;
  box-shadow: 0 0 0 7px rgba(239, 71, 111, .22), 0 10px 24px rgba(17, 19, 21, .25);
}
.map-empty {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(360px, calc(100% - 32px));
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  text-align: center;
}
.map-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.map-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 10px;
  padding: 13px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}
.map-list strong {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #111315;
  color: #fff;
}
.map-list span, .map-list b, .map-list em {
  min-width: 0;
  overflow-wrap: anywhere;
}
.map-list span { font-weight: 850; }
.map-list b, .map-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}
.device-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}
.device-grid article {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(17, 19, 21, .04);
}
.device-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.device-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
}
.device-grid b {
  color: #087b57;
  font-size: 13px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-3 article, .panel-card, .auth-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(17, 19, 21, .06);
}
.grid-3 article {
  padding: 28px;
  min-height: 220px;
}
.grid-3 h2, .panel-card h2 {
  margin: 0 0 12px;
  font-size: 21px;
}
.grid-3 p, .page-hero p, .split p, .muted {
  color: var(--muted);
  line-height: 1.65;
}
.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #e9faf4;
  color: #087b57;
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
  padding: 42px;
  background: #111315;
  color: #fff;
  border-radius: 8px;
}
.split p { color: #d8dcdf; }
.split h2 { font-size: clamp(32px, 4vw, 54px); margin: 0; }
.quality-list {
  display: grid;
  gap: 12px;
}
.quality-list span {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 800;
}

.page, .auth-wrap {
  min-height: calc(100vh - 150px);
}
.page-hero {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 36px;
}
.page-hero h1 { font-size: clamp(42px, 6vw, 76px); }
.page-hero p { font-size: 20px; width: min(720px, 100%); }

.auth-wrap {
  display: grid;
  place-items: center;
  padding: 48px 16px;
  background:
    radial-gradient(circle at 14% 10%, rgba(17,168,199,.13), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(15,185,129,.16), transparent 30%),
    #fbfbfa;
}
.auth-card {
  width: min(460px, 100%);
  padding: 34px;
}
.auth-card h1 { font-size: 32px; line-height: 1.1; margin-bottom: 24px; }

label {
  display: grid;
  gap: 8px;
  color: #363b42;
  font-size: 13px;
  font-weight: 800;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
  min-width: 0;
}
textarea { resize: vertical; }
.auth-card label + label, .auth-card button { margin-top: 14px; }
.check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check input { width: auto; }
.terms-check {
  line-height: 1.45;
}
.terms-check a {
  color: var(--cyan);
  font-weight: 900;
}

.panel .topbar, .panel .footer { display: none; }
.panel-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(17,168,199,.10), transparent 30%),
    linear-gradient(315deg, rgba(201,151,54,.11), transparent 34%),
    #f4f6f7;
}
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  background: linear-gradient(180deg, #111315, #18243a);
  color: #fff;
}
.sidebar a:not(.brand) {
  display: block;
  padding: 12px 13px;
  border-radius: 8px;
  color: #d9dee2;
  font-weight: 750;
}
.sidebar a.active, .sidebar a:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.panel-main {
  min-width: 0;
  padding: 32px;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.panel-head h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}
.status, .pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.status.good, .pill.valid { background: #e7faf3; color: #087b57; }
.status.danger, .pill.invalid { background: #ffe9ee; color: #b42345; }
.warning {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff0d7;
  color: #7a4a00;
  font-weight: 800;
}
.danger-warning {
  background: #ffe9ee;
  color: #9f1239;
  border: 1px solid rgba(239, 71, 111, .24);
}
.danger-warning strong {
  display: block;
  margin-bottom: 4px;
}
.onboarding-card {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(17, 168, 199, .28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17,168,199,.08), transparent 46%),
    #fff;
}
.onboarding-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}
.onboarding-head h2 {
  margin: 0;
  font-size: 26px;
}
.onboarding-head > span {
  padding: 7px 10px;
  border-radius: 8px;
  background: #e7faf3;
  color: #087b57;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.onboarding-steps article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.onboarding-steps b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #eef1f3;
}
.onboarding-steps article.done b {
  background: var(--mint);
  color: #fff;
}
.onboarding-steps strong,
.onboarding-steps span {
  display: block;
}
.onboarding-steps span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.onboarding-steps a {
  grid-column: 2;
  color: #087b57;
  font-size: 13px;
  font-weight: 850;
}
.onboarding-note {
  margin: 14px 0 0;
  color: #7a4a00;
  font-size: 13px;
  font-weight: 750;
}
.onboarding-note a {
  text-decoration: underline;
}
.panel-empty-state {
  padding: 30px;
  border: 1px dashed #b9c1c8;
  border-radius: 8px;
  background: #f8fafb;
  text-align: center;
}
.panel-empty-state strong {
  display: block;
  font-size: 20px;
}
.panel-empty-state p {
  max-width: 620px;
  margin: 9px auto 0;
  color: var(--muted);
  line-height: 1.6;
}
.panel-empty-state a {
  display: inline-block;
  margin-top: 14px;
  color: #087b57;
  font-weight: 850;
}
.compact-empty {
  grid-column: 1 / -1;
}
.report-empty {
  min-height: 260px;
  display: grid;
  place-content: center;
}
.smartlink-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(17,19,21,.06);
}
.smartlink-box span { display: block; color: var(--muted); font-size: 13px; font-weight: 800; }
.smartlink-box strong { display: block; margin-top: 6px; font-size: clamp(14px, 2vw, 20px); overflow-wrap: anywhere; }
.cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.cards article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 19, 21, .05);
}
.cards span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.cards strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 34px);
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 18px;
  margin-top: 18px;
}
.panel-card {
  min-width: 0;
  padding: 22px;
}
.alerts-page-grid {
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr);
}
.payout-hero {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(15,185,129,.10), transparent 38%),
    linear-gradient(315deg, rgba(201,151,54,.14), transparent 34%),
    #fff;
}
.payout-hero h2 {
  margin: 0 0 12px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .95;
}
.payout-form {
  align-items: end;
}
.payout-list {
  display: grid;
  gap: 12px;
}
.payout-item {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(140px, .7fr));
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.payout-item span,
.payout-item small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.payout-item strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}
.payout-method {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.payout-method div {
  min-width: 0;
}
.payout-method span {
  overflow-wrap: anywhere;
}
.countdown {
  color: #087b57;
}
.report-card .map-card {
  margin-bottom: 18px;
}
.table-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 850;
}
.table-brand .logo-img {
  width: 22px;
  height: 22px;
}
.range-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px;
  border-radius: 8px;
  background: #eceff1;
}
.range-tabs a {
  padding: 9px 12px;
  border-radius: 7px;
  color: #4b535c;
  font-size: 13px;
  font-weight: 900;
}
.range-tabs a.active {
  background: #111315;
  color: #fff;
}
.stack-form {
  display: grid;
  gap: 12px;
}
.settings-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.settings-grid .full { grid-column: 1 / -1; }
.table-wrap {
  width: 100%;
  overflow-x: auto;
}
table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  margin-top: 14px;
}
th, td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 14px;
}
th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
td small { color: var(--muted); }
.alert-list {
  display: grid;
  gap: 10px;
}
.alert {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  background: #fff;
}
.alert.danger { border-left-color: var(--rose); }
.alert.warning { border-left-color: var(--amber); }
.alert.success { border-left-color: var(--mint); }
.alert small, .alert span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.flash {
  position: fixed;
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(520px, calc(100% - 32px));
  padding: 14px 16px;
  border-radius: 8px;
  background: #e7faf3;
  color: #087b57;
  box-shadow: var(--shadow);
  font-weight: 800;
}
.flash.error { background: #ffe9ee; color: #b42345; }
#toast-root {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
}
.toast {
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #111315;
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 800;
}
.toast.error { background: #b42345; }
.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(140px, .6fr));
  gap: 28px;
  padding: 48px 7vw;
  background: #111315;
  color: #fff;
}
.footer p {
  max-width: 460px;
  color: #cbd2d7;
  line-height: 1.7;
}
.footer strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}
.footer a,
.footer span {
  display: block;
  margin: 9px 0;
  color: #cbd2d7;
  font-weight: 750;
}
.footer .brand {
  margin-bottom: 16px;
}
.footer .brand span:last-child {
  color: #fff;
}

@media (max-width: 900px) {
  .topbar { padding: 0 16px; }
  nav { gap: 0; }
  nav a { padding: 8px; font-size: 13px; }
  .hero { min-height: 760px; padding: 54px 16px 120px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(247,248,248,.96), rgba(247,248,248,.84) 64%, #f7f8f8); }
  .lead { font-size: 17px; }
  .metric-strip, .grid-3, .split, .cards, .two-col, .settings-grid, .panel-shell, .premium-band, .payout-band {
    grid-template-columns: 1fr;
  }
  .trust-band { grid-template-columns: 1fr; }
  .trust-points, .onboarding-steps { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .logo-row, .social-grid, .map-list, .device-grid, .payout-hero, .payout-item, .footer, .coverage-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .world-map, .world-map img { min-height: 280px; }
  .metric-strip { margin-top: -42px; }
  .split { padding: 26px; }
  .sidebar {
    position: relative;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .sidebar .brand { flex-basis: 100%; }
  .sidebar a:not(.brand) { padding: 10px; }
  .panel-main { padding: 18px 14px; }
  .panel-head, .smartlink-box {
    align-items: flex-start;
    flex-direction: column;
  }
  .onboarding-head { align-items: flex-start; flex-direction: column; }
  .inline-form { align-items: stretch; }
  .inline-form label, .inline-form button { width: 100%; }
}

@media (max-width: 560px) {
  .brand span:last-child { display: none; }
  h1 { font-size: 42px; }
  .hero-actions .button { width: 100%; text-align: center; }
  .hero-badges span { width: 100%; text-align: center; }
  .metric-strip div { padding: 20px; }
  .auth-card { padding: 24px; }
  .logo-row, .social-grid, .map-list, .device-grid, .payout-hero, .payout-item, .footer, .coverage-preview { grid-template-columns: 1fr; }
  .coverage-preview article { min-height: 130px; }
  .earnings-example {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .earnings-example > span,
  .earnings-example > p { grid-column: 1; }
  .earnings-example > b { transform: rotate(90deg); }
  .social-grid article { grid-template-columns: 34px minmax(0, 1fr); }
  .social-grid b { grid-column: 2; text-align: left; }
  .payout-band { padding: 22px; }
  table { min-width: 620px; }
}
