@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/public/fonts/inter-latin-variable.woff2") format("woff2");
}
:root {
  --ink: #17151f;
  --muted: #716d7d;
  --purple: #7755e8;
  --purple-dark: #6541d6;
  --lavender: #f4f0ff;
  --border: #e7e4ed;
  --white: #fff;
  --radius: 20px;
  --page: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
summary {
  font: inherit;
}
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 5px;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
p {
  color: var(--muted);
  line-height: 1.55;
}
img {
  display: block;
  max-width: 100%;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  background: var(--ink);
  color: white;
  padding: 12px;
  z-index: 100;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  min-height: 64px;
  margin: 16px auto 0;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 22px #21123c06;
}
.brand {
  font-size: 29px;
  font-weight: 750;
  letter-spacing: -1.3px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}
.brand img {
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: #605a70;
}
.nav-links a,
.login {
  transition: color 0.2s;
}
.nav-links a:hover,
.login:hover {
  color: var(--purple);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.login {
  font-size: 14px;
  color: #605a70;
}
.button {
  min-height: 50px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.2;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.button-primary {
  background: var(--purple);
  color: #fff;
  box-shadow:
    inset 0 1px 2px #ffffff40,
    0 3px 8px #7755e821;
  border-color: #6f4be0;
}
.button-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px #7755e82b;
}
.button-secondary {
  background: var(--white);
  border-color: var(--border);
}
.button-secondary:hover {
  background: #faf9fc;
  border-color: #c7b9ed;
}
.header-actions .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}
.header-actions .button .icon {
  display: none;
}
.mobile-menu {
  display: none;
}
.hero {
  padding-top: 42px;
}
.hero-copy {
  text-align: center;
  padding: 0 24px;
}
.hero h1 {
  font-size: clamp(46px, 5.65vw, 82px);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -4.4px;
}
.hero h1 span {
  color: var(--purple);
}
.hero-copy > p {
  font-size: 20px;
  line-height: 1.45;
  margin: 24px auto 0;
  max-width: 800px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}
.proof-strip {
  text-align: center;
  padding: 25px 20px 0;
}
.proof-strip p {
  font-size: 13px;
}
.proof-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 17px;
}
.proof-strip a {
  transition: opacity 0.2s;
}
.proof-strip a:hover {
  opacity: 0.65;
}
.proof-divider {
  height: 34px;
  width: 1px;
  background: var(--border);
}
.quittr-wordmark {
  font-size: 23px;
  letter-spacing: 5px;
  font-weight: 750;
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 76px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    margin: 16px 24px 0;
  }
  .hero h1 {
    letter-spacing: -3px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }
  .site-header {
    margin: 12px 16px 0;
    min-height: 62px;
    padding: 10px 16px;
    gap: 16px;
  }
  .brand {
    font-size: 25px;
  }
  .brand img {
    width: 27px;
    height: 27px;
  }
  .nav-links,
  .header-actions {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu summary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 30px #21123c12;
  }
  .mobile-menu nav a {
    font-size: 15px;
    padding: 12px;
    border-radius: 8px;
  }
  .mobile-menu nav a:hover {
    background: var(--lavender);
  }
  .hero {
    padding-top: 48px;
  }
  .hero-copy {
    padding: 0 20px;
  }
  .hero h1 {
    font-size: clamp(38px, 7.8vw, 58px);
    letter-spacing: -2.2px;
    line-height: 1.08;
  }
  .hero-copy > p {
    font-size: 17px;
    margin-top: 22px;
    max-width: 500px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }
  .button {
    font-size: 14px;
    padding: 0 20px;
    min-height: 48px;
  }
  .proof-strip {
    padding-top: 23px;
  }
  .proof-strip > div {
    gap: 24px;
  }
  .proof-strip img {
    width: 100px;
    height: auto;
  }
  .quittr-wordmark {
    font-size: 21px;
  }
}
@media (max-width: 430px) {
  .hero h1 {
    font-size: 39px;
  }
  .hero-actions .button {
    padding: 0 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
.page-width {
  max-width: var(--page);
  margin-left: auto;
  margin-right: auto;
}
.platform-section {
  padding-top: 130px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.section-heading h2 {
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -2.4px;
  font-weight: 700;
}
.section-heading > p {
  font-size: 19px;
  max-width: 385px;
  line-height: 1.55;
}
.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
}
.step-number {
  display: block;
  color: var(--purple-dark);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
}
.workflow h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -1.1px;
  font-weight: 650;
}
.workflow article > p {
  font-size: 18px;
  line-height: 1.55;
  margin-top: 14px;
  min-height: 112px;
}
.platform-band {
  margin-top: 42px;
  padding: 48px 40px;
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  border-radius: 24px;
}
.platform-band h2 {
  font-size: 37px;
  letter-spacing: -1.7px;
  line-height: 1.15;
  font-weight: 650;
}
.capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
.capabilities h3 {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}
.capabilities p {
  font-size: 13px;
  line-height: 1.5;
  color: #bfbacb;
  margin-top: 5px;
}
.case-studies {
  padding-top: 130px;
}
.case-heading {
  text-align: center;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-dark);
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.case-heading h2 {
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -3px;
  font-weight: 700;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
  align-items: start;
}
.case-card {
  border-radius: 26px;
  padding: 38px;
  background: #f1ebff;
}
.case-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 64px;
  margin-bottom: 26px;
}
.case-brand img {
  object-fit: contain;
}
.case-brand > span {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.8px;
}
.case-card h3 {
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -1.5px;
  font-weight: 650;
  min-height: 82px;
}
.case-card > p {
  font-size: 18px;
  line-height: 1.55;
  margin-top: 24px;
  min-height: 112px;
}
.case-stat {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
.case-stat strong {
  font-size: 74px;
  letter-spacing: -4px;
  font-weight: 750;
  line-height: 1.1;
  color: var(--purple);
}
.case-stat > span {
  font-size: 17px;
  color: var(--muted);
  margin-top: 4px;
}
.case-card details {
  margin-top: 26px;
  border-top: 1px solid #dbd3e9;
}
.case-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  font-size: 14px;
  font-weight: 550;
  min-height: 48px;
}
.case-card summary::-webkit-details-marker {
  display: none;
}
.case-card summary > .icon:last-child {
  margin-left: auto;
  transform: rotate(90deg);
  width: 17px;
}
.case-card details[open] summary > .icon:last-child {
  transform: rotate(-90deg);
}
.case-card details[open] summary > .icon:first-child {
  transform: rotate(45deg);
}
.case-card summary:hover {
  color: var(--purple-dark);
}
.playbook {
  padding-top: 22px;
}
.playbook p {
  font-size: 15px;
  line-height: 1.65;
}
.playbook h4 {
  font-size: 15px;
  margin: 20px 0 7px;
  font-weight: 600;
}
.quittr-case {
  background: var(--ink);
  color: white;
}
.quittr-case > p,
.quittr-case .case-stat > span,
.quittr-case .playbook p {
  color: #bfbacb;
}
.quittr-case details {
  border-color: #39343f;
}
.quittr-case .case-stat strong {
  color: #a081ff;
}
.quittr-case summary:hover {
  color: #bba4ff;
}
.quittr-case .case-brand img {
  width: 140px;
  height: 63px;
  border-radius: 0;
}
.final-cta {
  text-align: center;
  padding: 100px 20px 75px;
}
.final-cta h2 {
  font-size: 57px;
  line-height: 1.08;
  letter-spacing: -2.8px;
  font-weight: 700;
}
.final-cta p {
  font-size: 19px;
  margin-top: 19px;
}
.final-cta .button {
  margin-top: 25px;
}
.site-footer {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0 35px;
}
.site-footer .brand {
  font-size: 27px;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: #71697f;
}
.site-footer a:hover {
  color: var(--purple-dark);
}
@media (max-width: 1300px) {
  .page-width {
    margin-left: 32px;
    margin-right: 32px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .platform-band h2 {
    font-size: 34px;
  }
  .case-card h3 {
    font-size: 32px;
  }
  .case-card > p {
    min-height: 140px;
  }
}
@media (max-width: 1000px) {
  .section-heading h2 {
    font-size: 36px;
  }
  .section-heading > p {
    font-size: 17px;
    max-width: 330px;
  }
  .workflow {
    gap: 20px;
  }
  .workflow h3 {
    font-size: 23px;
  }
  .workflow article > p {
    font-size: 16px;
    min-height: 125px;
  }
  .platform-band {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }
  .platform-band h2 br {
    display: none;
  }
  .case-card {
    padding: 30px;
  }
  .case-card h3 {
    font-size: 28px;
    min-height: 95px;
  }
  .case-card > p {
    font-size: 16px;
    min-height: 150px;
  }
  .case-stat strong {
    font-size: 65px;
  }
  .case-stat > span {
    font-size: 14px;
  }
  .site-footer {
    align-items: flex-start;
  }
  .site-footer nav {
    justify-content: flex-end;
  }
}
@media (max-width: 760px) {
  .page-width {
    margin-left: 20px;
    margin-right: 20px;
  }
  .platform-section {
    padding-top: 80px;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    font-size: 35px;
    letter-spacing: -1.6px;
  }
  .section-heading > p {
    margin-top: 20px;
    max-width: 500px;
    font-size: 17px;
  }
  .workflow {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 36px;
  }
  .workflow h3 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .workflow article > p {
    min-height: 0;
    font-size: 17px;
    max-width: 550px;
    margin-top: 10px;
  }
  .step-number {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .platform-band {
    padding: 30px 24px;
    margin-top: 40px;
    border-radius: 20px;
    gap: 30px;
  }
  .platform-band h2 {
    font-size: 31px;
    letter-spacing: -1.3px;
    max-width: 450px;
  }
  .platform-band h2 br {
    display: block;
  }
  .capabilities {
    gap: 26px 20px;
  }
  .capabilities h3 {
    font-size: 14px;
  }
  .capabilities p {
    font-size: 13px;
  }
  .case-studies {
    padding-top: 80px;
  }
  .case-heading h2 {
    font-size: 40px;
    letter-spacing: -1.9px;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }
  .case-card {
    padding: 30px;
    border-radius: 22px;
  }
  .case-brand {
    margin-bottom: 22px;
  }
  .case-card h3 {
    font-size: 31px;
    min-height: 0;
    letter-spacing: -1.2px;
  }
  .case-card > p {
    font-size: 17px;
    min-height: 0;
    margin-top: 20px;
  }
  .case-stat {
    margin-top: 25px;
  }
  .case-stat strong {
    font-size: 70px;
  }
  .case-stat > span {
    font-size: 16px;
  }
  .final-cta {
    padding: 74px 0 55px;
  }
  .final-cta h2 {
    font-size: 39px;
    letter-spacing: -1.8px;
  }
  .final-cta p {
    font-size: 17px;
  }
  .site-footer {
    display: block;
    padding: 24px 0 30px;
  }
  .site-footer nav {
    justify-content: flex-start;
    gap: 18px 22px;
    margin-top: 24px;
    font-size: 12px;
  }
  .site-footer .brand {
    font-size: 25px;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 35px;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 0 13px;
  }
  .hero-actions .icon {
    width: 17px;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .capabilities {
    grid-template-columns: 1fr;
  }
  .case-heading h2 {
    font-size: 36px;
  }
  .case-card {
    padding: 25px;
  }
  .case-card h3 {
    font-size: 28px;
  }
  .final-cta h2 {
    font-size: 34px;
  }
}

/* Actual product screenshots, supplied by the team. */
.product-gallery {
  width: calc(100% - 64px);
  max-width: 1312px;
  margin: 38px auto 0;
  padding: 16px 24px 0;
  border: 1px solid #ede6fa;
  border-radius: 22px;
  background: var(--lavender);
}
.product-gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.product-tabs[hidden] {
  display: none;
}
.product-tabs button {
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #6b617e;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.3;
}
.product-tabs button:hover {
  color: var(--purple-dark);
  background: #ffffff80;
}
.product-tabs button[aria-selected="true"] {
  background: white;
  color: var(--purple-dark);
  border-color: #e5dcf5;
  box-shadow: 0 2px 5px #35284c05;
}
button:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}
.product-expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 12px;
  color: #655b78;
  padding: 10px 4px;
}
.product-expand:hover {
  color: var(--purple-dark);
}
.product-expand .icon {
  width: 16px;
  height: 16px;
}
.product-panel {
  overflow: hidden;
  border: 1px solid #e1daec;
  border-radius: 13px;
  background: #f7f8fc;
  box-shadow: 0 8px 28px #3b266d08;
}
.product-screen {
  display: block;
  cursor: zoom-in;
}
.product-screen img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}
.product-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 17px 0 19px;
}
.product-caption p {
  font-size: 13px;
  color: #574b70;
}
.product-caption span {
  flex-shrink: 0;
  color: #746787;
  font-size: 11px;
}
.product-dialog {
  width: calc(100vw - 48px);
  max-width: 1800px;
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 15px;
  color: var(--ink);
  background: white;
  box-shadow: 0 24px 90px #17151f40;
}
.product-dialog::backdrop {
  background: #17151fc9;
}
.product-dialog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}
.product-dialog h2 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.product-dialog-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: #f5f2fa;
  color: var(--ink);
  cursor: pointer;
}
.product-dialog-close:hover {
  background: #ece4fa;
}
.product-dialog-image {
  max-height: calc(100dvh - 116px);
  overflow: auto;
  overscroll-behavior: contain;
}
.product-dialog-image:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: -3px;
}
.product-dialog-image img {
  width: 100%;
  height: auto;
  min-width: 0;
  max-width: none;
}
body:has(.product-dialog[open]) {
  overflow: hidden;
}
@media (max-width: 760px) {
  .product-gallery {
    width: auto;
    margin: 32px 16px 0;
    padding: 12px 12px 0;
    border-radius: 16px;
  }
  .product-gallery-toolbar {
    display: block;
    margin-bottom: 12px;
  }
  .product-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }
  .product-tabs button {
    padding: 10px 5px;
    font-size: 11px;
    min-height: 46px;
  }
  .product-expand {
    display: flex;
    justify-content: flex-end;
    margin: 9px 0 -3px;
    padding: 5px 0;
    font-size: 11px;
  }
  .product-panel {
    border-radius: 8px;
  }
  .product-screen img {
    aspect-ratio: 4 / 3;
  }
  .product-caption {
    display: block;
    padding: 13px 2px 15px;
  }
  .product-caption p {
    font-size: 12px;
    line-height: 1.5;
  }
  .product-caption span {
    display: block;
    margin-top: 6px;
    font-size: 10px;
  }
  .product-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100dvh - 24px);
    border-radius: 10px;
  }
  .product-dialog-image {
    max-height: calc(100dvh - 91px);
  }
  .product-dialog-toolbar {
    padding: 10px 12px;
  }
  .product-dialog h2 {
    font-size: 14px;
  }
}
.workflow-screenshot {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 25px;
  border: 1px solid #e7e0f0;
  border-radius: 15px;
  padding: 10px;
  background: var(--lavender);
  cursor: zoom-in;
}
.workflow-screenshot img {
  display: block;
  width: 100%;
  height: 235px;
  object-fit: cover;
  object-position: top left;
  border-radius: 7px;
  border: 1px solid #e6e3ec;
}
.workflow-submissions img {
  object-position: top right;
}
.workflow-screenshot > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #625071;
  font-size: 12px;
  font-weight: 500;
  padding: 12px 4px 3px;
}
.workflow-screenshot .icon {
  height: 15px;
  width: 15px;
}
.workflow-screenshot:hover {
  border-color: #c4b2ed;
}
.case-origin {
  max-width: 810px;
  margin: 24px auto 0;
  font-size: 19px;
  line-height: 1.6;
}
.footer-logo {
  display: block;
  position: relative;
  overflow: hidden;
  width: 162px;
  height: 62px;
  flex-shrink: 0;
}
.footer-logo img {
  position: absolute;
  width: 205px;
  height: 205px;
  max-width: none;
  left: -21px;
  top: -65px;
}
@media (max-width: 1000px) and (min-width: 761px) {
  .workflow-screenshot img {
    height: 185px;
  }
}
@media (max-width: 760px) {
  .workflow-screenshot {
    margin-top: 20px;
  }
  .workflow-screenshot img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .case-origin {
    font-size: 17px;
    margin-top: 20px;
  }
  .footer-logo {
    margin-bottom: 12px;
  }
}

/* A fitted image first, with optional detail exploration on every screen. */
.product-dialog-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.product-dialog-toolbar {
  gap: 12px;
}
.product-dialog-zoom {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--purple-dark);
  font-size: 13px;
  cursor: pointer;
}
.product-dialog-close {
  width: 44px;
  height: 44px;
}
.product-dialog-hint {
  padding: 10px 18px;
  font-size: 12px;
  background: #faf8fe;
}
.product-dialog-image {
  max-height: calc(100dvh - 164px);
}
.product-dialog.is-zoomed .product-dialog-image img {
  min-width: max(960px, 125%);
}
@media (max-width: 760px) {
  .site-header {
    margin: 12px 16px 0;
    padding: 8px 12px 8px 16px;
    min-height: 62px;
  }
  .mobile-menu summary {
    width: 44px;
    height: 44px;
    border-radius: 9px;
    background: var(--lavender);
  }
  .mobile-menu[open] summary {
    color: var(--purple-dark);
  }
  .mobile-menu nav {
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
  }
  .mobile-menu nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .mobile-menu nav a:last-child {
    background: var(--purple);
    color: white;
    justify-content: center;
    font-weight: 600;
  }
  .hero {
    padding-top: 36px;
  }
  .hero h1 {
    font-size: clamp(34px, 9vw, 56px);
    letter-spacing: -1.8px;
    text-wrap: balance;
  }
  .hero-copy > p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }
  .hero-actions {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions .button {
    flex: 1;
    min-height: 52px;
  }
  .product-gallery {
    margin-top: 28px;
    padding: 10px 10px 0;
  }
  .product-tabs button {
    font-size: 12px;
    min-height: 48px;
    padding: 10px 4px;
  }
  .product-expand {
    min-height: 44px;
    margin: 2px 0 -4px;
    font-size: 12px;
  }
  .product-caption p {
    font-size: 13px;
  }
  .product-caption span {
    font-size: 11px;
  }
  .product-screen img {
    aspect-ratio: 16 / 11;
    object-fit: contain;
  }
  .platform-section,
  .case-studies {
    padding-top: 64px;
  }
  .section-heading h2,
  .case-heading h2 {
    font-size: clamp(30px, 8.4vw, 42px);
    text-wrap: balance;
  }
  .section-heading > p {
    margin-top: 16px;
    font-size: 16px;
  }
  .workflow {
    margin-top: 32px;
    gap: 32px;
  }
  .workflow article + article {
    border-top: 1px solid var(--border);
    padding-top: 28px;
  }
  .workflow h3 {
    font-size: 27px;
  }
  .workflow article > p {
    font-size: 16px;
  }
  .workflow-screenshot {
    margin-top: 18px;
    padding: 8px;
  }
  .workflow-screenshot img {
    aspect-ratio: 16 / 11;
    object-fit: contain;
  }
  .workflow-screenshot > span {
    min-height: 44px;
    padding: 8px 4px 0;
    font-size: 13px;
  }
  .platform-band {
    padding: 28px 22px;
  }
  .platform-band h2 {
    font-size: 29px;
  }
  .capabilities {
    gap: 24px 18px;
  }
  .capabilities p {
    font-size: 14px;
  }
  .case-origin {
    font-size: 16px;
    line-height: 1.65;
  }
  .case-card {
    padding: 26px 24px;
  }
  .case-card h3 {
    font-size: clamp(26px, 7vw, 32px);
    text-wrap: balance;
  }
  .case-card > p {
    font-size: 16px;
    margin-top: 16px;
  }
  .case-brand {
    margin-bottom: 18px;
  }
  .case-stat strong {
    font-size: 64px;
  }
  .case-stat > span {
    font-size: 15px;
  }
  .case-card summary {
    gap: 10px;
    font-size: 13px;
    min-height: 56px;
    padding-top: 18px;
  }
  .final-cta {
    padding-top: 64px;
  }
  .final-cta .button {
    width: 100%;
    max-width: 360px;
    min-height: 52px;
  }
  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
    margin-top: 12px;
    font-size: 13px;
  }
  .site-footer nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .site-footer nav a:last-child {
    grid-column: 1 / -1;
  }
  .product-dialog {
    max-height: calc(100dvh - 24px);
  }
  .product-dialog-toolbar {
    padding: 10px;
  }
  .product-dialog h2 {
    font-size: 13px;
    line-height: 1.4;
  }
  .product-dialog-zoom {
    font-size: 12px;
    padding: 0 10px;
  }
  .product-dialog-hint {
    padding: 8px 12px;
    font-size: 12px;
  }
  .product-dialog-image {
    max-height: calc(100dvh - 168px);
  }
}
@media (max-width: 360px) {
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .case-card {
    padding: 24px 20px;
  }
  .case-heading h2 br {
    display: none;
  }
}

/* Pricing mirrors the app's monthly workspace plans. */
.pricing-section {
  padding-top: 120px;
}
.pricing-intro {
  font-size: 19px;
  margin: 24px auto 0;
  max-width: 600px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.pricing-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
}
.pricing-featured {
  background: var(--lavender);
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple);
}
.pricing-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 30px;
}
.pricing-card h3,
.pricing-enterprise h3 {
  font-size: 24px;
  letter-spacing: -0.7px;
}
.pricing-badge {
  padding: 6px 9px;
  background: var(--purple);
  color: white;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.pricing-description {
  font-size: 16px;
  margin-top: 14px;
  min-height: 50px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.pricing-price strong {
  font-size: 48px;
  letter-spacing: -2px;
  color: var(--ink);
  line-height: 1.15;
}
.pricing-price span {
  font-size: 15px;
}
.pricing-workspace {
  font-size: 13px;
  margin-top: 6px;
}
.pricing-card .button {
  width: 100%;
  margin-top: 24px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
}
.pricing-limits {
  margin: 26px 0 0;
  padding-bottom: 22px !important;
  border-bottom: 1px solid #ded6ed;
}
.pricing-limits li {
  font-size: 14px;
  line-height: 1.55;
  margin-top: 10px;
  color: var(--muted);
}
.pricing-limits strong {
  color: var(--ink);
  font-weight: 650;
}
.pricing-features {
  margin: 22px 0 0;
}
.pricing-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  margin-top: 12px;
}
.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple-dark);
}
.pricing-enterprise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 30px;
  margin-top: 24px;
}
.pricing-enterprise p {
  font-size: 16px;
  margin-top: 8px;
}
.pricing-enterprise .button {
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
}
@media (min-width: 761px) and (max-width: 1100px) {
  .nav-links {
    gap: 16px;
  }
  .header-actions {
    gap: 12px;
  }
  .site-header {
    gap: 16px;
  }
}
@media (max-width: 1000px) {
  .pricing-card {
    padding: 24px 20px;
  }
  .pricing-card-heading {
    flex-wrap: wrap;
    align-content: start;
    min-height: 66px;
  }
  .pricing-price strong {
    font-size: 40px;
  }
}
@media (max-width: 760px) {
  .pricing-section {
    padding-top: 64px;
  }
  .pricing-intro {
    margin-top: 18px;
    font-size: 16px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
  }
  .pricing-card {
    padding: 26px 24px;
    border-radius: 22px;
  }
  .pricing-card-heading {
    min-height: 30px;
    align-items: center;
  }
  .pricing-description {
    min-height: 0;
    margin-top: 12px;
  }
  .pricing-price {
    margin-top: 20px;
  }
  .pricing-price strong {
    font-size: 44px;
  }
  .pricing-card .button {
    min-height: 52px;
  }
  .pricing-enterprise {
    display: block;
    padding: 26px 24px;
  }
  .pricing-enterprise .button {
    width: 100%;
    margin-top: 22px;
    min-height: 52px;
  }
  .pricing-note {
    font-size: 12px;
    line-height: 1.6;
  }
}
