:root {
  color: #f8fbff;
  background: #071827;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 25% 20%, rgba(0, 120, 212, 0.22), transparent 32rem),
    linear-gradient(135deg, #071827 0%, #0b2138 48%, #101623 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 32px;
  align-items: center;
  min-height: 72vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffd84d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.category-line {
  max-width: 700px;
  margin-bottom: 16px;
  color: #f8fbff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.38;
}

.value-stack {
  display: grid;
  gap: 10px;
  max-width: 640px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #b8d8f6;
  font-size: 17px;
  line-height: 1.45;
}

.value-stack li {
  position: relative;
  padding-left: 28px;
}

.value-stack li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3ce68a;
  font-weight: 900;
}

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

.primary,
.secondary {
  min-height: 48px;
  border: 1px solid transparent;
  padding: 13px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary {
  background: #ffd84d;
  color: #071827;
}

.secondary {
  border-color: rgba(184, 216, 246, 0.36);
  background: rgba(255, 255, 255, 0.06);
  color: #f8fbff;
}

.cta-trust-line {
  max-width: 700px;
  margin: 12px 0 0;
  color: #9ecfff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-proof {
  display: grid;
  gap: 14px;
}

.trust-alignment {
  display: grid;
  justify-items: end;
  gap: 7px;
  width: min(190px, 100%);
  margin-left: auto;
}

.trust-alignment span {
  color: #9ecfff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-alignment img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(158, 207, 255, 0.24);
  background: #ffffff;
  opacity: 0.86;
}

.status {
  min-height: 22px;
  margin-top: 14px;
  color: #9ecfff;
  font-size: 14px;
}

.command-panel {
  border: 1px solid rgba(158, 207, 255, 0.3);
  background: rgba(7, 24, 39, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  padding: 22px;
}

.panel-header,
.metric-grid {
  display: grid;
  gap: 12px;
}

.panel-header {
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(158, 207, 255, 0.22);
  padding-bottom: 18px;
}

.panel-header span,
.metric-grid span {
  color: #8fb9da;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.panel-header strong {
  color: #3ce68a;
}

.metric-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0;
}

.metric-grid div {
  border: 1px solid rgba(158, 207, 255, 0.2);
  padding: 14px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
}

.brief-list {
  display: grid;
  gap: 10px;
}

.brief-list p {
  margin: 0;
  border-left: 3px solid #0078d4;
  background: rgba(0, 120, 212, 0.12);
  padding: 12px;
  color: #d8ecff;
}

.bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.bands article,
.offer {
  border: 1px solid rgba(158, 207, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
  padding: 22px;
}

.bands p,
.offer li {
  color: #b8d8f6;
  line-height: 1.55;
}

.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.offer ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 820px) {
  .hero,
  .bands,
  .offer {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .trust-alignment {
    justify-items: start;
    width: min(180px, 100%);
    margin-left: 0;
  }
}
