:root {
  --navy: #15385b;
  --navy-2: #0e2d4b;
  --teal: #29a6aa;
  --coral: #ef6d73;
  --gold: #f3b53f;
  --green: #71b75c;
  --purple: #8b67b7;
  --ink: #203549;
  --muted: #66798a;
  --paper: #ffffff;
  --soft: #f7faf9;
  --line: #e4eceb;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(20, 55, 88, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(21,56,91,.08);
}
.header-inner {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { width: 340px; display: block; }
.brand img { width: 100%; max-height: 90px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; }
.primary-nav a:not(.button):hover { color: var(--teal); }
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 10px 15px;
  font: inherit;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(41,166,170,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(41,166,170,.25); }
.button-small { min-height: 42px; padding: 0 17px; }
.button-ghost { background: white; color: var(--navy); box-shadow: none; border: 1px solid var(--line); }
.button-disabled { background: #aab7bc; box-shadow: none; cursor: not-allowed; }

.hero {
  overflow: hidden;
  position: relative;
  padding: 88px 0 80px;
  background:
    radial-gradient(circle at 90% 15%, rgba(139,103,183,.10), transparent 26%),
    radial-gradient(circle at 82% 75%, rgba(41,166,170,.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 64px;
}
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal);
}
h1, h2, h3 { margin-top: 0; color: var(--navy); }
h1, h2 { font-family: "Libre Baskerville", Georgia, serif; line-height: 1.16; letter-spacing: -.02em; }
h1 { font-size: clamp(44px, 6vw, 76px); margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4.2vw, 50px); margin-bottom: 20px; }
h3 { font-size: 20px; line-height: 1.35; margin-bottom: 10px; }
.hero-lede { font-size: 20px; color: #536a7d; max-width: 690px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points span {
  padding: 9px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.hero-art { min-height: 500px; position: relative; }
.orb { position: absolute; border-radius: 50%; filter: blur(.2px); }
.orb-one { width: 260px; height: 260px; background: rgba(239,109,115,.16); top: 20px; right: 10px; }
.orb-two { width: 230px; height: 230px; background: rgba(41,166,170,.17); bottom: 20px; left: 10px; }
.orb-three { width: 150px; height: 150px; background: rgba(243,181,63,.18); top: 160px; left: 75px; }
.connection-card {
  position: absolute;
  inset: 92px 42px auto 58px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(21,56,91,.08);
  border-radius: 32px;
  padding: 52px 44px;
  box-shadow: var(--shadow);
}
.connection-card p, .connection-card strong {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--navy);
}
.connection-card strong { color: var(--teal); margin-bottom: 0; }
.mini-dots { display: flex; gap: 9px; margin-bottom: 24px; }
.mini-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mini-dots span:nth-child(1){ background: var(--coral); }
.mini-dots span:nth-child(2){ background: var(--gold); }
.mini-dots span:nth-child(3){ background: var(--green); }
.mini-dots span:nth-child(4){ background: var(--teal); }
.mini-dots span:nth-child(5){ background: var(--purple); }

.section { padding: 92px 0; }
.soft-section { background: var(--soft); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.body-copy { font-size: 18px; color: #526878; }
.body-copy p:first-child { margin-top: 4px; }
.section-heading { max-width: 780px; margin-bottom: 42px; }
.section-heading.narrow { max-width: 720px; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(20,55,88,.04);
}
.card p { color: var(--muted); margin-bottom: 0; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  color: white;
  font-weight: 800;
  margin-bottom: 20px;
}
.card-icon.teal { background: var(--teal); }
.card-icon.coral { background: var(--coral); }
.card-icon.gold { background: var(--gold); color: var(--navy); }
.card-icon.purple { background: var(--purple); }

.navy-section { background: var(--navy-2); color: white; }
.navy-section h2, .navy-section h3 { color: white; }
.eyebrow.light { color: #7ed9d5; }
.approach-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.approach-lede { color: #d9e4ec; font-size: 19px; }
.approach-list { border-top: 1px solid rgba(255,255,255,.15); }
.approach-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.approach-item > span { color: #7ed9d5; font-weight: 800; }
.approach-item p { color: #cbd8e1; margin: 0; }

.process { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.process li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: white;
}
.process li > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #e9f7f7;
  color: var(--teal);
  font-weight: 800;
}
.process p { color: var(--muted); margin-bottom: 0; }
.process-note { margin-top: 24px; color: #70808d; font-size: 14px; }

.faq-list { max-width: 820px; }
details {
  border-top: 1px solid #dce6e5;
  padding: 0;
}
details:last-child { border-bottom: 1px solid #dce6e5; }
summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--navy);
  padding: 22px 0;
  font-size: 18px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--teal); font-size: 24px; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); max-width: 720px; margin: -4px 0 24px; }

.get-started { padding-top: 70px; }
.get-started-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 50px;
  align-items: center;
  padding: 48px;
  border-radius: 32px;
  background: linear-gradient(135deg, #edf9f8, #fff8f6);
  border: 1px solid #dbeceb;
}
.get-started-card p { color: #587080; }
.get-started-action { display: grid; gap: 16px; }
.get-started-action small { color: #6e7d87; }

.site-footer { padding: 58px 0 24px; background: #0b2944; color: #d8e4ec; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr .6fr; gap: 42px; align-items: center; }
.footer-brand img { max-width: 250px; border-radius: 8px; }
.footer-title { color: white; font-weight: 700; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: #7ed9d5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  color: #aabcca;
}

@media (max-width: 900px) {
  .menu-button { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 108px;
    left: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }
  .primary-nav.open { display: flex; }
  .hero-grid, .split, .approach-grid, .get-started-card { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-art { min-height: 390px; }
  .connection-card { inset: 50px 20px auto 20px; }
  .cards, .process { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1160px); }
  .brand { width: 255px; }
  .header-inner { min-height: 92px; }
  .primary-nav { top: 92px; }
  .hero { padding: 46px 0 58px; }
  .hero-art { min-height: 330px; }
  .connection-card { padding: 34px 26px; }
  .section { padding: 66px 0; }
  .card, .process li { padding: 22px; }
  .get-started-card { padding: 30px 24px; }
}
