:root {
  color-scheme: dark;
  --bg: #080b0f;
  --panel: #10161d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f4f7f8;
  --muted: #aeb9bf;
  --soft: #d8e0e3;
  --cyan: #69d9e7;
  --green: #8ed3a2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 78%, transparent);
}

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

img {
  display: block;
  max-width: 100%;
}

.client-entry {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.access-panel {
  display: grid;
  width: min(100%, 760px);
  min-height: 430px;
  align-content: space-between;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(105, 217, 231, 0.09), transparent 38%),
    rgba(255, 255, 255, 0.035);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-weight: 720;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(3rem, 10vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
}

.portal-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.92rem;
}

.portal-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

@media (max-width: 560px) {
  .client-entry {
    padding: 16px;
  }

  .access-panel {
    min-height: 520px;
  }
}
