:root {
  --navy: #062a47;
  --navy-2: #0b4562;
  --teal: #0b756a;
  --mint: #41d6c3;
  --mint-soft: #dff8f4;
  --orange: #e7792d;
  --gold: #f5b84d;
  --ink: #142432;
  --muted: #536575;
  --line: #dce8e7;
  --paper: #ffffff;
  --wash: #f6fbfa;
  --shadow: 0 22px 60px rgba(6,42,71,.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  padding: 10px 14px; background: var(--navy); color: #fff; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,232,231,.85);
}
.nav-wrap { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; color: var(--navy); letter-spacing: -.02em; }
.brand img { width: 48px; height: 48px; }
.brand small { display: block; color: var(--teal); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { text-decoration: none; font-weight: 760; font-size: .94rem; color: var(--navy-2); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--teal); }
.menu-button { display: none; border: 0; background: transparent; padding: 10px; color: var(--navy); cursor: pointer; }
.menu-button svg { display: block; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 0 20px; border-radius: 999px; text-decoration: none; font-weight: 850; border: 2px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #fff; box-shadow: 0 12px 26px rgba(231,121,45,.28); }
.button-primary:hover { box-shadow: 0 16px 30px rgba(231,121,45,.34); }
.button-secondary { border-color: rgba(255,255,255,.42); color: #fff; background: rgba(255,255,255,.08); }
.button-light { background: #fff; color: var(--navy); }
.button-outline { border-color: var(--navy); color: var(--navy); }

.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(circle at 85% 10%, rgba(65,214,195,.2), transparent 30%), linear-gradient(135deg, #062a47 0%, #0b4562 58%, #0b756a 100%);
  color: #fff;
  padding: 82px 0 86px;
}
.hero::after { content: ""; position: absolute; inset: auto -10% -180px; height: 300px; border-radius: 50% 50% 0 0; background: rgba(255,255,255,.05); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 60px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px; font-size: .78rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 3px; background: var(--mint); }
.hero h1 { margin: 0; max-width: 780px; font-size: clamp(3rem, 6vw, 5.7rem); line-height: .96; letter-spacing: -.055em; }
.hero h1 span { color: var(--mint); }
.hero-lead { max-width: 650px; margin: 24px 0 0; color: #dceff0; font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 30px; color: #c7e2e3; font-size: .92rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--mint); flex: 0 0 auto; }
.hero-visual { position: relative; }
.hero-visual img { display: block; border-radius: 38px; box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.hero-badge { position: absolute; left: -28px; bottom: 32px; width: 176px; padding: 18px; border-radius: 20px; background: rgba(255,255,255,.96); color: var(--navy); box-shadow: var(--shadow); }
.hero-badge strong { display: block; font-size: 1.5rem; }
.hero-badge span { font-size: .86rem; color: var(--muted); font-weight: 700; }

.trust-strip { background: var(--wash); border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 94px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.trust-item { padding: 16px 28px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.02rem; }
.trust-item span { color: var(--muted); font-size: .88rem; }

.section { padding: 96px 0; }
.section-soft { background: var(--wash); }
.section-dark { background: var(--navy); color: #fff; }
.section-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: end; margin-bottom: 42px; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(2.15rem, 4vw, 3.6rem); line-height: 1.05; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-dark .section-heading h2, .section-dark .eyebrow { color: #fff; }
.section-dark .section-heading p { color: #c7e2e3; }

.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.about-copy h2 { margin: 0 0 22px; color: var(--navy); font-size: clamp(2.25rem, 4vw, 3.8rem); line-height: 1.05; letter-spacing: -.045em; }
.about-copy p { color: var(--muted); font-size: 1.05rem; }
.value-list { display: grid; gap: 14px; margin-top: 28px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon { width: 42px; height: 42px; border-radius: 13px; background: var(--mint-soft); color: var(--teal); display: grid; place-items: center; flex: 0 0 auto; }
.value-item strong { color: var(--navy); display: block; }
.value-item p { margin: 2px 0 0; font-size: .94rem; }
.about-card { padding: 36px; border-radius: 32px; background: linear-gradient(145deg, var(--navy), var(--navy-2)); color: #fff; box-shadow: var(--shadow); }
.about-card h3 { margin: 0 0 18px; font-size: 1.65rem; }
.about-card blockquote { margin: 0; font-size: 1.22rem; line-height: 1.55; color: #e4f5f3; }
.about-card .note { margin-top: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.2); color: #bcd7d8; font-size: .89rem; }

.card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.program-card { display: flex; flex-direction: column; min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 14px 36px rgba(6,42,71,.06); }
.program-card .number { font-size: .78rem; font-weight: 900; letter-spacing: .13em; color: var(--orange); }
.program-card .icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 22px 0 26px; border-radius: 18px; background: var(--mint-soft); color: var(--teal); }
.program-card h3 { margin: 0; color: var(--navy); font-size: 1.3rem; line-height: 1.2; }
.program-card p { margin: 14px 0 0; color: var(--muted); font-size: .95rem; }
.program-card .tag { display: inline-block; align-self: flex-start; margin-top: auto; padding: 7px 11px; border-radius: 999px; background: #f2f6f6; color: var(--navy-2); font-size: .78rem; font-weight: 800; }

.approach-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.approach-card { display: grid; grid-template-columns: auto 1fr; gap: 20px; padding: 26px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.approach-card .icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: rgba(65,214,195,.16); color: var(--mint); }
.approach-card h3 { margin: 0; font-size: 1.14rem; }
.approach-card p { margin: 6px 0 0; color: #c7e2e3; font-size: .92rem; }

.profile-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: stretch; }
.profile-intro { padding: 34px; border-radius: 28px; background: var(--mint-soft); }
.profile-intro img { width: 98px; height: 98px; }
.profile-intro h2 { margin: 22px 0 14px; color: var(--navy); font-size: 2.25rem; line-height: 1.05; letter-spacing: -.04em; }
.profile-intro p { margin: 0; color: var(--muted); }
.profile-table { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; }
.profile-row { display: grid; grid-template-columns: 190px 1fr; gap: 18px; padding: 20px 26px; border-bottom: 1px solid var(--line); }
.profile-row:last-child { border-bottom: 0; }
.profile-label { color: var(--muted); font-size: .83rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.profile-value { color: var(--navy); font-weight: 780; overflow-wrap: anywhere; }
.profile-note { margin: 18px 0 0; color: var(--muted); font-size: .85rem; }

.cta { padding: 0 0 96px; }
.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; padding: 54px; border-radius: 34px; background: linear-gradient(135deg, var(--orange), #bf571b); color: #fff; }
.cta-card::after { content: ""; position: absolute; width: 330px; height: 330px; right: -100px; top: -145px; border-radius: 50%; background: rgba(255,255,255,.12); }
.cta-card h2 { position: relative; z-index: 1; margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.04; letter-spacing: -.04em; }
.cta-card p { position: relative; z-index: 1; margin: 16px 0 0; color: #fff4ea; max-width: 650px; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }

.site-footer { background: #031d31; color: #d3e5e7; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 52px; }
.footer-brand { color: #fff; }
.footer-brand p { color: #9dbbc0; max-width: 430px; }
.footer-title { margin: 0 0 14px; color: #fff; font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { text-decoration: none; color: #b6d0d3; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #83a6ab; font-size: .83rem; }

.page-hero { padding: 74px 0; background: linear-gradient(135deg, var(--navy), var(--teal)); color: #fff; }
.page-hero h1 { margin: 0; font-size: clamp(2.6rem, 5vw, 4.7rem); letter-spacing: -.05em; line-height: 1; }
.page-hero p { max-width: 740px; color: #cce6e6; }
.legal { padding: 76px 0 96px; }
.legal article { max-width: 820px; }
.legal h2 { margin-top: 36px; color: var(--navy); }
.legal p, .legal li { color: var(--muted); }
.legal .updated { font-weight: 800; color: var(--teal); }

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-button { display: inline-grid; }
  .site-nav { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 20px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav .button { width: 100%; }
  .hero-grid, .about-grid, .profile-wrap, .cta-card { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-visual { max-width: 720px; }
  .hero-badge { left: 22px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-item:first-child, .trust-item:nth-child(3) { padding-left: 24px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand span { font-size: .9rem; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .hero-grid { gap: 38px; }
  .hero-badge { position: static; width: 100%; margin-top: 14px; }
  .trust-grid, .card-grid, .approach-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 18px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 74px 0; }
  .program-card { min-height: 300px; }
  .profile-row { grid-template-columns: 1fr; gap: 4px; padding: 18px 20px; }
  .cta-card { padding: 34px 25px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.profile-value a { color: var(--teal); text-underline-offset: 3px; }
.profile-value a:hover, .profile-value a:focus-visible { color: var(--orange); }
