:root {
  color-scheme: dark;
  --bg: #061015;
  --panel: #0d1b24;
  --panel-2: #102735;
  --line: #214356;
  --text: #e7f6ff;
  --muted: #9fb8c7;
  --green: #65f29a;
  --cyan: #49c7ff;
  --gold: #f4c95d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(73, 199, 255, 0.16), transparent 32rem),
    linear-gradient(180deg, #061015 0%, #081820 100%);
  color: var(--text);
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--cyan);
  color: var(--green);
  font-weight: 900;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px 76px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 8vw, 86px);
}

h2 {
  font-size: 42px;
}

.lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.claim {
  padding-left: 16px;
  border-left: 3px solid var(--green);
  color: #d8ffe4;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.button.primary {
  background: #0b6ce0;
  border-color: #1a8cff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(7, 18, 25, 0.8);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.34);
}

.panel {
  min-height: 150px;
  padding: 18px;
  border: 1px solid #1d3b4d;
  background: linear-gradient(180deg, var(--panel) 0%, #091821 100%);
}

.panel.wide {
  grid-column: 1 / -1;
}

.panel-title {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.big-number,
.score {
  margin-top: 18px;
  color: var(--green);
  font-size: 44px;
  font-weight: 900;
}

.score.dim {
  color: var(--gold);
}

.muted {
  color: var(--muted);
}

.meter {
  height: 9px;
  margin-top: 18px;
  overflow: hidden;
  background: #17303e;
}

.meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 74px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-head {
  margin-bottom: 28px;
}

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

.proof-grid article,
.request-box {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(13, 27, 36, 0.86);
}

.proof-grid span {
  display: block;
  min-height: 44px;
  color: var(--muted);
}

.proof-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-size: 30px;
}

.two-col,
.preview {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
}

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

.limits li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(13, 27, 36, 0.7);
}

footer {
  display: flex;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 52px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .two-col,
  .preview {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .topbar,
  nav,
  .actions,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard,
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

