/* Shared identity for the public website and sign-in only. */
:root {
  --ink: #081526;
  --paper: #f6f8fc;
  --text: #172a43;
  --muted: #546780;
  --line: #dce5f0;
  --blue: #2864ed;
  --cyan: #79d8ff;
  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display: var(--font);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: var(--font);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  line-height: 1.6;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.15;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button:disabled {
  cursor: not-allowed;
}
a,
button,
input {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #67cfff;
  outline-offset: 4px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.7px;
  color: #fff;
  white-space: nowrap;
  min-height: 44px;
}
.brand img {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
}
.brand > span > span {
  color: #73d2ff;
}
/* Light gradient stops keep both public headlines readable on navy backgrounds. */
.brand-gradient {
  color: #b9e6ff;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .brand-gradient {
    background-image: linear-gradient(105deg, #8eeaff 0%, #bfdcff 45%, #d6beff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media (forced-colors: active) {
  .brand-gradient {
    background: none;
    color: CanvasText;
    -webkit-text-fill-color: currentColor;
  }
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 9999;
  transform: translateY(-180%);
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  color: #102344;
  font-weight: 700;
}
.skip-link:focus {
  transform: none;
}
[hidden] {
  display: none !important;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
