:root {
  color-scheme: light;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #092f4c;
  background: #f3f7fa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #f3f7fa;
}

.topbar {
  min-height: 64px;
  padding: 10px clamp(18px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: #082b50;
  border-bottom: 3px solid #14a3aa;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand strong { font-size: 24px; }
.brand span { color: #b7d9eb; font-size: 14px; }

.environment {
  padding: 7px 10px;
  border: 1px solid #82c600;
  background: #113b48;
  font-size: 13px;
  font-weight: 600;
}

main {
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px) 20px;
}

.access-panel {
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: #087b8e;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.55;
  color: #45637a;
}

.trust-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.trust-list span {
  padding: 8px 10px;
  border: 1px solid #bad2df;
  background: white;
  font-size: 13px;
  font-weight: 600;
}

.status-card {
  min-height: 260px;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 14px;
  border: 1px solid #c7d9e3;
  border-top: 4px solid #14a3aa;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 45px rgba(9, 47, 76, .10);
}

.status-card.success { border-top-color: #79b900; }
.status-card.error { border-top-color: #d93c32; }

.status-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #087b8e;
  font-size: 18px;
  font-weight: 700;
}

.success .status-icon { background: #69a900; }
.error .status-icon { background: #d93c32; }
.status-card h2 { margin: 0; font-size: 22px; }
.status-card p { margin: 0; color: #5c7181; line-height: 1.5; }

button {
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 4px;
  color: white;
  background: #087b8e;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

footer {
  min-height: 52px;
  padding: 12px clamp(18px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #5c7181;
  background: white;
  border-top: 1px solid #dbe6ec;
  font-size: 13px;
}

@media (max-width: 760px) {
  .access-panel { grid-template-columns: 1fr; }
  .brand span, .environment { display: none; }
  h1 { font-size: 38px; }
  footer { flex-direction: column; }
}
