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

:root {
  --navy:       #0B2145;
  --navy-mid:   #153060;
  --navy-light: #1E4080;
  --teal:       #1EC8B0;
  --teal-light: #5DDECE;
  --teal-pale:  #E0F7F4;
  --blue:       #2A7FBF;
  --blue-light: #5AAEDD;
  --blue-pale:  #E8F4FB;
  --sage:       #4BAE8A;
  --sage-pale:  #EAF7F2;
  --coral:      #E8624A;
  --coral-pale: #FDF0ED;
  --bg:         #F5F9FC;
  --surface:    #FFFFFF;
  --border:     #D4E4EF;
  --border2:    #BDD4E4;
  --text:       #0B2145;
  --text2:      #3A5472;
  --muted:      #6B8AA8;
  --muted2:     #9BB5CA;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: none;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.orb-1,
.orb-2,
.orb-3 {
  display: none;
}

nav {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--navy);
}

.logo .uw {
  color: var(--teal);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.nav-links li {
  cursor: pointer;
  transition: color 0.2s;
}

.nav-links li:hover {
  color: var(--navy);
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--navy);
}

.nav-cta {
  background: var(--navy);
  color: white;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--navy-light);
}

footer {
  position: relative;
  z-index: 1;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #DCE8F0;
  letter-spacing: -0.5px;
}

.footer-logo .uw {
  color: var(--teal);
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: 0.5px;
}

.footer-links a {
  text-decoration: none;
  color: inherit;
}

.footer-links li {
  cursor: pointer;
}

.footer-links a:hover {
  color: #DCE8F0;
}

.footer-copy {
  font-size: 10px;
  color: #3A5472;
  letter-spacing: 0.5px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  nav {
    padding: 16px 24px;
  }

  footer {
    padding: 28px 24px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
