:root {
  --ink: #070d1a;
  --text: #20293a;
  --muted: #536176;
  --line: #e5e9f2;
  --violet: #5b5cf6;
  --violet-dark: #4849d8;
  --orange: #ff9d18;
  --soft: #f7f8fc;
  --white: #ffffff;
  --container: 1456px;
  --content: min(calc(100% - 48px), var(--container));
  --radius: 8px;
  --shadow: 0 18px 46px rgba(15, 23, 42, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 1px;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(91, 92, 246, .45);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 24px;
  top: 12px;
  z-index: 10;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner,
.hero,
.section-inner,
.split-inner,
.contact-inner {
  width: var(--content);
  margin-inline: auto;
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(104px, 7vw, 128px);
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px clamp(16px, 2.2vw, 42px);
  color: #161b2b;
  font-weight: 700;
}

.main-nav a {
  border-radius: var(--radius);
  padding: 8px 2px;
}

.main-nav a:hover {
  color: var(--violet);
}

.nav-cta {
  color: var(--violet);
  border: 1px solid #a5a8ff;
  padding: 11px 20px !important;
}

.hero {
  min-height: min(808px, calc(100svh - 92px));
  padding-block: clamp(56px, 4.6vw, 72px) clamp(58px, 5vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(48px, 5.4vw, 86px);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin: 0 0 22px;
}

.eyebrow span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  flex: 0 0 auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
}

h1 {
  max-width: 10.8ch;
  font-size: clamp(3rem, 4.15vw, 4.75rem);
  line-height: 1;
  margin-bottom: 26px;
}

h2 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 2.8vw, 3.75rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.13rem, .35vw + 1rem, 1.32rem);
  line-height: 1.28;
  margin-bottom: 10px;
}

.lead {
  max-width: 62ch;
  color: var(--text);
  font-size: clamp(1.13rem, .55vw + 1rem, 1.34rem);
  line-height: 1.55;
  margin-bottom: 32px;
}

.primary-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 60px;
  border: 0;
  border-radius: var(--radius);
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(91, 92, 246, .24);
  font-weight: 850;
  font-size: 1.06rem;
  line-height: 1.15;
  padding: 0 30px;
}

.primary-cta:hover,
.button:hover {
  background: var(--violet-dark);
}

.microcopy,
.meta {
  color: var(--muted);
  font-size: .96rem;
}

.microcopy {
  margin: 16px 0 0;
}

.trust-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  margin-top: clamp(4px, 1.2vw, 10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
  overflow: hidden;
}

.trust-row div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
  color: #151c2b;
  font-weight: 750;
  line-height: 1.32;
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(91, 92, 246, .12));
}

.hero-media {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.hero-video,
.article-hero {
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #070d1a;
  box-shadow: var(--shadow);
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.article-hero {
  aspect-ratio: 16 / 11.2;
  background:
    linear-gradient(110deg, rgba(7, 13, 26, .74), rgba(7, 13, 26, .12)),
    radial-gradient(circle at 72% 24%, rgba(255, 157, 24, .34), transparent 24%),
    linear-gradient(135deg, #15202e, #dfe7ee 58%, #1c2738);
}

.reference-bar {
  padding: 0 clamp(16px, 3vw, 40px) clamp(36px, 5vw, 64px);
}

.reference-inner {
  width: var(--content);
  margin-inline: auto;
  border: 1px solid #cfd2ff;
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(91, 92, 246, .1), rgba(255, 157, 24, .07)),
    #fbfbff;
  box-shadow: 0 18px 46px rgba(91, 92, 246, .1);
  display: grid;
  grid-template-columns: minmax(240px, .3fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(22px, 2.4vw, 34px) clamp(22px, 3vw, 44px);
}

.reference-copy {
  display: grid;
  gap: 12px;
}

.reference-copy p {
  color: var(--violet);
  max-width: 25ch;
  font-weight: 850;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.42;
}

.reference-copy p + p {
  color: #3d47d8;
  font-size: .96rem;
}

.reference-logo-groups {
  display: grid;
  gap: 10px;
}

.reference-label {
  color: #6b7280;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.reference-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
}

.reference-logos img {
  width: 100%;
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
  justify-self: center;
  opacity: .78;
  filter: grayscale(1);
  transition: opacity .18s ease, filter .18s ease, transform .18s ease;
}

.media-reference-logos {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(91, 92, 246, .18);
  padding-top: 14px;
}

.media-reference-label {
  margin-top: 10px;
}

.media-logo-mark,
.case-media-logo {
  position: relative;
  display: inline-block;
  min-width: 0;
}

.media-logo-mark {
  justify-self: center;
  line-height: 0;
}

.media-logo-mark sup,
.case-media-logo sup {
  position: absolute;
  top: -6px;
  right: -7px;
  color: #7a8496;
  font-size: .58rem;
  font-weight: 900;
  line-height: 1;
}

.media-reference-logos img {
  max-height: 42px;
  opacity: .7;
}

.reference-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-1px);
}

.case-media-badge {
  display: grid;
  gap: 12px;
  align-self: end;
  border: 1px solid #d7d9ff;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(91, 92, 246, .08), rgba(255, 157, 24, .05)),
    #fbfbff;
  padding: 16px;
}

.case-media-logo {
  justify-self: start;
}

.case-media-logo img {
  width: auto;
  max-width: 142px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
}

.case-media-badge blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.3;
}

.case-media-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.section,
.split-section,
.contact-section {
  padding-block: clamp(72px, 7vw, 118px);
}

.alt-section,
.split-section,
.contact-section {
  background: var(--soft);
}

.section-kicker {
  color: #2f3a4f;
  font-size: .96rem;
  font-weight: 750;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.section-kicker strong {
  color: var(--violet);
  margin-right: 10px;
}

.section-lead {
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(1.15rem, .45vw + 1rem, 1.35rem);
  line-height: 1.58;
  margin-bottom: 34px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
}

.section-grid .section-heading {
  margin-bottom: 0;
}

.visual-section.alt {
  background: var(--soft);
}

.placeholder-panel,
.empty-state {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(91, 92, 246, .86), rgba(7, 13, 26, .7)),
    radial-gradient(circle at 82% 22%, rgba(255, 157, 24, .78), transparent 27%),
    linear-gradient(135deg, #202a3b, #eef2f8);
  box-shadow: var(--shadow);
}

.empty-state {
  min-height: 240px;
  background:
    linear-gradient(135deg, rgba(7, 13, 26, .05), rgba(91, 92, 246, .08)),
    radial-gradient(circle at 86% 18%, rgba(255, 157, 24, .22), transparent 25%),
    var(--white);
}

.testimonial-strip {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(91, 92, 246, .06), rgba(255, 157, 24, .04)),
    #fbfbff;
  padding: clamp(20px, 2.4vw, 30px);
}

.testimonial-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.testimonial-strip-head .eyebrow {
  margin: 0;
}

.testimonial-strip-head h3 {
  max-width: 36ch;
  margin: 0;
  font-size: clamp(1.18rem, .45vw + 1rem, 1.45rem);
  line-height: 1.25;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 13, 26, .035);
  padding: 18px;
}

.testimonial-person {
  min-height: 56px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .1);
}

.testimonial-logo {
  width: auto;
  max-width: 138px;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: .98rem;
  font-weight: 750;
  line-height: 1.5;
}

.testimonial-author {
  margin: 0;
  color: var(--violet);
  font-size: .92rem;
  font-weight: 850;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(440px, 1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
  margin-bottom: 42px;
}

.problem-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.center-title {
  text-align: center;
  font-size: clamp(1.35rem, 1vw + 1rem, 1.8rem);
  margin-bottom: 24px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.question-grid article,
.usecase-grid article,
.process-grid article,
.setup-grid article,
.ask-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
}

.question-grid article {
  min-height: 210px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 20px;
  text-align: center;
  padding: 24px 18px;
}

.question-grid span,
.icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #eeeefe;
  color: var(--violet);
  font-size: 2rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.question-grid .question-icon img,
.question-grid .question-icon svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.icon.orange {
  background: #fff1df;
  color: var(--orange);
}

.icon.green {
  background: #eaf3e6;
  color: #2f6b22;
}

.quote-band,
.cta-band,
.privacy-band,
.final-band,
.soft-note {
  border-radius: var(--radius);
  background: #f3f2ff;
}

.quote-band {
  margin-top: 28px;
  border: 1px solid #b9bcff;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  padding: 26px clamp(28px, 5vw, 74px);
  text-align: center;
}

.quote-band > span {
  color: var(--violet);
  font-size: 6rem;
  line-height: .6;
}

.quote-band strong {
  font-size: clamp(1.6rem, 1.4vw + 1rem, 2.35rem);
  line-height: 1.25;
}

em {
  color: var(--violet);
  font-style: normal;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.usecase-grid article {
  grid-column: span 2;
  min-height: 260px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.usecase-grid article:nth-child(4),
.usecase-grid article:nth-child(5) {
  grid-column: span 3;
}

.usecase-grid article div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 14px;
}

.usecase-grid h3 {
  margin-bottom: 0;
}

.usecase-grid p {
  max-width: 44ch;
  margin-bottom: 0;
  color: var(--text);
  line-height: 1.55;
}

.usecase-grid .usecase-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.usecase-grid small,
.setup-grid small {
  border: 1px solid #b8bbff;
  border-radius: 5px;
  color: var(--violet);
  padding: 7px 16px;
  font-weight: 700;
}

.usecase-grid article:nth-child(2) small,
.usecase-grid article:nth-child(4) small {
  border-color: #ffbe75;
  color: #f07d00;
}

.cta-band,
.final-band {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) minmax(280px, 360px);
  align-items: center;
  gap: 28px;
  padding: 28px clamp(28px, 4vw, 54px);
}

.cta-band p,
.final-band p,
.soft-note p {
  color: var(--muted);
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 40px;
}

.process-grid article {
  min-height: 320px;
  position: relative;
  text-align: center;
  padding: 28px 22px;
}

.process-grid b {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--violet);
  color: var(--white);
}

.process-grid .icon {
  margin: 34px auto 22px;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.setup-grid article {
  min-height: 360px;
  padding: 28px;
}

.setup-grid i {
  width: 34px;
  height: 3px;
  display: block;
  background: var(--violet);
  margin: 18px 0 28px;
}

.setup-grid article:nth-child(2) i { background: var(--orange); }
.setup-grid article:nth-child(3) i { background: #2f6b22; }

.setup-grid small {
  display: block;
  margin-top: 28px;
  background: #f0efff;
}

.setup-grid article:nth-child(2) small { background: #fff3e6; border-color: #ffd09e; color: #9f5a00; }
.setup-grid article:nth-child(3) small { background: #eaf3e6; border-color: #b7d4af; color: #2f6b22; }

.credential-bar {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(320px, .64fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  border: 1px solid #d7d9ff;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(91, 92, 246, .08), rgba(255, 157, 24, .06)),
    #fbfbff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, .05);
  padding: clamp(24px, 3vw, 38px);
}

.credential-copy .eyebrow {
  margin-bottom: 14px;
}

.credential-copy h3 {
  max-width: 25ch;
  font-size: clamp(1.45rem, .9vw + 1rem, 2rem);
  line-height: 1.18;
}

.credential-copy p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.credential-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
}

.credential-logos img {
  width: 100%;
  max-width: 150px;
  max-height: 86px;
  object-fit: contain;
  justify-self: center;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, .08));
}

.credential-logos .credential-award {
  max-height: 118px;
}

.booking-section {
  background: var(--white);
}

.booking-form {
  display: grid;
  gap: 22px;
  border: 1px solid #cfd2ff;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(91, 92, 246, .06), rgba(255, 255, 255, 0) 36%),
    var(--white);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3vw, 38px);
}

.booking-form-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.booking-form-head .eyebrow {
  margin-bottom: 12px;
}

.booking-form-head h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 1vw + 1rem, 2rem);
}

.form-grid,
.appointment-grid {
  display: grid;
  gap: 16px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.appointment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-form label,
.booking-form legend {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 850;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border: 1px solid #d7dce8;
  border-radius: var(--radius);
  background: #fbfcff;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  padding: 13px 14px;
}

.booking-form textarea {
  min-height: 116px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: #9ea2ff;
  outline: 3px solid rgba(91, 92, 246, .16);
}

.booking-form fieldset {
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

.topic-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.topic-options label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcff;
  padding: 12px 14px;
  color: var(--text);
  font-weight: 750;
  line-height: 1.25;
}

.topic-options input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--violet);
}

.booking-form .primary-cta {
  width: 100%;
}

.form-status {
  color: var(--muted);
  font-size: .92rem;
  margin: -8px 0 0;
}

.booking-benefits {
  display: grid;
  gap: 18px;
  margin: 36px 0;
}

.booking-benefits article {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.booking-benefits .icon {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
}

.booking-benefits h3,
.booking-benefits p {
  margin-bottom: 2px;
}

.booking-benefits p {
  max-width: 48ch;
  color: var(--text);
  line-height: 1.5;
}

.soft-note,
.privacy-band {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
}

.soft-note strong {
  font-size: clamp(1.35rem, .9vw + 1rem, 1.8rem);
  line-height: 1.35;
}

.privacy-band {
  margin-top: 18px;
}

.privacy-band .icon {
  width: 58px;
  height: 58px;
  font-size: 1.4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: .62fr 1fr;
  gap: clamp(44px, 7vw, 96px);
}

.ask-card {
  margin-top: 34px;
  padding: 34px;
}

.ask-card .primary-cta {
  margin: 24px 0 16px;
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.16rem;
  font-weight: 800;
  padding: 22px 28px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  color: var(--muted);
  margin: -4px 28px 24px;
}

.final-band {
  border: 1px solid #b9bcff;
}

.section-heading p:not(.eyebrow),
.contact-section p,
.feature-grid p,
.steps span,
.case-study-card p,
.case-study-card dd,
.article p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-grid,
.case-study-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.case-study-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.feature-grid article,
.case-study-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-grid article {
  padding: clamp(22px, 2vw, 30px);
}

.split-inner,
.contact-inner {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 78px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:first-child {
  padding-top: 0;
}

.compact {
  padding-block: clamp(66px, 6vw, 92px);
}

.pill-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-row span,
.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 17px;
  color: #273246;
  background: var(--white);
  font-weight: 750;
}

.case-study-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: clamp(22px, 2vw, 30px);
  box-shadow: 0 18px 45px rgba(7, 13, 26, .04);
}

.case-study-feature {
  grid-column: 1 / -1;
  grid-template-columns: 96px minmax(0, .72fr) minmax(360px, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
  padding: clamp(26px, 3vw, 42px);
}

.case-study-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f0efff;
}

.case-study-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.case-study-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, .8vw + 1rem, 1.85rem);
  line-height: 1.15;
}

.case-study-card p,
.case-study-card ul,
.case-study-card dl {
  margin: 0;
}

.case-study-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.case-study-card li {
  position: relative;
  padding-left: 22px;
  color: #273246;
  font-weight: 750;
  line-height: 1.45;
}

.case-study-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.case-study-card dl {
  display: grid;
  gap: 14px;
}

.case-study-card dl div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.case-study-card dl div:first-child {
  padding-top: 0;
  border-top: 0;
}

.case-study-card dt {
  color: var(--ink);
  font-weight: 850;
}

.case-study-card dd {
  margin: 0;
}

.case-study-card .meta {
  color: var(--violet);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.back-link:hover,
.site-footer a:hover {
  color: var(--violet);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  padding-block: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-notes {
  width: var(--content);
  margin-inline: auto;
  border-top: 1px solid var(--line);
  padding: 16px 0 24px;
}

.site-footer .footer-notes p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.4;
}

.site-footer .footer-notes p:last-child {
  margin-bottom: 0;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.article {
  width: var(--content);
  margin: 0 auto;
  padding-block: clamp(54px, 8vw, 104px);
}

.article h1 {
  max-width: 16ch;
  font-size: clamp(2.65rem, 3.9vw, 4.5rem);
}

.article .lead,
.article > p,
.article .tag-row,
.back-link {
  max-width: 880px;
}

.article .lead {
  font-size: clamp(1.12rem, .45vw + 1rem, 1.28rem);
}

.article-hero {
  max-width: 1040px;
  min-height: 320px;
  margin: 40px 0;
}

.back-link {
  color: var(--violet);
  font-weight: 850;
}

@media (min-width: 1700px) {
  :root {
    --container: 1480px;
  }
}

@media (max-width: 1100px) {
  .hero,
  .split-inner,
  .contact-inner,
  .section-grid,
  .section-grid.reverse,
  .problem-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-copy {
    max-width: 760px;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-media {
    max-width: 820px;
  }

  .case-study-grid,
  .case-study-feature,
  .credential-bar,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .credential-copy h3 {
    max-width: 34ch;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-row div:nth-child(2) {
    border-right: 0;
  }

  .trust-row div:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  :root {
    --content: min(calc(100% - 32px), var(--container));
  }

  html {
    scroll-behavior: auto;
  }

  .header-inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-block: 14px;
  }

  .brand {
    width: 118px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 8px 16px;
    font-size: .95rem;
  }

  .main-nav a {
    padding-block: 4px;
  }

  .nav-cta {
    padding: 7px 12px !important;
  }

  .hero {
    padding-block: 42px 58px;
    gap: 34px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 11vw, 4rem);
    line-height: 1.02;
  }

  h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .lead {
    font-size: 1.08rem;
  }

  .primary-cta,
  .button {
    width: 100%;
    min-height: 58px;
    padding-inline: 18px;
  }

  .microcopy {
    margin-bottom: 32px;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
  }

  .trust-row div:nth-child(2) {
    border-right: 0;
  }

  .trust-row div:nth-child(3) {
    grid-column: auto;
    border-top: 0;
    border-bottom: 0;
  }

  .hero-video {
    aspect-ratio: 4 / 3;
  }

  .reference-bar {
    padding-bottom: 46px;
  }

  .reference-inner {
    grid-template-columns: 1fr;
  }

  .reference-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-logos img {
    max-width: 130px;
  }

  .credential-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credential-logos img {
    max-width: 138px;
  }

  .credential-logos .credential-award {
    max-height: 104px;
  }

  .testimonial-strip-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .form-grid,
  .appointment-grid,
  .topic-options {
    grid-template-columns: 1fr;
  }

  .section,
  .split-section,
  .contact-section {
    padding-block: 62px;
  }

  .placeholder-panel {
    min-height: 260px;
  }

  .empty-state {
    min-height: 190px;
  }

  .feature-grid,
  .case-study-grid,
  .question-grid,
  .usecase-grid,
  .process-grid,
  .setup-grid {
    grid-template-columns: 1fr;
  }

  .case-study-feature {
    grid-template-columns: 1fr;
  }

  .case-study-card dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .question-grid article,
  .usecase-grid article,
  .usecase-grid article:nth-child(4),
  .usecase-grid article:nth-child(5) {
    grid-column: auto;
  }

  .cta-band,
  .final-band,
  .quote-band {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-band .primary-cta,
  .final-band .primary-cta {
    width: 100%;
  }

  .soft-note,
  .privacy-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .article {
    width: var(--content);
  }
}

@media (max-width: 420px) {
  .main-nav {
    gap: 6px 12px;
    font-size: .9rem;
  }

  .brand {
    width: 108px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.1rem);
  }

}

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