:root {
  --ink: #24384f;          /* deep slate-blue text */
  --ink-soft: #5a7183;     /* muted blue-grey */
  --cream: #f2f7fc;        /* palest blue "paper" */
  --cream-2: #e4eefa;      /* soft blue wash */
  --gold: #7fb0e0;         /* pastel blue accent */
  --gold-dark: #4f8fce;    /* deeper pastel blue accent */
  --line: #d6e6f5;         /* light blue hairline */
  --white: #ffffff;        /* clean white */
  --radius: 14px;
  --maxw: 1120px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; margin: 0; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin: 0 0 1rem;
}
.eyebrow.center { text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 247, 252, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  padding: 6px 10px;
  letter-spacing: 0.02em;
}
.brand-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; letter-spacing: 0.02em; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 0.9rem; letter-spacing: 0.04em; color: var(--ink-soft); transition: color .2s; }
.nav a:hover { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 20px !important;
  color: var(--ink) !important;
}
.nav-cta:hover { background: var(--ink); color: var(--cream) !important; }

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 70% -10%, rgba(127,176,224,0.22), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: clamp(72px, 12vw, 150px) 0 clamp(72px, 12vw, 140px);
  text-align: center;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); margin-bottom: 1.4rem; }
.lede { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--ink-soft); max-width: 620px; margin: 0 auto 2.2rem; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform .15s ease, background .2s, color .2s, box-shadow .2s;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--white); box-shadow: 0 10px 30px rgba(79,143,206,0.28); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-lg { font-size: 1rem; padding: 16px 40px; }

/* Sections */
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { font-size: clamp(1.9rem, 4.5vw, 3rem); text-align: center; margin-bottom: 3rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(79,143,206,0.16); }
.card-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; }
.card h3 { font-size: 1.55rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

/* Approach */
.approach { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
.approach .section-title { text-align: left; margin-bottom: 1.2rem; }
.approach p { color: var(--ink-soft); }
.ticks { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 30px; color: var(--ink); }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 600; }
.approach-stats { display: grid; gap: 18px; }
.stat {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
}
.stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--ink); }
.stat-label { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dark); }

/* CTA */
.cta { background: var(--ink); color: var(--white); text-align: center; }
.cta .eyebrow { color: var(--gold); }
.cta .section-title { color: var(--white); margin-bottom: 1rem; }
.cta-lede { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 2rem; }
.cta .btn-primary { background: var(--gold); color: var(--ink); box-shadow: none; }
.cta .btn-primary:hover { background: var(--white); }

/* Footer */
.site-footer { background: #1a2a3d; color: rgba(255,255,255,0.7); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.site-footer .brand-name { color: var(--white); font-size: 1.5rem; }
.footer-tag { font-size: 0.9rem; letter-spacing: 0.04em; }
.footer-copy { font-size: 0.8rem; opacity: 0.7; margin-top: 6px; }

@media (max-width: 780px) {
  .nav { gap: 16px; }
  .nav a:not(.nav-cta) { display: none; }
  .approach { grid-template-columns: 1fr; gap: 36px; }
}
