:root {
  --ink: #0b1426;
  --ink-soft: #263246;
  --paper: #f3f2ee;
  --white: #ffffff;
  --line: #d5d7da;
  --blue: #2157f2;
  --blue-dark: #1744c8;
  --muted: #667085;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(11, 20, 38, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; line-height: 1.06; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.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: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--white); padding: 12px 18px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(11,20,38,.96); box-shadow: 0 12px 35px rgba(0,0,0,.13); backdrop-filter: blur(12px); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; background: var(--blue); color: var(--white); font-weight: 850; font-size: 18px; line-height: 1; letter-spacing: -.07em; }
.brand-name { font-weight: 700; line-height: 1.02; font-size: 16px; letter-spacing: -.02em; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.button) { color: rgba(255,255,255,.75); text-decoration: none; font-size: 14px; font-weight: 600; transition: color .2s ease; }
.main-nav > a:not(.button):hover { color: var(--white); }
.menu-toggle { display: none; border: 0; background: none; padding: 10px 0 10px 10px; color: inherit; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 6px 0; background: currentColor; transition: transform .2s ease; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-dark); border-color: var(--blue-dark); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid #8fb0ff; outline-offset: 3px; }
.button-small { min-height: 42px; padding-inline: 18px; }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-light:hover { background: #dfe6ff; border-color: #dfe6ff; }
.text-link { display: inline-flex; gap: 12px; color: var(--white); text-decoration: none; font-weight: 700; font-size: 14px; }

.hero { min-height: 100svh; padding: 116px 0 42px; background: var(--ink); color: var(--white); position: relative; overflow: hidden; display: flex; align-items: center; }
.hero::after { content: ""; position: absolute; right: -18vw; bottom: -40vw; width: 70vw; height: 70vw; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 10vw rgba(255,255,255,.018), 0 0 0 20vw rgba(255,255,255,.018); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .65fr); gap: 9vw; align-items: end; }
.eyebrow { margin-bottom: 24px; color: var(--blue); font-size: 12px; line-height: 1.2; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(42px, 5.2vw, 68px); font-weight: 650; }
.hero h1 span { color: #91aaf7; }
.hero-lead { max-width: 670px; margin-bottom: 28px; color: #b7c0d0; font-size: clamp(16px, 1.5vw, 19px); line-height: 1.52; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-note { margin: 18px 0 0; color: #748198; font-size: 12px; }
.hero-panel { border-top: 1px solid rgba(255,255,255,.24); padding-top: 20px; }
.panel-label { color: #8792a4; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.capability-list { list-style: none; margin: 0; padding: 0; }
.capability-list li { display: grid; grid-template-columns: 38px 1fr; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.capability-list li > span { grid-row: span 2; color: #657085; font-size: 12px; }
.capability-list strong { font-size: 17px; letter-spacing: -.02em; }
.capability-list small { color: #8792a4; }
.panel-outcome { margin-top: 28px; padding: 24px; border: 1px solid rgba(145,170,247,.4); background: rgba(33,87,242,.1); }
.panel-outcome span, .panel-outcome strong { display: block; }
.panel-outcome span { color: #8e9aaf; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.panel-outcome strong { margin-top: 6px; font-size: 20px; }

.statement { background: var(--white); padding: 72px 0; border-bottom: 1px solid var(--line); }
.statement-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.statement p { color: var(--muted); }
.statement h2 { max-width: 820px; margin: 0; font-size: clamp(28px, 3.2vw, 44px); font-weight: 580; }

.section { padding: 130px 0; }
.section-heading { display: grid; grid-template-columns: 1.6fr 1fr; gap: 80px; margin-bottom: 64px; align-items: end; }
.section-heading h2 { max-width: 720px; margin: 0; font-size: clamp(34px, 4vw, 52px); font-weight: 610; }
.section-heading > p { color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.service-card { min-height: 480px; padding: 42px 34px; border-right: 1px solid var(--line); }
.service-card:last-child { border-right: 0; }
.card-number { display: inline-block; margin-bottom: 84px; color: var(--blue); font-weight: 800; font-size: 13px; }
.service-card h3 { margin-bottom: 18px; font-size: 26px; font-weight: 650; }
.service-card p { min-height: 110px; color: var(--muted); }
.service-card ul { list-style: none; padding: 22px 0 0; margin: 0; border-top: 1px solid var(--line); }
.service-card li { position: relative; padding: 7px 0 7px 20px; font-size: 14px; font-weight: 600; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; background: var(--blue); }

.section-dark { background: var(--ink); color: var(--white); }
.eyebrow-light { color: #91aaf7; }
.results-intro { display: grid; grid-template-columns: .6fr 1.5fr .75fr; gap: 60px; align-items: start; }
.results-intro h2 { max-width: 700px; font-size: clamp(36px, 4vw, 54px); font-weight: 610; }
.results-intro > p:last-child { color: #9aa5b7; font-size: 17px; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.metric { padding: 38px 24px 38px 0; border-right: 1px solid rgba(255,255,255,.18); }
.metric:not(:first-child) { padding-left: 28px; }
.metric:last-child { border-right: 0; }
.metric strong { display: flex; align-items: baseline; gap: .1em; white-space: nowrap; font-size: clamp(32px, 3.5vw, 50px); letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.metric strong > span { display: inline; color: var(--white); }
.metric strong small { font: inherit; }
.metric > span { display: block; margin-top: 8px; color: #8d99ac; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.results-cta { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding-top: 58px; }
.results-cta p { max-width: 620px; margin: 0; font-size: 25px; line-height: 1.3; letter-spacing: -.03em; }

.testimonials { background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { border: 1px solid var(--line); background: var(--white); }
.video-frame { display: block; position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; padding: 0; border: 0; background: var(--ink); cursor: pointer; text-align: left; }
.video-frame img { height: 100%; object-fit: cover; filter: grayscale(100%); opacity: .76; transition: transform .35s ease, filter .35s ease, opacity .35s ease; }
.video-frame:hover img { transform: scale(1.025); filter: grayscale(20%); opacity: .9; }
.play-button { position: absolute; left: 24px; bottom: 24px; display: grid; place-items: center; width: 50px; height: 50px; background: var(--blue); color: var(--white); font-size: 14px; }
.testimonial-card > div { padding: 24px; }
.testimonial-card strong, .testimonial-card span { display: block; }
.testimonial-card strong { font-size: 18px; }
.testimonial-card span { color: var(--muted); font-size: 14px; }

body.modal-open { overflow: hidden; }
.video-modal[hidden] { display: none; }
.video-modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 28px; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(4, 9, 18, .88); backdrop-filter: blur(8px); }
.video-modal-dialog { position: relative; z-index: 1; width: min(100%, 1040px); background: var(--ink); color: var(--white); box-shadow: 0 30px 100px rgba(0, 0, 0, .48); }
.video-modal-header { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 18px 14px 24px; border-bottom: 1px solid rgba(255,255,255,.14); }
.video-modal-header h2 { margin: 0; font-size: 18px; letter-spacing: -.02em; }
.video-modal-close { display: inline-flex; align-items: center; gap: 10px; padding: 8px 10px; border: 0; background: transparent; color: #c8d0dc; cursor: pointer; font: inherit; font-size: 13px; font-weight: 700; }
.video-modal-close span { color: var(--white); font-size: 28px; font-weight: 300; line-height: .7; }
.video-modal-player { aspect-ratio: 16/9; background: #000; }
.video-modal-player iframe { display: block; width: 100%; height: 100%; border: 0; }

.final-cta { padding: 120px 0; background: #dce5ff; }
.final-cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 100px; align-items: end; }
.final-cta h2 { max-width: 700px; margin: 0; font-size: clamp(34px, 4.5vw, 54px); font-weight: 620; }
.final-cta-grid > div:last-child p { margin-bottom: 30px; color: var(--ink-soft); font-size: 18px; }

.site-footer { padding: 72px 0 110px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; align-items: start; }
.brand-footer { grid-row: span 2; }
.footer-grid > p { color: #94a0b2; }
.footer-contact { display: flex; flex-direction: column; gap: 5px; }
.footer-contact a { color: #c5cbd6; text-decoration: none; font-size: 14px; }
.copyright { grid-column: 2 / -1; margin: 20px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.floating-cta { display: none; }

.faq { background: #e9e8e3; border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro h2 { margin-bottom: 22px; font-size: clamp(34px, 4vw, 50px); font-weight: 620; }
.faq-intro > p:last-child { color: var(--muted); font-size: 17px; }
.faq-list { border-top: 1px solid #bfc2c7; }
.faq-list details { border-bottom: 1px solid #bfc2c7; }
.faq-list summary { position: relative; padding: 27px 52px 27px 0; cursor: pointer; list-style: none; font-weight: 720; font-size: 18px; letter-spacing: -.02em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 23px; color: var(--blue); font-size: 26px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; padding: 0 48px 26px 0; margin: 0; color: var(--muted); }

.agenda-section { padding: 120px 0; background: var(--white); scroll-margin-top: 70px; }
.agenda-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; margin-bottom: 54px; }
.agenda-heading h2 { max-width: 680px; margin: 0; font-size: clamp(36px, 4.2vw, 54px); font-weight: 620; }
.agenda-heading > div:last-child > p { color: var(--muted); font-size: 17px; }
.agenda-benefits { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 22px 0 0; padding: 0; }
.agenda-benefits li { padding: 7px 11px; border: 1px solid #bfc8d8; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.cal-shell { min-height: 720px; padding: 12px; border: 1px solid var(--line); background: #fafafa; box-shadow: var(--shadow); overflow: hidden; }
#my-cal-inline { width: 100%; min-height: 694px; }
.footer-grid-simple { grid-template-columns: 1.1fr 1fr .8fr; }
.footer-grid-simple .brand-footer { grid-row: auto; }
.footer-nav { display: flex; flex-direction: column; gap: 5px; }
.footer-nav a { color: #c5cbd6; text-decoration: none; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 900px) {
  .container { width: min(calc(100% - 36px), var(--max)); }
  .menu-toggle { display: block; z-index: 2; }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav > a:not(.button) { font-size: 25px; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: auto; padding: 132px 0 74px; }
  .hero-grid, .statement-grid, .section-heading, .results-intro, .final-cta-grid, .faq-grid, .agenda-heading { grid-template-columns: 1fr; gap: 42px; }
  .hero-panel { margin-top: 30px; }
  .section { padding: 96px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .card-number { margin-bottom: 42px; }
  .service-card p { min-height: auto; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .agenda-section { padding: 96px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-footer { grid-column: 1 / -1; grid-row: auto; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 72px; }
  .hero h1 { font-size: clamp(40px, 11vw, 50px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { padding: 8px 0; }
  .statement { padding: 54px 0; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 42px; }
  .service-card { padding: 32px 24px; }
  .metrics { grid-template-columns: 1fr; }
  .metric, .metric:not(:first-child) { padding: 28px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .metric:last-child { border-bottom: 0; }
  .results-cta { align-items: stretch; flex-direction: column; }
  .final-cta { padding: 78px 0 100px; }
  .agenda-section { padding: 78px 0 100px; }
  .cal-shell { min-height: 680px; padding: 2px; }
  #my-cal-inline { min-height: 674px; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { grid-column: 1; }
  .floating-cta { position: fixed; z-index: 80; left: 14px; right: 14px; bottom: 12px; display: flex; justify-content: center; padding: 15px 20px; background: var(--blue); color: var(--white); text-decoration: none; font-size: 14px; font-weight: 800; box-shadow: 0 12px 36px rgba(11,20,38,.3); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(calc(100% + 24px)); transition: opacity .2s ease, visibility .2s ease, transform .25s ease; }
  .floating-cta.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .video-modal { padding: 12px; }
  .video-modal-header { min-height: 58px; padding: 10px 10px 10px 14px; }
  .video-modal-header h2 { font-size: 15px; }
  .video-modal-close { font-size: 0; }
  .video-modal-close span { font-size: 30px; }
}
