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

:root {
  --navy:       #13294b;
  --navy-deep:  #0a1a34;
  --teal:       #52bcb2;
  --teal-dark:  #39847d;
  --cream:      #faf8f4;
  --warm-tan:   #d4ccbb;
  --white:      #ffffff;
  --text-muted: rgba(255,255,255,.6);
}

html, body {
  height: 100%;
}

body {
  font-family: 'DM Sans', Arial, system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Nav ── */
.nav {
  padding: 24px 32px;
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ── Hero ── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px 80px;
  text-align: center;
}

.hero-content {
  max-width: 520px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(52px, 9vw, 88px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.subhead {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
}

