@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins/pxiByp8kv8JHgFVrLDz8Z1xlE92JQEk.woff') format('woff');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins/pxiEyp8kv8JHgFVrJJfedHFHGPc.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins/pxiByp8kv8JHgFVrLGT9Z1xlE92JQEk.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins/pxiByp8kv8JHgFVrLEj6Z1xlE92JQEk.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/assets/fonts/poppins/pxiByp8kv8JHgFVrLCz7Z1xlE92JQEk.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto/roboto-latin-400.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  /* Kit de marca JuristIA (apresentação). */
  --navy: #0a2240;
  --navy-medium: #00416b;
  --ink: #0a2240;
  --blue: #0071ce;
  --blue-bright: #0071ce;
  --blue-cookie: #1863dc;
  --blue-dark: #00416b;
  --green: #45deb0;
  --gray: #878787;
  --soft: #e6f2ff;
  --surface: #f5f7fa;
  --white: #fff;
  --shadow: 0 18px 45px rgba(10, 34, 64, 0.12);
  --radius: 0.5rem;
  --blue-link: #0071bc;
  --container: 1170px;
  --hero-grid: 1170px;
  --section-space: clamp(72px, 6.95vw, 100px);
  --grid-gap: clamp(24px, 2.1vw, 30px);
  --card-padding: clamp(24px, 2.4vw, 34px);
  --font: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --hero-font: 'Roboto', Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--gray);
  background: var(--white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
::selection {
  color: var(--white);
  background: var(--blue-bright);
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
h1 { font-size: 25.2px; }
h2 { font-size: 20.3px; }
h3 { font-size: 18.2px; }
@media (min-width: 1200px) {
  h1 { font-size: 36px; }
  h2 { font-size: 35px; }
  h3 { font-size: 20px; }
}
p:last-child { margin-bottom: 0; }

.container {
  width: min(calc(100% - 30px), var(--container));
  margin-inline: auto;
}
.section { padding: var(--section-space) 0; background: var(--white); }
.section.soft { background: var(--surface); }
.section.dark { color: var(--white); background: var(--ink); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--white); }
.section.center { text-align: center; }
.section-heading { max-width: var(--container); margin: 0 auto 40px; text-align: center; }
.section-heading h2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.6px;
}
.section-heading p:not(.eyebrow) { max-width: 670px; margin-inline: auto; font-size: 18px; line-height: 23px; }
.eyebrow {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 19.2px;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--white); }
.accent { color: var(--blue-bright); }
.lead { font-size: 18px; line-height: 1.5; }
.button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  border-radius: 25px;
  color: var(--white);
  background: var(--blue-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 45px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}
.button:hover { color: var(--white); background: #007aff; }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.button.small { min-height: 45px; padding: 0 25px; font-size: 12px; line-height: 45px; }
.button.disabled { opacity: 0.6; cursor: not-allowed; }
.text-link { color: var(--white); font-weight: 600; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split img { width: 100%; max-height: 620px; object-fit: contain; }
.office-product-mark {
  display: grid;
  min-height: 320px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 32px;
  background: transparent;
}
.office-product-mark img { width: min(100%, 520px); max-height: none; }
.office-product-mark span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}
.home-about .split { align-items: start; }
.home-about .split h2,
.home-knowledge .split h2 {
  margin-bottom: 30px;
  font-size: 45px;
  line-height: 50px;
  letter-spacing: -1.35px;
}
.home-about .lead { margin-bottom: 27px; line-height: 23px; }
.home-about .split > :last-child > p:not(.lead) { margin-bottom: 27px; color: var(--gray); }
.home-about .split .button { margin-top: 30px; }
.home-about .split > :first-child .button { margin-top: 0; }
.home-knowledge .split > :last-child > p:not(.eyebrow) { margin-bottom: 27px; line-height: 23px; }
.home-knowledge .split .button { margin-top: 30px; }
.home-solutions .section-heading { margin-bottom: 50px; }
.home-solutions .media-card-body { padding-top: 40px; }
.home-solutions .cards-action { margin-top: 50px; }
.home-tools .section-heading { margin-bottom: 70px; }
.home-tools .media-card > img { width: calc(100% - 30px); margin-inline: auto; }
.home-tools .media-card { display: flex; flex-direction: column; }
.home-tools .media-card-body {
  display: flex;
  width: calc(100% - 30px);
  flex: 1;
  flex-direction: column;
  margin-inline: auto;
  padding-top: 40px;
}
.home-tools .media-card-body h3 { min-height: 25px; }
.home-tools .media-card-body p { min-height: 162px; margin-bottom: 20px; }
.home-tools .media-card .button { align-self: center; margin-top: auto; }
.solution-product { background: var(--surface); }
.solution-product-grid { gap: 70px; }
.solution-product-copy { max-width: 570px; }
.solution-product-copy h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
}
.solution-product-lead {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.25;
}
.solution-product-copy > p:not(.eyebrow):not(.solution-product-lead) { line-height: 1.55; }
.solution-product-copy > p + p { margin-top: 20px; }
.solution-product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 32px; }
.solution-product-link { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.solution-product-link:hover { color: var(--blue); }
.solution-product-visual {
  display: grid;
  min-height: 360px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 32px;
  background: transparent;
}
.solution-product-visual img { width: min(100%, 520px); max-height: none; object-fit: contain; }
.solution-product-visual span {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes home-pop-up {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes home-book-in {
  from { opacity: 0; transform: translateX(-140px); }
  to { opacity: 1; transform: translateX(0); }
}

html.motion-ready [data-motion="pop"] { opacity: 0; transform: scale(0.96); }
html.motion-ready [data-motion="pop"].motion-visible {
  animation: home-pop-up 800ms ease-in forwards;
}
html.motion-ready [data-motion="book"] { opacity: 0; transform: translateX(-140px); }
html.motion-ready [data-motion="book"].motion-visible {
  animation: home-book-in 900ms cubic-bezier(.22, .61, .36, 1) forwards;
}

@media (min-width: 821px) {
  .home-knowledge .split { align-items: start; }
  .home-knowledge .split > :last-child { padding-top: 30px; }
}
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: 14px 0; padding-left: 30px; }
.check-list li::before { position: absolute; left: 0; color: var(--blue); content: '✓'; font-weight: 700; }

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  min-height: 80px;
  color: var(--white);
  /* Navy sólido como no WP (#0a2240), para contrastar com o vídeo do hero. */
  background: var(--navy);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.header-inner {
  display: flex;
  width: min(calc(100% - 30px), var(--container));
  min-height: 80px;
  align-items: center;
  margin: 0 auto;
  gap: 18px;
}
.brand { flex: 0 0 58px; }
.brand img { width: 50px; height: 54px; object-fit: contain; }
.desktop-nav { display: flex; flex: 1; align-items: stretch; justify-content: center; gap: 0; }
.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 22px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a:hover { color: var(--blue); }
.desktop-nav a[aria-current='page'] { color: var(--blue); }
.desktop-nav a[aria-current='page']::after {
  position: absolute;
  bottom: 18px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  transform: translateX(-50%);
  content: '';
}
.header-socials { display: flex; align-items: center; gap: 14px; }
.header-socials a {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  text-decoration: none;
}
.header-socials a:hover { color: var(--blue); }
.header-socials svg { width: 18px; height: 18px; fill: currentColor; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 6px 0; background: var(--white); }
.mobile-menu {
  position: fixed;
  z-index: 1010;
  top: 0;
  right: 0;
  width: min(88vw, 420px);
  height: 100dvh;
  padding: 28px;
  background: var(--ink);
  box-shadow: -24px 0 50px rgba(0, 0, 0, 0.2);
}
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-menu-head img { width: 170px; height: auto; }
.menu-close { border: 0; color: var(--white); background: transparent; font-size: 2.5rem; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: var(--white); text-decoration: none; }
.mobile-menu nav a[aria-current='page'] { color: var(--blue); }
.menu-backdrop { position: fixed; z-index: 1005; inset: 0; border: 0; background: rgba(10,34,64,.6); }

.home-hero {
  /* Reserva a altura visual do cabeçalho antes do vídeo, como no site atual. */
  --hero-header-h: 80px;
  --hero-video-h: calc(100svh - var(--hero-header-h));
  --hero-base-w: 1240;
  --hero-base-h: 700;
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  color: var(--white);
  background: var(--navy) url('/assets/hero/banner-home.jpg') center/cover no-repeat;
}
.home-hero::after {
  position: absolute;
  top: var(--hero-header-h);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10,34,64,.18), rgba(10,34,64,.42) 45%, rgba(10,34,64,.68));
  content: '';
  pointer-events: none;
}
.hero-video {
  position: absolute;
  top: var(--hero-header-h);
  right: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: var(--hero-video-h);
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  transform-origin: center center;
}
.hero-stage {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  width: min(calc(100% - 30px), calc(var(--hero-base-w) * 1px));
  height: calc(var(--hero-base-h) * 1px);
  margin-inline: auto;
}
.hero-lockup {
  position: absolute;
  top: 352px;
  left: 102px;
  width: 390px;
  height: auto;
}
.hero-copy {
  position: absolute;
  top: 330px;
  left: 602px;
  width: 495px;
  font-family: var(--hero-font);
}
.hero-copy h1 {
  margin: 0 0 26px;
  color: var(--white);
  font-family: var(--font);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -1.35px;
  line-height: 50px;
}
.hero-copy p {
  margin: 0;
  color: var(--white);
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
}
.hero-copy .hero-note {
  margin: 18px 0 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 27px;
}
.hero-copy .button {
  margin-top: 48px;
}

.page-hero {
  display: grid;
  min-height: 420px;
  align-items: center;
  padding: clamp(96px, 9.72vw, 140px) 0 clamp(64px, 6.25vw, 90px);
  color: var(--white);
  background: var(--navy);
}
.page-hero.page-hero-split {
  background: var(--navy);
}
.page-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 45px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.page-hero .eyebrow {
  margin-bottom: 20px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
}
.page-hero-lead {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}
.page-hero-copy {
  max-width: 560px;
  margin-top: 0;
  margin-bottom: 18px;
  color: rgba(255,255,255,.92);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
}
.page-hero .button { margin-top: 28px; }

.service-title {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
}
.service-subtitle {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
}
.list-label,
.service-cta-label {
  margin: 28px 0 12px;
  color: var(--ink);
  font-weight: 700;
}
.service-cta-label { margin-top: 32px; }
.options-list { max-width: 920px; margin: 0 auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.center { text-align: center; }
.center > p { max-width: 760px; margin-inline: auto; }
.page-start { padding-top: 170px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); align-items: stretch; }
.compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 800px; margin-inline: auto; }
.media-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border-radius: 0; background: transparent; box-shadow: none; }
.media-card > img { width: 100%; aspect-ratio: 1.75; object-fit: cover; }
.media-card-body { display: flex; flex: 1; flex-direction: column; padding: 28px 0 0; text-align: center; }
.media-card-body h3 {
  min-height: 50px;
  margin: 0 0 20px;
  color: var(--blue-link);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.6px;
  line-height: 25px;
}
.media-card-body p { min-height: 81px; margin-bottom: 0; }
.media-card .button { align-self: center; margin-top: auto; }
.section.dark .media-card-body h3 { color: var(--white); }
.section.dark .media-card-body p { color: rgba(255,255,255,.8); }
.cards-action { margin-top: 42px; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); align-items: stretch; }
.step-card { display: flex; min-width: 0; flex-direction: column; height: 100%; padding: var(--card-padding); border: 1px solid rgba(10,34,64,.08); background: var(--white); box-shadow: var(--shadow); }
.step-card p { flex: 1; }
.step-number { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 24px; border-radius: 50%; color: var(--white); background: var(--blue); font-weight: 700; }
.faq { display: grid; max-width: 850px; margin: auto; gap: 12px; }
.faq details { border: 1px solid #dfe4ea; background: var(--white); }
.faq summary { padding: 20px 24px; color: var(--ink); cursor: pointer; font-weight: 600; }
.faq p { padding: 0 24px 22px; }

.contact-form { display: grid; gap: 16px; }
.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  min-height: 43px;
  border: 1px solid #ccd3db;
  border-radius: 3px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}
.contact-form input:not([type='checkbox']):not([type='hidden']) { height: 43px; }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form .button { border-radius: 20px; font-weight: 500; }
.contact-form input[type='checkbox'] { width: auto; accent-color: var(--blue); }
.contact-form .checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-size: .9rem;
}
.contact-form .checkbox-field > span { grid-column: 2; }
.contact-form .checkbox-field input { grid-column: 1; grid-row: 1; margin-top: 5px; }
.contact-form .checkbox-field .field-error,
.contact-form .checkbox-field small { grid-column: 2; }
.contact-form button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.contact-form [aria-invalid='true'] { border-color: #b42318; }
.field-error { min-height: 1.2em; color: #b42318; font-size: 0.82rem; }
.honeypot { position: absolute; left: -10000px; }
.form-status { min-height: 1.5em; color: var(--ink); font-weight: 500; }
.availability-warning { padding: 18px; border-left: 4px solid #b54708; background: #fff5eb; color: #7a2e0e; }

.flash-region { padding-top: 110px; }
.flash { padding: 14px 18px; border-left: 4px solid var(--blue); color: var(--ink); background: #eef7ff; }
.flash.error { border-color: #b42318; background: #fff1f0; }

.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.post-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid #dbe3ec;
  padding: 30px;
  border-top: 4px solid var(--blue);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(10, 34, 64, .08);
}
.post-card h2,
.post-card h3 { margin: 18px 0 14px; color: var(--ink); font-size: 24px; font-weight: 600; line-height: 30px; }
.post-card h2 a,
.post-card h3 a { color: inherit; text-decoration: none; }
.post-card h2 a:hover,
.post-card h3 a:hover { color: var(--blue); }
.post-card > p { margin-bottom: 24px; color: #5f6b78; }
.post-card-meta { display: flex; min-height: 28px; align-items: start; justify-content: space-between; gap: 14px; color: var(--gray); font-size: 13px; line-height: 18px; }
.post-card-meta time { flex: 0 0 auto; padding-top: 2px; white-space: nowrap; }
.post-themes { display: flex; flex-wrap: wrap; gap: 6px; }
.post-themes a,
.post-themes span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 3px 9px;
  border: 1px solid rgba(0, 113, 206, .25);
  border-radius: 999px;
  color: var(--blue-link);
  background: rgba(0, 113, 206, .06);
  font-size: 11px;
  line-height: 16px;
  text-decoration: none;
}
.post-themes a:hover { color: var(--white); background: var(--blue); }
.post-themes-light { margin: 24px 0 18px; }
.post-themes-light a { border-color: rgba(255,255,255,.35); color: var(--white); background: rgba(255,255,255,.08); }
.post-themes-light a:hover { border-color: var(--white); color: var(--ink); background: var(--white); }
.post-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; color: var(--gray); font-size: 14px; }
.blog-controls { display: grid; gap: 24px; margin-bottom: 44px; }
.blog-search { max-width: 780px; }
.blog-search label { display: block; margin-bottom: 8px; color: var(--ink); font-size: 14px; font-weight: 600; }
.blog-search-row { display: flex; gap: 12px; }
.blog-search input {
  width: 100%;
  min-height: 45px;
  border: 1px solid #aebbc9;
  border-radius: 3px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 22px;
}
.blog-search input::placeholder { color: #657487; opacity: 1; }
.blog-search .button { flex: 0 0 auto; }
.blog-themes { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.blog-theme-chip {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(10, 34, 64, .16);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.blog-theme-chip span { color: var(--gray); font-size: 12px; }
.blog-theme-chip:hover,
.blog-theme-chip.active { border-color: var(--blue); color: var(--white); background: var(--blue); }
.blog-theme-chip:hover span,
.blog-theme-chip.active span { color: var(--white); }
.blog-results-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; color: #5f6b78; font-size: 15px; line-height: 22px; }
.blog-results-heading p { margin: 0; }
.blog-results-heading strong { color: var(--ink); }
.text-link-dark { color: var(--ink); font-weight: 600; text-decoration: underline; }
.text-link-dark:hover { color: var(--blue); }
.blog-empty-state { grid-column: 1 / -1; }
.blog-section { background: #eef3f7; }
.blog-controls {
  padding: 24px;
  border: 1px solid #d4dde7;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(10, 34, 64, .09);
}
.home-blog-cta {
  border-top: 1px solid #e2e8ef;
  border-bottom: 1px solid #e2e8ef;
  background: var(--white);
}
.blog-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}
.home-blog-cta h2 {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 45px;
  line-height: 50px;
  letter-spacing: -1.35px;
}
.blog-cta-content { max-width: 570px; }
.blog-cta-content p { margin-bottom: 30px; color: var(--gray); line-height: 23px; }
.home-blog-cta .blog-cta-content p { color: var(--white); }
.blog-layout { display: grid; gap: 32px; }
@media (min-width: 960px) {
  .blog-layout { grid-template-columns: 240px minmax(0, 1fr); align-items: start; }
}
.blog-toc { position: sticky; top: 96px; padding: 20px; background: rgba(255,255,255,.72); border: 1px solid rgba(15, 23, 42, .08); }
.blog-toc h2 { margin: 0 0 12px; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.blog-toc ol { margin: 0; padding-left: 1.1rem; display: grid; gap: 8px; }
.blog-toc a { text-decoration: none; color: var(--ink); }
.blog-toc a:hover { color: var(--blue); }
.toc-level-3 { margin-left: .6rem; }
.toc-level-4 { margin-left: 1.2rem; }
.article-content { max-width: 820px; color: var(--ink); font-size: 1.08rem; line-height: 1.8; }
.article-content p,
.article-content ul,
.article-content ol,
.article-content pre,
.article-content table { margin-bottom: 1.4em; }
.article-content h2,
.article-content h3,
.article-content h4 { margin: 1.6em 0 .7em; line-height: 1.25; }
.article-content pre { overflow-x: auto; padding: 1rem; background: #0f172a; color: #e2e8f0; }
.article-content code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.article-content table { width: 100%; border-collapse: collapse; }
.article-content th,
.article-content td { border: 1px solid rgba(15, 23, 42, .12); padding: .55rem .7rem; text-align: left; }
.blog-post-tldr {
  margin: 0 0 2rem;
  padding: 1.25rem 1.4rem;
  border-left: 4px solid var(--blue);
  background: rgba(37, 99, 235, .06);
}
.blog-post-tldr-label {
  margin: 0 0 .55rem;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
}
.blog-back { margin-top: 2.5rem; }
.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
}
.blog-breadcrumb a { color: rgba(255, 255, 255, .92); text-decoration: none; }
.blog-breadcrumb a:hover { text-decoration: underline; }
.blog-related {
  margin: 2.8rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(15, 23, 42, .12);
}
.blog-related h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}
.blog-related ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.blog-related a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.blog-related a:hover { color: var(--blue); }
.blog-related-themes {
  display: block;
  margin-top: 2px;
  color: #5f6b78;
  font-size: .9rem;
  font-weight: 400;
}
.empty-state { padding: 40px; background: var(--white); box-shadow: var(--shadow); }
.pagination { display: flex; gap: 16px; align-items: center; justify-content: center; margin-top: 36px; }
.empty-state { padding: 50px; text-align: center; background: var(--surface); }
.pagination { display: flex; justify-content: center; gap: 24px; margin-top: 42px; }
.narrow { max-width: 760px; }

.policy-content { max-width: 900px; }
.policy-content h2 { margin-top: 42px; font-size: 1.55rem; }
.policy-content li { margin: 8px 0; }

.site-footer { color: var(--white); }
.footer-cta {
  padding: var(--section-space) 0;
  background: var(--navy);
}
.footer-cta-light {
  color: var(--ink);
  background: var(--white);
}
.footer-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
.footer-brand .footer-lockup {
  display: block;
  width: min(280px, 100%);
  height: auto;
  margin: 0 0 28px;
}
.social-list { display: flex; flex-wrap: wrap; gap: 14px; }
.social-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-bright);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}
.social-icon:hover { background: var(--navy-medium); transform: translateY(-2px); }
.social-icon svg { width: 22px; height: 22px; fill: currentColor; }
.footer-cta h2 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--font);
  font-size: clamp(28px, 3.4vw, 45px);
  font-weight: 600;
  line-height: 50px;
}
.footer-cta h2 span { color: var(--blue-bright); }
.footer-cta p {
  max-width: 730px;
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  color: var(--white);
}
.footer-cta-light h2 { color: var(--ink); }
.footer-cta-light p { color: var(--gray); }
.footer-cta .accent { color: var(--blue-bright); font-weight: 700; }
.footer-bottom {
  position: relative;
  display: grid;
  gap: 4px;
  place-items: center;
  min-height: 56px;
  padding: 16px 64px;
  text-align: center;
  background: var(--navy);
}
.footer-bottom .footer-legal { font-size: 14px; }
.footer-bottom p {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  color: #f2f2f2;
}
.footer-bottom a { color: #f2f2f2; text-decoration: underline; }
.back-to-top {
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-50%);
  text-decoration: none;
}
.back-to-top svg { width: 20px; height: 20px; fill: currentColor; }
.back-to-top:hover { background: var(--navy-medium); }

.cookie-banner {
  position: fixed;
  z-index: 1200;
  bottom: 28px;
  left: 40px;
  width: min(400px, calc(100% - 40px));
  padding: 22px 24px 18px;
  border-radius: 6px;
  color: #212121;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.cookie-banner h2 { margin-bottom: 10px; font-size: 1.05rem; color: #212121; }
.cookie-banner p { margin-bottom: 16px; font-size: .875rem; line-height: 1.5; color: #212121; }
.cookie-banner p a { color: var(--blue-cookie); text-decoration: none; }
.cookie-banner .button,
.cookie-banner .cookie-accept {
  width: 100%;
  min-height: 42px;
  border-radius: 3px;
  border: 2px solid var(--blue-cookie);
  background: var(--blue-cookie);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}
.cookie-banner .button:hover,
.cookie-banner .cookie-accept:hover { opacity: 0.85; background: var(--blue-cookie); }
.cookie-close { display: none; }

@media (max-width: 1199px) {
  .desktop-nav { display: none; }
  .site-header, .header-inner { min-height: 114px; }
  .header-inner { justify-content: space-between; }
  .header-socials { display: flex; margin-left: auto; }
  .menu-toggle { display: block; }
  .home-hero {
    --hero-header-h: 114px;
    --hero-video-h: calc(100svh - var(--hero-header-h));
    height: 100vh;
    height: 100svh;
    --hero-scale: 1;
  }
  .hero-stage {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 36px;
    align-items: center;
    width: min(var(--hero-grid), calc(100% - 40px));
    height: 100%;
    margin: 0 auto;
    padding: 130px 0 60px;
    transform: none;
  }
  .hero-lockup,
  .hero-copy {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    max-width: none;
  }
  .hero-lockup { width: min(100%, 320px); }
  .hero-copy h1 { font-size: 36px; line-height: 41px; }
  .hero-copy p,
  .hero-copy .hero-note { font-size: 18px; line-height: 22px; }
  .hero-copy .button { margin-top: 32px; }
  .hero-video { transform: scale(1.06); }
  .solution-product-grid { gap: 42px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .section { padding: 72px 0; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse > :first-child { order: initial; }
  .card-grid, .step-grid, .compact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-cta-grid { grid-template-columns: 1fr; gap: 30px; }
  .home-blog-cta h2 { font-size: 35px; line-height: 40px; }
  .media-card-body h3, .media-card-body p { min-height: auto; }
  h3 { font-size: 18.2px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2 { font-size: 35px; line-height: 40px; }
  .home-about .split,
  .home-knowledge .split { padding-inline: 15px; }
  .home-about .split { row-gap: 0; }
  .home-about .split > div { display: contents; }
  .home-about .split > :first-child .eyebrow { order: 1; }
  .home-about .split > :first-child h2 { order: 2; }
  .home-about .split > :last-child .lead { order: 3; }
  .home-about .split > :last-child > p:not(.lead) { order: 4; }
  .home-about .split > :first-child .button { order: 5; }
  .home-about .split > :first-child .button {
    display: inline-flex;
    justify-self: start;
    width: auto;
    margin-top: 30px;
  }
  .home-hero { height: calc(var(--hero-header-h) + var(--hero-video-h)); }
  .hero-stage {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 32px;
    padding: 220px 0 48px;
    text-align: center;
  }
  .hero-lockup { width: min(78vw, 330px); margin: 0 auto; }
  .hero-copy h1 { margin-bottom: 24px; font-size: 31px; line-height: 36px; letter-spacing: -0.8px; }
  .hero-copy p,
  .hero-copy .hero-note { font-size: 18px; line-height: 23px; }
  .page-hero { min-height: 0; padding: 108px 0 64px; text-align: center; }
  .page-hero-copy { margin-inline: auto; }
  .footer-cta { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-brand .footer-lockup { margin-inline: auto; }
  .social-list { justify-content: center; }
  .back-to-top { right: 12px; }
  .cookie-banner { left: 20px; bottom: 20px; }
  .contact-form { width: calc(100% - 32px); margin-inline: auto; }
}

@media (max-width: 480px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 64px 0; }
  .header-inner { width: calc(100% - 30px); gap: 10px; }
  .brand { flex-basis: 50px; }
  .brand img { width: 50px; height: 54px; }
  .header-socials { gap: 7px; }
  .header-socials a { width: 22px; }
  .menu-toggle { width: 42px; padding-inline: 8px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-search-row { flex-direction: column; }
  .blog-search .button { width: 100%; }
  .blog-results-heading { align-items: start; flex-direction: column; gap: 8px; }
  .post-card { padding: 24px; }
  .post-card-meta { align-items: start; flex-direction: column; gap: 8px; }
  .post-card-footer { align-items: start; flex-direction: column; }
  .blog-controls { padding: 20px; }
  .home-hero {
    --hero-video-h: calc(100svh - var(--hero-header-h));
    height: 100vh;
    height: 100svh;
  }
  .hero-stage { padding-top: 270px; gap: 32px; }
  .hero-copy { width: min(100%, 330px); margin-inline: auto; }
  .hero-copy h1 { font-size: 30px; line-height: 35px; }
  .hero-copy p,
  .hero-copy .hero-note { font-size: 18px; line-height: 23px; }
  .media-card-body { padding: 24px 20px; }
  .home-solutions .media-card-body { padding-top: 40px; padding-inline: 0; }
  .home-solutions .card-grid { row-gap: var(--grid-gap); }
  .home-solutions .cards-action { margin-top: 51px; }
  .home-tools .section-heading { width: calc(100% - 30px); margin-bottom: 48px; }
  .home-tools .media-card > img { width: calc(100% - 60px); margin-inline: auto; }
  .home-tools .media-card-body { width: 100%; padding-top: 40px; padding-inline: 30px; }
  .home-tools .media-card-body p { min-height: 0; margin-bottom: 24px; }
  .home-tools .media-card .button { margin-top: 20px; }
  .home-tools .card-grid { row-gap: var(--grid-gap); }
  .page-hero { padding: 96px 0 56px; }
  .section-heading { margin-bottom: 36px; }
  .footer-cta { padding: 64px 0; }
  .solution-product { text-align: center; }
  .solution-product-copy { max-width: none; }
  .solution-product-actions { justify-content: center; }
  .solution-product-visual { min-height: 240px; padding: 28px; }
  .office-product-mark { min-height: 220px; padding: 24px; }
  .office-product-mark span { font-size: 16px; }
  .cookie-banner { width: calc(100% - 24px); left: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .hero-video { display: none; }
  html.motion-ready [data-motion="pop"] { opacity: 1; transform: none; animation: none; }
  html.motion-ready [data-motion="book"] { opacity: 1; transform: none; animation: none; }
}
