@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --navy: #0B132B;
  --blue: #3B68F0;
  --blue-dark: #2A4BB3;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --white: #FFFFFF;
  --offwhite: #F8FAFC;
  --border: #E2E8F0;
  --radius: 0.75rem;
  --shadow: 0 4px 16px rgba(11, 19, 43, 0.08);
  --shadow-hover: 0 12px 28px rgba(11, 19, 43, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--offwhite); color: var(--navy);
  line-height: 1.6; text-align: left;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word; word-wrap: break-word; word-break: break-word;
}

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4, h5, h6 { margin: 0 0 1rem; font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw + 0.5rem, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem); }
p { margin: 0 0 1.5rem; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: var(--blue-dark); }

.mono { font-family: 'JetBrains Mono', monospace; }
.eyebrow { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--blue); margin-bottom: 0.5rem; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-split { display: flex; align-items: center; padding: 1rem 0; }
.nav-left, .nav-right { flex: 1; display: flex; list-style: none; margin: 0; padding: 0; }
.nav-left { justify-content: flex-end; gap: 2rem; }
.nav-right { justify-content: flex-start; gap: 2rem; }
.nav-logo { flex: 0 0 auto; margin: 0 2rem; font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; text-align: center; }
.nav-logo span { color: var(--blue); }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--slate); }
.nav-links a:hover, .nav-links a:focus { color: var(--navy); }

.page-hero {
  background: linear-gradient(135deg, var(--offwhite) 0%, #E0E7FF 50%, #DBEAFE 100%);
  padding: clamp(4rem, 10vw, 8rem) 0; text-align: center;
}
.hero-title { margin-bottom: 1rem; }
.hero-subtitle { font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem); color: var(--slate); max-width: 640px; margin: 0 auto 2.5rem; }

.section-wrapper { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-heading { margin-bottom: 0.5rem; }
.lead-paragraph { font-size: clamp(1.1rem, 2vw + 0.25rem, 1.25rem); color: var(--slate); max-width: 720px; margin-bottom: 3rem; }
.body-text { color: var(--slate); line-height: 1.7; }

.primary-button, .secondary-button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2rem; border-radius: var(--radius); font-weight: 600; font-size: 1rem;
  cursor: pointer; border: none; transition: all 0.2s ease; text-align: center;
  overflow-wrap: break-word;
}
.primary-button {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white);
  box-shadow: 0 4px 12px rgba(59, 104, 240, 0.35);
}
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(59, 104, 240, 0.45); }
.secondary-button {
  background: var(--white); color: var(--navy); border: 1px solid var(--border);
}
.secondary-button:hover { background: #F1F5F9; border-color: var(--slate-light); }

.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 0; overflow-wrap: break-word;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: #93C5FD; }
.card-title { font-size: 1.25rem; margin-bottom: 0.75rem; }

.image { max-width: 100%; height: auto; border-radius: var(--radius); display: block; }

.site-footer { background: var(--navy); color: var(--slate-light); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: var(--slate-light); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #1E293B; padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; }

@media (max-width: 768px) {
  .nav-split { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-left, .nav-right { flex: 0 0 auto; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .nav-logo { margin: 0.5rem 0 1rem; }
  .btn-group { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
