:root {
  --navy: #173a64;
  --navy-deep: #0f2747;
  --gold: #c9a24a;
  --green: #2f6b4f;
  --ink: #1b2a44;
  --muted: #5a6a86;
  --bg: #f6f4ee;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201, 162, 74, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(23, 58, 100, 0.10), transparent 60%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.stage {
  min-height: 100dvh;
  display: grid;
  place-items: center;
}

.content {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  width: clamp(180px, 28vw, 260px);
  height: auto;
  margin-bottom: clamp(24px, 4vw, 36px);
  filter: drop-shadow(0 6px 20px rgba(15, 39, 71, 0.12));
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.lede {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 52ch;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(23, 58, 100, 0.12);
  box-shadow: 0 8px 24px rgba(15, 39, 71, 0.08);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(47, 107, 79, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(47, 107, 79, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(47, 107, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 107, 79, 0); }
}

.contact {
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
}

.contact a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(23, 58, 100, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .dot { animation: none; }
}
