@font-face {
  font-family: "FrutigerLTStd";
  src: url("/fonts/Frutiger-LT-Std-45-Light.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Gened";
  src: url("/fonts/GENED.ttf") format("truetype");
  font-weight: 400;
}

:root {
  color-scheme: light;
  --brand: #283674;
  --brand-soft: #eef2ff;
  --ink: #16213f;
  --muted: #5f6b86;
  --white: #ffffff;
  --line: rgba(40, 54, 116, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 18%, rgba(40, 54, 116, 0.16), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, #f4f7ff 48%, #e7ecfb 100%);
  font-family: "FrutigerLTStd", Arial, Helvetica, sans-serif;
}

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

.hero {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(40, 54, 116, 0.14);
}

.logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--brand);
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: 0;
  font-family: "Gened", "FrutigerLTStd", Arial, sans-serif;
  font-weight: 400;
}

.lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: #1f2b62;
}

@media (max-width: 720px) {
  .page {
    padding: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .logo {
    width: min(180px, 70%);
  }

  h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 17px;
  }
}
