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

:root {
  --navy: #1C2B4A;
  --navy-light: #2D4270;
  --white: #FFFFFF;
  --text-muted: #6B7A99;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 8vw, 5rem);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 800px;
  width: 100%;
}

.logo {
  width: 100%;
  max-width: clamp(180px, 40vw, 360px);
  height: auto;
  display: block;
}

.company-name {
  font-size: clamp(1.5rem, 4.5vw, 2.75rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.contact-email {
  font-size: clamp(0.8rem, 2.2vw, 0.95rem);
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-email:hover,
.contact-email:focus {
  color: var(--navy);
  border-bottom-color: var(--navy-light);
  outline: none;
}

.contact-email:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 4px;
  border-radius: 2px;
}
