:root {
  --white: #FFFFFF;
  --light-gray: #F4F4F4;
  --mid-gray: #9A9A9A;
  --navy: #13324E;
  --gold: #CF9F41;
  --black: #000000;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--white);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrapper {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.content {
  max-width: 720px;
  text-align: center;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 1.25rem;
  color: var(--light-gray);
}

.lang-switch button {
  appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.25rem 0.4rem;
  cursor: pointer;
}

.lang-switch button:hover {
  color: var(--gold);
}

.lang-switch button.active {
  color: var(--gold);
  text-decoration: underline;
}

.lang-switch .divider {
  opacity: 0.6;
}

.logo {
  width: 242px;
  max-width: 80vw;
  margin: 0 auto 1rem;
}

.positioning {
  margin: 0 auto 2.25rem;
  max-width: 680px;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--light-gray);
  opacity: 0.85;
  text-align: center;
  letter-spacing: 0.01em;
}

h1 {
  margin: 0.5rem 0 0.75rem;
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 2.025rem;
  letter-spacing: 0.02em;
}

.lead {
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-gray);
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  h1 { font-size: 2.475rem; }
  .logo { width: 286px; }
  .positioning { font-size: 1rem; margin-bottom: 2.4rem; }
}
