@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-var.woff2") format("woff2");
}

:root {
  --bg: #f3f4f6;
  --text: #1f2633;
  --muted: #586074;
  --line: #e7e9ee;
  --brand: #33507e;
  --brand-soft: #eef2f8;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg);
  margin: 0;
  min-width: 320px;
}

body.public-site {
  background:
    radial-gradient(circle at 18% 20%, rgba(6, 37, 102, 0.1), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef3ff 100%);
  min-height: 100vh;
}

.public-shell {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 24px;
}

.public-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(6, 37, 102, 0.14);
  justify-self: center;
  max-width: 720px;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  width: min(100%, 720px);
}

.public-logo {
  background: #ffffff;
  border: 1px solid var(--brand-soft);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(6, 37, 102, 0.08);
  height: 76px;
  margin-bottom: 18px;
  object-fit: contain;
  padding: 10px;
  width: 76px;
}

.eyebrow {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.public-card h1 {
  color: var(--brand);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
  margin: 6px 0 14px;
}

.public-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 auto 24px;
  max-width: 560px;
}

.public-contact {
  border-top: 1px solid var(--line);
  color: var(--brand);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 800;
  gap: 10px 18px;
  justify-content: center;
  line-height: 1.45;
  padding-top: 18px;
}
