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

:root {
  --navy: #1f315d;
  --blue: #3b82f6;
  --font:
    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 40px 24px;
  font-family: var(--font);
  color: #fff;
  background-color: var(--navy);
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.06) 1.4px,
    transparent 1.6px
  );
  background-size: 30px 30px;
  -webkit-font-smoothing: antialiased;
}

.stage {
  margin: auto;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  height: 60px;
  width: auto;
  margin-bottom: 34px;
}

.rule {
  width: 56px;
  height: 5px;
  border-radius: 3px;
  background: var(--blue);
  margin-bottom: 26px;
}

h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.55rem;
}

.tagline {
  font-weight: 600;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 520px) {
  .foot {
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
