/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(assets/fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(assets/fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(assets/fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --color-primary: #1a2744;
  --color-bg: #ffffff;
  --color-accent: #7e868f;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--color-primary);
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.logo {
  display: block;
  width: min(800px, 80vw);
  height: auto;
}

.tagline {
  margin-top: 28px;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.01em;
}

.status {
  margin-top: 10vh;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a6370;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 35px;
  padding: 28px 24px;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.site-footer a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--color-primary);
}

/* Privacy page */
.privacy-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  flex: 1;
}

.privacy-page h1 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 32px;
}

.privacy-page h2 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 12px;
}

.privacy-page p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.privacy-page a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.privacy-page a:hover {
  color: var(--color-accent);
}

.privacy-page .back-link {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--color-accent);
}

.privacy-page .back-link:hover {
  color: var(--color-primary);
}

.privacy-page .updated {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--color-accent);
}

@media (max-width: 480px) {
  .tagline {
    font-size: 1rem;
    text-align: center;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .privacy-page {
    padding: 40px 20px 32px;
  }

  .privacy-page h1 {
    font-size: 1.5rem;
  }
}
