:root {
  color-scheme: light;
  --paper: #f7f3ec;
  --paper-2: #fffdf8;
  --ink: #161616;
  --muted: #5d646b;
  --line: #d8d0c3;
  --cyan: #00a7d8;
  --magenta: #e4007f;
  --yellow: #ffd100;
  --black: #141414;
  --green: #148f5a;
  --font-neutral: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Avenir Next Condensed", "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-neutral);
  background:
    radial-gradient(circle at 18px 18px, rgba(22, 22, 22, 0.07) 1.4px, transparent 1.7px) 0 0 / 18px 18px,
    linear-gradient(135deg, rgba(0, 167, 216, 0.08), transparent 28%),
    linear-gradient(315deg, rgba(255, 209, 0, 0.14), transparent 32%),
    var(--paper);
}

body::before {
  content: "";
  display: block;
  height: 10px;
  background: linear-gradient(90deg,
    var(--cyan) 0 25%,
    var(--magenta) 25% 50%,
    var(--yellow) 50% 75%,
    var(--black) 75% 100%);
}

.page {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 10px);
  margin: 0 auto;
  padding: 40px 0;
  place-items: center;
}

main {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(var(--paper-2), var(--paper-2)) padding-box,
    linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow), var(--black)) border-box;
  box-shadow: 0 24px 60px rgba(22, 22, 22, 0.14);
}

main::before,
main::after {
  position: absolute;
  width: 74px;
  height: 74px;
  border-color: var(--ink);
  opacity: 0.22;
  pointer-events: none;
  content: "";
}

main::before {
  top: 18px;
  left: 18px;
  border-top: 2px solid;
  border-left: 2px solid;
}

main::after {
  right: 18px;
  bottom: 18px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.sheet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  min-height: 560px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  padding: 64px 76px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(20, 143, 90, 0.14);
}

h1 {
  max-width: 100%;
  margin: 0;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.subhead {
  max-width: 650px;
  margin: 0;
  color: #343a40;
  font-size: 1.2rem;
  line-height: 1.55;
}

.service-label {
  display: inline-flex;
  width: fit-content;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: #25282b;
  font-size: 0.92rem;
  font-weight: 700;
}

.service-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan), var(--magenta), var(--yellow), var(--black), var(--cyan));
}

.proof-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 28px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(0deg, transparent 0 29px, rgba(22, 22, 22, 0.06) 29px 30px);
}

.logo-frame {
  display: grid;
  width: min(280px, 100%);
  min-height: 250px;
  margin: 8px auto 0;
  padding: 16px;
  place-items: center;
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  max-height: 230px;
  object-fit: contain;
}

body.mighty .brand-logo {
  max-width: 230px;
}

.color-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 44px;
  border: 1px solid var(--ink);
}

.color-bars span:nth-child(1) { background: var(--cyan); }
.color-bars span:nth-child(2) { background: var(--magenta); }
.color-bars span:nth-child(3) { background: var(--yellow); }
.color-bars span:nth-child(4) { background: var(--black); }

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

.status-list li {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(22, 22, 22, 0.12);
  color: #343a40;
  font-size: 0.92rem;
}

.status-list strong {
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-list span {
  overflow-wrap: anywhere;
  text-align: right;
}

@media (max-width: 820px) {
  .page {
    padding: 22px 0;
  }

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

  .hero {
    padding: 42px 28px;
  }

  .proof-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .logo-frame {
    min-height: 210px;
  }

  h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .page {
    width: min(100% - 20px, 1120px);
  }

  .service-label,
  .status-list li {
    width: 100%;
  }

  .status-list li {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 10px;
  }

  .status-list span {
    text-align: left;
  }

  h1 {
    font-size: 2.55rem;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.15rem;
  }
}
