:root {
  --bg: #f6f3f0;
  --surface: #ffffff;
  --primary: #223b75;
  --accent: #ffb347;
  --text: #1d1d1f;
  --muted: #5f6775;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.site-header {
  background: linear-gradient(120deg, rgba(255, 179, 71, 0.15), rgba(34, 59, 117, 0.08));
  padding: 32px 8vw 48px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links a,
.nav-more span {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.nav-more {
  position: relative;
  cursor: pointer;
}

.nav-dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  background: var(--surface);
  border-radius: 12px;
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(19, 25, 36, 0.18);
  min-width: 160px;
}

.nav-more:hover .nav-dropdown {
  display: flex;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-actions button {
  background: var(--surface);
  border: 1px solid rgba(34, 59, 117, 0.2);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
}

.hero {
  margin-top: 48px;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 12px 0 16px;
}

.eyebrow {
  color: var(--primary);
  font-weight: 600;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions button {
  border-radius: 999px;
  padding: 12px 20px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.hero-actions .primary {
  background: var(--primary);
  color: #fff;
}

.hero-actions .secondary {
  background: var(--surface);
  border: 1px solid rgba(34, 59, 117, 0.2);
  color: var(--primary);
}

.section {
  padding: 56px 8vw;
}

.section h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  margin-bottom: 24px;
}

.section.highlight {
  background: var(--surface);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.grid article {
  background: var(--surface);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(95, 103, 117, 0.1);
  box-shadow: 0 8px 18px rgba(34, 59, 117, 0.08);
}

.section.highlight .grid article {
  background: #fef7ed;
}

.grid h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.grid p {
  color: var(--muted);
}

.site-footer {
  padding: 56px 8vw 72px;
  background: var(--primary);
  color: #fff;
}

.site-footer h2 {
  margin-bottom: 16px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.site-footer p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-note {
  margin-top: 24px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 720px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .nav-actions {
    width: 100%;
  }

  .grid article {
    padding: 16px;
  }
}
