/* (c) 2026, Discerno Cyber LLC. All rights reserved. */

/* Quicksand — SIL Open Font License 1.1. See fonts/LICENSE.md */
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/Quicksand-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Quicksand-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/Quicksand-SemiBold.ttf") format("truetype");
}

:root {
  --discerno-red: #C70000;
  --cyber-gray: #787878;
  --tagline-gray: #A3A3A3;
  --near-black: #1A1A1A;
  --white: #FFFFFF;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Avenir Next", "Avenir", "Segoe UI", system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--white);
  color: var(--near-black);
  transition: background-color 0.3s;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: var(--near-black);
  }
}

.logo {
  text-align: left;
  opacity: 0;
  transition: opacity 1s;
}

.logo.visible {
  opacity: 1;
}

.logo-discerno {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--discerno-red);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
}

.logo-cyber {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cyber-gray);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
}

.logo-tagline {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  color: var(--tagline-gray);
  font-size: clamp(1.1rem, 2.9vw, 2.16rem);
  letter-spacing: 0.43em;
  line-height: 1.6;
}

.copyright {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--tagline-gray);
}
