:root {
  --bg: #ffffff;
  --ink: #0f2436;
  --body: #5b7a8c;
  --label: #234154;
  --purple: #3fae8f;
  --purple-dark: #2f806d;
  --purple-soft: #edf8f5;
  --border: #e4e1d9;
  --dark: #0f2436;
  --ruby: #9d3f4a;
  --magenta: #3fae8f;
  --green: #3fae8f;
  --brand-cream: #f6f4f0;
  --shadow: rgba(50,50,93,0.25) 0px 30px 45px -30px, rgba(0,0,0,0.1) 0px 18px 36px -18px;
  --ambient: rgba(23,23,23,0.08) 0px 15px 35px 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01";
}
a { color: inherit; text-decoration: none; }
p { color: var(--body); font-size: 18px; line-height: 1.45; font-weight: 300; margin: 0; }

.container { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.82); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(229,237,245,.7); }
.nav { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Manrope', system-ui, sans-serif; font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; color: transparent; overflow: visible; background: transparent; border-radius: 0; box-shadow: none; font-size: 0; line-height: 0; }
.brand-mark svg { width: 34px; height: 34px; display: block; }
.brand-logo-img { display: block; width: 152px; height: auto; }
.nav-links { display: flex; gap: 28px; color: var(--label); font-size: 15px; font-weight: 400; }
.nav-links a:hover { color: var(--purple-dark); }
.nav-cta, .button { display: inline-flex; align-items: center; justify-content: center; border-radius: 4px; padding: 10px 16px; font-size: 16px; font-weight: 400; line-height: 1; transition: .18s ease; }
.nav-cta, .button.primary { background: var(--purple); color: #fff; box-shadow: rgba(50,50,93,.18) 0 12px 24px -12px; }
.nav-cta:hover, .button.primary:hover { background: var(--purple-dark); transform: translateY(-1px); }
.button.ghost { color: var(--purple-dark); border: 1px solid rgba(63,174,143,.38); background: #fff; }
.button.ghost:hover { background: rgba(63,174,143,.07); }

.hero { padding: 96px 0 72px; }
.eyebrow { color: var(--purple); font-family: 'Source Code Pro', ui-monospace, monospace; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.eyebrow.dark { color: #a8dcca; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
h1, h2, h3 { margin: 0; color: var(--ink); font-weight: 300; letter-spacing: -0.96px; }
h1 { font-size: clamp(44px, 6vw, 68px); line-height: 1.02; max-width: 720px; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.08; }
h3 { font-size: 26px; line-height: 1.12; letter-spacing: -0.26px; }
.lead { font-size: 22px; line-height: 1.42; margin-top: 24px; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.microcopy { font-size: 14px; margin-top: 18px; color: var(--label); }

.hero-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 22px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; inset: -80px -80px auto auto; width: 220px; height: 220px; background: radial-gradient(circle, rgba(63,174,143,.24), rgba(63,174,143,0)); }
.card-topline { display: flex; justify-content: space-between; align-items: center; font-family: 'Source Code Pro', monospace; font-size: 12px; color: var(--label); margin-bottom: 20px; position: relative; z-index: 1; }
.status { color: #236b5c; background: rgba(63,174,143,.14); border: 1px solid rgba(63,174,143,.35); border-radius: 4px; padding: 3px 7px; }
.brief-list { display: grid; gap: 12px; position: relative; z-index: 1; }
.brief-item { border: 1px solid var(--border); border-radius: 6px; padding: 14px; display: flex; align-items: baseline; gap: 12px; background: rgba(255,255,255,.78); }
.brief-item strong { font-size: 32px; font-weight: 300; color: var(--purple); font-feature-settings: "tnum"; min-width: 44px; }
.brief-item span { color: var(--body); }
.workflow-panel { margin-top: 18px; padding: 18px; border-radius: 6px; background: var(--purple-soft); border: 1px solid #cfe7df; position: relative; z-index: 1; }
.panel-label { color: var(--purple); font-family: 'Source Code Pro', monospace; font-size: 12px; margin-bottom: 8px; }
.workflow-panel p { font-size: 16px; margin-top: 10px; }

.section { padding: 86px 0; }
.section-heading { max-width: 720px; margin-bottom: 36px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p { margin-top: 16px; }
.problem-section, .trust-section { padding: 88px 0; background: var(--dark); color: #fff; }
.problem-section h2, .trust-section h2 { color: #fff; }
.problem-section p, .trust-section p { color: rgba(255,255,255,.72); }
.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: start; }
.problem-copy { display: grid; gap: 18px; }

.pricing-card { display: flex; justify-content: space-between; gap: 24px; align-items: center; border: 1px solid var(--border); border-radius: 8px; padding: 32px; box-shadow: var(--shadow); background: #fff; }
.pricing-card h3 { font-size: 38px; margin: 14px 0 10px; }
.badge { display: inline-flex; color: #236b5c; background: rgba(63,174,143,.14); border: 1px solid rgba(63,174,143,.35); border-radius: 4px; padding: 4px 8px; font-size: 13px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { border: 1px solid var(--border); border-radius: 6px; padding: 24px; background: #fff; transition: .18s ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--ambient); }
.feature-card span { font-family: 'Source Code Pro', monospace; color: var(--purple); font-size: 12px; font-weight: 600; }
.feature-card h3 { margin-top: 18px; margin-bottom: 12px; }
.feature-card p { font-size: 16px; }
.trust-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.trust-list li { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.86); padding: 14px 16px; border-radius: 6px; font-size: 17px; }
.final-cta-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 42px; align-items: center; }
.final-cta-grid p { margin-top: 16px; }
.cta-card { border: 1px solid var(--border); border-radius: 8px; padding: 30px; box-shadow: var(--shadow); }
.cta-card p { font-size: 16px; margin: 14px 0 22px; }
.contact-section { padding: 88px 0; background: linear-gradient(180deg, #fbfcff, #fff); border-top: 1px solid var(--border); }
.blog-preview-section { padding: 88px 0; background: #fbfcff; border-top: 1px solid var(--border); }
.blog-preview-grid, .blog-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-index-grid { padding-bottom: 58px; }
.blog-index-grid.secondary { padding-bottom: 88px; }
.blog-section-heading { padding: 0 0 24px; }
.blog-section-heading.compact { padding-top: 18px; }
.blog-section-heading h2 { max-width: 760px; }
.blog-card { border: 1px solid var(--border); border-radius: 8px; padding: 26px; background: #fff; box-shadow: rgba(23,23,23,0.04) 0 10px 24px; transition: .18s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--ambient); }
.blog-card.featured { grid-column: span 2; background: linear-gradient(135deg, #fff, var(--purple-soft)); }
.blog-card h2, .blog-card h3 { margin-bottom: 12px; }
.blog-card p { font-size: 16px; margin-bottom: 18px; }
.blog-more { margin-top: 22px; }
.blog-hero { padding: 86px 0 56px; }
.blog-hero h1 { max-width: 900px; }
.blog-cta { border: 1px solid var(--border); border-radius: 10px; padding: 36px; margin-bottom: 88px; background: var(--purple-soft); }
.blog-cta p { margin: 12px 0 22px; }
.text-link { color: var(--purple); font-weight: 500; }
.article { max-width: 820px; padding: 72px 0 86px; }
.article h1 { margin: 20px 0 18px; }
.article h2 { font-size: 32px; margin: 42px 0 14px; }
.article p { margin-bottom: 18px; }
.article ul { color: var(--body); font-size: 18px; line-height: 1.5; font-weight: 300; padding-left: 24px; }
.article li { margin-bottom: 10px; }
.article-meta { font-size: 15px; color: var(--label); margin-bottom: 28px; }
.article-sources { border-top: 1px solid var(--border); margin-top: 48px; padding-top: 10px; }
.article-sources h2 { font-size: 26px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.contact-grid p strong { color: var(--ink); font-weight: 500; }
.contact-points { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.contact-points li { color: var(--label); border: 1px solid var(--border); border-radius: 6px; padding: 12px 14px; background: #fff; }
.contact-form { display: grid; gap: 18px; border: 1px solid var(--border); border-radius: 8px; padding: 28px; background: #fff; box-shadow: var(--shadow); }
.form-row { display: grid; gap: 18px; }
.two-fields { grid-template-columns: 1fr 1fr; }
.contact-form label { display: grid; gap: 8px; color: var(--label); font-size: 15px; font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #cad7e5; border-radius: 5px; padding: 12px 13px; color: var(--ink); background: #fff; font: inherit; font-size: 16px; outline: none; transition: border-color .18s ease, box-shadow .18s ease; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(63,174,143,.14); }
.contact-form button { border: 0; cursor: pointer; width: fit-content; }
.form-note { font-size: 13px; color: var(--body); }
.hidden-field { display: none !important; }
.footer { border-top: 1px solid var(--border); padding: 28px 0; color: var(--body); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; }
.footer-inner span:first-child { color: var(--ink); font-weight: 500; }
.thank-you-page { min-height: 100vh; display: grid; place-items: center; padding: 48px 0; background: linear-gradient(180deg, #fbfcff, #fff); }
.thank-you-card { max-width: 720px; border: 1px solid var(--border); border-radius: 10px; padding: 42px; background: #fff; box-shadow: var(--shadow); }
.thank-you-card .brand { margin-bottom: 42px; }
.thank-you-card h1 { margin-bottom: 20px; }
.thank-you-card .button { margin-top: 30px; }
.thank-you-card strong { color: var(--ink); font-weight: 500; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero { padding: 68px 0 48px; }
  .hero-grid, .two-col, .final-cta-grid, .contact-grid, .two-fields, .blog-preview-grid, .blog-index-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .cards-grid { grid-template-columns: 1fr; }
  .pricing-card { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1080px); }
  .nav { height: 64px; }
  .nav-cta { display: none; }
  h1 { font-size: 42px; }
  .lead { font-size: 19px; }
}

.article-cta, .article-related, .scorecard { border: 1px solid var(--border); border-radius: 10px; padding: 26px; margin: 42px 0; background: var(--purple-soft); }
.article-related { background: #fff; }
.article-cta h2, .article-related h2, .scorecard h2 { margin-top: 0; }
.article a { color: var(--purple-dark); text-decoration: underline; text-underline-offset: 3px; }
.article .button { text-decoration: none; color: #fff; }
.article .button.ghost { color: var(--purple-dark); }
.article ol { color: var(--body); font-size: 18px; line-height: 1.5; font-weight: 300; padding-left: 24px; }
.article ol li { margin-bottom: 10px; }
.blog-index-grid { align-items: stretch; }

.resource-page { background: linear-gradient(180deg, #fbfcff 0, #fff 420px); }
.resource-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); gap: 48px; align-items: center; padding: 86px 0 68px; }
.resource-hero h1 { max-width: 780px; }
.resource-hero .lead { max-width: 680px; }
.readiness-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 24px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.readiness-card::before { content: ""; position: absolute; inset: -90px -70px auto auto; width: 220px; height: 220px; background: radial-gradient(circle, rgba(63,174,143,.24), rgba(63,174,143,0)); pointer-events: none; }
.score-ranges { display: grid; gap: 12px; position: relative; z-index: 1; }
.score-ranges div { border: 1px solid var(--border); border-radius: 6px; padding: 14px 16px; background: rgba(255,255,255,.82); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.score-ranges strong { color: var(--purple); font-size: 30px; line-height: 1; font-weight: 300; font-feature-settings: "tnum"; }
.score-ranges span { color: var(--label); font-size: 15px; }
.checklist-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 42px; align-items: start; padding: 26px 0 88px; }
.checklist-intro { position: sticky; top: 104px; }
.checklist-intro p strong { color: var(--ink); font-weight: 600; }
.checklist-grid { counter-reset: none; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.checklist-grid li { min-height: 132px; margin: 0; padding: 20px; border: 1px solid var(--border); border-radius: 8px; background: #fff; box-shadow: rgba(23,23,23,.035) 0 10px 24px; }
.checklist-grid li span { display: inline-flex; margin-bottom: 18px; font-family: 'Source Code Pro', monospace; color: var(--purple); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.checklist-grid li p { font-size: 16px; color: var(--label); line-height: 1.42; margin: 0; }
.resource-band { background: var(--dark); color: #fff; padding: 82px 0; }
.resource-band h2 { color: #fff; }
.split-resource-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 54px; align-items: start; }
.workflow-list { display: grid; gap: 12px; }
.workflow-list div { display: grid; grid-template-columns: .48fr 1fr; gap: 18px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 7px; background: rgba(255,255,255,.07); }
.workflow-list strong { color: #fff; font-weight: 500; }
.workflow-list span { color: rgba(255,255,255,.72); line-height: 1.45; }
.decision-section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: 88px 0 46px; }
.decision-card { border: 1px solid var(--border); border-radius: 10px; padding: 30px; background: #fff; box-shadow: rgba(23,23,23,.04) 0 10px 24px; }
.decision-card.positive { background: linear-gradient(135deg, #fff, var(--purple-soft)); }
.decision-card h2 { font-size: 34px; margin: 0 0 18px; }
.decision-card ul { margin: 0; padding-left: 22px; color: var(--body); font-size: 17px; line-height: 1.5; font-weight: 300; }
.decision-card li { margin-bottom: 10px; }
.resource-final-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin: 0 auto 46px; }
.resource-final-cta h2 { margin-bottom: 12px; }
.resource-final-cta p { max-width: 680px; margin-bottom: 0; }

@media (max-width: 860px) {
  .resource-hero, .checklist-layout, .split-resource-section, .decision-section { grid-template-columns: 1fr; }
  .checklist-intro { position: static; }
  .checklist-grid { grid-template-columns: 1fr; }
  .workflow-list div { grid-template-columns: 1fr; }
  .resource-final-cta { align-items: flex-start; flex-direction: column; }
}
