:root {
  --ink: #0b1726;
  --ink-2: #17263a;
  --muted: #596575;
  --blue: #2457d6;
  --blue-dark: #173f9e;
  --line: #d8dee6;
  --soft: #f3f4f1;
  --paper: #f7f7f4;
  --white: #ffffff;
  --dark: #0b1c30;
  --max: 1180px;
  --header: 72px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.04;
}
h1 { font-size: clamp(3.35rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(2.2rem, 3.6vw, 3rem); }
h3 { font-size: 1.2rem; }
p { color: var(--muted); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
[id] { scroll-margin-top: calc(var(--header) + 24px); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: 100%;
  height: var(--header);
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .98);
}

.brand {
  display: flex;
  width: 145px;
  height: 44px;
  align-items: center;
}

.brand-logo { width: 140px; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 2px; }
.site-nav > .nav-link[href="contact.html"] { display: none; }

.nav-link {
  position: relative;
  padding: 10px 9px;
  color: #344257;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 9px;
  bottom: 2px;
  left: 9px;
  height: 1px;
  background: var(--blue);
  content: "";
  opacity: 0;
}

.nav-link:hover,
.nav-link.active { color: var(--blue); }
.nav-link:hover::after,
.nav-link.active::after { opacity: 1; }

.nav-cta,
.nav-mobile-cta {
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.nav-cta { padding: 13px 18px; font-size: .82rem; white-space: nowrap; }
.nav-cta:hover,
.nav-mobile-cta:hover { background: var(--blue-dark); }
.nav-mobile-cta,
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary { color: var(--white); background: var(--blue); }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { border-color: #98a4b3; color: var(--ink); background: transparent; }
.button.secondary:hover { color: var(--blue); border-color: var(--blue); }
.button.outline { border-color: #98a4b3; color: var(--ink); background: transparent; }
.button.outline:hover { color: var(--blue); border-color: var(--blue); }
.button.light { color: var(--ink); background: var(--white); }
.button.full { width: 100%; }
.text-link { display: inline-flex; margin-top: 14px; color: var(--blue); font-size: .92rem; font-weight: 600; text-decoration: none; }

.eyebrow,
.section-kicker,
.panel-topline,
.mini-label,
.card-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span { width: 24px; height: 1px; background: currentColor; }

.hero,
.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .55fr);
  gap: clamp(56px, 8vw, 108px);
  align-items: center;
  width: 100%;
  padding: 84px max(32px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.home-hero { min-height: calc(100svh - var(--header)); }
.hero-content,
.page-hero-copy { position: relative; z-index: 1; }

.home-hero h1 {
  max-width: 800px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 5.6vw, 4.6rem);
  line-height: .99;
}

.hero-lead,
.page-hero-copy > p {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.25vw, 1.15rem);
  line-height: 1.62;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.home-hero .button.secondary { border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; }
.home-hero .button.secondary:hover { border-color: var(--blue); }
.trust-row,
.hero-bg-shape { display: none; }

.hero-panel {
  padding: 8px 0 8px 32px;
  border: 0;
  border-left: 1px solid #aeb8c5;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}

.hero-panel h2 { margin-bottom: 20px; font-size: clamp(1.55rem, 2.3vw, 2rem); }
.hero-index { padding: 0; border-left: 0; border-top: 1px solid #aeb8c5; border-bottom: 1px solid #aeb8c5; }
.hero-index .panel-topline { display: block; margin: 0; padding: 18px 0 14px; color: var(--muted); }
.hero-index a { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: baseline; padding: 17px 0; border-top: 1px solid var(--line); text-decoration: none; }
.hero-index a span { color: #7a8492; font-size: .7rem; letter-spacing: .08em; }
.hero-index a strong { font-size: .98rem; font-weight: 600; }
.hero-index a:hover strong { color: var(--blue); }

.check-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.check-list li::before { position: absolute; top: 13px; left: 0; color: var(--blue); content: "—"; }

.page-hero { grid-template-columns: minmax(0, 900px); min-height: 420px; }
.page-hero > .hero-panel { display: none; }
.page-hero-copy h1 { max-width: 820px; margin-bottom: 26px; font-size: clamp(3.1rem, 4.9vw, 4rem); }
.page-hero .light-panel { color: var(--ink); }
.page-hero .light-panel h2 { color: var(--ink); }
.page-hero .light-panel .panel-topline { color: var(--blue); }
.compact-legal { min-height: 340px; grid-template-columns: 1fr; }

.section {
  width: 100%;
  padding: clamp(76px, 8vw, 104px) max(32px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.section.surface { background: var(--soft); }
.section.surface-dark { color: var(--white); background: var(--dark); }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { max-width: 660px; margin-bottom: 0; font-size: 1.04rem; }
.section-heading.inverted h2 { color: var(--white); }
.section-heading.inverted p { color: #b9c5d4; }
.section-heading.inverted .section-kicker { color: #8faeff; }

.capability-grid {
  display: block;
  border-top: 1px solid var(--ink);
}

.capability-card {
  display: grid;
  grid-template-columns: 64px minmax(190px, .65fr) minmax(300px, 1.3fr) 76px;
  gap: 28px;
  align-items: center;
  min-height: 0;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  text-decoration: none;
}

.capability-card:hover { color: var(--blue); }
.capability-card h3,
.capability-card p,
.capability-card strong { margin: 0; }
.capability-card p { color: var(--muted); }
.capability-card strong { color: var(--blue); font-size: .85rem; text-align: right; }

.icon-chip {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  color: #7a8492;
  background: transparent;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.feature-grid,
.process-grid,
.company-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.feature-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.company-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feature-grid > div,
.process-grid > div,
.company-grid > article {
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.feature-grid > div h3,
.process-grid > div h3 { margin-bottom: 12px; }
.feature-grid > div p,
.process-grid > div p { margin-bottom: 0; font-size: .95rem; }
.company-grid > article { min-height: 0; }
.surface-dark .process-grid > div { border-color: #425064; }
.surface-dark .process-grid > div > span { display: inline-flex; margin-bottom: 34px; color: #8faeff; font-size: .72rem; letter-spacing: .08em; }
.surface-dark .process-grid h3 { color: var(--white); }
.surface-dark .process-grid p { color: #b9c5d4; }

.split,
.feature-spotlight,
.request-card,
.genesys-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(54px, 8vw, 100px);
  align-items: start;
}

.split > div > p,
.feature-spotlight > div > p { max-width: 620px; font-size: 1.04rem; }

.mini-grid { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.mini-grid > div { padding: 19px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.mini-grid h3 { margin-bottom: 8px; font-size: 1.02rem; }
.mini-grid p { margin: 4px 0 0; font-size: .9rem; }

.spotlight-card,
.boundary-card {
  padding: 34px 0;
  border: 0;
  border-top: 3px solid var(--blue);
  border-radius: 0;
  background: transparent;
}

.healthcare-spotlight { background: var(--soft); }
.healthcare-spotlight .spotlight-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 48px; align-items: end; }
.spotlight-card h2,
.spotlight-card h3 { color: var(--ink); }
.spotlight-card p { max-width: 720px; color: var(--muted); }
.spotlight-card .mini-label { color: var(--blue); }
.spotlight-card .button { margin-top: 12px; }

.feature-list { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.feature-list > div { padding: 20px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.feature-list h3 { margin-bottom: 6px; font-size: 1.05rem; }
.feature-list p { margin: 0; font-size: .92rem; }
.plain-list { display: grid; gap: 9px; margin: 18px 0 0; padding-left: 20px; color: #455367; }
.boundary-card h3 { margin-bottom: 12px; }

.solution-list { display: grid; gap: 0; border: 0; border-top: 1px solid var(--ink); border-radius: 0; background: transparent; }
.solution-row { display: grid; grid-template-columns: .42fr 1fr auto; gap: 28px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); background: transparent; text-decoration: none; }
.solution-row:hover { color: var(--blue); }
.solution-row h3,
.solution-row p { margin: 0; }
.solution-row strong { color: var(--blue); white-space: nowrap; }

.section.genesys-section {
  position: relative;
  color: var(--white);
  background: var(--dark);
}
.genesys-section h2 { color: var(--white); }
.genesys-section p { color: #b9c5d4; }
.genesys-section .section-kicker { color: #8faeff; }
.step-stack { display: grid; gap: 0; border-top: 1px solid #425064; }
.step-stack > div { display: grid; grid-template-columns: 38px 1fr; gap: 16px; align-items: start; padding: 20px 0; border-bottom: 1px solid #425064; background: transparent; }
.step-stack span { grid-row: 1 / span 2; color: #8faeff; font-size: .72rem; letter-spacing: .08em; }
.step-stack h3 { grid-column: 2; margin: 0 0 5px; color: var(--white); }
.step-stack p { grid-column: 2; margin: 0; font-size: .9rem; }
.small-note { margin-top: 22px; font-size: .8rem; opacity: .8; }

.notice-block,
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 70px max(32px, calc((100vw - var(--max)) / 2));
}

.notice-block { color: var(--ink); background: #e9edf4; }
.cta-band { color: var(--white); background: var(--dark); }
.notice-block h2,
.cta-band h2 { margin-bottom: 10px; font-size: clamp(2rem, 3.2vw, 2.75rem); }
.notice-block h2 { color: var(--ink); }
.cta-band h2 { color: var(--white); }
.notice-block p { max-width: 760px; margin: 0; color: var(--muted); }
.cta-band p { max-width: 760px; margin: 0; color: #b9c5d4; }
.notice-block .section-kicker { color: var(--blue); }
.cta-band .section-kicker { color: #8faeff; }
.notice-block .button.light { color: var(--white); background: var(--blue); }

.two-col-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
.audience-card { display: flex; min-height: 0; flex-direction: column; justify-content: space-between; padding: 30px 0; border-radius: 0; }
.light-card { border: 0; border-top: 2px solid var(--blue); background: transparent; }
.dark-card { padding-inline: 32px; color: var(--white); background: var(--dark); }
.dark-card h3 { color: var(--white); }
.dark-card .card-number { color: #8faeff; }
.dark-card p,
.dark-card .plain-list { color: #b9c5d4; }
.audience-card > a { margin-top: 26px; color: var(--blue); font-weight: 600; text-decoration: none; }
.dark-card > a { color: #8faeff; }

.request-section { background: var(--soft); }
.contact-request-section { min-height: calc(100vh - var(--header)); }
.request-card { align-items: start; padding: 36px 0 0; border: 0; border-top: 1px solid var(--ink); border-radius: 0; background: transparent; }
.request-copy { position: sticky; top: calc(var(--header) + 30px); }
.request-copy h1 { font-size: clamp(2.9rem, 4.8vw, 4rem); }
.request-copy > p { max-width: 540px; font-size: 1.02rem; }
.contact-trust { display: none; }
.contact-trust span { position: relative; padding-left: 22px; color: #455367; font-size: .88rem; font-weight: 600; }
.contact-trust span::before { position: absolute; left: 0; color: var(--blue); content: "—"; }

.lead-form { display: grid; gap: 19px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.lead-form label { display: grid; gap: 7px; color: #28394d; font-size: .84rem; font-weight: 600; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #aeb8c5;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 16px;
  font-weight: 400;
}
.lead-form textarea { resize: vertical; }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus { border-color: var(--blue); outline: 0; box-shadow: 0 0 0 3px rgba(36, 87, 214, .12); }
.lead-form .check { grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-weight: 400; line-height: 1.5; }
.lead-form .check input { width: 18px; min-height: 18px; margin: 3px 0 0; }
.lead-form .check a,
.form-note a { color: var(--blue); }
.optional { color: #788493; font-size: .75rem; font-weight: 400; }
.form-note { margin: -4px 0 0; text-align: center; font-size: .8rem; }
.hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-shell { max-width: 720px; margin: 0 auto; padding: 38px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.form-column { min-width: 0; }
.form-column .status-message { margin: 0 0 20px; }
.narrow-form { max-width: 600px; }
.status-message { max-width: 720px; margin: 28px auto 0; padding: 14px 16px; border: 1px solid #d8aaaa; border-radius: 6px; color: #762323; background: #fff2f2; font-weight: 600; }

.legal-page { max-width: 880px; margin: 0 auto; }
.legal-page h1 { margin-bottom: 10px; }
.legal-page h2 { margin-top: 40px; margin-bottom: 12px; font-size: 1.4rem; }
.legal-page p { color: #455367; }
.legal-updated { font-size: .88rem; }
.thank-you { display: grid; min-height: calc(100vh - var(--header)); place-items: center; background: var(--soft); }
.success-card { max-width: 720px; padding: clamp(36px, 6vw, 62px); border: 1px solid var(--line); border-radius: 8px; text-align: center; background: var(--white); }
.success-card .hero-actions { justify-content: center; }
.success-icon { display: grid; width: 52px; height: 52px; place-items: center; margin: 0 auto 22px; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 1.4rem; font-weight: 600; }
.error-code { display: block; margin-bottom: 14px; color: var(--blue); font-size: clamp(4rem, 10vw, 7rem); font-weight: 600; letter-spacing: -.08em; line-height: .9; }

.footer { padding: 68px max(32px, calc((100vw - var(--max)) / 2)) 28px; color: #c7d0dc; background: #071321; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 48px; }
.footer-logo { width: 136px; }
.footer-tag { display: none; }
.footer h3 { margin-bottom: 18px; color: var(--white); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.footer a { display: block; margin-bottom: 9px; color: #d1d8e2; font-size: .88rem; text-decoration: none; }
.footer a:hover { color: #8faeff; }
.footer p { color: #98a7b9; font-size: .86rem; }
.footer-copy { max-width: 340px; margin-top: 20px; }
.footer-boundary { margin: 42px 0 0; padding: 14px 0; border: 0; border-top: 1px solid #344154; border-radius: 0; background: transparent; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 46px; padding-top: 22px; border-top: 1px solid #344154; color: #7d8b9c; font-size: .8rem; }
.footer-bottom a { display: inline; margin: 0; color: #aab6c5; }

.consent-banner { position: fixed; z-index: 300; right: 20px; bottom: 20px; width: min(440px, calc(100vw - 32px)); padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 16px 40px rgba(11, 23, 38, .14); }
.consent-banner h2 { margin-bottom: 7px; font-size: 1.1rem; }
.consent-banner p { margin-bottom: 14px; font-size: .85rem; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.consent-actions .button { min-height: 40px; padding: 0 16px; font-size: .8rem; }

@media (max-width: 1120px) {
  :root { --header: 68px; }
  .site-header { grid-template-columns: 1fr auto auto; padding-inline: 24px; }
  .menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 5px; border: 1px solid #aeb8c5; border-radius: 6px; background: var(--white); cursor: pointer; }
  .menu-toggle span { display: block; width: 19px; height: 1.5px; background: var(--ink); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-nav { position: fixed; top: var(--header); right: 0; bottom: auto; left: 0; height: calc(100dvh - var(--header)); display: none; align-items: stretch; justify-content: start; flex-direction: column; gap: 0; padding: 22px 24px; background: var(--white); overflow-y: auto; }
  .site-nav.open { display: flex; }
  .site-nav > .nav-link[href="contact.html"] { display: block; }
  .nav-link { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
  .nav-link::after { display: none; }
  .nav-mobile-cta { display: flex; justify-content: center; margin-top: 18px; padding: 16px 20px; }
  .hero,
  .page-hero { grid-template-columns: 1fr; }
  .page-hero .hero-panel { display: none; }
  .capability-card { grid-template-columns: 50px minmax(170px, .7fr) 1.3fr 70px; gap: 22px; }
  .feature-grid.four,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .nav-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero,
  .page-hero { min-height: auto; padding: 64px 24px; }
  .home-hero { gap: 56px; }
  .home-hero h1 { font-size: clamp(2.65rem, 11.5vw, 3.65rem); }
  .page-hero-copy h1 { font-size: clamp(2.65rem, 10.5vw, 3.5rem); }
  .section { padding: 68px 24px; }
  .section-heading { margin-bottom: 42px; }
  .capability-card { grid-template-columns: 42px 1fr; gap: 10px 18px; padding: 24px 0; }
  .capability-card h3 { grid-column: 2; }
  .capability-card p { grid-column: 2; }
  .capability-card strong { grid-column: 2; text-align: left; }
  .feature-grid.three,
  .feature-grid.four,
  .company-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split,
  .feature-spotlight,
  .request-card,
  .genesys-section { grid-template-columns: 1fr; }
  .healthcare-spotlight .spotlight-card { grid-template-columns: 1fr; align-items: start; }
  .request-copy { position: static; }
  .two-col-cards { grid-template-columns: 1fr; }
  .notice-block,
  .cta-band { grid-template-columns: 1fr; padding: 56px 24px; }
  .solution-row { grid-template-columns: 1fr; gap: 9px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand { width: 136px; height: 34px; }
  .brand-logo { width: 132px; }
  .home-hero { padding-top: 56px; padding-bottom: 62px; }
  .home-hero h1 { font-size: clamp(2.55rem, 12vw, 3.1rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .home-hero .hero-actions { align-items: flex-start; }
  .home-hero .hero-actions .button { width: auto; }
  .section { padding: 56px 24px; }
  .section-heading h2 { font-size: 2.05rem; }
  .feature-grid.three,
  .feature-grid.four,
  .process-grid,
  .company-grid,
  .form-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 26px 0; }
  .dark-card { padding-inline: 24px; }
  .request-card { padding-top: 28px; }
  .form-shell { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .consent-banner { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; }
}

/* R4 — signal-to-service direction */
:root {
  --volt: #b9ff66;
  --mint: #35d0a3;
  --r4-blue: #1f5eff;
  --r4-navy: #071c31;
}

.home-hero-r4 {
  isolation: isolate;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(44px, 6vw, 82px);
  min-height: calc(100svh - var(--header));
  padding-top: 66px;
  padding-bottom: 66px;
  border-bottom: 0;
  color: var(--white);
  background: var(--r4-navy);
  overflow: hidden;
}

.home-hero-r4::before {
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -150px;
  width: 430px;
  height: 760px;
  background: var(--r4-blue);
  content: "";
  opacity: .16;
  transform: rotate(18deg);
}

.home-hero-r4::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 34%;
  height: 7px;
  background: var(--volt);
  content: "";
}

.home-hero-r4 .eyebrow { margin-bottom: 25px; color: var(--mint); }
.home-hero-r4 h1 {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.45rem, 5vw, 4.35rem);
  line-height: .98;
}

.home-hero-r4 h1 em { color: var(--volt); font-style: normal; }
.home-hero-r4 .hero-lead { max-width: 680px; margin-bottom: 30px; color: #bdc9d8; font-size: 1.08rem; }
.home-hero-r4 .button.primary { color: var(--r4-navy); background: var(--volt); }
.home-hero-r4 .button.primary:hover { background: #d1ff98; }
.home-hero-r4 .button.secondary { gap: 10px; border-bottom-color: #8090a2; color: var(--white); }
.home-hero-r4 .button.secondary:hover { border-bottom-color: var(--mint); color: var(--mint); }

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid #31465d;
}

.hero-proofline span { color: #91a1b3; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hero-proofline span + span::before { margin: 0 12px; color: var(--mint); content: "+"; }

.experience-console {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid #3a5169;
  border-radius: 16px;
  background: #0c263f;
  box-shadow: 18px 18px 0 #051421;
}

.console-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 17px; border-bottom: 1px solid #334b63; color: #e7edf4; font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.console-status { display: inline-flex; align-items: center; gap: 8px; color: var(--mint); }
.console-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(53, 208, 163, .13); }

.scenario-tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; margin: 18px 0 20px; }
.scenario-tab { min-height: 38px; padding: 6px 8px; border: 1px solid #34506b; border-radius: 5px; color: #9fb0c1; background: transparent; font: inherit; font-size: .75rem; font-weight: 700; cursor: pointer; }
.scenario-tab:hover,
.scenario-tab:focus-visible { color: var(--white); border-color: #6885a2; }
.scenario-tab.is-active { color: var(--r4-navy); border-color: var(--volt); background: var(--volt); }

.flow-stage { position: relative; min-height: 300px; padding: 4px 0; }
.flow-rail { position: absolute; top: 25px; bottom: 25px; left: 18px; width: 1px; background: #38536d; overflow: hidden; }
.flow-rail span { display: block; width: 100%; height: 36%; background: var(--mint); animation: flow-trace 1.25s ease-out 1 forwards; }
.flow-steps { position: relative; display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.flow-steps li { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; min-height: 64px; color: #a8b7c7; }
.flow-steps li > span { position: relative; z-index: 1; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid #45617c; border-radius: 50%; color: #95a9bd; background: #0c263f; font-size: .63rem; font-weight: 700; }
.flow-steps li.is-active > span { color: var(--r4-navy); border-color: var(--mint); background: var(--mint); box-shadow: 0 0 0 5px rgba(53, 208, 163, .1); }
.flow-steps small { display: block; margin-bottom: 2px; color: #6f879f; font-size: .65rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.flow-steps strong { display: block; color: #ecf2f7; font-size: .86rem; font-weight: 600; line-height: 1.35; }

.console-outcome { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 16px -8px -8px; padding: 16px; border-radius: 8px; color: var(--white); background: var(--r4-blue); }
.console-outcome span { font-size: .63rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.console-outcome strong { max-width: 230px; font-size: .86rem; text-align: right; }

@keyframes flow-trace {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(280%); }
}

@media (max-width: 1120px) {
  .home-hero-r4 { grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr); gap: 42px; }
  .home-hero-r4 h1 { font-size: clamp(3.15rem, 5.2vw, 4rem); }
}

@media (max-width: 820px) {
  .home-hero-r4 { grid-template-columns: 1fr; gap: 42px; min-height: auto; padding-top: 56px; padding-bottom: 60px; }
  .home-hero-r4::before { top: auto; right: -180px; bottom: -300px; }
  .experience-console { max-width: 620px; }
}

@media (max-width: 560px) {
  .home-hero-r4 h1 { font-size: clamp(2.75rem, 12.2vw, 3.25rem); }
  .home-hero-r4 .hero-lead { font-size: 1rem; }
  .home-hero-r4 .hero-actions .button { width: 100%; }
  .hero-proofline { gap: 7px 0; }
  .hero-proofline span { width: 100%; }
  .hero-proofline span + span::before { margin: 0 10px 0 0; }
  .experience-console { padding: 18px; border-radius: 12px; box-shadow: 8px 8px 0 #051421; }
  .scenario-tabs { grid-template-columns: repeat(2, 1fr); }
  .scenario-tab { min-height: 42px; }
  .flow-stage { min-height: 242px; }
  .flow-steps li { min-height: 54px; }
  .console-outcome { align-items: center; flex-direction: row; }
  .console-outcome strong { max-width: 180px; text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  .flow-rail span { animation: none; }
}

.r4-heading { max-width: 850px; }
.r4-heading h2 { font-size: clamp(2.65rem, 4.4vw, 3.75rem); }

.r4-friction { background: #f5f3ee; }
.friction-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--ink); }
.friction-grid article { min-height: 250px; padding: 24px 22px 28px 0; border-bottom: 1px solid var(--line); }
.friction-grid article + article { padding-left: 22px; border-left: 1px solid var(--line); }
.friction-grid article > span { display: block; margin-bottom: 42px; color: var(--r4-blue); font-size: .7rem; font-weight: 700; letter-spacing: .12em; }
.friction-grid h3 { max-width: 220px; margin-bottom: 14px; font-size: 1.35rem; }
.friction-grid p { margin: 0; font-size: .9rem; line-height: 1.55; }
.friction-turn { display: grid; grid-template-columns: 120px 1fr auto; gap: 28px; align-items: center; margin-top: 36px; padding: 24px 28px; color: var(--white); background: var(--r4-blue); }
.friction-turn span { color: #cbd7ff; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.friction-turn strong { font-size: 1.08rem; }
.friction-turn a { color: var(--white); font-size: .84rem; font-weight: 700; text-decoration: none; }
.friction-turn a i,
.pathway-stack a i,
.specialty-block a i { display: inline-block; font-style: normal; transition: transform 180ms ease; }
.friction-turn a:hover i,
.pathway-stack a:hover i,
.specialty-block a:hover i { transform: translateX(4px); }

.sprint-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(480px, 1.2fr); gap: clamp(56px, 8vw, 110px); align-items: center; background: var(--white); }
.sprint-copy h2 { max-width: 480px; margin-bottom: 22px; font-size: clamp(2.7rem, 4.1vw, 3.55rem); }
.sprint-copy p { max-width: 520px; margin-bottom: 28px; font-size: 1.03rem; }
.sprint-board { border: 1px solid #aab5c1; background: #f5f3ee; box-shadow: 14px 14px 0 var(--r4-navy); }
.sprint-board-head { display: flex; justify-content: space-between; gap: 20px; padding: 17px 20px; color: var(--white); background: var(--r4-blue); }
.sprint-board-head span { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.sprint-board-head strong { font-size: .76rem; }
.sprint-board ol { margin: 0; padding: 0 20px; list-style: none; }
.sprint-board li { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; min-height: 72px; border-bottom: 1px solid #cdd3d8; }
.sprint-board li:last-child { border-bottom: 0; }
.sprint-board li > span { color: var(--r4-blue); font-size: .67rem; font-weight: 700; }
.sprint-board li strong { display: block; margin-bottom: 2px; font-size: .9rem; }
.sprint-board li small { display: block; color: var(--muted); font-size: .72rem; line-height: 1.4; }

.pathways-section { background: #f5f3ee; }
.pathway-stack { border-top: 1px solid var(--ink); }
.pathway-stack > a { display: grid; grid-template-columns: 70px 1fr minmax(170px, auto); gap: 24px; align-items: center; padding: 30px 22px 30px 0; border-bottom: 1px solid #c7ced6; text-decoration: none; transition: background 180ms ease, padding 180ms ease; }
.pathway-stack > a:hover { padding-right: 16px; padding-left: 12px; background: var(--white); }
.pathway-number { color: var(--r4-blue); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.pathway-stack small { display: block; margin-bottom: 6px; color: #6d7886; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pathway-stack h3 { margin-bottom: 6px; font-size: 1.7rem; }
.pathway-stack p { max-width: 650px; margin: 0; font-size: .92rem; }
.pathway-stack > a > strong { color: var(--r4-blue); font-size: .82rem; text-align: right; }

.delivery-section { display: grid; grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr); gap: clamp(60px, 9vw, 120px); align-items: center; color: var(--white); background: var(--r4-navy); }
.delivery-copy h2 { max-width: 500px; color: var(--white); font-size: clamp(2.65rem, 4.2vw, 3.65rem); }
.delivery-copy p { max-width: 520px; color: #adbbca; }
.delivery-copy .section-kicker,
.delivery-copy .text-link { color: var(--mint); }
.artifact-stack { display: grid; gap: 9px; padding: 26px; border: 1px solid #39516a; background: #0b263f; }
.artifact-stack > div { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 61px; padding: 13px 16px; border-left: 3px solid var(--mint); color: var(--r4-navy); background: #f5f3ee; transition: transform 180ms ease; }
.artifact-stack > div:nth-child(even) { margin-left: 22px; border-left-color: var(--r4-blue); }
.artifact-stack > div:hover { transform: translateX(-6px); }
.artifact-stack span { font-size: .88rem; font-weight: 700; }
.artifact-stack small { color: #647080; font-size: .67rem; text-align: right; }

.specialty-section { display: grid; grid-template-columns: 1fr 1fr; }
.specialty-block { min-height: 480px; padding: clamp(70px, 7vw, 100px) max(32px, calc((100vw - var(--max)) / 2)); }
.specialty-block:first-child { padding-left: max(32px, calc((100vw - var(--max)) / 2)); padding-right: clamp(44px, 7vw, 92px); }
.specialty-block:last-child { padding-right: max(32px, calc((100vw - var(--max)) / 2)); padding-left: clamp(44px, 7vw, 92px); }
.specialty-block h2 { max-width: 470px; margin-bottom: 20px; font-size: clamp(2.35rem, 3.6vw, 3.15rem); }
.specialty-block p { max-width: 510px; }
.specialty-block a { display: inline-flex; gap: 8px; margin-top: 8px; font-size: .86rem; font-weight: 700; text-decoration: none; }
.specialty-block > small { display: block; max-width: 520px; margin-top: 36px; font-size: .65rem; line-height: 1.55; }
.genesys-block { color: var(--white); background: var(--r4-blue); }
.genesys-block h2 { color: var(--white); }
.genesys-block p { color: #dfe6ff; }
.genesys-block .section-kicker,
.genesys-block a { color: var(--volt); }
.genesys-block > small { color: #c4d0f7; }
.healthcare-block { color: var(--r4-navy); background: var(--mint); }
.healthcare-block h2,
.healthcare-block p,
.healthcare-block .section-kicker,
.healthcare-block a { color: var(--r4-navy); }

.operating-section { background: var(--white); }
.operating-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.operating-steps li { padding: 28px 24px 10px 0; }
.operating-steps li + li { padding-left: 24px; border-left: 1px solid var(--line); }
.operating-steps li > span { display: block; margin-bottom: 48px; color: var(--r4-blue); font-size: .7rem; font-weight: 700; letter-spacing: .1em; }
.operating-steps h3 { margin-bottom: 11px; font-size: 1.3rem; }
.operating-steps p { margin: 0; font-size: .87rem; }

.r4-cta { position: relative; color: var(--white); background: var(--r4-navy); overflow: hidden; }
.r4-cta::before { position: absolute; top: 0; right: 0; width: 26%; height: 100%; background: var(--r4-blue); content: ""; opacity: .16; }
.r4-cta > * { position: relative; z-index: 1; }
.r4-cta h2 { max-width: 720px; color: var(--white); font-size: clamp(2.4rem, 3.8vw, 3.3rem); }
.r4-cta p { color: #b5c2d0; }
.r4-cta .section-kicker { color: var(--mint); }
.r4-cta .button.light { color: var(--r4-navy); background: var(--volt); }

.site-header { transition: height 180ms ease, box-shadow 180ms ease; }
.site-header.is-compact { height: 64px; box-shadow: 0 8px 26px rgba(7, 28, 49, .08); }

@media (max-width: 960px) {
  .friction-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .friction-grid article:nth-child(3) { padding-left: 0; border-left: 0; }
  .sprint-section,
  .delivery-section { grid-template-columns: 1fr; }
  .sprint-board,
  .artifact-stack { max-width: 720px; }
  .specialty-section { grid-template-columns: 1fr; }
  .specialty-block { min-height: auto; padding: 72px max(32px, calc((100vw - var(--max)) / 2)) !important; }
  .operating-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .operating-steps li:nth-child(3) { padding-left: 0; border-left: 0; }
}

@media (max-width: 720px) {
  .friction-grid { grid-template-columns: 1fr; }
  .friction-grid article,
  .friction-grid article + article { min-height: 0; padding: 24px 0; border-left: 0; }
  .friction-grid article > span { margin-bottom: 18px; }
  .friction-grid h3 { max-width: none; }
  .friction-turn { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .sprint-section { gap: 44px; }
  .sprint-board { box-shadow: 8px 8px 0 var(--r4-navy); }
  .sprint-board-head { align-items: flex-start; flex-direction: column; }
  .pathway-stack > a { grid-template-columns: 44px 1fr; }
  .pathway-stack > a > strong { grid-column: 2; text-align: left; }
  .artifact-stack { padding: 16px; }
  .artifact-stack > div,
  .artifact-stack > div:nth-child(even) { align-items: flex-start; flex-direction: column; gap: 3px; margin-left: 0; }
  .artifact-stack small { text-align: left; }
  .operating-steps { grid-template-columns: 1fr; }
  .operating-steps li,
  .operating-steps li + li { padding: 24px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .operating-steps li > span { margin-bottom: 16px; }
}

/* R4 interior pages */
.page-hero {
  isolation: isolate;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(48px, 7vw, 94px);
  min-height: 540px;
  color: var(--white);
  background: var(--r4-navy);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -250px;
  width: 420px;
  height: 620px;
  background: var(--r4-blue);
  content: "";
  opacity: .17;
  transform: rotate(21deg);
}

.page-hero-copy h1 { color: var(--white); font-size: clamp(3.15rem, 4.7vw, 4.05rem); }
.page-hero-copy > p { color: #b9c6d5; }
.page-hero .eyebrow { color: var(--mint); }
.page-hero .button.primary { color: var(--r4-navy); background: var(--volt); }
.page-hero .button.primary:hover { background: #d1ff98; }
.page-hero .button.outline { color: var(--white); border-color: #758ba1; }
.page-hero .button.outline:hover { color: var(--mint); border-color: var(--mint); }
.page-hero > .hero-panel {
  display: block;
  padding: 27px;
  border: 1px solid #3c566f;
  border-radius: 14px;
  color: var(--white);
  background: #0c263f;
  box-shadow: 13px 13px 0 #051421;
}
.page-hero .light-panel h2 { color: var(--white); }
.page-hero .light-panel .panel-topline { color: var(--mint); }
.page-hero .check-list li { border-color: #344e67; color: #bdc9d5; }
.page-hero .check-list li::before { color: var(--mint); content: "→"; }

.feature-grid > div,
.company-grid > article { transition: border-color 180ms ease, transform 180ms ease; }
.feature-grid > div:hover,
.company-grid > article:hover { border-top-color: var(--r4-blue); transform: translateY(-4px); }
.solution-row { transition: padding 180ms ease, background 180ms ease; }
.solution-row:hover { padding-right: 12px; padding-left: 12px; background: var(--white); }
.section.genesys-section { background: var(--r4-navy); }
.genesys-section .section-kicker,
.step-stack span { color: var(--mint); }

@media (max-width: 1120px) {
  .page-hero { grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr); gap: 42px; }
  .page-hero .hero-panel { display: block; }
}

@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero .hero-panel { display: none; }
}

.nav-cta,
.nav-mobile-cta { background: var(--r4-blue); }
.nav-cta:hover,
.nav-mobile-cta:hover { background: #1649cf; }
.text-link { color: var(--r4-blue); }

.contact-request-section { background: #f5f3ee; }
.contact-request-section .request-card { gap: clamp(54px, 8vw, 96px); }
.contact-request-section .request-copy h1 { max-width: 560px; font-size: clamp(3.3rem, 5vw, 4.4rem); }
.contact-route { position: relative; display: grid; gap: 0; max-width: 470px; margin: 34px 0 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.contact-route li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; min-height: 62px; border-bottom: 1px solid var(--line); }
.contact-route span { color: var(--r4-blue); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.contact-route strong { font-size: .86rem; }
.contact-request-section .form-column { padding: 28px; border: 1px solid #b8c1cb; background: var(--white); box-shadow: 12px 12px 0 var(--r4-blue); }
.lead-form .button.primary { background: var(--r4-blue); }
.lead-form .button.primary:hover { background: #1649cf; }
.footer { position: relative; background: #051421; }
.footer::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; background: var(--mint); content: ""; }

@media (max-width: 820px) {
  .contact-request-section .form-column { box-shadow: 8px 8px 0 var(--r4-blue); }
}

@media (max-width: 560px) {
  .page-hero-copy h1 { font-size: clamp(2.65rem, 11vw, 3rem); }
  .contact-request-section .request-copy h1 { font-size: clamp(2.75rem, 12vw, 3.35rem); }
  .contact-request-section .form-column { padding: 20px; }
}

/* R5 campaign-readiness and accessibility refinements */
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 5px;
  color: var(--white);
  background: var(--r4-blue, var(--blue));
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 140ms ease;
}
.skip-link:focus { outline-color: var(--white); transform: translateY(0); }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid #26405a;
  border-bottom: 1px solid #26405a;
  color: #dce5ee;
  background: var(--r4-navy, var(--dark));
}
.proof-strip > div {
  min-height: 92px;
  padding: 22px 24px;
  border-left: 1px solid #26405a;
}
.proof-strip > div:last-child { border-right: 1px solid #26405a; }
.proof-strip small {
  display: block;
  margin-bottom: 5px;
  color: var(--mint, #46d4ad);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.proof-strip strong { display: block; font-size: .93rem; line-height: 1.35; }

.scope-band {
  padding: 76px max(32px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: #0b263f;
}
.scope-band-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr);
  gap: clamp(54px, 8vw, 108px);
  align-items: start;
}
.scope-band h2 { max-width: 560px; color: var(--white); }
.scope-band p { max-width: 620px; color: #b8c5d2; }
.scope-band .section-kicker { color: var(--mint, #46d4ad); }
.scope-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #486077; }
.scope-index > div { min-height: 128px; padding: 22px 20px 22px 0; border-bottom: 1px solid #486077; }
.scope-index > div:nth-child(even) { padding-left: 24px; border-left: 1px solid #486077; }
.scope-index span { display: block; margin-bottom: 9px; color: var(--mint, #46d4ad); font-size: .66rem; font-weight: 700; letter-spacing: .12em; }
.scope-index h3 { margin-bottom: 8px; color: var(--white); font-size: 1.12rem; }
.scope-index p { margin: 0; font-size: .86rem; line-height: 1.52; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}
.pain-grid > div { min-height: 205px; padding: 26px 24px 30px 0; border-bottom: 1px solid var(--line); }
.pain-grid > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.pain-grid span { display: block; margin-bottom: 30px; color: var(--r4-blue, var(--blue)); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.pain-grid h3 { margin-bottom: 12px; font-size: 1.24rem; }
.pain-grid p { margin: 0; font-size: .9rem; line-height: 1.55; }

.pilot-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}
.pilot-timeline > div { min-height: 230px; padding: 26px 24px 30px 0; border-bottom: 1px solid var(--line); }
.pilot-timeline > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.pilot-timeline span { display: block; margin-bottom: 32px; color: var(--r4-blue, var(--blue)); font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.pilot-timeline h3 { margin-bottom: 12px; font-size: 1.24rem; }
.pilot-timeline p { margin: 0; font-size: .9rem; line-height: 1.55; }

.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid #c7ced6; }
.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--r4-blue, var(--blue));
  content: "+";
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 820px; margin: -5px 0 24px; font-size: .94rem; }

.dual-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 16px; }
.dual-links a { font-weight: 700; }
.form-assurance { margin: -4px 0 0; color: #657184; font-size: .76rem; line-height: 1.5; text-align: center; }
.form-assurance strong { color: #334358; }
.required-note { margin: 0; color: #657184; font-size: .74rem; }
.lead-form input[required], .lead-form select[required] { background-clip: padding-box; }
.lead-form .check input { cursor: pointer; }
.lead-form button[disabled] { cursor: wait; opacity: .75; }

.small-caps-note {
  margin-top: 22px;
  color: #687585;
  font-size: .76rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-strip > div:nth-child(odd) { border-left: 1px solid #26405a; }
  .proof-strip > div:nth-child(even) { border-right: 1px solid #26405a; }
  .scope-band-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-grid > div + div { padding-left: 0; border-left: 0; }
  .pilot-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pilot-timeline > div:nth-child(odd) { padding-right: 24px; border-left: 0; }
  .pilot-timeline > div:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
}

@media (max-width: 560px) {
  .proof-strip { grid-template-columns: 1fr; padding: 0 24px; }
  .proof-strip > div,
  .proof-strip > div:nth-child(odd),
  .proof-strip > div:nth-child(even),
  .proof-strip > div:last-child { min-height: auto; padding: 18px 0; border-right: 0; border-left: 0; border-bottom: 1px solid #26405a; }
  .proof-strip > div:last-child { border-bottom: 0; }
  .scope-band { padding: 64px 24px; }
  .scope-index { grid-template-columns: 1fr; }
  .scope-index > div,
  .scope-index > div:nth-child(even) { min-height: auto; padding: 20px 0; border-left: 0; }
  .pilot-timeline { grid-template-columns: 1fr; }
  .pilot-timeline > div,
  .pilot-timeline > div:nth-child(odd),
  .pilot-timeline > div:nth-child(even) { min-height: auto; padding: 22px 0; border-left: 0; }
  .dual-links { align-items: stretch; }
  .dual-links .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}

@media (min-width: 901px) {
  .pain-grid > div:nth-child(3n + 1) { padding-left: 0; border-left: 0; }
}
