:root {
  --navy: #0b2545;
  --navy-2: #13315c;
  --steel: #1b4965;
  --teal: #5fd0c4;
  --teal-deep: #2a9d8f;
  --gold: #e9c46a;
  --bg: #fbfaf7;
  --bg-alt: #f1ede4;
  --ink: #15212e;
  --ink-2: #44525f;
  --line: #e5dfd1;
  --max: 1140px;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(11, 37, 69, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 0 0 .4em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 700; }
h1 em { font-style: italic; color: var(--teal); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-2); }
a { color: var(--teal-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, .9);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700; font-size: 1.15rem; color: var(--navy);
}
.brand:hover { text-decoration: none; }
.brand-mark { width: 32px; height: 32px; }
.site-header nav { display: flex; gap: 6px; align-items: center; }
.site-header nav a {
  color: var(--ink); padding: 8px 14px; border-radius: 999px;
  font-weight: 500; font-size: .96rem;
}
.site-header nav a:hover { background: var(--bg-alt); text-decoration: none; }
.site-header nav a.cta {
  background: var(--navy); color: #fff;
}
.site-header nav a.cta:hover { background: var(--steel); }

@media (max-width: 720px) {
  .site-header nav a:not(.cta) { display: none; }
}

/* Hero */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  color: #f6faff;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg svg { width: 100%; height: 100%; display: block; }
.hero-inner {
  padding: 110px 24px 130px;
  max-width: 920px;
}
.hero h1 { color: #fff; max-width: 18ch; }
.eyebrow {
  display: inline-block;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal);
  background: rgba(95, 208, 196, .12);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(95, 208, 196, .3);
  margin-bottom: 18px;
}
.lede {
  color: rgba(246, 250, 255, .85); font-size: 1.18rem; max-width: 60ch;
  margin-top: .4em;
}
.hero-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--navy); }
.btn-primary:hover { background: #7adcd1; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; }
.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-label {
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-deep); font-weight: 600; margin: 0 0 12px;
}
.two-col {
  display: grid; gap: 64px;
  grid-template-columns: 1fr 1.3fr;
  align-items: start;
}
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin-top: 6px; }
.section-sub { color: var(--ink-2); font-size: 1.08rem; }
.prose p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
}

/* Cards */
.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(11, 37, 69, .12);
  border-color: rgba(95, 208, 196, .5);
}
.card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 6px; }
.card p { margin: 0; font-size: .98rem; }

/* CTA */
.section-cta {
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(95,208,196,.18), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy-2));
  color: #f6faff;
  text-align: center;
}
.section-cta h2 { color: #fff; }
.section-cta p { color: rgba(246, 250, 255, .8); margin-bottom: 28px; }
.cta-inner { max-width: 720px; margin: 0 auto; }

/* Footer */
.site-footer {
  background: #06172d; color: rgba(255,255,255,.78);
  padding: 56px 0 40px;
}
.site-footer .brand { color: #fff; }
.footer-inner {
  display: grid; gap: 32px;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
}
.footer-brand p { color: rgba(255,255,255,.6); margin-top: 10px; max-width: 38ch; }
.footer-meta { font-size: .9rem; }
.footer-meta p { color: rgba(255,255,255,.55); margin-bottom: 6px; }
.disclaimer { color: rgba(255,255,255,.7) !important; font-style: italic; }
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; }
}
