/* ===== Root Colors ===== */
:root {
  --blue: #0E4FA8;
  --orange: #F47C20;
  --red: #C8201F;
  --offwhite: #F7F7F5;
  --black: #111111;
}

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

/* ===== Base Styles ===== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background: linear-gradient(
    135deg,
    var(--blue) 0%,
    var(--blue) 50%,
    var(--orange) 100%
  );
  color: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
}

/* ===== Card ===== */
.card {
  background: var(--offwhite);
  border: 4px solid var(--black);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 10px 0 var(--black);
}

/* ===== Logo ===== */
.logo {
  max-width: clamp(200px, 60vw, 320px);
  width: 200%;
  height: auto;
  margin: 0 auto 1.75rem auto;
}

/* ===== Typography ===== */
h1 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.subtitle {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

/* ===== Divider ===== */
.divider {
  height: 4px;
  width: 60px;
  background: var(--red);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* ===== Contact ===== */
.contact {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--offwhite);
  opacity: 0.9;
}
