/* Base layout and typography */

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #f3f6fb;
  color: #111111;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #0c67d6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Containers */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and navigation */

.site-header {
  background: linear-gradient(90deg, #002447, #00539b);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.branding .logo-text {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-top {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.logo-bottom {
  font-size: 1.1rem;
  font-weight: 600;
}

.logo-text span {
  color: #ffffff;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.main-nav a {
  color: #e3efff;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus {
  border-bottom-color: #fff;
}

/* Hero */

.hero {
  background: radial-gradient(circle at top left, #e3f0ff 0, #f3f6fb 50%, #ffffff 100%);
  padding: 50px 0 40px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: 2.1rem;
  margin: 10px 0 15px 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #285f97;
  margin: 0 0 6px 0;
}

.hero-copy p {
  margin: 0 0 12px 0;
}

.hero-subnote {
  font-size: 0.9rem;
  color: #43546b;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 10px 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: #0c67d6;
  color: #ffffff;
  border-color: #0c67d6;
  box-shadow: 0 4px 10px rgba(12, 103, 214, 0.3);
}

.btn.primary:hover,
.btn.primary:focus {
  background: #084d9f;
  border-color: #084d9f;
  box-shadow: 0 6px 14px rgba(8, 77, 159, 0.35);
  text-decoration: none;
}

.btn.ghost {
  background: transparent;
  color: #0c67d6;
  border-color: rgba(12, 103, 214, 0.4);
}

.btn.ghost:hover,
.btn.ghost:focus {
  border-color: #0c67d6;
  background: rgba(12, 103, 214, 0.06);
  text-decoration: none;
}

.btn.full-width {
  width: 100%;
}

/* Hero side panel */

.hero-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  border: 1px solid #dde6f3;
}

.hero-panel h2 {
  font-size: 1.15rem;
