@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/geist/Geist[wght].woff2") format("woff2");
}

@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/geist/GeistMono[wght].woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #f7f7f4;
  --surface: #ffffff;
  --surface-2: #efefeb;
  --ink: #171717;
  --ink-2: #474743;
  --ink-3: #6f6f68;
  --line: #dcdcd6;
  --line-strong: #b9b9b0;
  --dark: #171717;
  --dark-2: #222220;
  --dark-line: #3b3b37;
  --accent: #e25f2a;
  --accent-dark: #ba4318;
  --accent-soft: #fae6dc;
  --success: #1f7a4d;
  --error: #ad2f2f;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 24px 80px rgb(23 23 23 / 10%);
  --container: 1200px;
  --header-height: 68px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea,
summary {
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

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

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

h1,
h2,
h3 {
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 5vw, 4.5rem);
  font-weight: 510;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 3.8vw, 3.75rem);
  font-weight: 520;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.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: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
}

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

.container,
.container-narrow {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.container-narrow {
  width: min(calc(100% - 48px), 760px);
}

.eyebrow,
.menu-kicker,
.plan-deployment {
  margin-bottom: 16px;
  color: var(--accent-dark);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 620;
  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: 38px;
  padding-inline: 14px;
  font-size: 0.84rem;
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-primary:hover {
  background: #32322f;
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--surface);
}

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

.button-light:hover {
  background: var(--surface-2);
}

.button-outline-light {
  border-color: #6b6b65;
  color: #fff;
}

.button-outline-light:hover {
  border-color: #fff;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-weight: 620;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 5px;
}

.text-link:hover {
  text-decoration-color: var(--accent);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(247 247 244 / 94%);
  backdrop-filter: blur(18px);
}

.header-row {
  position: relative;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.05rem;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.brand img {
  border-radius: 7px;
}

.desktop-nav {
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 4px;
}

.desktop-nav > a,
.nav-menu > button {
  display: inline-flex;
  height: 38px;
  padding: 0 10px;
  align-items: center;
  gap: 5px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 540;
}

.nav-chevron {
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  transition: transform 160ms ease;
}

.nav-chevron path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.nav-menu > button[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.desktop-nav > a:hover,
.nav-menu > button:hover,
.nav-menu > button[aria-expanded="true"],
.nav-menu > button.is-active,
.desktop-nav > a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--ink);
}

.nav-menu {
  display: flex;
  align-items: center;
}

.mega-menu {
  position: absolute;
  z-index: 5;
  top: calc(100% + 1px);
  left: 130px;
  display: grid;
  width: min(920px, calc(100vw - 48px));
  padding: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mega-column {
  padding: 8px;
}

.mega-feature {
  display: flex;
  min-height: 92px;
  padding: 18px 20px;
  grid-column: 1 / -1;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border-radius: var(--radius);
  background: var(--surface-2);
}

.mega-column a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.mega-column a:hover,
.mega-column a:focus-visible,
.mega-feature:hover,
.mega-feature:focus-visible {
  background: var(--accent-soft);
}

.mega-menu strong,
.mega-menu span {
  display: block;
}

.mega-menu strong {
  font-size: 0.9rem;
  font-weight: 620;
}

.mega-menu span {
  margin-top: 3px;
  color: var(--ink-3);
  font-size: 0.79rem;
  line-height: 1.35;
}

.mega-feature-copy {
  margin: 0 !important;
  color: var(--ink) !important;
}

.mega-feature .menu-kicker {
  margin: 0 0 7px;
  color: var(--accent-dark);
}

.mega-feature strong {
  font-size: 1rem;
}

.mega-feature-description {
  max-width: 620px;
}

.mega-feature-action {
  display: inline-flex !important;
  margin: 0 !important;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--ink) !important;
  font-size: 0.8rem !important;
  font-weight: 620;
}

.mega-feature-action > span {
  margin: 0;
  color: inherit;
}

.menu-kicker {
  margin: 0 0 8px 12px;
  color: var(--ink-3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-signin {
  font-size: 0.86rem;
  font-weight: 580;
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.75rem;
  font-weight: 620;
}

.language-switcher a,
.language-switcher span {
  padding: 4px 7px;
  border-radius: 999px;
  line-height: 1;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  background: var(--accent-soft);
}

.language-switcher [aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.language-switcher [aria-disabled="true"] {
  color: var(--ink-3);
  cursor: not-allowed;
  opacity: 0.58;
}

.mobile-menu-button,
.mobile-drawer {
  display: none;
}

.announcement {
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.announcement a {
  display: flex;
  min-height: 42px;
  padding: 8px 24px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}

.announcement a > span:first-child {
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--accent-dark);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs {
  padding-top: 28px;
}

.breadcrumbs ol {
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  color: var(--ink-3);
  font-size: 0.77rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 7px;
  content: "/";
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.page-hero {
  padding: 72px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.home-hero {
  padding-top: 82px;
  background:
    radial-gradient(circle at 78% 26%, rgb(226 95 42 / 10%), transparent 26%),
    linear-gradient(180deg, #fbfbf8, var(--paper));
}

.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero-grid.has-screenshot {
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
}

.home-hero .hero-grid.has-screenshot {
  grid-template-columns: 1fr;
}

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

.hero-grid:not(.has-screenshot) .hero-copy {
  max-width: 940px;
}

.home-hero .hero-copy {
  max-width: 1080px;
  text-align: center;
  margin-inline: auto;
}

.home-hero h1 {
  font-size: clamp(3.15rem, 5.2vw, 5rem);
  font-weight: 480;
  letter-spacing: -0.045em;
}

.hero-lede,
.section-heading > p,
.panel-grid > div > p,
.deployment-grid > div > p {
  max-width: 690px;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.hero-lede {
  margin-bottom: 32px;
}

.home-hero .hero-lede,
.home-hero .button-row {
  margin-inline: auto;
  justify-content: center;
}

.hero-note {
  margin: 20px 0 0;
  color: var(--ink-3);
  font-size: 0.78rem;
}

.hero-note a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

.screenshot-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 20px 60px rgb(23 23 23 / 12%);
}

.home-hero .screenshot-frame {
  width: min(100%, 1120px);
  margin-inline: auto;
}

.screenshot-frame > button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
}

.screenshot-picture img {
  object-fit: contain;
  object-position: center;
}

.screenshot-frame-hero,
.feature-media .screenshot-frame {
  aspect-ratio: 16 / 9;
  container-type: size;
  display: grid;
  /* padding: 20px; */
  overflow: hidden;
  place-items: center;
  border: 1px solid #dedfe3;
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgb(239 92 49 / 9%), transparent 32%),
    linear-gradient(145deg, #f1f5ff 0%, #f5f6f8 52%, #faf7f4 100%);
  box-shadow: none;
}

.screenshot-frame-hero > button,
.feature-media .screenshot-frame > button {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
  place-items: center;
  position: relative;
}

.screenshot-frame-hero .screenshot-picture,
.feature-media .screenshot-picture {
  --screenshot-ratio: 1.777778;
  --screenshot-ratio: attr(data-ratio type(<number>), 1.777778);

  display: block;
  width: min(100cqw, calc(100cqh * var(--screenshot-ratio)), 920px);
  aspect-ratio: var(--screenshot-ratio);
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  filter:
    drop-shadow(0 0 0.5px rgb(23 23 23 / 20%))
    drop-shadow(0 8px 12px rgb(23 23 23 / 8%));
}

.screenshot-frame-hero .screenshot-picture img,
.feature-media .screenshot-picture img {
  position: static;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  border: 0;
  border-radius: inherit;
  filter: none;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}

.home-hero .screenshot-frame-hero {
  padding: 12px 16px 0;
  place-items: end center;
}

.home-hero .screenshot-frame-hero > button {
  place-items: end center;
}

.home-hero .screenshot-frame-hero .screenshot-picture {
  width: min(100cqw, calc(100cqh * var(--screenshot-ratio)));
  filter: drop-shadow(0 0 0.5px rgb(23 23 23 / 20%));
}

.feature-media {
  position: relative;
  min-width: 0;
}

.artwork-frame {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #ecebe6;
}

.artwork-picture,
.artwork-picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.artwork-picture img {
  object-fit: cover;
  object-position: center;
}

.feature-media-card.feature-media-artwork,
.feature-media-pain.feature-media-artwork,
.artwork-frame-card,
.artwork-frame-pain {
  aspect-ratio: 4 / 3;
}

.feature-media .screenshot-frame {
  border-color: #dedfe3;
}

.feature-media-card,
.feature-media-step {
  overflow: hidden;
  background: #f7f8fa;
}

.feature-media-card {
  margin: -12px -12px 26px;
}

.feature-media-brand {
  display: flex;
  min-height: 220px;
  padding: 36px;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, #1d63ed 5%, var(--surface));
}

.feature-media-card.feature-media-brand {
  aspect-ratio: 8 / 5;
}

.feature-media-brand .brand-visual {
  margin: 0;
  flex-direction: column;
  text-align: center;
}

.feature-media-brand .brand-visual img {
  width: 92px;
}

.feature-media-brand .brand-visual figcaption {
  color: var(--ink-2);
}

.dark-section .feature-media-brand {
  background: #f7f8fa;
}

.feature-media-card .screenshot-frame,
.feature-media-step .screenshot-frame {
  aspect-ratio: 4 / 3;
}

.feature-media-panel,
.feature-media-control,
.feature-media-self-host {
  width: 100%;
}

.feature-media-panel .screenshot-frame,
.feature-media-control .screenshot-frame,
.feature-media-self-host .screenshot-frame {
  aspect-ratio: 16 / 9;
}

.screenshot-frame-cropped > button {
  aspect-ratio: 8 / 5;
  overflow: hidden;
}

.screenshot-frame-cropped img {
  transform: translateY(0);
}

.screenshot-frame figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  padding: 10px 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(255 255 255 / 42%);
  border-radius: var(--radius-sm);
  background: rgb(23 23 23 / 88%);
  color: #fff;
  box-shadow: 0 12px 32px rgb(0 0 0 / 24%);
  font-size: 0.76rem;
  backdrop-filter: blur(12px);
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-grid {
  display: grid;
  min-height: 190px;
  grid-template-columns: 160px repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}

.proof-grid img {
  width: 118px;
  height: auto;
}

.proof-grid p {
  padding-left: 24px;
  margin: 0;
  border-left: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.91rem;
}

.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}

.section-compact {
  padding-block: 76px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 54px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

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

.pain-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.pain-card > .feature-media {
  border-bottom: 1px solid var(--line);
}

.pain-card-copy {
  padding: 28px;
}

.pain-card-copy .card-index {
  display: block;
  margin-bottom: 42px;
}

.pain-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 560;
  letter-spacing: -0.025em;
}

.pain-card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.6;
}

.story-showcase {
  border-top: 1px solid var(--line);
}

.story-row {
  display: grid;
  padding: 92px 0;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.story-row:nth-child(even) .story-copy {
  order: 2;
}

.story-row:nth-child(even) {
  grid-template-columns: minmax(480px, 1.28fr) minmax(280px, 0.72fr);
}

.story-copy {
  max-width: 510px;
}

.story-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
  font-weight: 520;
  letter-spacing: -0.035em;
}

.story-copy > p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 1.06rem;
  line-height: 1.65;
}

.story-points {
  padding: 18px 0 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.story-points li {
  position: relative;
  padding: 9px 0 9px 22px;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.story-points li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 9px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.feature-media-story,
.feature-media-story .screenshot-frame {
  width: 100%;
}

.feature-media-story .screenshot-frame {
  aspect-ratio: 16 / 9;
}

.assurance-section {
  background: var(--surface);
}

.assurance-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.assurance-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.assurance-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: var(--ink-2);
  line-height: 1.62;
}

.assurance-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.assurance-item {
  position: relative;
  min-width: 0;
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.assurance-item:first-child {
  border-left: 1px solid var(--line);
}

a.assurance-item {
  transition: background-color 160ms ease, color 160ms ease;
}

a.assurance-item:hover {
  background: var(--paper);
}

.assurance-item h3 {
  max-width: 220px;
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.assurance-item p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.82rem;
  line-height: 1.55;
}

.assurance-item > span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--accent-dark);
}

.link-card-grid,
.card-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.link-card,
.info-card,
.contact-grid article {
  position: relative;
  min-height: 260px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.link-card.has-media,
.info-card.has-media {
  min-height: 500px;
}

.link-card.has-media h3,
.info-card.has-media h3 {
  margin-top: 26px;
}

.link-card.has-media .card-arrow {
  top: auto;
  right: 28px;
  bottom: 26px;
}

.info-card.has-media .card-mark {
  margin-top: 2px;
}

.link-card {
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.link-card:hover {
  z-index: 1;
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgb(23 23 23 / 8%);
}

.link-card h3,
.info-card h3,
.contact-grid h2 {
  max-width: 420px;
  margin-top: 48px;
  font-size: clamp(1.6rem, 2.7vw, 2.45rem);
  font-weight: 560;
}

.link-card p,
.info-card p,
.contact-grid p {
  max-width: 460px;
  margin-bottom: 0;
  color: var(--ink-2);
}

.card-index {
  color: var(--ink-3);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.7rem;
}

.card-arrow {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 1.25rem;
}

.card-mark {
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}

.info-card > a {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.info-card .text-link {
  position: absolute;
  right: 30px;
  bottom: 26px;
}

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

.bento-grid .info-card:nth-child(1),
.bento-grid .info-card:nth-child(6) {
  grid-column: span 2;
}

.dark-section,
.final-cta,
.site-footer {
  border-color: var(--dark-line);
  background: var(--dark);
  color: #fff;
}

.dark-section .eyebrow,
.final-cta .eyebrow {
  color: #f19973;
}

.dark-section .section-heading > p,
.dark-section .panel-grid p,
.dark-section .deployment-grid p {
  color: #bdbdb6;
}

.tabs {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.tab-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.tab-list button {
  padding: 18px 16px;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  background: transparent;
  color: #a9a9a3;
  text-align: left;
}

.tab-list button[aria-selected="true"] {
  color: #fff;
  box-shadow: inset 3px 0 0 var(--accent);
}

.tab-panel {
  display: grid;
  grid-template-columns: minmax(200px, 0.55fr) minmax(400px, 1.45fr);
  gap: 32px;
  align-items: center;
}

.tab-panel > div > p {
  color: #bdbdb6;
}

.tab-panel .screenshot-frame {
  border-color: var(--dark-line);
  box-shadow: none;
}

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

.steps-grid li {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.steps-grid li:first-child {
  border-left: 1px solid var(--line);
}

.steps-grid li > span {
  display: block;
  margin-bottom: 70px;
  color: var(--accent-dark);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
}

.steps-grid-visual li {
  min-height: 560px;
}

.steps-grid-visual li > span {
  margin: 24px 0 18px;
}

.steps-grid p {
  color: var(--ink-2);
}

.panel-grid,
.deployment-grid,
.control-panel,
.sources {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 80px;
  align-items: center;
}

.evidence-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--dark-line);
  list-style: none;
}

.panel-evidence {
  display: grid;
  gap: 26px;
}

.panel-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.panel-visual-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.panel-visual-grid .feature-media-panel .screenshot-frame {
  padding: 10px;
  border-radius: var(--radius-sm);
}

.panel-visual-grid .feature-media-brand {
  min-height: 180px;
  border-radius: var(--radius-sm);
}

.panel-grid-visual {
  align-items: start;
}

.panel-grid-multi-visual {
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}

.panel-grid-multi-visual > div:first-child {
  max-width: 820px;
}

.dark-section .feature-media .screenshot-frame {
  border-color: var(--dark-line);
}

.evidence-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--dark-line);
  color: #d8d8d2;
}

.evidence-list li::before {
  margin-right: 12px;
  color: #76d295;
  content: "✓";
}

.control-panel {
  padding: 36px;
  gap: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.control-panel h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.control-panel p {
  margin-bottom: 0;
  color: var(--ink-2);
}

.control-panel .button {
  justify-self: end;
}

.control-panel-visual {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.control-panel-visual .button {
  width: fit-content;
  margin-top: 24px;
  justify-self: start;
}

.deployment-console {
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: var(--dark-2);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
}

.deployment-console > div {
  display: grid;
  padding: 13px 16px;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  border-bottom: 1px solid var(--dark-line);
}

.deployment-console > div:last-child {
  border-bottom: 0;
}

.deployment-console span {
  color: #a2a29b;
}

.deployment-console strong {
  color: #77d89a;
  font-weight: 500;
}

.self-host-commercial-section {
  padding-block: 34px;
  background: var(--paper);
}

.self-host-commercial-card {
  display: grid;
  min-height: 350px;
  padding: 44px 40px 40px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
  gap: clamp(48px, 6vw, 88px);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-lg);
  background: #111211;
  color: #fff;
}

.self-host-commercial-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
}

.self-host-commercial-card > .feature-media-self-host {
  grid-column: 2;
  align-self: start;
}

.self-host-commercial-card > .self-host-commercial-claims {
  grid-column: 2;
}

.self-host-commercial-card:has(.feature-media-self-host) .self-host-commercial-copy {
  grid-row: 1 / 3;
}

.self-host-commercial-card .feature-media-self-host .screenshot-frame {
  border-color: var(--dark-line);
}

.brand-visual {
  display: flex;
  max-width: 420px;
  margin: 0 0 24px;
  align-items: center;
  gap: 16px;
}

.brand-visual img {
  width: 54px;
  height: auto;
  flex: 0 0 auto;
}

.brand-visual figcaption {
  color: #a9a9a3;
  font-size: 0.68rem;
  line-height: 1.4;
}

.self-host-commercial-copy h2 {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: clamp(1.95rem, 2.25vw, 2.15rem);
  font-weight: 480;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.self-host-commercial-copy p {
  max-width: 610px;
  margin-bottom: 0;
  color: #c7c7c2;
  font-size: 0.98rem;
  line-height: 1.5;
}

.self-host-commercial-copy .button-row {
  align-items: stretch;
}

.self-host-commercial-copy .button {
  min-height: 44px;
}

.self-host-commercial-copy .button span[aria-hidden="true"] {
  display: none;
}

.self-host-commercial-claims {
  display: grid;
  padding: 2px 0 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: min-content;
  gap: 27px clamp(28px, 4vw, 58px);
  align-content: start;
  list-style: none;
}

.self-host-commercial-claims li {
  position: relative;
  min-width: 0;
  padding-left: 29px;
  color: #e5e5e1;
  font-size: 0.96rem;
  line-height: 1.45;
}

.self-host-commercial-claims li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #f5f5f1;
  content: "✓";
  font-weight: 650;
}

.notice {
  display: flex;
  padding: 28px 32px;
  gap: 20px;
  border: 1px solid #e2c3b5;
  border-radius: var(--radius);
  background: #fff8f4;
}

.notice > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

.notice h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.notice p {
  margin: 0;
  color: var(--ink-2);
}

.commercial-promise {
  padding-block: clamp(64px, 8vw, 96px);
  overflow: clip;
  border-bottom: 1px solid var(--dark-line);
  background:
    radial-gradient(circle at 84% 18%, rgb(226 95 42 / 18%), transparent 30%),
    var(--dark);
  color: #fff;
}

.commercial-promise-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.commercial-promise h2 {
  max-width: 620px;
  margin-bottom: 18px;
}

.commercial-promise-grid > div > p:not(.eyebrow):not(.commercial-promise-note) {
  max-width: 610px;
  margin-bottom: 0;
  color: #c7c7c2;
  font-size: 1.05rem;
}

.commercial-promise .eyebrow {
  color: #f19973;
}

.commercial-promise-points {
  display: grid;
  padding: 0;
  margin: 2px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  list-style: none;
}

.commercial-promise-points li {
  position: relative;
  min-width: 0;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid var(--dark-line);
  color: #edede8;
  font-size: 0.92rem;
  line-height: 1.45;
}

.commercial-promise-points li::before {
  position: absolute;
  top: 18px;
  left: 0;
  color: #f19973;
  content: "\2713";
  font-weight: 700;
}

.commercial-promise-note {
  padding-top: 18px;
  margin: 22px 0 0;
  border-top: 1px solid var(--dark-line);
  color: #ababa5;
  font-size: 0.78rem;
  line-height: 1.55;
}

.commercial-promise-note a {
  color: #edede8;
  text-decoration: underline;
  text-decoration-color: #777772;
  text-underline-offset: 3px;
}

.pricing-section {
  background: #f1f1ed;
}

.pricing-preview-grid,
.pricing-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.plan-card {
  display: flex;
  min-height: 560px;
  padding: 30px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.plan-card h3 {
  font-size: 1.55rem;
}

.plan-qualifier {
  color: var(--ink-2);
}

.plan-inclusion-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  padding: 6px 10px;
  margin: 10px 0 2px;
  align-items: center;
  gap: 7px;
  border: 1px solid #abd3bd;
  border-radius: 999px;
  background: #effaf3;
  color: #185b3a;
  font-size: 0.72rem;
  font-weight: 670;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.plan-inclusion-badge::before {
  content: "\2713";
  font-weight: 760;
}

.plan-ai-toggle {
  padding: 0;
  margin: 22px 0 0;
  border: 0;
}

.plan-ai-toggle legend {
  padding: 0;
  margin-bottom: 7px;
  color: var(--ink-3);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-ai-toggle > div {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface-2);
}

.plan-ai-toggle label {
  position: relative;
  flex: 1;
}

.plan-ai-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.plan-ai-toggle span {
  display: flex;
  min-height: 38px;
  padding: 6px 8px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--ink-2);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.plan-ai-toggle input:checked + span {
  background: var(--ink);
  color: #fff;
}

.plan-ai-toggle input:focus-visible + span {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.plan-card-enterprise {
  border-color: #c9b6a9;
  background: linear-gradient(155deg, #fff 55%, #fff7f2);
}

.enterprise-service-summary {
  display: grid;
  min-height: 88px;
  padding: 18px;
  margin: 22px 0;
  align-content: center;
  gap: 4px;
  border: 1px solid #e2c3b5;
  border-radius: var(--radius-sm);
  background: #fff8f4;
}

.enterprise-service-summary strong {
  font-size: 1.05rem;
}

.enterprise-service-summary span {
  color: var(--ink-2);
  font-size: 0.78rem;
}

.plan-price {
  display: flex;
  min-height: 78px;
  margin: 22px 0;
  align-items: baseline;
  gap: 8px;
}

.plan-price span {
  font-size: 3.3rem;
  font-weight: 560;
  letter-spacing: -0.055em;
}

.plan-price small {
  max-width: 100px;
  color: var(--ink-3);
  line-height: 1.25;
}

.plan-card ul {
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
  list-style: none;
}

.plan-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.86rem;
}

.plan-card li::before {
  margin-right: 9px;
  color: var(--success);
  content: "✓";
}

.section-action {
  display: flex;
  margin-top: 28px;
  justify-content: flex-end;
}

.pricing-toolbar {
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: end;
}

.pricing-toolbar h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.segmented {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

.segmented button {
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--ink-2);
  font-size: 0.78rem;
}

.segmented button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
}

.pricing-comparison-calculator {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.comparison-calculator-heading {
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--line);
}

.comparison-calculator-heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
}

.comparison-calculator-heading > p {
  margin: 8px 0 0;
  color: var(--ink-2);
}

.comparison-calculator-body {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(290px, 0.85fr);
}

.comparison-calculator-controls {
  display: grid;
  min-width: 0;
  padding: 28px 32px;
  gap: 26px;
}

.comparison-member-control {
  display: grid;
  gap: 8px;
}

.comparison-member-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.comparison-member-label label,
.comparison-tool-group legend,
.comparison-tow-options legend {
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 650;
}

.comparison-member-label input {
  width: 74px;
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--ink);
  font: inherit;
  text-align: center;
}

.comparison-member-slider {
  width: 100%;
  accent-color: var(--accent-dark);
  cursor: pointer;
}

.comparison-member-markers {
  display: flex;
  justify-content: space-between;
  color: var(--ink-3);
  font-size: 0.7rem;
}

.comparison-tool-groups {
  display: grid;
  gap: 24px;
}

.comparison-tool-group,
.comparison-tow-options {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.comparison-tool-group legend,
.comparison-tow-options legend {
  padding: 0;
  margin-bottom: 12px;
}

.comparison-tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calculator-choice {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.calculator-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.calculator-choice > span {
  display: grid;
  min-height: 54px;
  padding: 9px 11px;
  align-content: center;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  transition: border-color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.calculator-product-choice > span {
  position: relative;
  width: 58px;
  min-height: 56px;
  padding: 9px;
  place-items: center;
  pointer-events: none;
}

.calculator-product-choice > span::before,
.calculator-product-choice > span::after {
  position: absolute;
  z-index: 20;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.calculator-product-choice > span::before {
  bottom: calc(100% + 9px);
  width: max-content;
  max-width: 210px;
  padding: 7px 9px;
  border-radius: 5px;
  background: var(--ink);
  box-shadow: 0 8px 24px rgb(23 23 23 / 18%);
  color: #fff;
  content: attr(data-product-tooltip);
  font-size: 0.7rem;
  font-weight: 620;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.calculator-product-choice > span::after {
  bottom: calc(100% + 4px);
  width: 0;
  height: 0;
  border-top: 5px solid var(--ink);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
}

.calculator-product-choice:hover > span::before,
.calculator-product-choice:hover > span::after,
.calculator-product-choice input:focus-visible + span::before,
.calculator-product-choice input:focus-visible + span::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.calculator-product-choice:nth-child(4n + 1) > span::before {
  left: 0;
  transform: translate(0, 4px);
}

.calculator-product-choice:nth-child(4n + 1):hover > span::before,
.calculator-product-choice:nth-child(4n + 1) input:focus-visible + span::before {
  transform: translate(0, 0);
}

.calculator-product-choice img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.calculator-choice strong {
  overflow: hidden;
  font-size: 0.8rem;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.calculator-choice small {
  color: var(--ink-2);
  font-size: 0.68rem;
  line-height: 1.3;
}

.calculator-choice input:checked + span {
  border-color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--ink);
}

.calculator-choice input:focus-visible + span {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.calculator-choice input:disabled + span {
  cursor: not-allowed;
  opacity: 0.48;
}

.comparison-tow-options {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.comparison-tow-option-grid {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.calculator-ai-choice span {
  min-height: 52px;
}

.comparison-tow-options > p {
  margin: 10px 0 0;
  color: var(--ink-3);
  font-size: 0.74rem;
}

.comparison-selected-plans {
  display: grid;
  padding-top: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  border-top: 1px solid var(--line);
}

.comparison-selected-plans article {
  min-width: 0;
}

.comparison-selected-plans article > span,
.comparison-results span {
  color: var(--ink-3);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-selected-plans h4 {
  margin: 7px 0 10px;
  font-size: 1.05rem;
}

.comparison-selected-plans p {
  color: var(--ink-2);
  margin: 0;
}

.comparison-selected-plans p strong,
.comparison-selected-plans p small {
  display: block;
}

.comparison-selected-plans p strong {
  color: var(--ink);
  font-size: 0.76rem;
}

.comparison-selected-plans p small {
  margin-top: 4px;
  color: var(--ink-3);
  font-size: 0.7rem;
}

.comparison-selected-plans a {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 650;
}

.comparison-results-panel {
  padding: 28px;
  border-left: 1px solid var(--line);
  background: #fcfcfa;
}

.comparison-results-panel h4 {
  margin: 0 0 22px;
  font-size: 1.3rem;
}

.comparison-results {
  display: grid;
  gap: 16px;
}

.comparison-results > div {
  display: grid;
  min-width: 0;
  min-height: 126px;
  padding: 20px;
  align-content: center;
  justify-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  text-align: center;
}

.comparison-results strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.comparison-results small {
  color: var(--ink-2);
  font-size: 0.72rem;
}

.comparison-results span {
  color: var(--ink-2);
}

.comparison-results .comparison-difference.is-savings {
  border-color: #c9e4d5;
  background: #effaf3;
}

.comparison-results .comparison-difference.is-additional {
  background: #fff3ed;
}

.comparison-results .comparison-difference.is-equal {
  background: var(--surface-2);
}

.comparison-calculator-note {
  padding: 17px 32px;
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 0.72rem;
  line-height: 1.55;
}

.comparison-calculator-note a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 560;
}

.field-label {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 3px;
}

.required-mark {
  color: var(--accent-dark);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
}

.form-grid input,
.form-grid select {
  min-height: 47px;
  padding: 0 12px;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  min-width: 190px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.88rem;
}

thead th {
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 650;
}

tbody th {
  color: var(--ink);
  font-weight: 610;
}

tbody td {
  color: var(--ink-2);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.matrix-section {
  max-width: 100%;
  min-width: 0;
  overflow: clip;
}

.matrix-scroll-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 34px;
}

.matrix-scroll-hint {
  display: none;
  margin: 0 0 10px;
  color: var(--ink-3);
  font-size: 0.75rem;
  font-weight: 540;
  line-height: 1.4;
}

.matrix-scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  scrollbar-color: var(--line-strong) var(--surface-2);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.matrix-scroll:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.matrix-scroll::-webkit-scrollbar {
  height: 10px;
}

.matrix-scroll::-webkit-scrollbar-track {
  background: var(--surface-2);
}

.matrix-scroll::-webkit-scrollbar-thumb {
  border: 2px solid var(--surface-2);
  border-radius: 999px;
  background: var(--line-strong);
}

.feature-matrix {
  width: max-content;
  min-width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: auto;
}

.feature-matrix th,
.feature-matrix td {
  width: 190px;
  min-width: 190px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  vertical-align: top;
  font-size: 0.84rem;
  line-height: 1.45;
}

.feature-matrix tr > :last-child {
  border-right: 0;
}

.feature-matrix tbody tr:last-child > * {
  border-bottom: 0;
}

.feature-matrix thead th {
  background: var(--surface-2);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 680;
  line-height: 1.35;
}

.feature-matrix thead .matrix-detail {
  color: var(--ink-2);
}

.feature-matrix .matrix-capability {
  position: sticky;
  z-index: 2;
  left: 0;
  width: clamp(230px, 24vw, 300px);
  min-width: clamp(230px, 24vw, 300px);
  background: #fbfbf8;
  box-shadow: 1px 0 0 var(--line-strong);
  color: var(--ink);
  font-weight: 630;
}

.plan-shared-capabilities {
  display: grid;
  padding: 28px;
  margin-top: 34px;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  border: 1px solid #abd3bd;
  border-left: 4px solid var(--success);
  border-radius: var(--radius);
  background: #effaf3;
}

.plan-shared-capabilities .eyebrow {
  margin-bottom: 10px;
  color: var(--success);
}

.plan-shared-capabilities h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.plan-shared-capabilities p:last-child {
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.plan-shared-capabilities ul {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  align-content: center;
  list-style: none;
}

.plan-shared-capabilities li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 560;
  line-height: 1.4;
}

.plan-shared-capabilities li::before {
  color: var(--success);
  content: "\2713";
  font-weight: 760;
}

.plan-differences-intro {
  display: grid;
  margin-top: 54px;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
  align-items: end;
  gap: 36px;
}

.plan-differences-intro .eyebrow {
  margin-bottom: 10px;
}

.plan-differences-intro h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.plan-differences-intro > p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-2);
}

[data-plan-feature-matrix] .pricing-differences-wrap {
  margin-top: 24px;
}

[data-plan-feature-matrix] .pricing-differences-table th,
[data-plan-feature-matrix] .pricing-differences-table td {
  width: 138px;
  min-width: 138px;
  padding: 16px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

[data-plan-feature-matrix] .pricing-differences-table .matrix-capability {
  width: 210px;
  min-width: 210px;
  border-right: 1px solid var(--line-strong);
  box-shadow: none;
}

[data-plan-feature-matrix] .pricing-differences-table tbody tr:nth-child(even) > * {
  background: #f8f8f5;
}

[data-plan-feature-matrix] .pricing-differences-table .matrix-deployment-group {
  width: auto;
  min-width: 0;
  padding-block: 10px;
  background: #e8e8e3;
  color: var(--ink-2);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

[data-plan-feature-matrix] .pricing-differences-table .deployment-divider {
  border-left: 2px solid var(--line-strong);
}

.matrix-plan-header strong {
  display: block;
  font-size: 0.88rem;
}

.matrix-plan-description {
  display: block;
  margin-top: 6px;
  color: var(--ink-2);
  font-size: 0.7rem;
  font-weight: 450;
  line-height: 1.35;
}

.matrix-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.matrix-price > span {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px;
}

.matrix-price [data-plan-price-primary] {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.matrix-price.is-free [data-plan-price-primary] {
  color: var(--success);
}

.matrix-price-period {
  color: var(--ink-2);
  font-size: 0.68rem;
  line-height: 1.3;
}

.matrix-price [data-plan-price-secondary] {
  color: var(--ink-3);
  font-size: 0.68rem;
  line-height: 1.35;
}

.matrix-price-options {
  display: grid;
  gap: 10px;
}

.matrix-option-price {
  display: grid;
  gap: 3px;
}

.matrix-option-price + .matrix-option-price {
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

.matrix-option-price > span {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px;
}

.matrix-option-price [data-plan-price-primary] {
  font-size: 1.15rem;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.matrix-option-price [data-plan-price-secondary],
.matrix-contact small {
  color: var(--ink-3);
  font-size: 0.68rem;
  line-height: 1.35;
}

.matrix-contact {
  display: grid;
  gap: 5px;
}

.matrix-contact strong {
  font-size: 0.88rem;
}

.pricing-comparison-cards {
  display: none;
}

.feature-matrix thead .matrix-capability {
  z-index: 4;
  background: #e8e8e3;
}

.feature-matrix .matrix-tow-column {
  background: #fff8f4;
  box-shadow: inset 2px 0 0 #e2c3b5, inset -2px 0 0 #e2c3b5;
}

.feature-matrix thead .matrix-tow-column {
  background: #f7ddd0;
  color: #6f2b10;
}

.matrix-status {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 26px;
  padding: 4px 8px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-2);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.matrix-status.is-included {
  border-color: #abd3bd;
  background: #effaf3;
  color: #185b3a;
}

.matrix-status.is-limited {
  border-color: #dec78e;
  background: #fff8e7;
  color: #674c0a;
}

.matrix-status.is-not-included {
  border-color: #cecec7;
  background: #f3f3f0;
  color: #55554f;
}

.matrix-status.is-separate {
  border-color: #e2c3b5;
  background: #fff3ed;
  color: #8f3514;
}

.matrix-detail {
  display: block;
  margin: 8px 0 0;
  color: var(--ink-3);
  font-size: 0.75rem;
  line-height: 1.45;
}

.matrix-sources {
  display: block;
  margin: 10px 0 0;
  color: var(--ink-3);
  font-size: 0.7rem;
  line-height: 1.45;
}

.matrix-sources a {
  color: var(--ink-2);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

.matrix-sources a:hover {
  color: var(--accent-dark);
  text-decoration-color: var(--accent);
}

.matrix-note,
.matrix-edition-note {
  max-width: 960px;
  color: var(--ink-2);
  font-size: 0.82rem;
  line-height: 1.55;
}

.matrix-note {
  padding: 16px 18px;
  margin: 16px 0 0;
  border: 1px solid #e2c3b5;
  border-radius: var(--radius-sm);
  background: #fff8f4;
}

.matrix-edition-note {
  margin: 12px 0 0;
}

.matrix-note a,
.matrix-edition-note a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

.feature-matrix .matrix-group-row > * {
  position: static;
  width: auto;
  min-width: 0;
  padding: 11px 18px;
  border-right: 0;
  background: var(--ink);
  box-shadow: none;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.blog-filters {
  display: flex;
  margin: -24px 0 28px;
  flex-wrap: wrap;
  gap: 7px;
}

.blog-filters button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  font-size: 0.76rem;
}

.blog-filters button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.article-card > div {
  padding: 26px;
}

.article-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card h3 {
  margin-top: 16px;
  font-size: 1.35rem;
}

.article-card p {
  color: var(--ink-2);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--ink-3);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.empty-state {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.contact-grid article {
  min-height: 300px;
}

.contact-grid h2 {
  font-size: 1.7rem;
}

.contact-grid .text-link {
  position: absolute;
  bottom: 28px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  gap: 80px;
  align-items: start;
}

.calendar-card {
  display: flex;
  padding: 22px;
  margin-top: 40px;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.calendar-card > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.calendar-card-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.calendar-card h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.calendar-card p {
  color: var(--ink-2);
  font-size: 0.84rem;
}

.contact-form-shell {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.contact-form-shell#contact-form {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

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

.form-grid textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.calculator-fields input:focus,
.calculator-fields select:focus {
  border-color: var(--ink);
  outline: 3px solid rgb(226 95 42 / 18%);
}

.field-full {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 430 !important;
}

.checkbox-field input {
  width: 17px;
  min-height: 17px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.checkbox-field a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-shell .button[type="submit"] {
  width: 100%;
  margin-top: 24px;
}

.contact-form-shell .button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.form-note {
  margin: 14px 0 0;
  color: var(--ink-3);
  font-size: 0.72rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status:empty {
  display: none;
}

.form-status,
.form-result {
  padding: 14px 16px;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
}

.form-status-success,
.form-result-success {
  border: 1px solid #abd3bd;
  background: #effaf3;
  color: #185b3a;
}

.form-status-error,
.form-result-error {
  border: 1px solid #e2b2b2;
  background: #fff1f1;
  color: #852323;
}

.form-result p {
  margin: 5px 0 0;
}

.form-result a {
  text-decoration: underline;
}

.comparison-table th:first-child {
  width: 19%;
  min-width: 150px;
}

.sources ol {
  padding-left: 22px;
  margin: 0;
}

.sources li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.sources a {
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 4px;
}

.timeline {
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  padding: 44px 0;
  grid-template-columns: 170px 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--accent-dark);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
}

.timeline h2 {
  font-size: 2rem;
}

.timeline p {
  color: var(--ink-2);
}

.principles-list article {
  display: grid;
  padding: 58px 0;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}

.principles-list article > span {
  color: var(--accent-dark);
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.76rem;
}

.principles-list h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.principles-list p {
  max-width: 740px;
  color: var(--ink-2);
  font-size: 1.1rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.legal-grid > aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 5px;
  color: var(--ink-3);
  font-size: 0.78rem;
}

.legal-grid > aside p {
  margin: 0;
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
}

.legal-grid > aside strong {
  color: var(--ink);
}

.legal-grid > aside a {
  margin-top: 22px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-grid article {
  max-width: 800px;
}

.legal-grid article section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.legal-grid h2 {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-grid article p {
  color: var(--ink-2);
}

.legal-grid article a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(480px, 1.25fr);
  gap: 80px;
  align-items: start;
}

.faq-grid .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin: 0;
}

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

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

.faq-list summary {
  display: flex;
  padding: 22px 2px;
  justify-content: space-between;
  gap: 24px;
  font-weight: 590;
  list-style: none;
}

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

.faq-list summary span {
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 34px 22px 2px;
  margin: 0;
  color: var(--ink-2);
}

.related-section {
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.related-section .container > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.related-section a {
  display: flex;
  min-height: 88px;
  padding: 16px;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.85rem;
  font-weight: 580;
}

.related-section a:hover {
  border-color: var(--ink);
}

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

.final-cta .container {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: end;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 4.7rem);
}

.article-page {
  padding: 70px 0 110px;
}

.article-header {
  text-align: center;
}

.article-header h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.article-lede {
  color: var(--ink-2);
  font-size: 1.2rem;
}

.article-header .article-meta {
  margin-top: 25px;
  justify-content: center;
}

.article-hero {
  margin-top: 50px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.article-hero img {
  width: 100%;
  height: auto;
}

.article-content {
  padding-top: 64px;
  color: var(--ink-2);
  font-size: 1.06rem;
  line-height: 1.75;
}

.article-content h2,
.article-content h3 {
  margin-top: 2.2em;
  color: var(--ink);
}

.article-content h2 {
  font-size: 2rem;
}

.article-content h3 {
  font-size: 1.45rem;
}

.article-content a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.article-content pre,
.article-content code {
  font-family: "Geist Mono", monospace;
}

.article-content pre {
  padding: 20px;
  overflow-x: auto;
  border-radius: var(--radius);
  background: var(--dark);
  color: #fff;
}

.article-content blockquote {
  padding-left: 24px;
  margin-left: 0;
  border-left: 3px solid var(--accent);
}

.not-found {
  display: grid;
  min-height: 68vh;
  padding: 100px 0;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.not-found p {
  max-width: 620px;
  margin-inline: auto;
  color: var(--ink-2);
  font-size: 1.1rem;
}

.not-found .button-row {
  margin-top: 32px;
  justify-content: center;
}

.not-found-links {
  display: flex;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  color: var(--ink-3);
  font-size: 0.83rem;
}

.site-footer {
  padding: 68px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 44px;
}

.brand-inverse img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 260px;
  margin-top: 18px;
  color: #aaa9a2;
  font-size: 0.86rem;
}

.footer-brand .footer-partner {
  color: #9a9a93;
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.66rem;
}

.country-claim {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55em;
}

.country-flag {
  width: 1.5em;
  height: 1em;
  margin-top: 0.16em;
  flex: 0 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.country-flag-de {
  background: linear-gradient(to bottom, #000 0 33.333%, #dd0000 33.333% 66.666%, #ffcc00 66.666% 100%);
}

.footer-top nav h2 {
  margin-bottom: 18px;
  color: #9a9a93;
  font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-top nav a {
  display: block;
  padding: 6px 0;
  color: #c8c8c1;
  font-size: 0.82rem;
}

.footer-top nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  padding-top: 26px;
  margin-top: 54px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--dark-line);
  color: #9a9a93;
  font-size: 0.72rem;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.footer-bottom a:hover,
.footer-link-button:hover {
  color: #fff;
}

.screenshot-dialog {
  width: min(calc(100% - 40px), 1500px);
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: hidden;
  border: 1px solid #55554f;
  border-radius: var(--radius-lg);
  background: #101010;
  color: #fff;
  box-shadow: 0 30px 100px rgb(0 0 0 / 42%);
}

.screenshot-dialog::backdrop {
  background: rgb(0 0 0 / 74%);
  backdrop-filter: blur(8px);
}

.dialog-head {
  display: flex;
  min-height: 54px;
  padding: 0 14px 0 20px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #3c3c38;
}

.dialog-head h2 {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0;
}

.dialog-head button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #55554f;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
}

.screenshot-dialog > img {
  width: 100%;
  max-height: calc(100vh - 96px);
  object-fit: contain;
}

.screenshot-dialog > img.is-cropped {
  height: calc(100vh - 96px);
  object-fit: cover;
  object-position: top;
}

.consent-banner {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(calc(100% - 40px), 620px);
  padding: 26px;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.consent-banner h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.consent-banner p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.82rem;
}

.consent-banner p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 0;
  }

  .desktop-nav > a,
  .nav-menu > button {
    padding-inline: 7px;
    font-size: 0.8rem;
  }

  .header-row {
    gap: 14px;
  }

  .hero-grid.has-screenshot {
    grid-template-columns: 1fr;
  }

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

  .proof-grid {
    grid-template-columns: 120px repeat(3, 1fr);
    gap: 18px;
  }

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

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

@media (max-width: 900px) {
  :root {
    --header-height: 62px;
  }

  .container,
  .container-narrow {
    width: min(calc(100% - 32px), var(--container));
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

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

  .mobile-menu-button {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 10px;
    align-content: center;
    gap: 6px;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
  }

  .mobile-menu-button span:not(.sr-only) {
    display: block;
    height: 1px;
    background: var(--ink);
    transition: transform 160ms ease;
  }

  .mobile-menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .mobile-menu-button[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-drawer {
    display: block;
    height: calc(100vh - var(--header-height));
    padding: 20px 16px 40px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-drawer nav {
    display: grid;
    gap: 4px;
  }

  .mobile-drawer nav > a,
  .mobile-drawer summary,
  .mobile-drawer details a {
    display: block;
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    font-weight: 560;
  }

  .mobile-drawer summary {
    list-style: none;
  }

  .mobile-drawer summary::after {
    float: right;
    content: "+";
  }

  .mobile-drawer details[open] summary::after {
    content: "−";
  }

  .mobile-drawer details a {
    padding-left: 28px;
    color: var(--ink-2);
    font-size: 0.88rem;
    font-weight: 450;
  }

  .mobile-drawer .button {
    margin-top: 14px;
    color: #fff;
  }

  .mobile-drawer .language-switcher-mobile {
    display: flex;
    padding: 10px 12px;
    margin-top: 8px;
    justify-content: flex-start;
    border-radius: var(--radius-sm);
  }

  .mobile-drawer .language-switcher-mobile > a,
  .mobile-drawer .language-switcher-mobile > span {
    padding: 8px 12px;
    border: 0;
    font-size: 0.82rem;
  }

  .page-hero,
  .home-hero {
    padding: 64px 0 72px;
  }

  .section {
    padding: 88px 0;
  }

  .section-compact {
    padding-block: 58px;
  }

  .proof-grid {
    padding-block: 28px;
    grid-template-columns: 1fr;
  }

  .proof-grid img {
    width: 105px;
  }

  .proof-grid p {
    padding: 16px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .tabs,
  .tab-panel,
  .panel-grid,
  .deployment-grid,
  .control-panel,
  .assurance-grid,
  .sources,
  .contact-form-grid,
  .faq-grid,
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pain-card-grid,
  .story-row,
  .story-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .pain-card-grid {
    gap: 18px;
  }

  .pain-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  }

  .pain-card > .feature-media {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .story-row {
    padding-block: 70px;
    gap: 38px;
  }

  .story-row:nth-child(even) .story-copy {
    order: initial;
  }

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

  .self-host-commercial-card {
    min-height: 0;
    padding: 38px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .self-host-commercial-card > .feature-media-self-host,
  .self-host-commercial-card > .self-host-commercial-claims {
    grid-column: 1;
  }

  .self-host-commercial-card:has(.feature-media-self-host) .self-host-commercial-copy {
    grid-row: auto;
  }

  .self-host-commercial-copy {
    gap: 34px;
  }

  .commercial-promise-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .commercial-promise-grid > div > p:not(.eyebrow):not(.commercial-promise-note) {
    max-width: 720px;
  }

  .tab-list {
    flex-direction: row;
    overflow-x: auto;
  }

  .tab-list button {
    min-width: max-content;
  }

  .tab-list button[aria-selected="true"] {
    box-shadow: inset 0 -3px 0 var(--accent);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid li,
  .steps-grid li:first-child {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .steps-grid li:last-child {
    border-bottom: 0;
  }

  .steps-grid li > span {
    margin-bottom: 36px;
  }

  .steps-grid-visual li > span {
    margin: 22px 0 16px;
  }

  .control-panel .button {
    justify-self: start;
  }

  .pricing-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-toolbar > div:first-child {
    grid-column: 1 / -1;
  }

  .pricing-preview-grid,
  .pricing-full-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 0;
  }

  .comparison-calculator-body {
    grid-template-columns: 1fr;
  }

  .comparison-results-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .comparison-results > div {
    min-height: 120px;
  }

  .plan-shared-capabilities,
  .plan-differences-intro {
    grid-template-columns: 1fr;
  }

  .plan-shared-capabilities {
    gap: 24px;
  }

  .plan-differences-intro {
    gap: 14px;
  }

  .matrix-scroll-hint {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .matrix-scroll-hint::after {
    color: var(--accent-dark);
    content: "\2192";
    font-size: 1rem;
    line-height: 1;
  }

  .feature-matrix .matrix-capability {
    width: 220px;
    min-width: 220px;
  }

  .contact-form-grid {
    gap: 48px;
  }

  .faq-grid .section-heading,
  .legal-grid > aside {
    position: static;
  }

  .related-section .container > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .panel-visual-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.7rem);
  }

  .home-hero h1 {
    font-size: clamp(2.7rem, 11vw, 3.4rem);
  }

  .announcement a {
    padding-inline: 16px;
    justify-content: flex-start;
    font-size: 0.72rem;
  }

  .breadcrumbs {
    padding-top: 20px;
  }

  .page-hero,
  .home-hero {
    padding: 48px 0 60px;
  }

  .hero-grid {
    gap: 38px;
  }

  .home-hero .hero-copy {
    text-align: left;
  }

  .home-hero .hero-lede,
  .home-hero .button-row {
    justify-content: flex-start;
  }

  .hero-copy .button-row .button,
  .final-cta .button-row .button {
    width: 100%;
  }

  .hero-note {
    line-height: 1.45;
  }

  .screenshot-frame {
    border-radius: var(--radius);
  }

  .screenshot-frame figcaption {
    right: 10px;
    bottom: 10px;
    font-size: 0.66rem;
  }

  .section {
    padding: 70px 0;
  }

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

  .pain-card {
    display: block;
  }

  .pain-card > .feature-media {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pain-card-copy {
    padding: 24px;
  }

  .pain-card-copy .card-index {
    margin-bottom: 30px;
  }

  .story-row {
    padding-block: 54px;
    gap: 28px;
  }

  .feature-media-story .screenshot-frame {
    padding: 10px;
  }

  .assurance-items {
    grid-template-columns: 1fr;
  }

  .assurance-item,
  .assurance-item:first-child {
    min-height: 0;
    padding: 22px 48px 22px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .assurance-item:last-child {
    border-bottom: 0;
  }

  .link-card-grid,
  .card-grid,
  .contact-grid,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-grid .info-card:nth-child(1),
  .bento-grid .info-card:nth-child(6) {
    grid-column: auto;
  }

  .link-card,
  .info-card,
  .contact-grid article {
    min-height: 240px;
    padding: 26px;
  }

  .link-card h3,
  .info-card h3 {
    margin-top: 40px;
  }

  .tab-panel {
    gap: 20px;
  }

  .deployment-console > div {
    grid-template-columns: 25px 1fr;
  }

  .deployment-console strong {
    display: none;
  }

  .self-host-commercial-section {
    padding-block: 20px;
  }

  .self-host-commercial-card {
    padding: 28px 24px;
    gap: 42px;
    border-radius: var(--radius);
  }

  .commercial-promise {
    padding-block: 56px;
  }

  .commercial-promise-grid {
    gap: 34px;
  }

  .commercial-promise-points {
    grid-template-columns: 1fr;
  }

  .commercial-promise-points li {
    padding-block: 15px;
  }

  .commercial-promise-points li::before {
    top: 15px;
  }

  .self-host-commercial-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .self-host-commercial-copy .button {
    width: 100%;
  }

  .self-host-commercial-claims {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .notice {
    padding: 22px;
  }

  .pricing-toolbar {
    grid-template-columns: 1fr;
  }

  .pricing-toolbar > div:first-child {
    grid-column: auto;
  }

  .segmented {
    width: 100%;
  }

  .segmented button {
    flex: 1;
  }

  .contact-form-shell {
    padding: 24px;
  }

  .comparison-selected-plans {
    grid-template-columns: 1fr;
  }

  .comparison-calculator-heading,
  .comparison-calculator-controls,
  .comparison-results-panel {
    padding: 22px;
  }

  .comparison-calculator-note {
    padding: 16px 22px;
  }

  .comparison-results {
    grid-template-columns: 1fr;
  }

  .plan-inclusion-badge {
    margin-top: 0;
  }

  .plan-shared-capabilities {
    padding: 22px;
  }

  .plan-shared-capabilities ul {
    grid-template-columns: 1fr;
  }

  [data-plan-feature-matrix] .pricing-differences-wrap {
    display: none;
  }

  [data-plan-feature-matrix] .pricing-comparison-cards {
    display: grid;
    margin-top: 26px;
    gap: 34px;
  }

  .pricing-comparison-group {
    display: grid;
    gap: 12px;
  }

  .pricing-comparison-group + .pricing-comparison-group {
    padding-top: 30px;
    border-top: 2px solid var(--line-strong);
  }

  .pricing-comparison-group h4 {
    margin: 0;
    font-size: 1.25rem;
  }

  .pricing-comparison-card-grid {
    display: grid;
    gap: 10px;
  }

  .pricing-comparison-card {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
  }

  .pricing-comparison-card header h5 {
    margin: 0;
    font-size: 1rem;
  }

  .pricing-comparison-card header p {
    margin: 4px 0 0;
    color: var(--ink-2);
    font-size: 0.8rem;
  }

  .pricing-comparison-card > .matrix-price {
    margin-top: 18px;
  }

  .pricing-card-details {
    padding: 0;
    margin: 18px 0 0;
  }

  .pricing-card-details > div {
    display: grid;
    padding: 10px 0;
    grid-template-columns: minmax(92px, 0.75fr) minmax(0, 1.25fr);
    gap: 14px;
    border-top: 1px solid var(--line);
  }

  .pricing-card-details dt {
    color: var(--ink-3);
    font-size: 0.72rem;
    font-weight: 650;
  }

  .pricing-card-details dd {
    margin: 0;
    color: var(--ink-2);
    font-size: 0.8rem;
  }

  .matrix-scroll-wrap {
    margin-top: 26px;
  }

  .feature-matrix th,
  .feature-matrix td {
    width: 172px;
    min-width: 172px;
    padding: 15px;
  }

  .feature-matrix .matrix-capability {
    width: 190px;
    min-width: 190px;
  }

  .feature-matrix .matrix-group-row > * {
    width: auto;
    min-width: 0;
    padding: 10px 15px;
  }

  .calculator-fields,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .timeline li,
  .principles-list article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline li {
    padding: 34px 0;
  }

  .principles-list article {
    padding: 42px 0;
  }

  .related-section .container > div {
    grid-template-columns: 1fr;
  }

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

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

  .consent-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 22px;
    grid-template-columns: 1fr;
  }

  .consent-actions {
    flex-direction: row;
  }

  .consent-actions .button {
    flex: 1;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
