:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #102a2d;
  background: #f2f7f5;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 15%, #ffffff 0, #f2f7f5 48%, #e6efec 100%);
}

.portal {
  width: min(100% - 32px, 720px);
  padding: 48px 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 34px;
  font-size: 1.15rem;
  font-weight: 780;
  letter-spacing: -.02em;
}

.mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: #087f79;
  box-shadow: 0 8px 20px #087f7930;
}

.actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.action {
  min-height: 210px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid #c9d9d5;
  border-radius: 24px;
  color: inherit;
  background: #fff;
  box-shadow: 0 14px 38px #153b3812;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}

.action:hover {
  border-color: #6bad9f;
  box-shadow: 0 18px 46px #153b3820;
  transform: translateY(-2px);
}

.action:focus-visible {
  outline: 4px solid #087f7935;
  outline-offset: 4px;
  border-color: #087f79;
}

.action strong {
  font-size: clamp(1.55rem, 5vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.action span {
  margin-top: 11px;
  color: #587174;
  font-size: .94rem;
  line-height: 1.45;
}

.poc-warning {
  margin: 24px 0 0;
  color: #6b604b;
  font-size: .78rem;
  text-align: center;
}

@media (max-width: 580px) {
  .portal { padding-top: 28px; }
  .brand { margin-bottom: 24px; }
  .actions { grid-template-columns: 1fr; }
  .action { min-height: 154px; padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .action { transition: none; }
}
