:root {
  --bg: #f5f6f8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: #1b2a3d;
  --ink: #1a2332;
  --ink-soft: #5a6a78;
  --line: rgba(26, 35, 50, 0.10);
  --accent: #1b6c8a;
  --accent-deep: #0e4d66;
  --teal: #1b6c8a;
  --teal-soft: rgba(27, 108, 138, 0.10);
  --gold: rgba(27, 108, 138, 0.06);
  --shadow-lg: 0 20px 50px rgba(26, 35, 50, 0.07);
  --shadow-md: 0 10px 30px rgba(26, 35, 50, 0.05);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --content-width: min(1200px, calc(100% - 32px));
  --heading-font: "Aptos Display", "Segoe UI Variable Display", system-ui, sans-serif;
  --body-font: "Aptos", "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--body-font);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
iframe { width: 100%; border: 0; }

.site-shell { width: var(--content-width); margin: 20px auto 48px; }

.topbar { position: relative; top: 0; z-index: 20; margin-bottom: 24px; }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--surface-dark);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand-name {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--surface-dark);
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}
.brand-kicker,
.card-kicker,
.mini-kicker,
.timeline-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-kicker { color: var(--ink-soft); margin-bottom: 2px; font-size: 11px; letter-spacing: 0.14em; }
.brand-title { margin: 0; font-size: 14px; line-height: 1.25; font-weight: 700; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px 10px; border-radius: 10px; font: inherit; }
.primary-nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-link-parent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-link-parent::after {
  content: "\25BE";
  font-size: 11px;
  line-height: 1;
}
.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}
.nav-sublink {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.is-active { background: rgba(24, 53, 59, 0.08); color: var(--ink); }
.nav-sublink:hover,
.nav-sublink:focus-visible { background: rgba(24, 53, 59, 0.08); color: var(--ink); outline: none; }
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu { display: flex; }
.nav-dropdown:hover .nav-link,
.nav-dropdown:focus-within .nav-link { background: rgba(24, 53, 59, 0.08); color: var(--ink); }

.hero-panel,
.page-panel {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-panel {
  padding: 44px;
  color: #f0f4f8;
  background: linear-gradient(145deg, #1b2a3d 0%, #152234 100%);
}
.page-panel {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.hero-grid,
.split-grid,
.footer-grid,
.quote-grid,
.download-grid,
.card-grid,
.timeline-grid,
.pill-grid,
.feature-band,
.metrics-strip {
  display: grid;
  gap: 18px;
}
.hero-grid { grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr); align-items: end; }
.split-grid { grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); }
.footer-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
.quote-grid,
.download-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid,
.timeline-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pill-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-band { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 20px; }
.metrics-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; }

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(240, 244, 248, 0.12);
  color: #f0f4f8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-title,
.page-title,
.section-heading,
.card-title,
.hero-aside h2,
.mini-card h3,
.process-step h3,
.download-card h3,
.faq-item h3,
.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}
.hero-title,
.page-title { font-size: clamp(36px, 5vw, 66px); line-height: 0.98; }
.page-title { color: var(--ink); font-size: clamp(34px, 4vw, 54px); }
.hero-copy,
.page-copy,
.section-copy,
.card-copy,
.hero-aside p,
.mini-card p,
.mini-card li,
.download-card p,
.faq-item p,
.process-step p,
.site-footer p,
.site-footer li,
.site-footer a {
  line-height: 1.7;
}
.hero-copy { max-width: 760px; color: rgba(240, 244, 248, 0.82); font-size: 18px; }
.page-copy,
.section-copy,
.card-copy,
.mini-card p,
.mini-card li,
.download-card p,
.faq-item p,
.process-step p { color: var(--ink-soft); }
.section-copy { margin: 0; max-width: 760px; font-size: 16px; }
.section { margin-top: 26px; padding: 34px; border-radius: var(--radius-xl); background: var(--surface); border: 1px solid var(--line); }
.section-intro { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.framework-includes-head {
  align-items: center;
}

.framework-includes-head .button {
  flex: 0 0 auto;
  white-space: nowrap;
}
.section-heading { font-size: clamp(28px, 3vw, 42px); }

.metric-card,
.info-card,
.quote-card,
.download-card,
.process-step,
.faq-item,
.table-card,
.embed-card,
.hero-aside,
.highlight-panel,
.mini-card,
.feature-chip {
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.metric-card,
.info-card,
.quote-card,
.download-card,
.process-step,
.faq-item,
.table-card,
.embed-card,
.hero-aside,
.highlight-panel,
.mini-card { padding: 24px; }
.feature-chip { padding: 16px 18px; }
.feature-chip strong { display: block; margin-bottom: 5px; font-size: 16px; }
.feature-chip span { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.hero-aside {
  background: rgba(255, 255, 255, 0.06);
  color: #f0f4f8;
}
.hero-aside p { color: rgba(240, 244, 248, 0.82); }
.highlight-panel { background: rgba(27, 108, 138, 0.04); border-color: var(--line); }
.metric-label { display: block; margin-bottom: 8px; color: var(--ink-soft); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }
.metric-value { display: block; margin-bottom: 4px; font-size: 32px; font-weight: 800; line-height: 1; }
.metric-copy { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.cta-row,
.status-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
}
.button-primary { background: var(--accent); color: #ffffff; box-shadow: 0 4px 12px rgba(27, 108, 138, 0.18); }
.button-primary:hover { background: var(--accent-deep); }
.button-secondary { background: var(--surface-strong); border: 1px solid var(--line); }
.button-quiet { color: var(--accent); background: var(--teal-soft); }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24, 53, 59, 0.06);
  font-size: 13px;
}
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--accent); }
.list { margin: 16px 0 0; padding-left: 18px; color: var(--ink-soft); line-height: 1.7; }
.journey-list { display: grid; gap: 12px; }
.journey-row { padding: 16px 18px; border-radius: 18px; background: rgba(255, 251, 244, 0.84); border: 1px solid var(--line); }
.journey-row strong { display: block; margin-bottom: 6px; }
.pull-quote { margin: 0; font-family: var(--heading-font); font-size: 26px; line-height: 1.3; }
.table-like { display: grid; gap: 12px; }
.table-row { display: grid; grid-template-columns: 1.1fr 1.4fr 1fr 0.6fr 1.2fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.table-row:last-child { border-bottom: 0; padding-bottom: 0; }
.table-head { padding-top: 0; color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.table-cell { color: var(--ink-soft); font-size: 14px; line-height: 1.5; }
.table-cell strong { display: block; margin-bottom: 4px; color: var(--ink); }
.embed-shell { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface-strong); }
.embed-shell iframe { display: block; min-height: 840px; background: #ffffff; }

@media (max-width: 820px) {
  .framework-includes-head {
    display: grid;
    justify-content: start;
    align-items: start;
  }
}
.aside-stack { display: grid; gap: 16px; }
.site-footer { margin-top: 28px; padding: 30px; border-radius: var(--radius-xl); background: var(--surface-dark); color: rgba(240, 244, 248, 0.82); }
.site-footer h2,
.site-footer h3 { color: #f0f4f8; }
.site-footer ul { margin: 0; padding-left: 18px; }
.footer-update {
  color: #f0f4f8;
  line-height: 1.7;
}
.footer-update strong { font-weight: 700; }
.footer-note { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(240, 244, 248, 0.14); font-size: 14px; }
.site-footer-minimal .footer-note { margin-top: 0; padding-top: 0; border-top: 0; }
.site-footer-minimal .footer-update + .footer-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(240, 244, 248, 0.14);
}

@media (max-width: 1040px) {
  .hero-grid,
  .split-grid,
  .footer-grid,
  .quote-grid,
  .download-grid,
  .card-grid,
  .timeline-grid,
  .pill-grid,
  .feature-band,
  .metrics-strip { grid-template-columns: 1fr 1fr; }
  .hero-grid,
  .split-grid,
  .footer-grid,
  .quote-grid,
  .download-grid { grid-template-columns: 1fr; }
  .table-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .site-shell { width: min(100% - 20px, 1200px); margin-top: 12px; }
  .topbar-inner { border-radius: 28px; align-items: flex-start; }
  .menu-toggle { display: inline-flex; }
  .primary-nav { display: none; width: 100%; padding-top: 10px; justify-content: flex-start; }
  .topbar.is-open .primary-nav { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-menu {
    position: static;
    min-width: 0;
    margin-top: 6px;
    display: flex;
    box-shadow: none;
    background: rgba(26, 35, 50, 0.03);
    border-color: var(--line);
  }
  .brand-name { min-height: 40px; padding: 10px 14px; font-size: 13px; }
  .hero-panel,
  .section,
  .page-panel,
  .site-footer { padding: 24px; }
  .hero-title,
  .page-title { font-size: clamp(32px, 9vw, 50px); }
  .hero-copy { font-size: 16px; }
  .card-grid,
  .timeline-grid,
  .pill-grid,
  .feature-band,
  .metrics-strip,
  .table-row { grid-template-columns: 1fr; }
  .embed-shell iframe { min-height: 720px; }
}
