:root {
  color-scheme: light;
  --bg: #F4F6F9;
  --surface: #ffffff;
  --surface-soft: #edf3f5;
  --surface-strong: #0B1220;
  --text: #384350;
  --muted: #5f7075;
  --line: #d8e1e4;
  --accent: #0E7490;
  --accent-strong: #0E7490;
  --accent-soft: #dff5f7;
  --warning: #b46a26;
  --success: #0E7490;
  --shadow: 0 18px 50px rgba(18, 42, 50, 0.14);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b1220;
  --surface: #111c2d;
  --surface-soft: #172638;
  --surface-strong: #07101c;
  --text: #e5ebf1;
  --muted: #aebdc5;
  --line: #2d4050;
  --accent: #22a9c7;
  --accent-strong: #67d5e8;
  --accent-soft: #153743;
  --warning: #d49555;
  --success: #22a9c7;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 225, 228, 0.85);
  background: rgba(246, 248, 249, 0.94);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  font-weight: 800;
}

.brand img {
  width: 174px;
  height: auto;
}

.brand span {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

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

.preferences {
  position: relative;
}

.preferences-toggle,
.theme-switch button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.preferences-toggle:hover,
.preferences-toggle[aria-expanded="true"] {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.preferences-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.preferences-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.preferences-menu[hidden] {
  display: none;
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.active {
  background: var(--surface-strong);
  color: #ffffff;
}

.theme-switch {
  display: inline-flex;
  gap: 3px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.theme-switch button {
  width: 36px;
  height: 36px;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.theme-switch button:hover,
.theme-switch button.active {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.theme-switch button.active {
  box-shadow: inset 0 0 0 1px var(--accent);
}

.theme-switch svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 72px));
  overflow: hidden;
  background: #e8eef1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 248, 249, 0.98) 0%, rgba(246, 248, 249, 0.9) 38%, rgba(246, 248, 249, 0.22) 78%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: min(720px, calc(100vh - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 48px 0 96px;
}

.hero-copy {
  max-width: 680px;
  min-height: 350px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.1rem, 6.3vw, 4.06rem);
  max-width: 760px;
}

.hero-logo {
  width: min(100%, 520px);
}

.hero-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.theme-logo.theme-logo-dark {
  display: none;
}

html[data-theme="dark"] .theme-logo-light {
  display: none;
}

html[data-theme="dark"] .theme-logo-dark {
  display: block;
}

html[data-theme="dark"] .site-header {
  border-bottom-color: rgba(45, 64, 80, 0.9);
  background: rgba(11, 18, 32, 0.94);
}

html[data-theme="dark"] .hero {
  background: #101c29;
}

html[data-theme="dark"] .hero::after {
  background: linear-gradient(90deg, rgba(11, 18, 32, 0.99) 0%, rgba(11, 18, 32, 0.92) 38%, rgba(11, 18, 32, 0.25) 78%);
}

html[data-theme="dark"] .app-sidebar {
  background: #162536;
}

html[data-theme="dark"] .app-nav-item,
html[data-theme="dark"] .status {
  background: #263b4b;
}

html[data-theme="dark"] .card,
html[data-theme="dark"] .price-card,
html[data-theme="dark"] .catalog-item {
  border-color: var(--line);
}

html[data-theme="dark"] .buy-button.is-disabled,
html[data-theme="dark"] .buy-button:disabled,
html[data-theme="dark"] .buy-button.is-disabled:hover,
html[data-theme="dark"] .buy-button:disabled:hover {
  border-color: #3a4d5b;
  background: #253542;
  color: #aebdc5;
}

html[data-theme="dark"] .home-map a:hover {
  background: rgba(34, 169, 199, 0.09);
}

html[data-theme="dark"] .page-visual {
  background: linear-gradient(135deg, #111c2d 0%, #172638 100%);
}

html[data-theme="dark"] .cta {
  background: var(--surface-soft);
}

h2 {
  font-size: clamp(1.225rem, 2.66vw, 1.995rem);
}

h3 {
  font-size: 1.18rem;
}

.lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-tagline {
  margin: 22px 0 0;
  color: var(--accent-strong);
  font-size: clamp(0.86rem, 3.9vw, 1.65rem);
  font-weight: 850;
  white-space: nowrap;
}

.hero-tagline + .lead {
  margin-top: 8px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(18, 42, 50, 0.12);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-visual {
  position: absolute;
  top: 9vh;
  right: max(24px, calc((100vw - 1180px) / 2));
  width: min(50vw, 620px);
  min-width: 460px;
  transform: perspective(1200px) rotateY(-10deg) rotateX(3deg);
  transform-origin: center right;
  z-index: 1;
}

.app-frame {
  overflow: hidden;
  border: 1px solid rgba(24, 50, 58, 0.14);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.app-titlebar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: var(--surface-strong);
  color: #dcebed;
  font-size: 0.82rem;
  font-weight: 750;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0891B2;
}

.dot:nth-child(2) {
  background: #e0b15f;
}

.dot:nth-child(3) {
  background: #db6c6c;
  margin-right: 10px;
}

.app-body {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 430px;
}

.app-sidebar {
  padding: 18px 14px;
  background: #edf3f4;
  border-right: 1px solid var(--line);
}

.app-nav-item {
  height: 32px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: #dfe9ec;
}

.app-nav-item.active {
  background: var(--accent);
}

.app-content {
  padding: 20px;
}

.run-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.metric {
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
}

.sequence-table {
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}

.sequence-row {
  display: grid;
  grid-template-columns: 46px 1.3fr 0.8fr 82px;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.sequence-row:last-child {
  border-bottom: 0;
}

.status {
  height: 22px;
  border-radius: 999px;
  background: #dfe9ec;
}

.status.pass {
  background: rgba(14, 116, 144, 0.24);
}

.status.run {
  background: rgba(14, 116, 144, 0.25);
}

.status.warn {
  background: rgba(180, 106, 38, 0.22);
}

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

.section-intro p {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.section-heading-action .button {
  flex: 0 0 auto;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid #c3ced2;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(18, 42, 50, 0.08), 0 8px 22px rgba(18, 42, 50, 0.12);
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.purchase-intro {
  max-width: 880px;
  margin-bottom: 38px;
}

.purchase-intro p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.pricing-tabs {
  overflow: hidden;
  border: 1px solid #c3ced2;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(18, 42, 50, 0.08), 0 8px 22px rgba(18, 42, 50, 0.12);
}

.pricing-tablist {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.pricing-tab {
  min-height: 62px;
  padding: 13px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pricing-tab:last-child {
  border-right: 0;
}

.pricing-tab:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.pricing-tab:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid rgba(14, 116, 144, 0.35);
  outline-offset: -3px;
}

.pricing-tab.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: inset 0 -3px 0 var(--accent);
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 68px);
  min-height: 350px;
  padding: clamp(28px, 4vw, 46px);
}

.pricing-panel[hidden] {
  display: none;
}

.pricing-panel-heading .eyebrow {
  margin-bottom: 12px;
}

.pricing-panel-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.pricing-panel-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

.pricing-panel > .feature-list {
  align-self: start;
  align-content: start;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border: 1px solid #c3ced2;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(18, 42, 50, 0.08), 0 8px 22px rgba(18, 42, 50, 0.12);
}

.price-card.featured {
  border-color: rgba(14, 116, 144, 0.55);
}

.price-card .eyebrow {
  margin-bottom: 0;
}

.price-card h2 {
  font-size: clamp(1.225rem, 2.1vw, 1.715rem);
}

.price-card p {
  margin: 0;
  color: var(--muted);
}

.price-card .feature-list {
  margin-top: auto;
}

.price-card .card-actions {
  margin-top: 4px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--accent);
}

.catalog-index {
  max-width: 440px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.catalog-index-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1rem;
}

.catalog-index ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding-left: 20px;
}

.catalog-index a {
  color: var(--accent-strong);
}

.catalog-index a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.catalog-list {
  display: grid;
  gap: 18px;
}

.catalog-item {
  position: relative;
  scroll-margin-top: 92px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid #c3ced2;
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(18, 42, 50, 0.08), 0 8px 22px rgba(18, 42, 50, 0.12);
}

.catalog-item > div:first-of-type {
  display: contents;
}

.catalog-item > div:first-of-type .eyebrow {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: end;
  margin: 0 0 0.24em;
}

.catalog-item > div:first-of-type .buy-button {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
}

.buy-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.buy-button:hover {
  background: #0a5c73;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(14, 116, 144, 0.28);
}

.buy-button.is-disabled,
.buy-button:disabled {
  cursor: default;
  border-color: #aebbc0;
  background: #e6ecef;
  color: #42545b;
  box-shadow: none;
}

.buy-button.is-disabled:hover,
.buy-button:disabled:hover {
  background: #e6ecef;
  transform: none;
  box-shadow: none;
}

.catalog-item > div:first-of-type h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.32em;
  grid-column: 1;
  grid-row: 1;
}

.catalog-item > div:first-of-type .catalog-copy {
  grid-column: 1;
  grid-row: 2;
}

.catalog-item > div:first-of-type .catalog-copy p:not(.eyebrow) {
  margin-top: 0;
}

.catalog-item > div:first-of-type .catalog-copy p:nth-of-type(n + 3) {
  margin-top: 1.5em;
}

.development-badge,
.planned-badge,
.included-badge {
  position: absolute;
  top: 22px;
  left: -14px;
  z-index: 2;
  padding: 6px 18px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transform: rotate(-6deg);
  transform-origin: top left;
  pointer-events: none;
  user-select: none;
}

.included-badge {
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.78) 0%, rgba(21, 128, 61, 0.78) 100%);
  box-shadow: 0 6px 16px rgba(21, 128, 61, 0.24);
}

.development-badge {
  background: linear-gradient(135deg, rgba(180, 83, 9, 0.78) 0%, rgba(146, 64, 14, 0.78) 100%);
  box-shadow: 0 6px 16px rgba(146, 64, 14, 0.22);
}

.planned-badge {
  background: linear-gradient(135deg, rgba(71, 85, 105, 0.78) 0%, rgba(51, 65, 85, 0.78) 100%);
  box-shadow: 0 6px 16px rgba(51, 65, 85, 0.22);
}

.development-badge::after,
.planned-badge::after,
.included-badge::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 8px;
  height: 6px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.included-badge::after {
  background: rgba(20, 83, 45, 0.78);
}

.development-badge::after {
  background: rgba(120, 53, 15, 0.78);
}

.planned-badge::after {
  background: rgba(30, 41, 59, 0.78);
}

.documentation-section + .documentation-section {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.documentation-section h2 {
  margin-bottom: 18px;
}

.documentation-table-wrap {
  overflow-x: auto;
}

.documentation-table {
  width: 100%;
  min-width: 720px;
  border: 0;
  border-collapse: collapse;
  table-layout: fixed;
  background: transparent;
}

.documentation-table th,
.documentation-table td {
  padding: 17px 22px;
  border: 0;
  vertical-align: middle;
}

.documentation-name-column {
  width: 44%;
}

.documentation-language-column {
  width: 28%;
}

.documentation-table tr > :first-child {
  text-align: left;
}

.documentation-table tr > :nth-child(n + 2) {
  text-align: center;
}

.documentation-table thead th {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.documentation-table tbody th {
  color: var(--text);
  font-weight: 750;
}

.documentation-version {
  margin-left: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.documentation-formats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 34px;
}

.documentation-format-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.025em;
}

.documentation-format-link:hover {
  background: var(--accent);
  color: #fff;
}

.documentation-format-link:focus-visible {
  outline: 3px solid rgba(14, 116, 144, 0.35);
  outline-offset: 2px;
}

.documentation-format-link > span:first-child {
  font-size: 1rem;
  line-height: 1;
}

.documentation-link-disabled {
  color: var(--muted);
  cursor: not-allowed;
  font-weight: 750;
  opacity: 0.58;
  user-select: none;
}

.download-table {
  min-width: 760px;
}

.download-name-column {
  width: 48%;
}

.download-version-column {
  width: 18%;
}

.download-action-column {
  width: 17%;
}

.download-heading-label,
.download-platform-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  gap: 9px;
  line-height: 1;
  vertical-align: middle;
}

.download-table thead th:first-child .download-heading-label {
  justify-content: flex-start;
}

.platform-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--text);
}

.linux-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.windows-icon {
  fill: currentColor;
}

.download-table .download-version {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

.download-action {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  transition: background-color 150ms ease, color 150ms ease;
}

.download-action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

a.download-action:hover {
  background: var(--accent);
  color: #fff;
}

a.download-action:focus-visible {
  outline: 3px solid rgba(14, 116, 144, 0.35);
  outline-offset: 2px;
}

.download-action.is-disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.renewal-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.renewal-flow > div {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  color: var(--text);
}

.renewal-flow span {
  color: var(--muted);
}

.catalog-item h2 {
  font-size: clamp(1.225rem, 2.1vw, 1.75rem);
}

.catalog-item p {
  margin: 14px 0 0;
  color: var(--muted);
}

.catalog-item .feature-list {
  align-content: start;
  grid-column: 2;
  grid-row: 2;
}

.catalog-item .meta-list {
  grid-column: 2;
  grid-row: 2;
}

.meta-list {
  display: grid;
  grid-template-columns: minmax(110px, 0.5fr) 1fr;
  gap: 10px 16px;
  align-content: start;
  margin: 0;
}

.meta-list dt {
  color: var(--text);
  font-weight: 850;
}

.meta-list dd {
  margin: 0;
  color: var(--muted);
}

.band {
  background: var(--surface-strong);
  color: #ffffff;
}

.band .section {
  padding: 72px 0;
}

.band p,
.band .feature-list li {
  color: #c6d5d8;
}

.band .card p {
  color: var(--muted);
}

.band .feature-list li::before {
  background: #0891B2;
}

.feature-use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-use-case {
  padding: 32px 40px 34px 0;
}

.feature-use-case + .feature-use-case {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.feature-use-case h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.feature-use-case > p {
  margin: 12px 0 22px;
  color: var(--muted);
}

.why-grid .feature-use-case:nth-child(odd) {
  padding-right: 40px;
  padding-left: 0;
  border-left: 0;
}

.why-grid .feature-use-case:nth-child(even) {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.why-grid .feature-use-case:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

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

.feature-use-list .feature-use-case,
.feature-use-list .feature-use-case + .feature-use-case {
  padding: 32px 0 34px;
}

.feature-use-list .feature-use-case + .feature-use-case {
  border-top: 1px solid var(--line);
  border-left: 0;
}

.home-map {
  border-top: 1px solid var(--line);
}

.home-map a {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: baseline;
  padding: 20px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.home-map a:hover {
  background: rgba(8, 145, 178, 0.06);
}

.home-map strong {
  font-size: 1.08rem;
}

.home-map a > span:not(.home-map-arrow) {
  color: var(--muted);
}

.home-map-arrow {
  color: var(--accent-strong);
  font-size: 1.25rem;
  font-weight: 800;
}

.capability-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.capability-list li::before {
  content: "";
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: translateY(-50%);
}

.compact-section {
  padding-top: 24px;
}

.compact-section > h2 {
  margin-bottom: 22px;
}

.feature-application-table th {
  width: 25%;
}

.technical-note {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.process-strip > div {
  padding: 26px 22px 28px;
}

.process-strip > div:first-child {
  padding-left: 0;
}

.process-strip > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.process-strip span,
.process-strip strong {
  display: block;
}

.process-strip span {
  margin-bottom: 18px;
  color: #67d5e8;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-strip strong {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.process-strip p {
  margin: 0;
  font-size: 0.95rem;
}

.feature-details {
  padding-bottom: 36px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 64px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-row-heading .eyebrow {
  margin-bottom: 10px;
}

.feature-row-heading h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.feature-row-content > p {
  max-width: 820px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.03rem;
}

.feature-row-content > .capability-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 34px;
}

.feature-point-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.feature-gallery {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 30px;
}

.feature-thumbnail {
  flex: 0 0 128px;
  width: 128px;
  min-width: 128px;
  aspect-ratio: 16 / 10;
  padding: 5px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-soft);
  color: inherit;
  cursor: zoom-in;
}

.feature-thumbnail:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(18, 42, 50, 0.12);
  transform: translateY(-2px);
}

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

.feature-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.feature-lightbox-open {
  overflow: hidden;
}

.feature-lightbox {
  width: min(94vw, 1480px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.feature-lightbox::backdrop {
  background: rgba(4, 12, 22, 0.78);
  backdrop-filter: blur(3px);
}

.feature-lightbox-content {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 14px;
  align-items: center;
  min-height: 260px;
  padding: 54px 18px 22px;
}

.feature-lightbox img {
  grid-column: 2;
  max-width: 100%;
  max-height: calc(94vh - 78px);
  justify-self: center;
  object-fit: contain;
}

.feature-lightbox button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.feature-lightbox button:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

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

.feature-lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

.feature-lightbox-navigation {
  width: 46px;
  height: 64px;
  border-radius: 7px;
  font-size: 2.1rem;
  line-height: 1;
}

.feature-lightbox-previous {
  grid-column: 1;
}

.feature-lightbox-next {
  grid-column: 3;
}

.contact-cta .section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.contact-cta .cta-actions {
  margin-top: 0;
}

.workflow {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.workflow-item {
  counter-increment: step;
  min-height: 156px;
  padding: 22px;
  background: var(--surface);
  color: var(--text);
}

.workflow-item::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-weight: 900;
}

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

.page-hero .section {
  display: block;
  padding: 76px 0;
  max-width: 880px;
}

.page-hero h1 {
  font-size: clamp(1.645rem, 3.5vw, 2.94rem);
}

.contact-brand-hero {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: var(--surface-strong);
  color: #ffffff;
}

.contact-brand-hero .eyebrow {
  color: #ff4a2a;
}

.contact-brand-hero .eyebrow::before {
  background: #ff4a2a;
}

.contact-brand-logo {
  width: 250px;
  height: auto;
}

.contact-brand-description {
  margin-top: 22px;
}

.contact-brand-description p {
  margin: 0 0 6px;
  color: #d9e7ea;
  font-size: 1.08rem;
}

.contact-brand-description strong {
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-columns {
  max-width: 900px;
  grid-template-columns: 1fr;
  gap: 48px;
}

.section-intro .contact-channel-note {
  color: var(--text);
  font-weight: 700;
}

.contact-column {
  padding-top: 22px;
  border-top: 2px solid var(--accent);
}

.contact-column h3 {
  margin-bottom: 16px;
}

.contact-detail-list,
.contact-topic-list {
  margin: 0;
}

.contact-detail-list > div,
.contact-topic-list > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail-list dt,
.contact-topic-list dt {
  color: var(--text);
  font-weight: 800;
}

.contact-detail-list dd,
.contact-topic-list dd {
  margin: 0;
  color: var(--muted);
}

.contact-detail-list a {
  color: var(--accent-strong);
  font-weight: 750;
}

.contact-external-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-external-link > span:first-child {
  font-size: 1rem;
  line-height: 1;
}

.contact-request-section .section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.contact-request-content {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.contact-request-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.contact-request-list li::marker {
  color: var(--accent);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-visual {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #edf3f4 100%);
  overflow: hidden;
  position: relative;
}

.page-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(14, 116, 144, 0.3);
  border-radius: 8px;
}

.page-visual .trace {
  position: absolute;
  left: 42px;
  right: 42px;
  height: 3px;
  background: var(--accent);
}

.page-visual .trace:nth-child(1) {
  top: 82px;
}

.page-visual .trace:nth-child(2) {
  top: 142px;
  right: 150px;
}

.page-visual .trace:nth-child(3) {
  top: 202px;
  left: 150px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
}

.support-details-table {
  table-layout: fixed;
}

.support-details-table th {
  width: auto;
}

.support-details-table col:first-child {
  width: 30%;
}

.support-details-table col:last-child {
  width: 70%;
}

.requirements-table {
  table-layout: fixed;
}

.requirements-table th {
  width: auto;
}

.requirements-table col:first-child {
  width: 22%;
}

.requirements-table col:nth-child(2),
.requirements-table col:nth-child(3) {
  width: 39%;
}

.price-group + .price-group {
  margin-top: 36px;
}

.price-group .eyebrow {
  margin-bottom: 14px;
}

.price-note {
  max-width: 980px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-note + .price-note {
  margin-top: 8px;
}

.spec-table sup,
.price-note sup {
  color: var(--accent-strong);
  font-size: 0.72em;
  font-weight: 850;
  line-height: 0;
  vertical-align: super;
}

.pricing-anchor {
  scroll-margin-top: 96px;
}


.spec-table th,
.spec-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 30%;
  color: var(--text);
}

.spec-table td {
  color: var(--muted);
}

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

.dated-pricing-table tr > :nth-child(2):not([colspan]) {
  background: var(--accent-soft);
}

.dated-pricing-table tr:first-child > :nth-child(2) {
  box-shadow: inset 0 3px 0 var(--accent);
  color: var(--accent-strong);
}

.dated-pricing-table tr:not(:first-child) > :nth-child(2):not([colspan]) {
  color: var(--text);
  font-weight: 800;
}

.cta {
  padding: 64px 0;
  background: #dfecef;
}

.cta .section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 0;
}

.cta p {
  margin: 14px 0 0;
  color: var(--muted);
}

.cta .cta-actions {
  margin-top: 0;
}

.site-footer {
  background: #11282f;
  color: #d9e7ea;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.footer-brand img {
  width: 160px;
  height: auto;
}

.footer-parent {
  justify-self: center;
}

.footer-parent img {
  width: 160px;
  height: auto;
}

.footer-copyright {
  justify-self: end;
  color: rgba(217, 231, 234, 0.58);
  font-size: 0.9rem;
}

[data-lang] {
  display: none;
}

html[data-language="it"] [data-lang="it"],
html[data-language="en"] [data-lang="en"] {
  display: revert;
}

html[data-language="it"] .grid[data-lang="it"],
html[data-language="en"] .grid[data-lang="en"],
html[data-language="it"] .pricing-grid[data-lang="it"],
html[data-language="en"] .pricing-grid[data-lang="en"],
html[data-language="it"] .renewal-flow[data-lang="it"],
html[data-language="en"] .renewal-flow[data-lang="en"],
html[data-language="it"] .process-strip[data-lang="it"],
html[data-language="en"] .process-strip[data-lang="en"],
html[data-language="it"] .workflow[data-lang="it"],
html[data-language="en"] .workflow[data-lang="en"],
html[data-language="it"] .contact-columns[data-lang="it"],
html[data-language="en"] .contact-columns[data-lang="en"],
html[data-language="it"] .contact-request-content[data-lang="it"],
html[data-language="en"] .contact-request-content[data-lang="en"] {
  display: grid;
}

html[data-language="it"] table[data-lang="it"],
html[data-language="en"] table[data-lang="en"] {
  display: table;
}

@media (max-width: 980px) {
  .header-actions {
    margin-left: auto;
    justify-content: flex-end;
  }

  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    min-height: 44px;
  }

  .hero-inner,
  .page-hero .section,
  .cta .section,
  .contact-cta .section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 64px 0 532px;
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-visual {
    top: auto;
    right: 50%;
    bottom: 36px;
    width: min(92vw, 680px);
    min-width: 0;
    transform: translateX(50%);
  }

  .grid.three,
  .grid.two,
  .pricing-grid,
  .renewal-flow,
  .workflow,
  .catalog-item {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row {
    gap: 36px;
  }

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

  .process-strip > div:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .process-strip > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .process-strip > div:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .section,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .nav-shell {
    gap: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-copyright {
    justify-self: center;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .section,
  .band .section {
    padding: 52px 0;
  }

  .section-heading-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-tablist {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .pricing-tab {
    flex: 0 0 auto;
    min-width: 164px;
  }

  .pricing-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 26px 22px 30px;
  }

  .documentation-table-wrap {
    overflow: visible;
  }

  .documentation-table {
    min-width: 0;
    table-layout: auto;
  }

  .documentation-table colgroup,
  .documentation-table thead {
    display: none;
  }

  .documentation-table,
  .documentation-table tbody,
  .documentation-table tr,
  .documentation-table th,
  .documentation-table td {
    display: block;
    width: 100%;
  }

  .documentation-table tbody {
    display: grid;
    gap: 14px;
  }

  .documentation-table tbody tr {
    padding: 18px;
    border-radius: 7px;
    background: var(--surface-soft);
  }

  .documentation-table th,
  .documentation-table td {
    padding: 0;
  }

  .documentation-table tbody th {
    margin-bottom: 15px;
    font-size: 1rem;
  }

  .documentation-table tbody td {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .documentation-table tbody td + td {
    margin-top: 10px;
  }

  .documentation-table tbody td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .documentation-formats {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .download-table {
    min-width: 0;
  }

  .download-table tbody td {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .download-table tbody tr {
    display: grid;
    grid-template-columns: 72px 34px minmax(0, 1fr);
    column-gap: 14px;
  }

  .download-table tbody th,
  .download-table .download-version {
    grid-column: 1 / -1;
  }

  .download-table tbody td + td {
    margin-top: 0;
  }

  .download-table .download-platform-action {
    grid-column: 1 / 3;
    grid-template-columns: 72px 34px;
    justify-content: start;
  }

  .download-table .platform-linux {
    grid-row: 3;
  }

  .download-table .platform-windows {
    grid-row: 4;
    margin-top: 10px;
  }

  html[data-language="it"] .download-version::before {
    content: attr(data-label-it);
  }

  html[data-language="en"] .download-version::before {
    content: attr(data-label-en);
  }

  .hero-inner {
    padding: 48px 0 28px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 24px, 680px);
    margin: 0 auto 24px;
    transform: none;
  }

  .app-body {
    grid-template-columns: 92px 1fr;
    min-height: 300px;
  }

  .app-content {
    padding: 12px;
  }

  .run-panel {
    grid-template-columns: 1fr 1fr;
  }

  .metric {
    min-height: 58px;
    padding: 10px;
  }

  .sequence-row {
    grid-template-columns: 30px 1fr 64px;
  }

  .sequence-row span:nth-child(3) {
    display: none;
  }

  .grid.three,
  .grid.two,
  .pricing-grid,
  .renewal-flow,
  .workflow,
  .catalog-item,
  .meta-list {
    grid-template-columns: 1fr;
  }

  .feature-use-grid,
  .feature-row,
  .feature-point-columns,
  .feature-row-content > .capability-list,
  .process-strip,
  .contact-columns,
  .contact-request-content {
    grid-template-columns: 1fr;
  }

  .contact-columns,
  .contact-request-content {
    gap: 32px;
  }

  .home-map a {
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .home-map a > span:not(.home-map-arrow) {
    grid-column: 1;
  }

  .home-map-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .feature-use-case,
  .feature-use-case + .feature-use-case {
    padding: 28px 0;
  }

  .feature-use-case + .feature-use-case {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .why-grid .feature-use-case,
  .why-grid .feature-use-case:nth-child(odd),
  .why-grid .feature-use-case:nth-child(even) {
    padding: 28px 0;
    border-left: 0;
  }

  .feature-row {
    gap: 18px;
    padding: 34px 0;
  }

  .feature-gallery,
  .feature-gallery[data-count] {
    display: flex;
    gap: 12px;
    margin-right: -12px;
    padding: 3px 12px 12px 3px;
    overflow-x: auto;
    scroll-padding-left: 3px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .feature-thumbnail {
    flex: 0 0 128px;
    scroll-snap-align: start;
  }

  .feature-lightbox {
    width: calc(100vw - 16px);
    max-height: 96vh;
  }

  .feature-lightbox-content {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 5px;
    padding: 52px 7px 16px;
  }

  .feature-lightbox img {
    max-height: calc(96vh - 72px);
  }

  .feature-lightbox-navigation {
    width: 36px;
    height: 54px;
    font-size: 1.7rem;
  }

  .process-strip > div,
  .process-strip > div:first-child {
    padding: 22px 0;
  }

  .process-strip > div + div,
  .process-strip > div:nth-child(3),
  .process-strip > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .catalog-item .feature-list,
  .catalog-item .meta-list,
  .catalog-item .catalog-compatibility {
    grid-column: 1;
    grid-row: auto;
  }

  .catalog-item > div:first-of-type h2,
  .catalog-item > div:first-of-type .eyebrow,
  .catalog-item > div:first-of-type p:not(.eyebrow) {
    grid-column: 1;
  }

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

@media (max-width: 360px) {
  .app-body {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .app-sidebar {
    padding: 12px 8px;
  }

  .app-content {
    min-width: 0;
    padding: 10px;
  }

  .run-panel {
    gap: 8px;
  }

  .metric {
    min-width: 0;
    padding: 8px;
    font-size: 0.82rem;
  }

  .metric strong {
    font-size: 1.08rem;
  }

  .sequence-row {
    grid-template-columns: 22px minmax(0, 1fr) 44px;
    gap: 6px;
    padding: 0 7px;
    font-size: 0.74rem;
  }
}
.catalog-version {
  color: var(--muted);
  font-size: 0.58em;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.catalog-compatibility {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  justify-self: start;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}
