@font-face {
  font-family: "Atkinson";
  src: url("/assets/fonts/brand/atkinson-hyperlegible-next-variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: oklch(0.205 0 0);
  --ink-soft: oklch(0.36 0.015 155);
  --gray: oklch(0.53 0 0);
  --gray-soft: oklch(0.955 0 0);
  --gray-pale: oklch(0.98 0 0);
  --line: oklch(0.89 0 0);
  --accent: oklch(0.65 0.17 46.22);
  --accent-hover: oklch(0.59 0.17 46.22);
  --primary: oklch(0.295 0.035 149);
  --white: #fff;
  --shell: 1240px;
  --section-space: clamp(72px, 8vw, 112px);
  --shadow: 0 22px 55px color-mix(in oklch, var(--ink) 9%, transparent);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  padding-top: 64px;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font-family: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-family: "Atkinson", Arial, sans-serif;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid color-mix(in oklch, var(--line) 44%, transparent);
  background: color-mix(in oklch, var(--white) 94%, transparent);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  gap: 30px;
}

.brand {
  justify-self: start;
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1;
  font-family: "Atkinson", Arial, sans-serif;
}

.brand span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
}

.main-nav a {
  transition: color 160ms ease;
}

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

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 550;
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 2px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle__icon {
  display: block;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle__icon--close {
  display: none;
}

.mobile-nav {
  display: none;
}

.menu-toggle[aria-expanded="true"] {
  color: var(--ink);
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon--close {
  display: block;
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 2px 0 var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
}

.button--accent {
  color: var(--white);
  background: var(--accent);
}

.button--accent:hover {
  background: var(--accent-hover);
}

.button--quiet {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button--quiet:hover {
  border-color: var(--ink);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

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

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: var(--accent);
}

.button--full {
  width: 100%;
}

.hero {
  padding: clamp(72px, 7vw, 96px) 0 var(--section-space);
  overflow: hidden;
}

.hero-copy {
  max-width: 970px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in oklch, currentColor 12%, transparent);
}

.hero h1 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(2.28rem, 3.84vw, 3.65rem);
  letter-spacing: -0.046em;
}

.hero-lead {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .button {
  min-height: 46px;
  padding-inline: 18px;
  font-size: .92rem;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(26px, 2.5vw, 34px);
  row-gap: 20px;
  margin-top: clamp(60px, 6.5vw, 84px);
}

.media-frame {
  aspect-ratio: 1 / 0.8;
  overflow: hidden;
  border-radius: 16px;
  background: var(--gray-soft);
}

.demo-media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.media-frame img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.2, .8, .2, 1);
}

.use-case:nth-child(2) .media-frame img {
  object-position: center center;
}

.use-case:hover .media-frame img {
  transform: scale(1.025);
}

.use-case__heading {
  margin-top: 16px;
}

.use-case h2 {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
}

.use-case__meta {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 5px;
  color: var(--gray);
  font-size: .92rem;
}

.use-case p {
  margin: 0;
  color: var(--gray);
  font-size: inherit;
}

.demo-open {
  padding: 0;
  border: 0;
  color: var(--accent);
  background: transparent;
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease;
}

.demo-open:hover {
  color: var(--accent-hover);
}

.section {
  padding: var(--section-space) 0;
}

.section-heading {
  margin-bottom: clamp(44px, 5vw, 64px);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  letter-spacing: -0.04em;
}

.section-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-heading--center {
  text-align: center;
}

.how {
  background: var(--gray-pale);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.steps li {
  min-height: 225px;
  padding: 30px 42px 12px 0;
}

.steps li + li {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 750;
  letter-spacing: -0.03em;
}

.steps h3 {
  font-size: 1.22rem;
}

.steps p {
  max-width: 330px;
  margin: 15px 0 0;
  color: var(--ink-soft);
}

.solutions {
  padding-bottom: 0;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(35px, 5vw, 70px);
  padding-bottom: clamp(80px, 9vw, 120px);
}

.feature--reverse .feature-media {
  grid-column: 2;
}

.feature--reverse .feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.feature-media {
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--gray-soft);
}

.feature-media img {
  height: 100%;
  object-fit: cover;
}

.feature-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.pricing {
  background: var(--gray-pale);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 80px;
}

.section-heading--split > p {
  margin: 0 0 7px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  min-height: 540px;
  padding: clamp(26px, 3vw, 38px);
  column-gap: clamp(32px, 4vw, 60px);
  row-gap: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.price-card--featured {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.price-top {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 1;
}

.plan-name {
  margin-bottom: 5px;
  font-size: 1.22rem;
  font-weight: 750;
  letter-spacing: -0.035em;
}

.plan-for {
  min-height: 50px;
  margin: 0;
  color: var(--gray);
}

.price-card--featured .plan-for,
.price-card--featured .price-note {
  color: color-mix(in oklch, var(--white) 72%, transparent);
}

.price {
  display: flex;
  align-items: baseline;
  margin-top: 30px;
  letter-spacing: -0.06em;
}

.price sup {
  align-self: flex-start;
  margin-top: 16px;
  font-size: 1.2rem;
  font-weight: 700;
}

.price strong {
  font-size: clamp(3rem, 4.1vw, 4rem);
  line-height: .85;
}

.price span {
  margin-left: 9px;
  color: var(--gray);
  letter-spacing: 0;
}

.price-card--featured .price span {
  color: color-mix(in oklch, var(--white) 72%, transparent);
}

.price-note {
  margin: 20px 0 34px;
  color: var(--gray);
  font-size: .92rem;
}

.price-note del {
  margin-left: 6px;
}

.price-card > .button {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
}

.plan-features {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding-top: 0;
  border-top: 0;
}

.plan-features h3 {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
}

.plan-features ul {
  display: grid;
  gap: 15px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 23px;
  line-height: 1.38;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  top: .1em;
  left: 0;
  color: var(--accent);
  font-size: .82em;
  font-weight: 800;
}

.pricing-footnote {
  margin: 22px 0 0;
  color: var(--gray);
  font-size: .85rem;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(60px, 10vw, 140px);
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.faq-intro > p:last-child {
  margin: 30px 0 0;
  color: var(--gray);
}

.faq-intro a {
  color: var(--accent);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 27px 50px 27px 0;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 50px 28px 0;
  color: var(--ink-soft);
}

.final-cta {
  padding: clamp(76px, 8vw, 108px) 0;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.final-cta p {
  max-width: 720px;
  margin: 27px auto 32px;
  color: color-mix(in oklch, var(--white) 70%, transparent);
  font-size: 1.04rem;
}

.site-footer {
  color: color-mix(in oklch, var(--white) 78%, transparent);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-block: 30px;
  gap: 40px;
  border-top: 1px solid color-mix(in oklch, var(--white) 5%, transparent);
}

.brand--footer {
  color: var(--white);
}

.footer-main nav {
  display: flex;
  justify-self: end;
  gap: 26px;
  font-size: .86rem;
  font-weight: 500;
}

.footer-main a:hover,
.footer-legal a:hover {
  color: var(--accent);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  padding-block: 20px 26px;
  gap: 30px;
  border-top: 1px solid color-mix(in oklch, var(--white) 5%, transparent);
  color: color-mix(in oklch, var(--white) 56%, transparent);
  font-size: .75rem;
}

.footer-legal div {
  display: flex;
  gap: 24px;
}

.footer-legal p {
  margin: 0;
}

.demo-dialog {
  width: min(calc(100% - 32px), 720px);
  max-height: min(88vh, 800px);
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 90px color-mix(in oklch, var(--ink) 30%, transparent);
}

.demo-dialog::backdrop {
  background: color-mix(in oklch, var(--ink) 60%, transparent);
  backdrop-filter: blur(5px);
}

.demo-dialog__panel {
  position: relative;
  padding: clamp(26px, 5vw, 44px);
}

.demo-dialog__close {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.demo-dialog__close:hover {
  border-color: var(--ink);
}

.demo-dialog__header {
  max-width: 570px;
  padding-right: 0;
}

.demo-dialog__header .eyebrow {
  margin-bottom: 16px;
  padding-right: 44px;
}

.demo-dialog__header h2 {
  padding-right: 44px;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.demo-dialog__header > p:last-child {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.demo-dialog__actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.demo-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 160ms ease;
}

.demo-option[hidden] {
  display: none;
}

.demo-option strong,
.demo-option small {
  display: block;
}

.demo-option strong {
  color: var(--accent);
  font-size: .96rem;
}

.demo-option small {
  margin-top: 6px;
  color: var(--gray);
  font-size: .8rem;
  line-height: 1.4;
}

.demo-option b {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 160ms ease;
}

.demo-option:hover {
  border-color: var(--accent);
}

.demo-option:hover b {
  transform: translate(2px, -2px);
}

html.has-open-dialog,
html.has-open-dialog body {
  overflow: hidden;
}

:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--accent) 70%, var(--white));
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 19;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100dvh - 64px);
    overflow-y: auto;
    overscroll-behavior: contain;
    align-items: stretch;
    padding: 24px 20px;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    background: color-mix(in oklch, var(--white) 88%, transparent);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: none;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav__links {
    display: grid;
  }

  .mobile-nav__links a {
    padding: 18px 4px;
    border-bottom: 1px solid color-mix(in oklch, var(--ink) 5%, transparent);
    font-size: 1.05rem;
    font-weight: 500;
  }

  .mobile-nav__links a:hover {
    color: var(--accent);
  }

  .mobile-nav__actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 28px;
    padding-bottom: max(4px, env(safe-area-inset-bottom));
  }

  .mobile-nav__actions .button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    font-size: .92rem;
    font-weight: 700;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .price-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .price-top,
  .plan-features,
  .price-card > .button {
    grid-column: 1;
    grid-row: auto;
  }

}

@media (max-width: 800px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .hero {
    padding-top: 68px;
  }

  .hero h1 br,
  h2 br {
    display: none;
  }

  .use-case-grid,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .use-case-grid {
    row-gap: 44px;
  }

  .steps li,
  .steps li + li {
    min-height: 0;
    padding: 28px 0 35px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature,
  .feature--reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .feature-media {
    height: clamp(190px, 56vw, 230px);
    aspect-ratio: auto;
  }

  .feature--reverse .feature-media,
  .feature--reverse .feature-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .feature-copy {
    max-width: 650px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading--split > p {
    margin: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .demo-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    margin: max(12px, env(safe-area-inset-top)) auto auto;
  }

  .demo-dialog__panel {
    padding: 26px 22px 22px;
  }

  .demo-dialog__header {
    padding-right: 0;
  }

  .demo-dialog__header h2 {
    font-size: 1.8rem;
  }

  .demo-dialog__actions {
    grid-template-columns: 1fr;
  }

  .demo-option {
    min-height: 86px;
    padding: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 36px;
  }

  .footer-main nav {
    flex-wrap: wrap;
    justify-self: start;
    gap: 14px 22px;
  }

  .footer-legal {
    gap: 16px;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  :root {
    --section-space: 56px;
  }

  .hero {
    padding: 52px 0 var(--section-space);
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.25vw, 2.23rem);
    letter-spacing: -0.04em;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: .975rem;
    line-height: 1.46;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .use-case-grid {
    row-gap: 36px;
    margin-top: 48px;
  }

  .use-case__heading {
    margin-top: 12px;
  }

  .use-case p,
  .demo-open {
    font-size: .875rem;
  }

  .demo-open {
    font-weight: 700;
  }

  .section {
    padding: var(--section-space) 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  h2 {
    font-size: 1.75rem;
    line-height: 1.04;
  }

  .section-heading > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: .96rem;
  }

  .steps li,
  .steps li + li {
    padding: 24px 0 28px;
  }

  .steps h3 {
    font-size: 1.1rem;
  }

  .steps p {
    margin-top: 12px;
    font-size: .96rem;
  }

  .feature,
  .feature--reverse {
    gap: 28px;
    padding-bottom: 64px;
  }

  .feature-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: .96rem;
  }

  .check-list {
    gap: 10px;
    margin-top: 22px;
  }

  .check-list li {
    font-size: .93rem;
  }

  .section-heading--split {
    gap: 18px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .price-card {
    min-height: 0;
    padding: 22px 20px;
    gap: 24px;
  }

  .price-top,
  .plan-features,
  .price-card > .button {
    grid-column: 1;
    grid-row: auto;
  }

  .plan-name {
    margin-bottom: 4px;
    font-size: 1.1rem;
  }

  .plan-for {
    min-height: 0;
    font-size: .875rem;
    line-height: 1.4;
  }

  .price {
    margin-top: 18px;
  }

  .price sup {
    margin-top: 10px;
    font-size: 1rem;
  }

  .price strong {
    font-size: 2.75rem;
    line-height: .9;
  }

  .price span {
    margin-left: 7px;
    font-size: .875rem;
  }

  .price-note {
    margin: 13px 0 0;
    font-size: .875rem;
  }

  .price-card .button {
    min-height: 46px;
    padding-inline: 16px;
    font-size: .9rem;
  }

  .plan-features h3 {
    font-size: 1rem;
  }

  .plan-features ul {
    gap: 11px;
    margin-top: 18px;
  }

  .plan-features li {
    padding-left: 20px;
    font-size: .875rem;
    line-height: 1.34;
  }

  .pricing-footnote {
    margin-top: 18px;
    font-size: .875rem;
  }

  .faq-layout {
    gap: 36px;
  }

  .faq-intro > p:last-child {
    margin-top: 22px;
  }

  .faq-list summary {
    padding: 22px 38px 22px 0;
    font-size: 1rem;
    line-height: 1.35;
  }

  .faq-list summary::after {
    top: 18px;
  }

  .faq-list details p {
    margin: -2px 36px 22px 0;
    font-size: .94rem;
  }

  .final-cta {
    padding: 64px 0;
  }

  .final-cta p {
    margin: 20px auto 26px;
    font-size: .96rem;
  }

  .use-case__heading {
    align-items: flex-start;
  }

  .footer-legal div {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
