:root {
  --navy: #30302F;
  --navy-2: #1F1F1E;
  --blue: #2899D5;
  --blue-dark: #207EAD;
  --teal: #2899D5;
  --gold: #2899D5;
  --ink: #30302F;
  --text: #525557;
  --muted: #F3F8FC;
  --line: #D8EAF4;
  --white: #ffffff;
  --success-bg: #EEF8FC;
  --success-border: #A7D6EF;
  --success-text: #1F6F99;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 20px 46px rgba(48, 48, 47, 0.12);
  --shadow-soft: 0 12px 28px rgba(48, 48, 47, 0.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  padding-top: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 78px 0; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  border: 2px solid var(--blue);
}
.skip-link:focus { left: 10px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216, 234, 244, 0.92);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo { width: 44px; height: 44px; object-fit: contain; flex: 0 0 auto; }
.brand strong { display: block; letter-spacing: -0.02em; }
.brand small { display: block; color: var(--text); font-size: 0.78rem; margin-top: -2px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.93rem;
}
.site-nav a {
  text-decoration: none;
  color: #30302F;
  font-weight: 650;
}
.site-nav a:hover { color: var(--blue); }
.nav-learn {
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(40,153,213,0.30);
  background: rgba(238,247,252,0.90);
  color: var(--blue-dark) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.74);
  margin-left: -7px;
  margin-right: -8px;
}
.nav-learn:hover {
  background: #ffffff;
  border-color: rgba(40,153,213,0.58);
  color: var(--navy) !important;
}
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white) !important;
  box-shadow: 0 10px 22px rgba(48,48,47,0.16);
}
.nav-cta:hover {
  background: var(--navy-2);
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
}
.nav-toggle span { display: block; height: 2px; width: 20px; background: var(--ink); margin: 5px auto; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 96px 0 82px;
  background-color: #EEF7FC;
  background-image:
    linear-gradient(90deg, rgba(238, 247, 252, 0.98) 0%, rgba(238, 247, 252, 0.94) 30%, rgba(238, 247, 252, 0.72) 47%, rgba(238, 247, 252, 0.22) 66%, rgba(238, 247, 252, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(238, 247, 252, 0.52) 100%),
    url('../images/hero-bg-a.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 52px;
  align-items: center;
}
.hero-visual-spacer {
  min-height: 520px;
  pointer-events: none;
}
.hero-copy { min-width: 0; max-width: 720px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.032em; margin: 0; }
h1 { font-size: clamp(2.45rem, 4.4vw, 4.4rem); max-width: 820px; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3vw, 3.1rem); }
h3 { font-size: 1.18rem; }
p { margin: 0; }
.lead {
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  color: var(--text);
  max-width: 720px;
  margin: 24px 0 0;
}

.hero-profile-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.profile-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 14px 9px 11px;
  border: 1px solid rgba(40, 153, 213, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(48, 48, 47, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.profile-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 153, 213, 0.48);
  box-shadow: 0 14px 30px rgba(48, 48, 47, 0.12);
  background: var(--white);
}

.profile-icon-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.linkedin-link {
  color: #2899D5;
}

.resume-link {
  color: var(--blue);
}

.bio-profile-links {
  margin-top: 18px;
  margin-bottom: 2px;
}
.bio-profile-links .profile-icon-link {
  background: rgba(255, 255, 255, 0.96);
}
.hero-actions, .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.compact-actions { margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue); color: var(--white); box-shadow: 0 15px 28px rgba(40, 153, 213, 0.24); }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { background: var(--white); color: var(--navy); border-color: var(--line); }
.button.light { background: rgba(255, 255, 255, 0.12); color: var(--white); border-color: rgba(255, 255, 255, 0.25); }
.button.full { width: 100%; }
.hero-checks, .check-list, .price-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}
.hero-checks { color: #30302F; }
.hero-checks li, .check-list li, .price-card li { position: relative; padding-left: 30px; }
.hero-checks li::before, .check-list li::before, .price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}
.fit-line { margin-top: 22px; color: #525557; font-size: 0.96rem; }
.hero-visual, .image-panel, .visual-card, .feature-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #EEF7FC;
}
.hero-visual img, .image-panel img, .visual-card img, .feature-image-card img { width: 100%; }
.full-width-panel { margin-top: 34px; }

.trust-strip { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-grid div { padding: 18px; border-radius: 18px; background: var(--muted); }
.trust-grid strong { display: block; color: var(--navy); font-size: 1.04rem; }
.trust-grid span { display: block; color: var(--text); font-size: 0.93rem; margin-top: 4px; }

.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 52px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 0.92fr; }
.split p, .section-head p, .contact-grid p, .reason-list p, .feature-copy p, .contact-card p, .timeline-card p, .buyer-card p, .proof-card p { color: var(--text); font-size: 1.03rem; }
.section-head { max-width: 835px; margin-bottom: 32px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.light h2, .section-head.light p, .navy .eyebrow { color: var(--white); }
.section-head.light .eyebrow { color: #AEE0F4; }

.cards.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card, .fit-card, .price-card, .lead-form, .contact-card, .service-card, .process-grid li, blockquote, .outcome-grid div, .feature-copy, .success-message, .faq-list details, .timeline-card, .buyer-card, .proof-card, .card-list, .calendar-card, .call-topics {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.card, .fit-card, .feature-copy, .outcome-grid div, .contact-card, .success-message, .timeline-card, .buyer-card, .proof-card, .card-list, .call-topics { padding: 24px; }
.card, .timeline-card, .buyer-card, .proof-card, .card-list { box-shadow: var(--shadow-soft); }
.card p, .fit-card p, .price-card p, .service-card p, .process-grid p, blockquote, .outcome-grid span, .feature-copy p, .form-note, .success-message span, .proof-card span { color: var(--text); }
.text-link { display: inline-block; margin-top: 18px; color: var(--blue); font-weight: 850; text-decoration: none; }
.muted { background: var(--muted); }

.timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.timeline-card span, .service-card span, .price-card .label {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.timeline-card h3, .buyer-card h3, .proof-card h3 { margin-bottom: 10px; }
.timeline-card strong, .buyer-card strong, .proof-card span {
  display: block;
  color: var(--navy);
  margin-top: 16px;
  font-weight: 850;
}

.booking-section { background: linear-gradient(180deg, #ffffff, #EEF7FC 42%, #F3F8FC); scroll-margin-top: 92px; }
.booking-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 28px; align-items: start; }
.booking-copy { position: sticky; top: 102px; }
.calendar-card { padding: 12px; box-shadow: var(--shadow); overflow: hidden; }
.calendar-card iframe { display: block; width: 100%; border: 0; border-radius: 14px; background: #fff; }
.call-topics { margin-top: 24px; box-shadow: var(--shadow-soft); }
.call-topics .check-list { margin-top: 14px; }
.microcopy { margin-top: 18px; color: var(--navy); font-weight: 800; }

.buyer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.quote-line { font-style: italic; }
.fit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.industry-row span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: #525557; font-weight: 750; font-size: 0.9rem; }

.visual-card { padding: 18px; background: linear-gradient(180deg, #fff, #F3F8FC); }
.visual-card.advisor { max-width: 520px; margin-left: auto; }
.navy { background: radial-gradient(circle at top right, rgba(40, 153, 213, 0.36), transparent 34%), linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 26px; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.14); }
.service-card span { color: #AEE0F4; }
.service-card h3 { color: var(--white); }
.service-card p { color: rgba(255, 255, 255, 0.78); }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow-soft); border: 1px solid var(--line); background: var(--white); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.comparison-table th, .comparison-table td { padding: 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table thead th { background: var(--navy); color: var(--white); }
.comparison-table tbody th { color: var(--navy); width: 18%; }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table td { color: var(--text); }

.assessment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.assessment-list { align-self: stretch; }
.assessment-list h3 { margin-bottom: 14px; }
.assessment-list .check-list { margin-top: 0; }
.accent-list { border-color: rgba(40, 153, 213, 0.35); background: linear-gradient(180deg, #fff, #F3FBFF); }

.proof-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cta-grid-simple { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta-grid-simple p { color: rgba(255, 255, 255, 0.76); max-width: 760px; margin-top: 18px; }
.reason-list { display: grid; gap: 18px; margin-top: 30px; }
.reason-list div { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.reason-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.reason-list h3 { margin-bottom: 8px; }

.faq-wrap { max-width: 900px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 0; overflow: hidden; }
.faq-list summary { cursor: pointer; list-style: none; padding: 22px 24px; font-weight: 850; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 24px; top: 22px; font-size: 1.25rem; color: var(--blue); }
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { padding: 0 24px 24px; color: var(--text); }

.salesforce-cards .card { min-height: 100%; }
.contact-section { scroll-margin-top: 100px; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: start; }
.success-message { display: grid; gap: 6px; margin: 22px 0; background: var(--success-bg); border-color: var(--success-border); }
.success-message strong { color: var(--success-text); }
.contact-card { margin-top: 22px; }
.contact-card h3 { margin-bottom: 14px; }
.contact-card p + p { margin-top: 10px; }
.lead-form { padding: 28px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.lead-form label { display: grid; gap: 8px; color: #30302F; font-weight: 750; margin-bottom: 16px; }
.lead-form input, .lead-form textarea, .lead-form select { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 14px; padding: 14px 15px; font: inherit; color: var(--ink); background: #fff; }
.lead-form textarea { resize: vertical; min-height: 110px; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus, .ai-chat-form input:focus, .ai-chat-form textarea:focus, .nav-toggle:focus, .button:focus, .site-nav a:focus, .ai-chat-toggle:focus, .ai-chat-close:focus { outline: 3px solid rgba(40, 153, 213, 0.28); outline-offset: 2px; }
.form-note { margin-top: 12px; font-size: 0.82rem; line-height: 1.45; }


.ai-chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 75;
}
.ai-chat-toggle {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(48, 48, 47, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ai-chat-toggle:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 20px 38px rgba(48, 48, 47, 0.28); }
.ai-chat-toggle img { width: 58px; height: 58px; border-radius: 999px; object-fit: cover; }
.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(220, 231, 227, 0.95);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(48, 48, 47, 0.25);
}
.ai-chat-panel[hidden] { display: none; }
.ai-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 16px;
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(40, 153, 213, 0.32), transparent 34%), linear-gradient(135deg, var(--navy), var(--navy-2));
}
.ai-chat-header strong { display: block; font-size: 1rem; letter-spacing: -0.01em; }
.ai-chat-header span { display: block; margin-top: 2px; color: rgba(255,255,255,0.78); font-size: 0.82rem; }
.ai-chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.ai-chat-body { padding: 18px; }
.ai-message {
  padding: 13px 14px;
  border-radius: 16px;
  font-size: 0.94rem;
  line-height: 1.45;
}
.ai-message.assistant {
  color: var(--ink);
  background: var(--muted);
  border: 1px solid var(--line);
}
.ai-secure-note {
  margin: 12px 0 14px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 750;
}
.ai-chat-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: #30302F;
  font-size: 0.88rem;
  font-weight: 750;
}
.ai-chat-form input,
.ai-chat-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.ai-chat-form textarea { min-height: 92px; resize: vertical; }
.ai-form-status {
  min-height: 20px;
  margin-top: 10px;
  color: var(--text);
  font-size: 0.84rem;
}

.site-footer { background: var(--navy-2); color: rgba(255, 255, 255, 0.9); padding: 54px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.8fr 0.8fr; gap: 30px; }
.footer-brand small { color: rgba(255, 255, 255, 0.72); }
.site-footer h3 { margin-bottom: 10px; color: var(--white); font-size: 1rem; }
.site-footer p, .site-footer a { color: rgba(255, 255, 255, 0.76); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.legal { padding: 20px 0 28px; margin-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.92rem; color: rgba(255, 255, 255, 0.6); }

@media (max-width: 1180px) {
  .buyer-grid, .proof-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
  .hero {
    min-height: 700px;
    background-image:
      linear-gradient(90deg, rgba(238, 247, 252, 0.98) 0%, rgba(238, 247, 252, 0.9) 36%, rgba(238, 247, 252, 0.46) 64%, rgba(238, 247, 252, 0.08) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(238, 247, 252, 0.54) 100%),
      url('../images/hero-bg-b.webp');
    background-position: center center;
  }
  .hero-grid, .split, .split.reverse, .contact-grid, .footer-grid, .booking-grid, .assessment-grid, .cta-grid-simple { grid-template-columns: 1fr; }
  .hero-visual-spacer { display: none; }
  .booking-copy { position: static; }
  .visual-card.advisor { margin: 0; }
  .fit-grid, .service-grid, .timeline-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .section { padding: 58px 0; }
  .hero {
    min-height: 760px;
    padding: 64px 0 72px;
    background-image:
      linear-gradient(180deg, rgba(238, 247, 252, 0.98) 0%, rgba(238, 247, 252, 0.9) 44%, rgba(238, 247, 252, 0.54) 72%, rgba(238, 247, 252, 0.22) 100%),
      url('../images/hero-bg-c.webp');
    background-position: center bottom;
  }
  .header-inner { height: 72px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: calc(100% + 8px); left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; padding: 16px; gap: 10px; background: rgba(255, 255, 255, 0.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
  .site-nav.is-open { display: flex; }
  .cards.two-col, .trust-grid, .fit-grid, .service-grid, .timeline-grid, .buyer-grid, .proof-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions, .stacked-mobile { flex-direction: column; align-items: stretch; }
  .calendar-card iframe { height: 560px; }
  .table-wrap { margin-left: -2px; margin-right: -2px; }
  .ai-chat-widget { right: 16px; bottom: 16px; }
  .ai-chat-panel { bottom: 72px; }
}
@media (max-width: 560px) {
  h1 { font-size: 2.22rem; }
  h2 { font-size: 1.82rem; }
  .section-head p, .split p, .contact-grid p, .reason-list p, .feature-copy p, .contact-card p, .lead, .timeline-card p, .buyer-card p, .proof-card p { font-size: 1rem; }
  .lead-form, .price-card, blockquote, .timeline-card, .buyer-card, .proof-card, .card-list { padding: 22px; }
  .hero-visual, .image-panel, .visual-card, .calendar-card { border-radius: 20px; }
  .hero { min-height: 820px; }
}

/* Custom Netlify Forms success page */
.thank-you-hero {
  min-height: 66vh;
  display: flex;
  align-items: flex-start;
  background:
    radial-gradient(circle at 78% 18%, rgba(40, 153, 213, 0.16), transparent 34%),
    radial-gradient(circle at 12% 10%, rgba(48, 48, 47, 0.06), transparent 30%),
    linear-gradient(180deg, #EEF7FC 0%, #F3F8FC 52%, #FFFFFF 100%);
}
.thank-you-single {
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.thank-you-card {
  max-width: none;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}
.thank-you-card-single {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.thank-you-card h1 { max-width: 860px; }
.thank-you-card-single .lead {
  max-width: 900px;
  margin-bottom: 0;
}
.thank-you-scheduler {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(40,153,213,0.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}
.scheduler-intro {
  padding: 8px 10px 22px;
  max-width: 900px;
}
.scheduler-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.2vw, 2.45rem);
  letter-spacing: -0.035em;
}
.scheduler-intro p:last-child {
  color: var(--text);
}
.calendar-card {
  overflow: hidden;
}
.calendar-card iframe {
  display: block;
  width: 100%;
  max-width: 100%;
}
.thank-you-nav { justify-content: flex-end; }
@media (max-width: 640px) {
  .thank-you-card, .thank-you-scheduler { padding: 24px; }
  .thank-you-nav { display: none; }
  .calendar-card iframe { height: 680px; }
}

/* Version 32 resource links and subpages */
.contact-resources {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #F3F8FC);
  box-shadow: var(--shadow-soft);
}
.contact-resources h3 {
  margin-bottom: 10px;
}
.contact-resources .resource-intro {
  color: var(--text);
  margin-bottom: 18px;
}
.resource-link-list {
  display: grid;
  gap: 10px;
}
.resource-link-list a {
  display: block;
  padding: 15px 16px;
  border: 1px solid rgba(40, 153, 213, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.resource-link-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(40, 153, 213, 0.48);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(48, 48, 47, 0.10);
}
.resource-link-list strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}
.resource-link-list span {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  margin-top: 4px;
}
.resource-hero {
  padding: 92px 0 72px;
  background:
    radial-gradient(circle at 80% 18%, rgba(40, 153, 213, 0.16), transparent 32%),
    radial-gradient(circle at 12% 12%, rgba(48, 48, 47, 0.07), transparent 30%),
    linear-gradient(180deg, #EEF7FC 0%, #F3F8FC 54%, #FFFFFF 100%);
}
.resource-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 44px;
  align-items: center;
}
.resource-hero-copy {
  max-width: 780px;
}
.resource-media-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.bio-photo-card {
  max-width: 520px;
  margin-left: auto;
}
.bio-photo-card img {
  width: 100%;
  border-radius: 18px;
}
.resource-content-section {
  background: var(--white);
}
.resource-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 38px;
  align-items: start;
}
.resource-article {
  display: grid;
  gap: 22px;
}
.resource-section-block,
.resource-bottom-cta,
.resource-sidebar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.resource-section-block,
.resource-bottom-cta {
  padding: 30px;
}
.resource-section-block h2,
.resource-bottom-cta h2,
.resource-sidebar h2 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  margin-bottom: 12px;
}
.resource-section-block p,
.resource-bottom-cta p,
.resource-sidebar p {
  color: var(--text);
  font-size: 1.03rem;
}
.resource-section-block p + p {
  margin-top: 12px;
}
.resource-check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.resource-check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}
.resource-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}
.resource-bottom-cta {
  background: linear-gradient(180deg, #F3F8FC, #FFFFFF);
}
.resource-bottom-cta .button {
  margin-top: 22px;
}
.resource-sidebar {
  position: sticky;
  top: 102px;
  padding: 24px;
}
.sidebar-links {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
}
.sidebar-links a {
  display: block;
  padding: 12px 13px;
  border: 1px solid rgba(40, 153, 213, 0.18);
  border-radius: 14px;
  background: var(--muted);
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.28;
}
.sidebar-links a:hover {
  border-color: rgba(40, 153, 213, 0.48);
  background: #ffffff;
}
@media (max-width: 1100px) {
  .resource-hero-grid,
  .resource-content-grid {
    grid-template-columns: 1fr;
  }
  .bio-photo-card {
    margin-left: 0;
  }
  .resource-sidebar {
    position: static;
  }
}
@media (max-width: 640px) {
  .resource-hero {
    padding: 64px 0 56px;
  }
  .resource-section-block,
  .resource-bottom-cta,
  .resource-sidebar,
  .contact-resources {
    padding: 22px;
  }
}

/* Version 32 design refinement: resource hub, local videos, and executive subpage layouts */
.contact-grid > div:first-child {
  min-width: 0;
}
.resource-hub {
  margin-top: 34px;
  padding: 0;
  border: 1px solid rgba(40, 153, 213, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 0%, rgba(40,153,213,0.16), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
  box-shadow: 0 24px 58px rgba(48, 48, 47, 0.13);
  overflow: hidden;
}
.resource-hub-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(40,153,213,0.16);
}
.resource-hub-header h3 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.resource-hub-header p:last-child {
  margin: 0;
  color: var(--text);
  max-width: 54ch;
}
.resource-feature-card {
  margin: 22px 22px 18px;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--navy) 0%, #1f4f66 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(48, 48, 47, 0.16);
}
.resource-feature-card h4 {
  margin: 10px 0 8px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.resource-feature-card p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.82);
}
.resource-feature-card a {
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.resource-tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 22px 24px;
}
.resource-tile {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px 15px;
  border: 1px solid rgba(40,153,213,0.16);
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  text-decoration: none;
  color: var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.resource-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(40,153,213,0.46);
  background: #fff;
  box-shadow: 0 16px 34px rgba(48, 48, 47, 0.11);
}
.resource-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(40,153,213,0.11);
  color: var(--blue-dark);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.resource-copy strong,
.resource-copy em {
  display: block;
}
.resource-copy strong {
  font-size: 0.98rem;
  line-height: 1.24;
  letter-spacing: -0.01em;
}
.resource-copy em {
  margin-top: 4px;
  color: var(--text);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.34;
}
.resource-arrow {
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 1.1rem;
}

.resource-page-shell {
  background: #fff;
}
.resource-hero-v2 {
  padding: 86px 0 62px;
  background:
    radial-gradient(circle at 82% 12%, rgba(40,153,213,0.25), transparent 28%),
    radial-gradient(circle at 10% 6%, rgba(255,255,255,0.10), transparent 26%),
    linear-gradient(135deg, #30302F 0%, #254d61 52%, #EEF7FC 52%, #FFFFFF 100%);
}
.resource-hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
}
.resource-hero-v2-copy {
  color: #fff;
  max-width: 780px;
}
.resource-hero-v2-copy .eyebrow {
  color: rgba(255,255,255,0.74);
}
.resource-hero-v2-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 5.6vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}
.resource-hero-v2-copy .lead {
  color: rgba(255,255,255,0.84);
  max-width: 760px;
}
.resource-breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-weight: 800;
}
.resource-breadcrumb:hover { color: #fff; }
.resource-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}
.resource-chip-row span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}
.resource-hero-v2-media {
  min-width: 0;
}
.resource-video-shell,
.executive-profile-card {
  position: relative;
  border-radius: 34px;
  padding: 16px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 28px 70px rgba(23, 47, 57, 0.25);
  border: 1px solid rgba(255,255,255,0.72);
}
.local-video-shell video {
  display: block;
  width: min(100%, 420px);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 24px;
  background: #101010;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.video-frame-label {
  position: absolute;
  z-index: 2;
  left: 28px;
  top: 28px;
  max-width: calc(100% - 56px);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(48,48,47,0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.video-placeholder-card {
  min-height: 420px;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.80), rgba(255,255,255,0.95)),
    url('../images/systems-alignment.webp') center/cover;
}
.placeholder-inner {
  margin-top: 140px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(40,153,213,0.18);
}
.placeholder-inner h2 {
  margin: 8px 0 8px;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}
.placeholder-inner p {
  color: var(--text);
}
.placeholder-inner code {
  white-space: nowrap;
}
.placeholder-kicker {
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.executive-profile-card {
  margin: 0;
  overflow: hidden;
}
.executive-photo-wrap {
  border-radius: 26px;
  overflow: hidden;
  background: #EEF7FC;
}
.executive-photo-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.executive-profile-card figcaption {
  display: grid;
  gap: 4px;
  padding: 18px 6px 4px;
}
.executive-profile-card figcaption strong {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.executive-profile-card figcaption span {
  color: var(--text);
  font-weight: 650;
}
.resource-quick-strip {
  padding: 0 0 34px;
  background: #fff;
}
.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -30px;
  position: relative;
  z-index: 4;
}
.quick-card {
  padding: 24px;
  border: 1px solid rgba(40,153,213,0.18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(48, 48, 47, 0.10);
}
.quick-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.quick-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
}
.resource-body-v2 {
  padding-top: 46px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}
.resource-body-grid-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}
.resource-story {
  display: grid;
  gap: 20px;
}
.resource-section-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(40,153,213,0.16);
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 16px 40px rgba(48, 48, 47, 0.075);
}
.section-number {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(40,153,213,0.10);
  color: var(--blue-dark);
  font-weight: 950;
  letter-spacing: -0.03em;
}
.resource-section-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.45vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.resource-section-card p {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
}
.resource-section-card p + p {
  margin-top: 13px;
}
.premium-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin-top: 20px;
}
.premium-list li {
  padding: 12px 12px 12px 38px;
  border-radius: 15px;
  background: #f5fafd;
  color: #3f4548;
  line-height: 1.35;
}
.premium-list li::before {
  left: 14px;
  top: 12px;
}
.resource-action-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin-top: 12px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy) 0%, #1f4f66 100%);
  color: #fff;
  box-shadow: 0 22px 54px rgba(48, 48, 47, 0.16);
}
.resource-action-band .eyebrow,
.resource-action-band p {
  color: rgba(255,255,255,0.76);
}
.resource-action-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.resource-action-band .button.primary {
  background: #fff;
  color: var(--navy);
  white-space: nowrap;
}
.resource-sidebar-v2 {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 16px;
}
.sidebar-panel {
  padding: 22px;
  border: 1px solid rgba(40,153,213,0.18);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(48, 48, 47, 0.08);
}
.sidebar-panel h2 {
  margin: 0 0 14px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.toc-links,
.resource-mini-links {
  display: grid;
  gap: 8px;
}
.toc-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 750;
  line-height: 1.3;
}
.toc-links a:hover { color: var(--blue-dark); }
.resource-mini-links a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 15px;
  background: var(--muted);
  color: var(--navy);
  text-decoration: none;
  font-weight: 820;
  line-height: 1.25;
}
.resource-mini-links a:hover { background: #fff; box-shadow: inset 0 0 0 1px rgba(40,153,213,0.24); }
.resource-mini-links span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: rgba(40,153,213,0.12);
  color: var(--blue-dark);
  font-weight: 950;
  font-size: 0.82rem;
}
@media (max-width: 1100px) {
  .resource-hero-v2 {
    background: linear-gradient(180deg, #30302F 0%, #254d61 58%, #EEF7FC 58%, #fff 100%);
  }
  .resource-hero-v2-grid,
  .resource-body-grid-v2 {
    grid-template-columns: 1fr;
  }
  .resource-sidebar-v2 { position: static; }
}
@media (max-width: 820px) {
  .quick-strip-grid,
  .premium-list {
    grid-template-columns: 1fr;
  }
  .resource-action-band {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .resource-hub-header,
  .resource-feature-card,
  .resource-section-card,
  .resource-action-band {
    padding: 22px;
  }
  .resource-hero-v2 {
    padding: 62px 0 44px;
  }
  .resource-hero-v2-copy h1 {
    font-size: clamp(2.3rem, 15vw, 3.25rem);
  }
  .resource-section-card {
    grid-template-columns: 1fr;
  }
  .section-number {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }
  .resource-tile {
    grid-template-columns: auto 1fr;
  }
  .resource-arrow {
    display: none;
  }
  .placeholder-inner code {
    white-space: normal;
  }
}

/* Version 34 homepage and resource-page design polish */
.hero {
  min-height: 660px;
  padding: 86px 0 76px;
}
.hero .lead {
  max-width: 680px;
}
.trust-strip {
  position: relative;
  z-index: 3;
}
.resource-library-section {
  scroll-margin-top: 92px;
  padding: 76px 0 86px;
  background:
    radial-gradient(circle at 86% 14%, rgba(40,153,213,0.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
  border-bottom: 1px solid rgba(40,153,213,0.12);
}
.resource-library-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.58fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 30px;
}
.resource-library-intro h2 {
  max-width: 760px;
}
.resource-library-intro > p {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.55;
  padding: 22px 24px;
  border: 1px solid rgba(40,153,213,0.16);
  border-radius: 24px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 32px rgba(48,48,47,0.06);
}

.resource-library-intro > p a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.resource-library-intro > p a:hover {
  color: var(--blue-dark);
}

.resource-index-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.resource-index-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(40,153,213,0.18);
  border-radius: 24px;
  background: rgba(255,255,255,0.88);
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(48,48,47,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.resource-index-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40,153,213,0.48);
  background: #fff;
  box-shadow: 0 24px 52px rgba(48,48,47,0.13);
}
.resource-index-card.featured {
  background: rgba(255,255,255,0.88);
  color: var(--navy);
  border-color: rgba(40,153,213,0.18);
}
.resource-index-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.resource-index-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(40,153,213,0.12);
  color: var(--blue-dark);
  font-weight: 950;
}
.resource-index-card.featured .resource-index-number {
  background: rgba(40,153,213,0.12);
  color: var(--blue-dark);
}
.resource-index-tag {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(40,153,213,0.10);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.resource-index-card.featured .resource-index-tag {
  background: rgba(40,153,213,0.10);
  color: var(--blue-dark);
}
.resource-index-tag.hand-drawn-focus {
  position: relative;
  isolation: isolate;
  z-index: 0;
}
.resource-index-tag.hand-drawn-focus::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  left: 50%;
  top: 50%;
  width: calc(221% + 78px);
  height: calc(100% + 38px);
  transform: translate(-50%, -50%) rotate(-3deg);
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20220%20110%22%3E%3Cpath%20d%3D%22M28%2058%20C18%2034%2C%2064%2014%2C%20111%2013%20C156%2012%2C%20201%2029%2C%20205%2056%20C209%2085%2C%20171%2098%2C%20116%2097%20C63%2096%2C%2020%2086%2C%2018%2062%20C17%2050%2C%2020%2039%2C%2028%2032%22%20fill%3D%22none%22%20stroke%3D%22%23ff2b24%22%20stroke-width%3D%228%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.resource-index-card strong {
  display: block;
  margin-top: 2px;
  font-size: 1.16rem;
  line-height: 1.14;
  letter-spacing: -0.025em;
}
.resource-index-card em {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.42;
}
.resource-index-card.featured em {
  color: var(--text);
}
.resource-index-link {
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 0.92rem;
}
.resource-index-card.featured .resource-index-link {
  color: var(--blue-dark);
}
.contact-resource-panel {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(40,153,213,0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 0%, rgba(40,153,213,0.14), transparent 34%),
    #ffffff;
  box-shadow: 0 18px 46px rgba(48,48,47,0.09);
}
.contact-resource-panel-head h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 1.7vw, 1.68rem);
  letter-spacing: -0.03em;
}
.contact-resource-panel-head p:last-child {
  margin-bottom: 20px;
  color: var(--text);
}
.contact-resource-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-bottom: 18px;
}
.contact-resource-mini-grid a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 9px 10px;
  border-radius: 15px;
  background: var(--muted);
  color: var(--navy);
  text-decoration: none;
  font-weight: 820;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.contact-resource-mini-grid a:hover {
  transform: translateX(3px);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(40,153,213,0.24);
}
.contact-resource-mini-grid span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: rgba(40,153,213,0.12);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
}
.contact-resource-mini-grid strong {
  font-size: 0.94rem;
}

/* Make resource-page hero areas consistently dark so white text remains legible. */
@media (max-width: 1100px) {
  .resource-hero-v2 {
    background:
      radial-gradient(circle at 88% 18%, rgba(40,153,213,0.34), transparent 30%),
      radial-gradient(circle at 12% 2%, rgba(255,255,255,0.12), transparent 28%),
      linear-gradient(135deg, #1f1f1e 0%, #293438 45%, #1d5874 100%);
  }
}
.resource-hero-v2 {
  padding: 88px 0 74px;
  background:
    radial-gradient(circle at 88% 18%, rgba(40,153,213,0.34), transparent 30%),
    radial-gradient(circle at 12% 2%, rgba(255,255,255,0.12), transparent 28%),
    linear-gradient(135deg, #1f1f1e 0%, #293438 45%, #1d5874 100%);
}
.resource-hero-v2-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.62fr);
  gap: 48px;
}
.resource-hero-v2-copy h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4.7vw, 4.55rem);
  line-height: 0.99;
}
.resource-hero-v2-copy .lead {
  color: rgba(255,255,255,0.86);
  max-width: 690px;
}
.resource-breadcrumb {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.resource-video-shell,
.executive-profile-card {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 30px 76px rgba(0,0,0,0.28);
}
.resource-quick-strip {
  background: linear-gradient(180deg, #f4f9fc 0%, #ffffff 100%);
}
.quick-strip-grid {
  margin-top: -34px;
}
.resource-body-v2 {
  padding-top: 56px;
  padding-bottom: 86px;
}
.resource-section-card {
  border-color: rgba(40,153,213,0.18);
}
.sidebar-panel {
  border-color: rgba(40,153,213,0.20);
}

@media (max-width: 1080px) {
  .resource-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .resource-library-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 64px 0 58px;
  }
  .resource-library-section {
    padding: 58px 0 66px;
  }
  .resource-index-grid {
    grid-template-columns: 1fr;
  }
  .resource-index-card {
    min-height: 190px;
  }
  .contact-resource-panel {
    padding: 22px;
  }
  .resource-hero-v2 {
    padding: 62px 0 50px;
  }
  .resource-hero-v2-grid {
    gap: 34px;
  }
}


/* Version 35 requested polish */
.lead-form input,
.lead-form textarea,
.lead-form select {
  font-weight: 500;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #6f7a80;
  font-weight: 450;
  opacity: 1;
}
.lead-form select option {
  font-weight: 500;
}
.booking-copy h2 + p {
  margin-top: 22px;
}
.resource-quick-strip {
  padding: 38px 0 28px;
}
.quick-strip-grid {
  margin-top: 0;
}
.contact-resource-panel-head h3 {
  margin-bottom: 12px;
}
.contact-resource-panel-head p:last-child {
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .resource-quick-strip {
    padding-top: 30px;
  }
}

@media (max-width: 900px) {
  .site-nav .nav-learn, .site-nav .nav-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}


/* VERSION 45 mobile responsiveness hardening
   Keeps the resource/subpage hero content and local videos from overlapping on phones and tablets. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

video,
iframe,
embed,
object {
  max-width: 100%;
}

.resource-hero-v2-copy,
.resource-hero-v2-media,
.resource-video-shell,
.local-video-shell,
.executive-profile-card,
.resource-body-grid-v2,
.resource-story,
.resource-section-card {
  min-width: 0;
}

@media (max-width: 1100px) {
  .resource-hero-v2-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    align-items: start !important;
  }

  .resource-hero-v2-copy {
    order: 1;
    position: relative;
    z-index: 2;
    max-width: 100%;
  }

  .resource-hero-v2-media {
    order: 2;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
  }

  .resource-video-shell,
  .executive-profile-card {
    width: min(100%, 520px);
    max-width: 100%;
    margin: 0 auto;
  }

  .local-video-shell video {
    width: min(100%, 380px);
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .resource-body-grid-v2 {
    grid-template-columns: 1fr !important;
  }

  .resource-sidebar-v2 {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 820px) {
  .resource-hero-v2 {
    padding: 58px 0 42px;
  }

  .resource-hero-v2-grid {
    gap: 28px !important;
  }

  .resource-hero-v2-copy h1 {
    font-size: clamp(2.08rem, 11.5vw, 3.15rem);
    line-height: 1.03;
    letter-spacing: -0.052em;
  }

  .resource-hero-v2-copy .lead {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .resource-chip-row {
    gap: 8px;
    margin: 18px 0 24px;
  }

  .resource-chip-row span {
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  .resource-video-shell,
  .executive-profile-card {
    border-radius: 26px;
    padding: 12px;
  }

  .video-frame-label {
    position: static;
    display: inline-flex;
    max-width: 100%;
    margin: 0 0 10px;
    white-space: normal;
  }

  .local-video-shell video {
    width: min(100%, 340px);
    border-radius: 20px;
  }

  .resource-quick-strip {
    padding-top: 24px;
  }

  .quick-strip-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
    margin-top: 0 !important;
  }

  .resource-body-v2 {
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .resource-section-card {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding: 24px;
  }

  .premium-list {
    grid-template-columns: 1fr !important;
  }

  .resource-action-band {
    grid-template-columns: 1fr !important;
    padding: 24px;
  }

  .resource-action-band .button.primary,
  .resource-action-band .button.secondary,
  .resource-action-band .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .resource-hero-v2 {
    padding: 48px 0 34px;
  }

  .resource-breadcrumb {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
  }

  .resource-hero-v2-copy h1 {
    font-size: clamp(1.95rem, 11vw, 2.75rem);
  }

  .resource-hero-v2-copy .hero-actions,
  .resource-hero-v2-copy .stacked-mobile {
    width: 100%;
  }

  .resource-hero-v2-copy .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .resource-video-shell,
  .executive-profile-card,
  .resource-section-card,
  .resource-action-band,
  .quick-card,
  .sidebar-panel {
    border-radius: 22px;
  }

  .resource-video-shell {
    padding: 10px;
  }

  .local-video-shell video {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
  }

  .video-frame-label {
    font-size: 0.72rem;
    border-radius: 14px;
  }

  .resource-section-card {
    padding: 20px;
  }

  .section-number {
    width: 44px;
    height: 44px;
  }

  .quick-card {
    padding: 20px;
  }

  .resource-mini-links a {
    grid-template-columns: 30px 1fr;
  }

  .resource-mini-links span {
    width: 30px;
    height: 30px;
  }
}


/* VERSION 48: responsive local video safeguards for resource pages */
.resource-hero-v2-grid,
.resource-hero-v2-media,
.resource-video-shell,
.local-video-shell {
  min-width: 0;
}
.resource-video-shell video,
.local-video-shell video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 900px) {
  .resource-hero-v2-grid {
    grid-template-columns: 1fr !important;
  }
  .resource-hero-v2-media {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100%;
    margin-top: 24px;
  }
  .resource-video-shell,
  .local-video-shell {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 560px) {
  .resource-video-shell,
  .local-video-shell {
    max-width: 100%;
    border-radius: 22px;
  }
}



.hero-article-link {
  margin: 14px 0 0;
  max-width: 720px;
}
.hero-article-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}
.hero-article-link a:hover,
.hero-article-link a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-article-link a:focus-visible {
  outline: 3px solid rgba(40, 153, 213, 0.32);
  outline-offset: 4px;
  border-radius: 8px;
}

/* Version 63 article system */
.article-page-shell {
  background: #F7FBFE;
  overflow-x: hidden;
}
.article-page-shell *,
.article-page-shell *::before,
.article-page-shell *::after {
  box-sizing: border-box;
}
.article-hero,
.article-listing-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 76px;
  border-bottom: 1px solid rgba(40,153,213,0.14);
}
.article-hero {
  background:
    linear-gradient(90deg, rgba(247,251,254,0.97) 0%, rgba(247,251,254,0.94) 36%, rgba(247,251,254,0.72) 56%, rgba(247,251,254,0.18) 100%),
    url('../images/cto-articles-hero-bg-desktop.webp') center center / cover no-repeat;
}
.article-listing-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(40,153,213,0.18), transparent 34%),
    linear-gradient(135deg, #EAF6FD 0%, #FFFFFF 48%, #F7FBFE 100%);
}
.article-hero::after,
.article-listing-hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -44% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(40,153,213,0.08);
  pointer-events: none;
}
.article-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.64fr);
  gap: 48px;
  align-items: center;
}
.article-hero-copy h1,
.article-listing-hero h1 {
  margin: 12px 0 20px;
  max-width: 950px;
  color: #30302F;
  font-size: clamp(2.55rem, 5.2vw, 5.35rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}
.article-hero-copy .lead,
.article-listing-hero .lead {
  max-width: 820px;
  color: #4D565C;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.62;
}
.article-meta-row,
.article-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}
.article-meta-row {
  list-style: none;
  padding: 0;
}
.article-meta-row span,
.article-meta-row li,
.article-chip-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(40,153,213,0.22);
  color: #30302F;
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.25;
  box-shadow: 0 12px 34px rgba(48,48,47,0.06);
}
.article-hero-tags {
  max-width: 820px;
}
.article-hero-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(40,153,213,0.20);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(48,48,47,0.12);
  backdrop-filter: blur(10px);
}
.article-hero-card h2 {
  margin: 10px 0 18px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.article-hero-card p:last-child { margin-bottom: 0; color: #58626A; line-height: 1.7; }
.agent-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 22px 0;
}
.agent-flow span {
  position: relative;
  display: block;
  border-radius: 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(40,153,213,0.12), rgba(255,255,255,0.92));
  border: 1px solid rgba(40,153,213,0.18);
  color: #30302F;
  font-weight: 900;
}
.article-summary-strip {
  margin-top: 0;
  padding-top: 34px;
  position: relative;
  z-index: 2;
  background: #F7FBFE;
}
.article-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.article-summary-grid > div {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(40,153,213,0.14);
  box-shadow: 0 20px 50px rgba(48,48,47,0.08);
}
.article-summary-grid strong {
  display: block;
  color: #30302F;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.article-summary-grid p { margin: 0; color: #58626A; line-height: 1.6; }
.article-body-section { padding-top: 74px; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.30fr) minmax(0, 0.98fr);
  gap: 36px;
  align-items: start;
}
.article-toc {
  position: sticky;
  top: 112px;
}
.article-toc-panel {
  background: #fff;
  border: 1px solid rgba(40,153,213,0.14);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 44px rgba(48,48,47,0.07);
}
.article-toc-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 0;
}
.article-toc-list li {
  display: block;
  margin: 0;
}
.article-toc-panel a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 0;
  color: #58626A;
  font-weight: 800;
  line-height: 1.35;
  border-top: 1px solid rgba(48,48,47,0.08);
}
.article-toc-panel a:hover { color: #2899D5; }
.article-content {
  display: grid;
  gap: 26px;
  min-width: 0;
}
.article-content,
.article-section-card,
.article-summary-grid > div,
.article-toc-panel,
.article-final-cta {
  overflow-wrap: anywhere;
}
.article-section-card,
.article-final-cta {
  background: #fff;
  border: 1px solid rgba(40,153,213,0.12);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 24px 56px rgba(48,48,47,0.07);
}
.article-section-card h2,
.article-final-cta h2 {
  margin: 8px 0 18px;
  color: #30302F;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.article-section-card h3 {
  margin: 0 0 10px;
  color: #30302F;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.article-section-card p,
.article-final-cta p {
  color: #4D565C;
  line-height: 1.78;
  font-size: 1.04rem;
}
.article-section-card p + p { margin-top: 18px; }
.article-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 11px;
}
.article-list li {
  position: relative;
  padding-left: 27px;
  color: #4D565C;
  line-height: 1.65;
}
.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2899D5;
  box-shadow: 0 0 0 5px rgba(40,153,213,0.12);
}
.ai-comparison-grid,
.article-card-grid.two-col,
.do-hype-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.ai-comparison-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ai-comparison-grid > div,
.article-card-grid > div,
.do-hype-grid > div,
.timeline-panel > div,
.use-case-grid > div,
.article-callout {
  border-radius: 24px;
  padding: 24px;
  background: #F7FBFE;
  border: 1px solid rgba(40,153,213,0.14);
}
.ai-comparison-grid p,
.article-card-grid p,
.use-case-grid p,
.timeline-panel p { margin: 0; font-size: 0.98rem; }
.article-callout {
  margin-top: 26px;
  background: linear-gradient(135deg, rgba(40,153,213,0.10), rgba(255,255,255,0.85));
}
.article-callout h3 { margin-bottom: 8px; }
.timeline-panel {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.timeline-panel span,
.use-case-grid span,
.article-card-grid.numbered span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  min-width: 42px;
  height: 32px;
  padding: 0 16px;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  border-radius: 999px;
  background: #2899D5;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.use-case-grid > div { grid-column: span 2; }
.use-case-grid > div:nth-child(4),
.use-case-grid > div:nth-child(5) { grid-column: span 3; }
.do-card { background: #F4FBF7 !important; border-color: rgba(45,125,83,0.14) !important; }
.hype-card { background: #FFF8F4 !important; border-color: rgba(176,88,43,0.14) !important; }
.article-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: #fff;
  background: linear-gradient(135deg, #30302F, #174F72 66%, #2899D5);
  border: 0;
}
.article-final-cta h2,
.article-final-cta p,
.article-final-cta .eyebrow { color: #fff; }
.article-final-cta p { opacity: 0.88; max-width: 760px; }
.article-listing-hero { padding-bottom: 92px; }
.article-listing-grid { display: grid; grid-template-columns: minmax(0, 0.72fr); }
.article-listing-card {
  display: block;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 32px;
  background: #fff;
  border: 1px solid rgba(40,153,213,0.16);
  box-shadow: 0 24px 56px rgba(48,48,47,0.08);
  color: inherit;
}
.article-listing-card:hover { transform: translateY(-3px); box-shadow: 0 32px 72px rgba(48,48,47,0.12); }
.article-listing-card h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.article-listing-card p { color: #58626A; line-height: 1.72; max-width: 760px; }
.article-listing-card strong { color: #2899D5; }
@media (max-width: 1080px) {
  .article-hero {
    background:
      linear-gradient(90deg, rgba(247,251,254,0.97) 0%, rgba(247,251,254,0.94) 44%, rgba(247,251,254,0.70) 68%, rgba(247,251,254,0.18) 100%),
      url('../images/cto-articles-hero-bg-tablet.webp') center center / cover no-repeat;
  }
  .article-hero-grid,
  .article-layout,
  .article-final-cta { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .article-summary-grid,
  .ai-comparison-grid,
  .article-card-grid.two-col,
  .do-hype-grid { grid-template-columns: 1fr; }
  .use-case-grid { grid-template-columns: 1fr; }
  .use-case-grid > div,
  .use-case-grid > div:nth-child(4),
  .use-case-grid > div:nth-child(5) { grid-column: auto; }
  .article-final-cta .button { justify-self: start; }
  .article-listing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .article-hero {
    background:
      linear-gradient(180deg, rgba(247,251,254,0.96) 0%, rgba(247,251,254,0.92) 46%, rgba(247,251,254,0.72) 100%),
      url('../images/cto-articles-hero-bg-mobile.webp') center top / cover no-repeat;
  }
  .article-hero,
  .article-listing-hero { padding: 94px 0 58px; }
  .article-hero-card,
  .article-section-card,
  .article-final-cta,
  .article-listing-card { border-radius: 22px; }
  .article-summary-strip { margin-top: 0; padding-top: 22px; background: #F7FBFE; }

  .article-toc-panel {
    padding: 20px;
    border-radius: 22px;
    margin-bottom: 6px;
  }
  .article-toc-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }
  .article-toc-list li {
    display: block;
    margin: 0;
  }
  .article-toc-panel a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(40,153,213,0.16);
    border-radius: 16px;
    background: #F7FBFE;
    color: #30302F;
    line-height: 1.35;
    box-shadow: 0 10px 24px rgba(48,48,47,0.06);
  }
  .article-hero-copy { max-width: 100%; }
  .article-hero-copy .lead {
    display: block;
    margin-bottom: 18px;
  }
  .article-meta-row,
  .article-chip-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 18px 0 24px;
  }
  .article-meta-row span,
  .article-meta-row li,
  .article-chip-row span {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 12px 28px rgba(48,48,47,0.08);
  }
  .article-section-card,
  .article-final-cta,
  .article-listing-card,
  .article-summary-grid > div,
  .ai-comparison-grid > div,
  .article-card-grid > div,
  .do-hype-grid > div,
  .timeline-panel > div,
  .use-case-grid > div,
  .article-callout {
    padding: 22px;
  }
  .article-section-card h2,
  .article-final-cta h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    line-height: 1.08;
  }
  .article-section-card p,
  .article-final-cta p,
  .article-list li {
    font-size: 1rem;
    line-height: 1.68;
  }
  .article-final-cta .button { width: 100%; }
}

/* Version 70: mobile/article readability hardening for Agentic AI article */
.article-page-shell .article-content {
  display: flex;
  flex-direction: column;
  row-gap: clamp(36px, 5vw, 58px);
}

.article-page-shell .article-section-card,
.article-page-shell .article-final-cta {
  display: block;
}

.article-page-shell .article-section-card > .eyebrow,
.article-page-shell .article-final-cta .eyebrow {
  display: block;
  margin: 0 0 14px;
}

.article-page-shell .article-section-card > h2,
.article-page-shell .article-final-cta h2 {
  margin: 0 0 22px;
}

.article-page-shell .article-section-card > h3,
.article-page-shell .article-section-card .ai-comparison-grid h3,
.article-page-shell .article-section-card .article-card-grid h3,
.article-page-shell .article-section-card .timeline-panel h3,
.article-page-shell .article-section-card .use-case-grid h3,
.article-page-shell .article-section-card .do-hype-grid h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.article-page-shell .article-section-card > p,
.article-page-shell .article-final-cta p {
  margin: 0 0 20px;
}

.article-page-shell .article-section-card > p:last-child,
.article-page-shell .article-final-cta p:last-child {
  margin-bottom: 0;
}

.article-page-shell .article-section-card > p + .ai-comparison-grid,
.article-page-shell .article-section-card > p + .article-card-grid,
.article-page-shell .article-section-card > p + .timeline-panel,
.article-page-shell .article-section-card > p + .use-case-grid,
.article-page-shell .article-section-card > p + .do-hype-grid,
.article-page-shell .article-section-card > p + .article-callout {
  margin-top: 32px;
}

.article-page-shell .ai-comparison-grid > div > p,
.article-page-shell .article-card-grid > div > p,
.article-page-shell .timeline-panel > div > p,
.article-page-shell .use-case-grid > div > p,
.article-page-shell .do-hype-grid > div > p,
.article-page-shell .article-callout > p {
  margin: 0 0 18px;
}

.article-page-shell .ai-comparison-grid > div > p:last-child,
.article-page-shell .article-card-grid > div > p:last-child,
.article-page-shell .timeline-panel > div > p:last-child,
.article-page-shell .use-case-grid > div > p:last-child,
.article-page-shell .do-hype-grid > div > p:last-child,
.article-page-shell .article-callout > p:last-child {
  margin-bottom: 0;
}

.article-page-shell .article-list + p,
.article-page-shell .article-list + .article-callout {
  margin-top: 18px;
}

@media (max-width: 1080px) {
  .article-page-shell .article-layout {
    gap: 34px;
  }

  .article-page-shell .article-toc {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .article-page-shell .article-body-section {
    padding-top: 46px;
  }

  .article-page-shell .article-layout {
    gap: 30px;
  }

  .article-page-shell .article-content {
    row-gap: 36px;
  }

  .article-page-shell .article-section-card,
  .article-page-shell .article-final-cta {
    padding: 26px 22px;
  }

  .article-page-shell .article-section-card > .eyebrow {
    margin-bottom: 16px;
    line-height: 1.35;
  }

  .article-page-shell .article-section-card > h2,
  .article-page-shell .article-final-cta h2 {
    margin-bottom: 22px;
  }

  .article-page-shell .article-section-card > p,
  .article-page-shell .article-final-cta p {
    margin-bottom: 22px;
  }

  .article-page-shell .article-section-card > p + .ai-comparison-grid,
  .article-page-shell .article-section-card > p + .article-card-grid,
  .article-page-shell .article-section-card > p + .timeline-panel,
  .article-page-shell .article-section-card > p + .use-case-grid,
  .article-page-shell .article-section-card > p + .do-hype-grid,
  .article-page-shell .article-section-card > p + .article-callout {
    margin-top: 30px;
  }

  .article-page-shell .ai-comparison-grid,
  .article-page-shell .article-card-grid.two-col,
  .article-page-shell .do-hype-grid,
  .article-page-shell .use-case-grid,
  .article-page-shell .timeline-panel {
    gap: 18px;
  }

  .article-page-shell .ai-comparison-grid > div,
  .article-page-shell .article-card-grid > div,
  .article-page-shell .do-hype-grid > div,
  .article-page-shell .timeline-panel > div,
  .article-page-shell .use-case-grid > div,
  .article-page-shell .article-callout {
    padding: 24px 20px;
  }
}

/* Version 71: hard mobile editorial rhythm + cache-busting support for Agentic AI article
   Scoped to .article-page-shell to avoid changing other website pages. */
.article-page-shell .article-section-card,
.article-page-shell .article-final-cta,
.article-page-shell .article-toc-panel,
.article-page-shell .article-summary-grid > div,
.article-page-shell .ai-comparison-grid > div,
.article-page-shell .article-card-grid > div,
.article-page-shell .timeline-panel > div,
.article-page-shell .use-case-grid > div,
.article-page-shell .do-hype-grid > div,
.article-page-shell .article-callout {
  display: block;
}

.article-page-shell .article-section-card > .eyebrow,
.article-page-shell .article-section-card > h2,
.article-page-shell .article-section-card > h3,
.article-page-shell .ai-comparison-grid h3,
.article-page-shell .article-card-grid h3,
.article-page-shell .timeline-panel h3,
.article-page-shell .use-case-grid h3,
.article-page-shell .do-hype-grid h3,
.article-page-shell .article-callout h3,
.article-page-shell .timeline-panel > div > span,
.article-page-shell .use-case-grid > div > span,
.article-page-shell .article-card-grid.numbered span {
  display: block;
  clear: both;
}

.article-page-shell .article-section-card > p,
.article-page-shell .ai-comparison-grid p,
.article-page-shell .article-card-grid p,
.article-page-shell .timeline-panel p,
.article-page-shell .use-case-grid p,
.article-page-shell .do-hype-grid p,
.article-page-shell .article-callout p {
  display: block;
  clear: both;
}

.article-page-shell .article-section-card + .article-section-card,
.article-page-shell .article-final-cta {
  margin-top: clamp(34px, 4vw, 56px);
}

.article-page-shell .article-section-card > p + .eyebrow,
.article-page-shell .article-section-card > p + h2,
.article-page-shell .article-section-card > p + h3,
.article-page-shell .article-section-card > .article-list + h3,
.article-page-shell .article-section-card > .article-list + .article-callout,
.article-page-shell .article-section-card > .article-card-grid + p,
.article-page-shell .article-section-card > .timeline-panel + p,
.article-page-shell .article-section-card > .use-case-grid + p,
.article-page-shell .article-section-card > .do-hype-grid + p {
  margin-top: clamp(28px, 3.5vw, 40px);
}

.article-page-shell .article-section-card > p + .ai-comparison-grid,
.article-page-shell .article-section-card > p + .article-card-grid,
.article-page-shell .article-section-card > p + .timeline-panel,
.article-page-shell .article-section-card > p + .use-case-grid,
.article-page-shell .article-section-card > p + .do-hype-grid,
.article-page-shell .article-section-card > p + .article-callout {
  margin-top: clamp(30px, 4vw, 44px);
}

.article-page-shell .article-list + p,
.article-page-shell .article-list + .article-callout,
.article-page-shell .article-list + h3 {
  margin-top: 24px;
}

.article-page-shell .timeline-panel > div > span,
.article-page-shell .use-case-grid > div > span,
.article-page-shell .article-card-grid.numbered span {
  width: fit-content;
  min-width: 0;
  max-width: 100%;
  min-height: 34px;
  height: auto;
  padding: 8px 16px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: #2899D5;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: normal;
}

@media (max-width: 768px) {
  .article-page-shell .article-body-section {
    padding-top: 48px !important;
  }

  .article-page-shell .article-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 42px !important;
  }

  .article-page-shell .article-section-card,
  .article-page-shell .article-final-cta {
    display: block !important;
    margin: 0 !important;
    padding: 28px 22px !important;
    border-radius: 24px !important;
  }

  .article-page-shell .article-section-card + .article-section-card,
  .article-page-shell .article-final-cta {
    margin-top: 0 !important;
  }

  .article-page-shell .article-section-card > .eyebrow,
  .article-page-shell .article-final-cta .eyebrow {
    display: block !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin: 0 0 18px !important;
    line-height: 1.35 !important;
  }

  .article-page-shell .article-section-card > h2,
  .article-page-shell .article-final-cta h2 {
    display: block !important;
    margin: 0 0 24px !important;
    line-height: 1.12 !important;
  }

  .article-page-shell .article-section-card > p,
  .article-page-shell .article-final-cta p {
    display: block !important;
    margin: 0 0 24px !important;
    color: #4D565C !important;
    font-size: 1rem !important;
    line-height: 1.74 !important;
  }

  .article-page-shell .article-section-card > p:last-child,
  .article-page-shell .article-final-cta p:last-child {
    margin-bottom: 0 !important;
  }

  .article-page-shell .article-section-card > p + .eyebrow,
  .article-page-shell .article-section-card > p + h2,
  .article-page-shell .article-section-card > p + h3 {
    margin-top: 32px !important;
  }

  .article-page-shell .article-section-card > p + .ai-comparison-grid,
  .article-page-shell .article-section-card > p + .article-card-grid,
  .article-page-shell .article-section-card > p + .timeline-panel,
  .article-page-shell .article-section-card > p + .use-case-grid,
  .article-page-shell .article-section-card > p + .do-hype-grid,
  .article-page-shell .article-section-card > p + .article-callout {
    margin-top: 34px !important;
  }

  .article-page-shell .ai-comparison-grid,
  .article-page-shell .article-card-grid.two-col,
  .article-page-shell .timeline-panel,
  .article-page-shell .use-case-grid,
  .article-page-shell .do-hype-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    margin: 34px 0 0 !important;
  }

  .article-page-shell .ai-comparison-grid > div,
  .article-page-shell .article-card-grid > div,
  .article-page-shell .timeline-panel > div,
  .article-page-shell .use-case-grid > div,
  .article-page-shell .do-hype-grid > div,
  .article-page-shell .article-callout {
    display: block !important;
    padding: 24px 20px !important;
    border-radius: 22px !important;
  }

  .article-page-shell .article-card-grid > div + div,
  .article-page-shell .use-case-grid > div + div,
  .article-page-shell .do-hype-grid > div + div,
  .article-page-shell .timeline-panel > div + div,
  .article-page-shell .ai-comparison-grid > div + div {
    margin-top: 0 !important;
  }

  .article-page-shell .ai-comparison-grid h3,
  .article-page-shell .article-card-grid h3,
  .article-page-shell .timeline-panel h3,
  .article-page-shell .use-case-grid h3,
  .article-page-shell .do-hype-grid h3,
  .article-page-shell .article-callout h3 {
    display: block !important;
    margin: 0 0 18px !important;
    color: #30302F !important;
    font-size: 1.12rem !important;
    line-height: 1.25 !important;
  }

  .article-page-shell .ai-comparison-grid p,
  .article-page-shell .article-card-grid p,
  .article-page-shell .timeline-panel p,
  .article-page-shell .use-case-grid p,
  .article-page-shell .do-hype-grid p,
  .article-page-shell .article-callout p {
    display: block !important;
    margin: 0 0 20px !important;
    line-height: 1.72 !important;
  }

  .article-page-shell .ai-comparison-grid p:last-child,
  .article-page-shell .article-card-grid p:last-child,
  .article-page-shell .timeline-panel p:last-child,
  .article-page-shell .use-case-grid p:last-child,
  .article-page-shell .do-hype-grid p:last-child,
  .article-page-shell .article-callout p:last-child {
    margin-bottom: 0 !important;
  }

  .article-page-shell .article-list {
    display: grid !important;
    gap: 14px !important;
    margin: 20px 0 24px !important;
  }

  .article-page-shell .article-list li {
    display: list-item !important;
    line-height: 1.68 !important;
    margin: 0 !important;
  }

  .article-page-shell .article-list + p,
  .article-page-shell .article-list + .article-callout,
  .article-page-shell .article-list + h3 {
    margin-top: 24px !important;
  }

  .article-page-shell .article-callout {
    margin-top: 34px !important;
  }

  .article-page-shell .timeline-panel > div > span,
  .article-page-shell .use-case-grid > div > span,
  .article-page-shell .article-card-grid.numbered span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 38px !important;
    height: auto !important;
    padding: 9px 18px !important;
    margin: 0 0 20px !important;
    border-radius: 999px !important;
    background: #2899D5 !important;
    color: #fff !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    box-shadow: 0 12px 28px rgba(40,153,213,0.18) !important;
  }

  .article-page-shell .article-toc-panel a,
  .article-page-shell .article-meta-row li,
  .article-page-shell .article-chip-row span {
    min-height: 44px !important;
  }
}


/* Version 72: rebalance desktop rhythm while preserving stronger mobile article spacing. */
@media (min-width: 769px) {
  .article-page-shell .article-content {
    display: grid !important;
    gap: 30px !important;
    row-gap: 30px !important;
  }

  .article-page-shell .article-section-card,
  .article-page-shell .article-final-cta {
    margin-top: 0 !important;
  }

  .article-page-shell .article-section-card + .article-section-card,
  .article-page-shell .article-final-cta {
    margin-top: 0 !important;
  }

  .article-page-shell .article-section-card > .eyebrow {
    margin: 0 0 8px !important;
  }

  .article-page-shell .article-section-card > h2,
  .article-page-shell .article-final-cta h2 {
    margin: 0 0 18px !important;
  }

  .article-page-shell .article-section-card > p,
  .article-page-shell .article-final-cta p {
    margin: 0 0 18px !important;
  }

  .article-page-shell .article-section-card > p:last-child,
  .article-page-shell .article-final-cta p:last-child {
    margin-bottom: 0 !important;
  }

  .article-page-shell .article-section-card > p + .ai-comparison-grid,
  .article-page-shell .article-section-card > p + .article-card-grid,
  .article-page-shell .article-section-card > p + .timeline-panel,
  .article-page-shell .article-section-card > p + .use-case-grid,
  .article-page-shell .article-section-card > p + .do-hype-grid,
  .article-page-shell .article-section-card > p + .article-callout {
    margin-top: 24px !important;
  }

  .article-page-shell .article-card-grid + p,
  .article-page-shell .timeline-panel + p,
  .article-page-shell .use-case-grid + p,
  .article-page-shell .do-hype-grid + p {
    margin-top: 18px !important;
  }

  .article-page-shell .article-final-cta {
    gap: 36px !important;
  }

  .article-page-shell .article-final-cta .button {
    margin-top: 6px !important;
  }
}

@media (max-width: 1080px) {
  .article-page-shell .article-final-cta {
    gap: 30px !important;
  }

  .article-page-shell .article-final-cta .button {
    margin-top: 4px !important;
  }
}

@media (max-width: 768px) {
  .article-page-shell .article-final-cta {
    background: linear-gradient(135deg, #30302F 0%, #174F72 62%, #2899D5 100%) !important;
    color: #fff !important;
    gap: 28px !important;
  }

  .article-page-shell .article-final-cta .eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    width: fit-content !important;
    margin: 0 0 18px !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    color: #fff !important;
    background: rgba(255,255,255,0.16) !important;
    border: 1px solid rgba(255,255,255,0.24) !important;
    line-height: 1.25 !important;
  }

  .article-page-shell .article-final-cta h2 {
    color: #fff !important;
    margin-bottom: 20px !important;
  }

  .article-page-shell .article-final-cta p {
    color: rgba(255,255,255,0.94) !important;
    opacity: 1 !important;
    margin: 0 0 28px !important;
    line-height: 1.72 !important;
  }

  .article-page-shell .article-final-cta .button {
    margin-top: 4px !important;
  }
}


/* Version 72.1: ensure final CTA copy has explicit spacing before the CTA button in one-column layouts. */
@media (max-width: 1080px) {
  .article-page-shell .article-final-cta > div > p:last-child {
    margin-bottom: 28px !important;
  }
}
