* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef3f9;
  --text: #152033;
  --muted: #5c6b80;
  --line: #dce4ef;
  --primary: #123d7a;
  --primary-2: #1e5db3;
  --shadow: 0 18px 50px rgba(18, 38, 63, 0.10);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(30, 93, 179, 0.08), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  line-height: 1.65;
}

a {
  color: var(--primary-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(248, 251, 255, 0.92);
  border-bottom: 1px solid rgba(220, 228, 239, 0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow);
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.menu a {
  color: var(--text);
  font-weight: 500;
}

.hero {
  padding: 78px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.card,
.legal-item,
.contact-card,
.statement,
.note,
.prose {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(220, 228, 239, 0.95);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-copy {
  padding: 34px;
}

.eyebrow,
.section-tag {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18, 61, 122, 0.08);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 64ch;
}

.hero-card {
  padding: 28px;
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
}

.hero-card li {
  margin-bottom: 10px;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff !important;
  font-weight: 700;
  border: none;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: #fff;
  color: var(--primary) !important;
  border: 1px solid var(--line);
}

.btn-nav {
  min-height: 42px;
}

.section {
  padding: 34px 0;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-alt {
  background: linear-gradient(180deg, rgba(238,243,249,0.6), rgba(238,243,249,0.25));
  border-top: 1px solid rgba(220, 228, 239, 0.85);
  border-bottom: 1px solid rgba(220, 228, 239, 0.85);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.content,
.statement,
.prose,
.note {
  padding: 28px;
}

.content p:last-child,
.prose p:last-child {
  margin-bottom: 0;
}

.content p,
.prose p,
.statement p,
.note p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.card {
  padding: 24px;
}

.card h3,
.legal-item h3,
.contact-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.card p,
.legal-item p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.statement {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.legal-item {
  padding: 22px;
}

.note {
  margin-top: 20px;
}

.prose h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.contact-box {
  display: grid;
  gap: 22px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 24px;
}

.site-footer {
  margin-top: 22px;
  background: #0f1f36;
  color: rgba(255,255,255,0.92);
  padding: 34px 0 16px;
}

.site-footer a {
  color: rgba(255,255,255,0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
}

.footer-grid h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 8px;
  color: rgba(255,255,255,0.82);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 24px;
  padding-top: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col,
  .statement,
  .footer-grid,
  .contact-cards,
  .cards,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }
}

@media (max-width: 640px) {
  .hero-copy,
  .hero-card,
  .card,
  .legal-item,
  .content,
  .statement,
  .prose,
  .contact-card,
  .note {
    padding: 22px;
  }

  .container {
    width: min(100% - 20px, 1160px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .btn-secondary {
    width: 100%;
  }
}
