@font-face {
  font-family: Nunito;
  src: url("assets/nunito-latin.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

/* The companions belong to each work stage; the page remains a single reading flow. */
:root {
  --ink: #171827;
  --muted: #555c72;
  --line: #e7e8ef;
  --violet: #6558e8;
  --violet-dark: #5044c8;
  --violet-soft: #f0efff;
  --mint: #e9fbf3;
  --peach: #fff1e8;
  --surface: #fafaff;
  --font: Nunito, ui-rounded, system-ui, sans-serif;
  --radius: 24px;
  --header: 82px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font: 550 17px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
h2 {
  font-size: clamp(34px, 4.4vw, 56px);
}
h3 {
  font-size: clamp(27px, 3.1vw, 39px);
}
p {
  color: var(--muted);
}
::selection {
  background: #dfdbff;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--violet-dark);
  outline-offset: 5px;
}
.wrap {
  width: min(1160px, calc(100% - 64px));
  margin-inline: auto;
}
.eyebrow {
  font-weight: 850;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--violet-dark);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 100;
  background: white;
  padding: 12px 20px;
  border: 2px solid var(--violet);
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: var(--header);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgb(231 232 239 / 0.7);
  background: rgb(255 255 255 / 0.96);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  width: min(1272px, calc(100% - 64px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 29px;
  font-weight: 950;
  letter-spacing: -0.065em;
  flex-shrink: 0;
}
.brand > span > span {
  color: var(--violet);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 33px;
  font-size: 15px;
  font-weight: 750;
}
.site-header nav a {
  padding-block: 12px;
}
.site-header nav a:hover,
.site-footer a:hover {
  color: var(--violet-dark);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  background: var(--violet);
  color: #fff;
  border: 2px solid var(--violet);
  border-radius: 13px;
  padding: 14px 24px;
  font-size: 17px;
  font-weight: 850;
  box-shadow: 0 4px 0 #453aaa;
  transition:
    transform 0.18s,
    background 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  background: var(--violet-dark);
  border-color: var(--violet-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #3a309a;
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.button-small {
  min-height: 44px;
  padding: 9px 17px;
  font-size: 15px;
  gap: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 0 #453aaa;
}
.text-link {
  font-weight: 850;
  font-size: 17px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid transparent;
}
.text-link:hover {
  color: var(--violet-dark);
  border-bottom-color: currentColor;
}
.hero {
  text-align: center;
  padding-top: 67px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #dedaf9;
  border-radius: 100px;
  padding: 9px 15px;
  background: #fcfbff;
  font-size: 12px;
  letter-spacing: 0.09em;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
  flex: 0 0 7px;
}
.hero h1 {
  font-size: clamp(40px, 6.2vw, 80px);
  margin-top: 23px;
  letter-spacing: -0.052em;
  line-height: 1.065;
  font-weight: 900;
}
.hero h1 > span {
  color: var(--violet);
}
.hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin: 24px auto 0;
  max-width: 775px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 29px;
}
.microcopy {
  margin-top: 17px;
  font-size: 13px;
  color: #65687b;
}
.hero-product {
  margin-top: 48px;
  position: relative;
  text-align: left;
  padding: 12px 12px 0;
  background: var(--violet-soft);
  border: 1px solid #dedaf9;
  border-radius: 23px 23px 10px 10px;
  box-shadow:
    0 12px 0 #f8f7fe,
    0 24px 65px -42px #6558e8;
}
.product-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 17px;
  gap: 12px;
  color: #4f486f;
  font-size: 14px;
  font-weight: 750;
}
.product-caption > span:first-child {
  display: flex;
  gap: 9px;
  align-items: center;
}
.caption-detail {
  font-size: 12px;
  font-weight: 650;
}
.screenshot-link {
  position: relative;
  display: block;
  border: 1px solid #dedde9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}
.screenshot-link picture > img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: filter 0.2s;
}
.screenshot-link:hover picture > img {
  filter: brightness(0.98);
}
.zoom-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 12px;
  border: 1px solid #dedde9;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 12px #17182712;
  color: var(--ink);
}
.zoom-label span {
  font-size: 21px;
  line-height: 1;
}
.hero-product > figcaption {
  padding: 9px 10px;
  color: #69637e;
  font-size: 12px;
  text-align: center;
}
.hero-companion {
  position: absolute;
  width: 151px;
  height: 151px;
  object-fit: contain;
  right: -47px;
  top: -99px;
  transform: rotate(7deg);
  pointer-events: none;
  filter: drop-shadow(0 7px 4px #17182710);
}
.operator-section {
  padding-block: 114px 106px;
}
.operator-intro {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 100px;
  margin-top: 22px;
  align-items: center;
}
.operator-intro h2 {
  font-size: clamp(32px, 3.6vw, 47px);
  line-height: 1.15;
}
.operator-intro h2 span {
  color: var(--violet);
}
.operator-intro p {
  font-size: 19px;
  line-height: 1.65;
}
.operator-intro p + p {
  margin-top: 18px;
}
.role-strip {
  margin-top: 44px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.role-strip > div {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  font-size: 17px;
}
.step-badge {
  display: grid;
  place-items: center;
  height: 42px;
  width: 42px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}
.violet {
  background: var(--violet-soft);
  color: var(--violet-dark);
}
.mint {
  background: var(--mint);
  color: #177153;
}
.peach {
  background: var(--peach);
  color: #9b4a22;
}
.strip-arrow {
  color: #a6a6b9;
  font-size: 24px;
}
.workflow-section {
  background: var(--surface);
  padding-block: 86px 40px;
  border-block: 1px solid var(--line);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
}
.section-heading h2 {
  margin-top: 17px;
  font-size: clamp(33px, 4vw, 50px);
}
.section-heading > p {
  max-width: 265px;
  font-size: 17px;
  padding-bottom: 3px;
}
.workflow-nav {
  display: flex;
  gap: 34px;
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
  padding-bottom: 17px;
  font-size: 15px;
  font-weight: 800;
}
.workflow-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
}
.workflow-nav span {
  color: var(--violet);
  font-size: 12px;
}
.workflow-nav a:hover {
  color: var(--violet);
}
.workflow-row {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 55px;
  align-items: center;
  padding-block: 65px;
  border-bottom: 1px solid var(--line);
}
.workflow-row.reverse {
  grid-template-columns: 1.17fr 0.83fr;
}
.reverse .workflow-copy {
  grid-column: 2;
  grid-row: 1;
}
.reverse .product-figure {
  grid-column: 1;
  grid-row: 1;
}
.section-number {
  color: var(--violet-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.workflow-copy h3 {
  margin-top: 15px;
}
.workflow-copy > p {
  margin-top: 21px;
  font-size: 17px;
  line-height: 1.65;
}
.check-list {
  list-style: none;
  margin: 23px 0 21px;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
  font-size: 15px;
  font-weight: 650;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-weight: 900;
}
.module-label {
  display: block;
  color: #6a647e;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.01em;
}
.product-figure {
  border-radius: 24px;
  padding: 24px 18px 0;
  border: 1px solid #e0ddef;
  min-width: 0;
}
.lavender {
  background: #efedff;
}
.mint-surface {
  background: #e7f6ef;
  border-color: #d6e9df;
}
.peach-surface {
  background: #fff0e7;
  border-color: #f0dfd4;
}
.product-figure .screenshot-link {
  box-shadow: 0 13px 25px -20px #17182760;
}
.product-figure figcaption {
  text-align: center;
  padding: 11px 0;
  font-size: 12px;
  color: #635e71;
}
.mid-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 27px 0;
}
.mid-cta p {
  font-size: 19px;
  font-weight: 750;
  color: var(--ink);
}
.mid-cta a {
  color: var(--violet-dark);
}
.criterion-section {
  padding-block: 112px 100px;
}
.criterion-head {
  text-align: center;
  max-width: 790px;
  margin: auto;
}
.criterion-head h2 {
  margin-top: 19px;
  font-size: clamp(35px, 4.5vw, 58px);
}
.criterion-head h2 span {
  color: var(--violet);
}
.criterion-head > p:last-child {
  font-size: 19px;
  margin-top: 24px;
}
.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 43px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.question-grid article {
  padding: 29px 29px 33px;
}
.question-grid article + article {
  border-left: 1px solid var(--line);
}
.question-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 24px;
}
.question-grid .eyebrow {
  font-size: 11px;
  color: #66677b;
  letter-spacing: 0.13em;
}
.question-grid h3 {
  font-size: 27px;
  line-height: 1.15;
  margin: 12px 0 17px;
  letter-spacing: -0.035em;
}
.question-grid article > p:last-child {
  font-size: 16px;
  line-height: 1.6;
}
.companion-note {
  margin-top: 28px;
  background: var(--violet-soft);
  border: 1px solid #e2defb;
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: 170px 1fr 190px;
  gap: 28px;
  align-items: center;
}
.companion-note > img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 7px #6558e819);
}
.companion-note h3 {
  font-size: 31px;
  line-height: 1.12;
  margin: 12px 0 15px;
}
.companion-note p {
  font-size: 16px;
  max-width: 490px;
  color: #59516f;
}
.companion-note .eyebrow {
  font-size: 11px;
}
.approval-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #8477b2;
}
.approval-path span:not([aria-hidden]) {
  border: 1px solid #d9d4f4;
  border-radius: 9px;
  padding: 9px 12px;
  width: 100%;
  text-align: center;
  background: #fff;
  color: #5b5372;
}
.approval-path .approved {
  background: #e9fbf3 !important;
  border-color: #bfdccd !important;
  color: #236548 !important;
}
.faq-section {
  padding-block: 10px 106px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}
.faq-section h2 {
  font-size: 40px;
  margin-top: 17px;
}
.faq-section > div > p:last-child {
  font-size: 17px;
  margin-top: 22px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
  cursor: pointer;
  padding: 24px 0;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary > span {
  font-size: 24px;
  font-weight: 500;
  color: var(--violet);
  flex-shrink: 0;
}
details[open] summary > span {
  transform: rotate(45deg);
}
details > p {
  padding: 0 32px 24px 0;
  font-size: 16px;
  line-height: 1.65;
}
details p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--violet-dark);
}
.closing-section {
  background: var(--violet);
  color: #fff;
  text-align: center;
  padding: 83px 0 78px;
  position: relative;
  overflow: hidden;
}
.closing-section .eyebrow {
  color: #dedaff;
}
.closing-section h2 {
  font-size: clamp(45px, 6vw, 74px);
  margin-top: 20px;
  letter-spacing: -0.04em;
}
.closing-section p {
  color: #e5e2ff;
  font-size: 20px;
  margin-top: 21px;
  line-height: 1.5;
}
.closing-section .button {
  margin-top: 30px;
}
.button-light {
  background: #fff;
  color: var(--violet-dark);
  border-color: #fff;
  box-shadow: 0 4px 0 #3e329d;
}
.button-light:hover {
  background: #f0edff;
  border-color: #f0edff;
  box-shadow: 0 6px 0 #3e329d;
}
.closing-section .closing-note {
  font-size: 13px;
  color: #e5e2ff;
  margin-top: 19px;
}
.site-footer {
  padding-block: 30px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.site-footer .brand {
  font-size: 25px;
}
.site-footer p {
  font-size: 13px;
}
.site-footer > div {
  display: flex;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
}
.site-footer a:not(.brand) {
  display: flex;
  align-items: center;
  min-height: 44px;
}
dialog {
  width: min(1440px, calc(100% - 40px));
  max-width: calc(100% - 40px);
  max-height: calc(100dvh - 40px);
  border: 1px solid var(--line);
  padding: 0;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 90px #17182740;
}
dialog::backdrop {
  background: #171827c9;
  backdrop-filter: blur(8px);
}
.dialog-bar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.dialog-bar p {
  font-size: 14px;
  color: var(--ink);
  font-weight: 750;
}
.dialog-bar button {
  min-height: 44px;
  padding: 7px 14px;
  background: var(--violet-soft);
  border: 1px solid #dcd6ff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--violet-dark);
  white-space: nowrap;
}
.dialog-bar button span {
  margin-left: 12px;
  font-size: 22px;
}
.dialog-image-wrap {
  overflow: auto;
}
.dialog-image-wrap img {
  display: block;
  width: 100%;
  min-width: 880px;
  max-width: none;
  height: auto;
}
.reveal-enter {
  animation: arrive 0.3s ease-out both;
}
@keyframes arrive {
  from {
    transform: translateY(9px);
  }
  to {
    transform: translateY(0);
  }
}
@media (min-width: 1500px) {
  .hero-companion {
    right: -56px;
    width: 175px;
    height: 175px;
    top: -124px;
  }
}
@media (max-width: 1000px) {
  .site-header nav {
    gap: 22px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .operator-intro {
    gap: 45px;
  }
  .workflow-row,
  .workflow-row.reverse {
    gap: 30px;
  }
  .product-figure {
    padding: 16px 12px 0;
  }
  .companion-note {
    grid-template-columns: 120px 1fr 155px;
    padding: 25px;
    gap: 22px;
  }
  .companion-note > img {
    width: 120px;
    height: 120px;
  }
  .faq-section {
    gap: 50px;
  }
  .hero-companion {
    right: -15px;
  }
  .question-grid article {
    padding: 24px 21px;
  }
  .question-grid h3 {
    font-size: 24px;
  }
  .site-footer p {
    max-width: 240px;
  }
  .role-strip > div {
    font-size: 15px;
  }
}
@media (max-width: 760px) {
  :root {
    --header: 74px;
  }
  .wrap,
  .nav-wrap {
    width: calc(100% - 40px);
  }
  .nav-wrap {
    gap: 12px;
  }
  .site-header nav {
    display: none;
  }
  .brand {
    font-size: 26px;
    gap: 6px;
  }
  .brand img {
    width: 37px;
    height: 37px;
  }
  .button-small {
    font-size: 14px;
    gap: 10px;
    padding: 9px 13px;
  }
  .hero {
    padding-top: 43px;
  }
  .pill {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 9px 12px;
  }
  .hero h1 {
    font-size: clamp(37px, 7.8vw, 56px);
    line-height: 1.09;
    margin-top: 22px;
    letter-spacing: -0.055em;
  }
  .hero-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 540px;
    margin-top: 22px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 22px;
    margin-top: 25px;
  }
  .button {
    font-size: 16px;
    padding: 12px 19px;
    gap: 17px;
    min-height: 52px;
  }
  .button-small {
    min-height: 44px;
    padding: 8px 13px;
    font-size: 14px;
    gap: 9px;
  }
  .text-link {
    font-size: 16px;
    gap: 10px;
  }
  .microcopy {
    font-size: 12px;
    margin-top: 18px;
  }
  .hero-product {
    margin-top: 37px;
    padding: 7px 7px 0;
    border-radius: 17px 17px 8px 8px;
  }
  .product-caption {
    font-size: 12px;
    padding: 7px 6px 13px;
  }
  .caption-detail {
    display: none;
  }
  .hero-product .screenshot-link {
    border-radius: 9px;
  }
  .hero-companion {
    width: 83px;
    height: 83px;
    top: -58px;
    right: -7px;
  }
  .hero-product > figcaption {
    font-size: 11px;
    padding: 9px 1px;
  }
  .zoom-label {
    right: 9px;
    bottom: 9px;
    padding: 6px 8px;
    font-size: 12px;
  }
  .operator-section {
    padding-block: 73px 66px;
  }
  .operator-intro {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 18px;
  }
  .operator-intro h2 {
    font-size: 38px;
  }
  .operator-intro p {
    font-size: 18px;
  }
  .operator-intro p + p {
    margin-top: 12px;
  }
  .role-strip {
    margin-top: 28px;
    gap: 14px;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 21px;
  }
  .role-strip > div {
    font-size: 16px;
  }
  .step-badge {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 10px;
  }
  .strip-arrow {
    display: none;
  }
  .workflow-section {
    padding-block: 59px 20px;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    font-size: 36px;
    line-height: 1.1;
    margin-top: 17px;
  }
  .section-heading > p {
    max-width: 420px;
    font-size: 17px;
    margin-top: 22px;
  }
  .workflow-nav {
    gap: 24px;
    font-size: 13px;
    margin-top: 27px;
    flex-wrap: wrap;
    row-gap: 4px;
    padding-bottom: 12px;
  }
  .workflow-nav a {
    min-height: 40px;
    gap: 6px;
  }
  .workflow-nav span {
    font-size: 11px;
  }
  .workflow-row,
  .workflow-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 43px;
  }
  .reverse .workflow-copy,
  .reverse .product-figure {
    grid-column: auto;
    grid-row: auto;
  }
  .workflow-copy h3 {
    font-size: 34px;
    margin-top: 13px;
  }
  .workflow-copy > p {
    margin-top: 18px;
    font-size: 17px;
    max-width: 540px;
  }
  .check-list {
    margin: 18px 0;
  }
  .check-list li {
    font-size: 15px;
    margin: 8px 0;
  }
  .module-label {
    font-size: 12px;
  }
  .product-figure {
    padding: 16px 12px 0;
    border-radius: 19px;
  }
  .product-figure figcaption {
    font-size: 11px;
  }
  .mid-cta {
    display: block;
    padding-top: 24px;
  }
  .mid-cta p {
    font-size: 18px;
  }
  .mid-cta a {
    margin-top: 10px;
  }
  .criterion-section {
    padding-block: 70px 65px;
  }
  .criterion-head {
    text-align: left;
  }
  .criterion-head h2 {
    font-size: 37px;
    line-height: 1.12;
  }
  .criterion-head > p:last-child {
    font-size: 18px;
    margin-top: 21px;
  }
  .criterion-head > p:last-child br {
    display: none;
  }
  .question-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .question-grid article {
    padding: 27px;
  }
  .question-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .question-icon {
    float: right;
    margin: 0 0 15px 15px;
  }
  .question-grid h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .question-grid h3 br {
    display: none;
  }
  .question-grid .eyebrow {
    font-size: 12px;
    margin-top: 4px;
  }
  .question-grid article > p:last-child {
    font-size: 16px;
  }
  .companion-note {
    grid-template-columns: 85px 1fr;
    gap: 8px 15px;
    padding: 25px 21px;
    align-items: start;
  }
  .companion-note > img {
    width: 85px;
    height: 110px;
    object-fit: contain;
    margin-top: 12px;
  }
  .companion-note h3 {
    font-size: 26px;
  }
  .companion-note p {
    grid-column: 1/-1;
    font-size: 16px;
  }
  .companion-note .eyebrow {
    font-size: 10px;
    line-height: 1.5;
  }
  .approval-path {
    grid-column: 1/-1;
    flex-direction: row;
    margin-top: 18px;
    gap: 5px;
    font-size: 10px;
  }
  .approval-path span:not([aria-hidden]) {
    padding: 8px 7px;
    width: auto;
    flex: 1;
    white-space: normal;
  }
  .approval-path span[aria-hidden] {
    transform: rotate(-90deg);
    font-size: 16px;
  }
  .faq-section {
    padding-block: 0 65px;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .faq-section h2 {
    font-size: 36px;
  }
  .faq-section > div > p:last-child {
    font-size: 17px;
    margin-top: 17px;
  }
  .faq-section > div > p:last-child br {
    display: none;
  }
  summary {
    font-size: 16px;
    padding: 21px 0;
  }
  details > p {
    font-size: 16px;
    padding-right: 10px;
  }
  .closing-section {
    padding-block: 60px 55px;
  }
  .closing-section h2 {
    font-size: 51px;
  }
  .closing-section p {
    font-size: 18px;
  }
  .closing-section .eyebrow {
    font-size: 12px;
  }
  .closing-section .closing-note {
    font-size: 12px;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 14px 25px;
    padding-block: 25px;
  }
  .site-footer p {
    font-size: 12px;
    max-width: 180px;
    flex: 1;
  }
  .site-footer > div {
    flex-basis: 100%;
    gap: 27px;
    font-size: 13px;
  }
  .site-footer .brand img {
    width: 32px;
    height: 32px;
  }
  .site-footer .brand {
    font-size: 25px;
  }
  dialog {
    width: calc(100% - 16px);
    max-width: calc(100% - 16px);
    max-height: calc(100dvh - 24px);
    border-radius: 12px;
  }
  .dialog-bar {
    gap: 12px;
    padding: 10px 12px;
  }
  .dialog-bar p {
    font-size: 12px;
  }
  .dialog-bar button {
    font-size: 12px;
    padding: 7px 10px;
  }
  .dialog-bar button span {
    margin-left: 3px;
  }
  .dialog-image-wrap img {
    min-width: 1000px;
  }
}
@media (max-width: 370px) {
  .wrap,
  .nav-wrap {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 8px;
  }
  .hero .microcopy {
    font-size: 11px;
  }
  .hero-description {
    font-size: 17px;
  }
  .hero-companion {
    display: none;
  }
  .workflow-nav {
    gap: 14px;
  }
  .workflow-nav a {
    font-size: 12px;
  }
  .operator-intro h2,
  .section-heading h2 {
    font-size: 33px;
  }
  .companion-note {
    grid-template-columns: 1fr;
  }
  .companion-note > img {
    width: 85px;
    height: 85px;
    margin: 0 auto;
  }
  .companion-note > div {
    grid-column: 1/-1;
  }
  .companion-note h3 br {
    display: none;
  }
  .site-footer p {
    max-width: 160px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-enter {
    transform: none !important;
  }
  .button:hover {
    transform: none;
  }
}

/* Frame real, untouched screenshots; preserve the complete image in the lightbox. */
.screenshot-link .capture-window {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--capture-ratio, 16/9);
}
.screenshot-link .capture-window > img {
  display: block;
  position: absolute;
  top: 0;
  left: var(--capture-left, 0%);
  margin-top: var(--capture-top, 0%);
  width: var(--capture-width, 100%);
  max-width: none;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}
#contexto .capture-window {
  --capture-ratio: 1015/620;
  --capture-width: 125.123%;
  --capture-left: -16.355%;
  --capture-top: -8.079%;
}
#operacion .capture-window {
  --capture-ratio: 760/457;
  --capture-width: 168.422%;
  --capture-left: -4.737%;
  --capture-top: -34.605%;
}
#produccion .capture-window {
  --capture-ratio: 1160/684;
  --capture-width: 110.345%;
  --capture-left: -5.172%;
  --capture-top: -1.552%;
}
.closing-section :focus-visible {
  outline-color: #fff;
}
@media (max-width: 760px) {
  .hero-product .capture-window {
    --capture-ratio: 650/410;
    --capture-width: 196.924%;
    --capture-left: -64%;
    --capture-top: -41.538%;
  }
  #contexto .capture-window {
    --capture-ratio: 600/575;
    --capture-width: 211.667%;
    --capture-left: -30%;
    --capture-top: -21.667%;
  }
  #operacion .capture-window {
    --capture-ratio: 240/450;
    --capture-width: 533.334%;
    --capture-left: -16.667%;
    --capture-top: -110%;
  }
  #produccion .capture-window {
    --capture-ratio: 425/281;
    --capture-width: 301.177%;
    --capture-left: -22.824%;
    --capture-top: -62.824%;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    gap: 8px;
  }
  .hero-actions .button {
    width: 100%;
    white-space: nowrap;
  }
  .hero-actions .text-link {
    min-height: 44px;
  }
  .hero-companion {
    width: 70px;
    height: 70px;
    top: -39px;
    right: -4px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.language-menu {
  position: relative;
  border: 0;
}
.language-menu summary {
  min-height: 44px;
  padding: 8px 4px;
  gap: 7px;
  font-size: 13px;
  white-space: nowrap;
}
.language-menu summary svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.language-menu summary > span {
  font-size: 16px;
  color: var(--muted);
}
.language-menu[open] summary > span {
  transform: rotate(180deg);
}
.language-options {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 215px;
  padding: 8px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 45px #17182718;
}
.language-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 750;
}
.language-options a:hover,
.language-options a[aria-current] {
  background: var(--violet-soft);
  color: var(--violet-dark);
}
.hero {
  position: relative;
}
.hero-description {
  max-width: 800px;
}
.hero-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 570px;
  margin: 30px auto -2px;
  min-height: 104px;
}
.hero-guide > img {
  width: 114px;
  height: 114px;
  object-fit: contain;
  z-index: 1;
  transform: rotate(-5deg);
}
.hero-guide > p {
  text-align: left;
  background: #f5f3ff;
  border: 1px solid #e3defa;
  border-radius: 16px 16px 16px 3px;
  padding: 13px 19px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
  color: #595078;
  max-width: 310px;
}
.hero-product {
  margin-top: 8px;
}
.operator-section {
  padding-block: 92px;
}
.section-heading > div {
  max-width: 745px;
}
.section-heading > p {
  flex: 0 0 260px;
}
.workflow-nav {
  gap: 32px;
  flex-wrap: wrap;
}
.journey-stage {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.workflow-row {
  padding-block: 54px 35px;
  border-bottom: 0;
}
.workflow-copy .module-label {
  margin-top: 22px;
}
.companion-group-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.11em;
  color: #6c6482;
  margin: 0 0 15px;
}
.companion-grid {
  display: grid;
  gap: 16px;
}
.companion-grid.count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.companion-grid.count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.companion-grid.count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.companion-card {
  position: relative;
  background: white;
  border: 1px solid #e2dfee;
  border-radius: 20px;
  padding: 8px 23px 25px;
  overflow: hidden;
}
.companion-art {
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.companion-art picture {
  display: contents;
}
.companion-art img {
  width: 166px;
  height: 156px;
  object-fit: contain;
}
.companion-card-copy {
  position: relative;
}
.companion-role {
  font-size: 11px;
  line-height: 1.3;
  font-weight: 850;
  color: var(--violet-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.companion-card h4 {
  font-size: 26px;
  line-height: 1.1;
  margin: 7px 0 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.companion-card-copy > p:last-child {
  font-size: 15px;
  line-height: 1.5;
}
#operacion .companion-card {
  border-color: #d6e9df;
}
#produccion .companion-card {
  border-color: #f0dfd4;
}
.compact-stage .workflow-row {
  grid-template-columns: 1fr 180px;
  gap: 100px;
}
.compact-stage .workflow-copy {
  max-width: 740px;
}
.stage-marker {
  color: #c1b9e8;
  font-size: 100px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.08em;
  display: flex;
  align-items: center;
  gap: 15px;
}
.stage-marker span {
  font-size: 50px;
  font-weight: 650;
}
.count-2 .companion-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 20px;
  padding: 22px;
}
.count-2 .companion-art {
  margin: 0;
  height: 174px;
}
.count-2 .companion-art img {
  height: 174px;
  width: 174px;
}
.count-2 .companion-card h4 {
  margin-top: 8px;
}
.review-note {
  margin-top: 28px;
  background: var(--violet-soft);
  border: 1px solid #e2defb;
  border-radius: 20px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 1fr 190px;
  align-items: center;
  gap: 80px;
}
.review-note h3 {
  font-size: 33px;
  margin: 12px 0 15px;
}
.review-note > div > p:last-child {
  font-size: 16px;
  max-width: 660px;
}
.preparation-section {
  background: #f7f6fc;
  padding: 0 0 4px;
  border-block: 1px solid var(--line);
}
.preparation-section .journey-stage {
  border: 0;
}
.preparation-section .companion-card {
  background: transparent;
}
.faq-section {
  padding-top: 88px;
}
.closing-section h2 {
  max-width: 760px;
  margin-inline: auto;
}
.closing-section .wrap > p:not(.eyebrow):not(.closing-note) {
  max-width: 620px;
  margin-inline: auto;
}
.language-entry {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background: #f7f6ff;
  padding: 24px;
}
.entry-card {
  width: min(440px, 100%);
  padding: 36px;
  border: 1px solid #e3defa;
  border-radius: 28px;
  background: white;
  box-shadow: 0 24px 65px -42px #6558e8;
  text-align: center;
}
.entry-card > img {
  margin: 0 auto 15px;
}
.entry-card h1 {
  font-size: 50px;
  margin-bottom: 14px;
}
.entry-card h1 span {
  color: var(--violet);
}
.entry-card > p {
  font-size: 15px;
}
.entry-links {
  margin-top: 25px;
}
.entry-links a {
  min-height: 54px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: 800;
}
.entry-links a:hover {
  color: var(--violet-dark);
  background: var(--violet-soft);
}
@media (min-width: 1100px) {
  html[lang="pt-BR"] .hero h1,
  html[lang="en"] .hero h1 {
    font-size: clamp(60px, 5.3vw, 73px);
  }
}
@media (max-width: 1100px) {
  .site-header nav {
    display: none;
  }
  .count-2 .companion-card {
    grid-template-columns: 115px 1fr;
    gap: 14px;
    padding: 18px;
  }
  .count-2 .companion-art img {
    width: 125px;
    height: 150px;
  }
  .companion-card {
    padding-inline: 18px;
  }
}
@media (max-width: 760px) {
  .nav-wrap {
    gap: 8px;
    width: calc(100% - 32px);
  }
  .header-actions {
    gap: 13px;
  }
  .language-menu summary {
    gap: 5px;
  }
  .hero-guide {
    margin-top: 21px;
    min-height: 90px;
  }
  .hero-guide > img {
    width: 93px;
    height: 93px;
    flex: 0 0 93px;
  }
  .hero-guide > p {
    padding: 11px 13px;
    font-size: 12px;
  }
  .hero-product {
    margin-top: 5px;
  }
  .operator-section {
    padding-block: 67px;
  }
  .operator-intro h2 {
    font-size: clamp(32px, 6vw, 40px);
  }
  .section-heading > p {
    max-width: 520px;
  }
  .workflow-nav {
    gap: 6px 20px;
  }
  .journey-stage {
    padding-bottom: 35px;
  }
  .workflow-row {
    padding-block: 38px 25px;
  }
  .workflow-copy h3 {
    font-size: 33px;
  }
  .companion-grid.count-4,
  .companion-grid.count-3,
  .companion-grid.count-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .companion-card,
  .count-2 .companion-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 16px;
    padding: 17px 16px;
    align-items: center;
    border-radius: 15px;
  }
  .companion-art,
  .count-2 .companion-art {
    margin: 0;
    height: 84px;
  }
  .companion-art img,
  .count-2 .companion-art img {
    width: 82px;
    height: 82px;
  }
  .companion-card h4,
  .count-2 .companion-card h4 {
    font-size: 24px;
    margin: 5px 0 7px;
  }
  .companion-role {
    font-size: 10px;
  }
  .companion-card-copy > p:last-child {
    font-size: 15px;
    line-height: 1.45;
  }
  .companion-group-label {
    font-size: 10px;
    margin-bottom: 12px;
  }
  .compact-stage .workflow-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .stage-marker {
    display: none;
  }
  .review-note {
    grid-template-columns: 1fr;
    padding: 27px 24px;
    gap: 8px;
  }
  .review-note h3 {
    font-size: 29px;
  }
  .review-note .approval-path {
    grid-column: auto;
  }
  .faq-section {
    padding-top: 60px;
  }
  .closing-section h2 {
    font-size: 46px;
  }
  html[lang="pt-BR"] .hero h1,
  html[lang="en"] .hero h1 {
    font-size: clamp(35px, 7.8vw, 56px);
  }
}
@media (max-width: 390px) {
  .site-header .brand {
    gap: 4px;
    font-size: 23px;
  }
  .site-header .brand img {
    width: 30px;
    height: 30px;
  }
  .header-actions {
    gap: 10px;
  }
  .language-menu summary svg {
    display: none;
  }
  .header-actions .button-small {
    font-size: 12px;
    gap: 5px;
    padding: 7px 9px;
  }
  .header-actions .button-small > span {
    font-size: 17px;
  }
  .companion-card,
  .count-2 .companion-card {
    grid-template-columns: 66px 1fr;
    gap: 12px;
    padding: 16px 13px;
  }
  .companion-art img,
  .count-2 .companion-art img {
    width: 66px;
    height: 66px;
  }
  .language-options {
    right: -15px;
  }
}
@media (min-width: 761px) and (max-width: 1050px) {
  .companion-grid.count-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .companion-art img,
  .count-2 .companion-art img {
    border-radius: 50%;
    background: #f3f0fc;
  }
}
