:root {
  --ink: #101820;
  --ink-2: #27313a;
  --muted: #65717d;
  --subtle: #87919b;
  --paper: #ffffff;
  --paper-soft: #f6f8f7;
  --panel: #ffffff;
  --line: #dfe5e2;
  --line-strong: #c8d1cc;
  --green: #087b3f;
  --green-2: #0b9a50;
  --green-soft: #e7f5ed;
  --blue: #2563eb;
  --blue-soft: #e8efff;
  --amber: #d88400;
  --amber-soft: #fff3dc;
  --coral: #d85040;
  --coral-soft: #ffebe8;
  --shadow-sm: 0 1px 2px rgba(16, 24, 32, 0.06), 0 8px 24px rgba(16, 24, 32, 0.05);
  --shadow-md: 0 22px 60px rgba(16, 24, 32, 0.11);
  --radius: 8px;
  --container: min(1240px, calc(100vw - 40px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--ink);
  background: var(--green-soft);
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

code {
  padding: 2px 5px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper-soft);
  color: var(--ink-2);
  font-size: 0.9em;
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 auto auto 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--amber), var(--coral));
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--container);
  min-height: 64px;
  padding: 10px;
  border: 1px solid rgba(223, 229, 226, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 44px rgba(16, 24, 32, 0.07);
  backdrop-filter: blur(18px) saturate(140%);
  transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(200, 209, 204, 0.95);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(16, 24, 32, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: 0;
}

.brand img {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(8, 123, 63, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 40px;
  padding: 11px 12px;
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 720;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--green);
  background: var(--green-soft);
}

.site-nav .nav-action {
  margin-left: 8px;
  color: #fff;
  background: var(--green);
}

.site-nav .nav-action:hover {
  color: #fff;
  background: var(--green-2);
}

.menu-button {
  display: none;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  scroll-margin-top: 96px;
  padding: 112px 0 0;
  background:
    linear-gradient(180deg, rgba(246, 248, 247, 0.96), rgba(255, 255, 255, 0) 420px),
    linear-gradient(90deg, rgba(223, 229, 226, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(223, 229, 226, 0.42) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: clamp(40px, 5.5vw, 78px);
  width: var(--container);
  min-height: calc(100svh - 220px);
  margin: 0 auto;
  padding-bottom: 0;
}

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

.hero h1,
.section-intro h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.96;
  font-weight: 840;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.56;
  font-weight: 480;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 30px rgba(8, 123, 63, 0.22);
}

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

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

.button.secondary:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: var(--shadow-sm);
}

.button.mini {
  min-height: 36px;
  padding: 9px 12px;
  font-size: 13px;
}

.product-shell,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
}

.product-shell {
  overflow: hidden;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.preview-title {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.suggestion-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 26px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--paper-soft);
  font-size: 11px;
  font-weight: 760;
}

.suggestion-count strong {
  color: var(--ink);
}

.quiet-button {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 780;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.quiet-button:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}

.search-preview {
  min-height: 522px;
  padding: 16px;
}

.search-box {
  display: grid;
  grid-template-columns: 22px 1fr 34px;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 8px 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search-box:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(8, 123, 63, 0.12);
}

.search-box svg {
  width: 20px;
  height: 20px;
  color: var(--muted);
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 18px;
  font-weight: 720;
}

.search-box button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: var(--radius);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.search-box button:hover {
  color: var(--ink);
  background: var(--paper-soft);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  gap: 8px;
  min-height: 46px;
  padding: 14px 0 8px;
}

.search-preview .ssc-range-chip {
  --ssc-range-accent: #087b3f;
  --ssc-range-bg: #ffffff;
  --ssc-range-color: #111820;
  --ssc-range-border: #087b3f;
  --ssc-range-radius: 8px;
  --ssc-range-font: 13px;
  --ssc-range-track-height: 3px;
  --ssc-range-thumb-size: 8px;
  --ssc-range-hit-size: 18px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: none;
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: var(--ssc-range-radius);
  background: var(--ssc-range-bg);
  color: var(--ssc-range-color);
  font-family: inherit;
  font-size: var(--ssc-range-font);
  line-height: 1.35;
  box-sizing: border-box;
  animation: chip-in 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.search-preview .ssc-range-chip--active {
  --ssc-range-accent: #ffffff;
  --ssc-range-color: #ffffff;
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
  box-shadow: none;
}

.search-preview .ssc-range-chip__label {
  flex: 0 0 auto;
  min-width: 0;
  color: var(--ssc-range-color);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
  white-space: nowrap;
}

.search-preview .ssc-range-chip--active .ssc-range-chip__label,
.search-preview .ssc-range-chip--active .ssc-range-chip__values {
  color: #ffffff;
}

.search-preview .ssc-range-chip__values {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--ssc-range-color);
  font-family: inherit;
  font-size: 12px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  white-space: nowrap;
}

.search-preview .ssc-range-chip__value,
.search-preview .ssc-range-chip__separator,
.search-preview .ssc-range-chip__unit {
  font: inherit;
}

.search-preview .ssc-range-chip__sliders {
  flex: 0 0 82px;
  position: relative;
  width: 82px;
  height: var(--ssc-range-hit-size);
}

.search-preview .ssc-range-chip__sliders::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: var(--ssc-range-track-height);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.search-preview .ssc-range-chip--active .ssc-range-chip__sliders::before {
  background: rgba(255, 255, 255, 0.34);
}

.search-preview .ssc-range-chip__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--ssc-range-hit-size);
  margin: 0;
  background: transparent;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}

.search-preview .ssc-range-chip__input:focus {
  outline: none;
}

.search-preview .ssc-range-chip__input::-webkit-slider-runnable-track {
  height: var(--ssc-range-track-height);
  background: transparent;
}

.search-preview .ssc-range-chip__input::-moz-range-track {
  height: var(--ssc-range-track-height);
  background: transparent;
}

.search-preview .ssc-range-chip__input::-webkit-slider-thumb {
  width: var(--ssc-range-thumb-size);
  height: var(--ssc-range-thumb-size);
  margin-top: calc((var(--ssc-range-track-height) - var(--ssc-range-thumb-size)) / 2);
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: var(--ssc-range-accent);
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  cursor: grab;
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none;
}

.search-preview .ssc-range-chip__input::-moz-range-thumb {
  width: var(--ssc-range-thumb-size);
  height: var(--ssc-range-thumb-size);
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: var(--ssc-range-accent);
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  cursor: grab;
  pointer-events: auto;
}

.search-preview .ssc-range-chip--active .ssc-range-chip__input::-webkit-slider-thumb {
  border-color: rgba(8, 123, 63, 0.5);
  background: #ffffff;
}

.search-preview .ssc-range-chip--active .ssc-range-chip__input::-moz-range-thumb {
  border-color: rgba(8, 123, 63, 0.5);
  background: #ffffff;
}

.search-preview .ssc-range-chip__input:focus::-webkit-slider-thumb {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.search-preview .ssc-range-chip__input:focus::-moz-range-thumb {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.chip {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 1px 2px rgba(16, 24, 32, 0.03);
  animation: chip-in 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: var(--green);
}

.chip small {
  color: var(--subtle);
  font-size: 11px;
  font-weight: 820;
}

.chip.is-active {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.chip.is-active small {
  color: rgba(255, 255, 255, 0.78);
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.result-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 28px;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.result-meta strong {
  color: var(--ink);
}

.result-list {
  display: grid;
  gap: 9px;
  max-height: 300px;
  overflow: auto;
  padding-right: 2px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}

.result-list::-webkit-scrollbar {
  width: 8px;
}

.result-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--line-strong);
}

.result-row {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86) inset;
  animation: row-in 420ms ease both;
}

.result-thumb {
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 123, 63, 0.13), rgba(37, 99, 235, 0.1)),
    var(--paper-soft);
}

.result-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-thumb.has-image {
  background: #f7f4f0;
}

.result-thumb.has-image::before {
  display: none;
}

.result-thumb::before {
  content: "";
  display: block;
  width: 28px;
  height: 18px;
  margin: 13px auto 0;
  border: 2px solid rgba(16, 24, 32, 0.5);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    -9px 5px 0 -5px rgba(16, 24, 32, 0.5),
    9px 5px 0 -5px rgba(16, 24, 32, 0.5),
    inset 6px 0 0 rgba(8, 123, 63, 0.15);
}

.result-title-line {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.result-title-line strong {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-row p {
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-price {
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

.result-row--empty {
  grid-template-columns: 54px minmax(0, 1fr);
}

.hero-lower {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.hero-lower div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  min-height: 116px;
  padding: 28px calc((100vw - 1240px) / 8 + 22px);
  background: #fbfcfb;
}

.hero-lower svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--ink);
}

.hero-lower strong {
  font-size: 15px;
  font-weight: 800;
}

.hero-lower span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 560;
}

.section {
  scroll-margin-top: 96px;
  padding: clamp(78px, 9vw, 124px) 0;
}

.section-intro {
  width: var(--container);
  margin: 0 auto 36px;
}

.section-intro h2 {
  max-width: 820px;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1;
}

.section-intro p,
.price-card p {
  max-width: 760px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
  font-weight: 520;
}

.capabilities-section,
.pricing-section {
  background: var(--paper-soft);
}

.capabilities-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.58fr) minmax(760px, 1.42fr);
  align-items: start;
  gap: clamp(28px, 4.2vw, 54px);
  width: var(--container);
  margin: 0 auto;
}

.capabilities-story {
  display: grid;
  gap: 28px;
  min-width: 0;
  padding: 4px 0;
}

.capabilities-story h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.02;
  font-weight: 820;
}

.capabilities-story p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
  font-weight: 520;
}

.capability-count {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-left: clamp(32px, 7vw, 118px);
  border: 1px solid rgba(8, 123, 63, 0.22);
  border-radius: 22px;
  color: var(--green);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.capability-count::before,
.capability-count::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 58px;
  border-left: 1px dashed rgba(8, 123, 63, 0.42);
}

.capability-count::before {
  bottom: calc(100% + 14px);
}

.capability-count::after {
  top: calc(100% + 14px);
}

.capability-count strong,
.capability-count span {
  display: block;
  text-align: center;
}

.capability-count strong {
  font-size: 46px;
  line-height: 0.95;
  font-weight: 850;
}

.capability-count span {
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
}

.capability-actions {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.capability-actions .button {
  justify-content: center;
  width: 100%;
}

.capability-list {
  position: relative;
  display: grid;
  gap: 12px;
}

.capability-list::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 38px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(8, 123, 63, 0.64) 12%, rgba(8, 123, 63, 0.64) 88%, transparent);
}

.capability-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.66fr) minmax(360px, 1.34fr);
  align-items: center;
  gap: 18px;
  min-height: 126px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 2px rgba(16, 24, 32, 0.04), 0 18px 44px rgba(16, 24, 32, 0.045);
}

.capability-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(8, 123, 63, 0.16);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.08);
}

.capability-icon svg {
  width: 26px;
  height: 26px;
}

.capability-icon--blue {
  border-color: rgba(37, 99, 235, 0.18);
  color: var(--blue);
}

.capability-icon--coral {
  border-color: rgba(216, 80, 64, 0.2);
  color: var(--coral);
}

.capability-copy {
  min-width: 0;
}

.capability-copy span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.capability-copy h3,
.price-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 820;
}

.capability-copy p {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 540;
}

.capability-demo {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mini-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--paper-soft);
}

.mini-search svg {
  width: 20px;
  height: 20px;
}

.mini-search strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 780;
}

.mini-search span {
  width: 14px;
  height: 14px;
  margin-left: auto;
  position: relative;
}

.mini-search span::before,
.mini-search span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--subtle);
}

.mini-search span::before {
  transform: rotate(45deg);
}

.mini-search span::after {
  transform: rotate(-45deg);
}

.mini-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mini-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  background: #fff;
  font-size: 13px;
  font-weight: 760;
}

.mini-chip-row span.is-active {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.mini-chip-row small {
  color: inherit;
  opacity: 0.68;
  font-size: 11px;
  font-weight: 850;
}

.source-demo p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.range-demo strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
}

.range-demo strong span {
  color: var(--ink-2);
  font-weight: 760;
}

.mini-range {
  position: relative;
  height: 26px;
  margin-top: 12px;
}

.mini-range::before,
.mini-range i {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: #d9dedb;
  transform: translateY(-50%);
}

.mini-range i {
  left: 34%;
  right: 28%;
  background: var(--green);
}

.mini-range b {
  position: absolute;
  top: 50%;
  left: var(--x);
  width: 17px;
  height: 17px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green);
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 4px rgba(16, 24, 32, 0.2);
}

.range-values {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.analytics-demo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(120px, 1fr);
  align-items: end;
  gap: 12px;
}

.analytics-demo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.analytics-demo strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 58px;
}

.mini-bars span {
  flex: 1;
  height: var(--h);
  min-height: 12px;
  border-radius: 4px 4px 0 0;
  background: var(--green);
}

.mini-bars span:nth-child(2n) {
  background: var(--blue);
}

.prompt-demo {
  display: grid;
  gap: 6px;
  background: #fbfcfb;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.prompt-demo code {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.55;
}

.debug-demo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.debug-demo span {
  display: grid;
  gap: 8px;
  min-height: 70px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.debug-demo strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.debug-demo em {
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.debug-demo span:last-child em {
  color: var(--coral);
}

.diagnostics-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(28px, 4.6vw, 54px);
  width: var(--container);
  margin: 0 auto;
}

.diagnostics-section {
  padding: clamp(64px, 7vw, 98px) 0;
}

.diagnostics-layout .section-intro {
  position: sticky;
  top: 114px;
  width: auto;
  margin: 0;
}

.diagnostics-copy {
  display: grid;
  gap: 26px;
}

.diagnostics-copy h2 {
  max-width: 620px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
}

.diagnostics-copy p {
  max-width: 520px;
  margin-top: 0;
}

.diagnostic-proof-list {
  display: grid;
  gap: 14px;
  max-width: 430px;
}

.diagnostic-proof-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 24, 32, 0.03);
}

.diagnostic-proof-list svg {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(8, 123, 63, 0.18);
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
}

.diagnostic-proof-list span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
}

.diagnostics-workspace {
  min-width: 0;
  scroll-margin-top: 96px;
}

.diagnostics-workspace.reveal {
  opacity: 1;
  transform: none;
}

.real-analytics-preview {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f0f0f1;
  box-shadow: var(--shadow-md);
}

.real-analytics-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.diagnostics-workspace > .plugin-window--concept {
  display: none;
}

.plugin-window {
  overflow: hidden;
  border: 1px solid #c3c4c7;
  border-radius: var(--radius);
  background: #f0f0f1;
  box-shadow: var(--shadow-md);
}

.plugin-window__topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #f0f0f1;
  background: #1d2327;
  font-size: 12px;
  font-weight: 650;
}

.plugin-window__topbar span:nth-child(2) {
  justify-self: center;
}

.plugin-window__topbar span:last-child {
  justify-self: end;
  color: rgba(255, 255, 255, 0.78);
}

.plugin-window__body {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  min-height: 610px;
}

.plugin-sidebar {
  display: grid;
  align-content: start;
  gap: 2px;
  padding: 14px 0;
  color: #dcdcde;
  background: #1d2327;
  font-size: 12px;
  font-weight: 620;
}

.plugin-sidebar span {
  min-height: 34px;
  padding: 10px 12px;
}

.plugin-sidebar .is-active {
  color: #fff;
  background: #2271b1;
}

.plugin-main {
  min-width: 0;
  padding: 20px;
  background: #f6f7f7;
}

.plugin-main__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.plugin-main__head strong,
.plugin-main__head span {
  display: block;
}

.plugin-main__head strong {
  color: #1d2327;
  font-size: 18px;
  font-weight: 760;
}

.plugin-main__head span {
  margin-top: 3px;
  color: #646970;
  font-size: 13px;
  font-weight: 600;
}

.plugin-status {
  display: inline-flex !important;
  align-items: center;
  min-height: 28px;
  margin-top: 0 !important;
  padding: 5px 9px;
  border: 1px solid #b8e6c9;
  border-radius: 999px;
  color: #116329 !important;
  background: #e7f7ed;
  font-size: 11px !important;
  font-weight: 760 !important;
}

.plugin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 8px;
  border: 1px solid #dcdcde;
  border-radius: var(--radius);
  background: #f0f0f1;
}

.plugin-tabs span {
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #1d2327;
  font-size: 12px;
  font-weight: 760;
}

.plugin-tabs .is-active {
  border-color: #1d2327;
  color: #fff;
  background: #1d2327;
}

.plugin-test-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.7fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #dcdcde;
  border-radius: var(--radius);
  background: #fff;
}

.plugin-test-row label {
  display: block;
}

.plugin-test-row label span {
  display: block;
  margin-bottom: 7px;
  color: #646970;
  font-size: 12px;
  font-weight: 700;
}

.plugin-test-row label strong {
  display: block;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid #dcdcde;
  border-radius: 4px;
  color: #1d2327;
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}

.plugin-test-row button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #135e96;
  border-radius: 4px;
  color: #fff;
  background: #2271b1;
  font-size: 13px;
  font-weight: 700;
}

.plugin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.plugin-metrics div {
  min-width: 0;
  min-height: 86px;
  padding: 13px 14px;
  border: 1px solid #e3e5e8;
  border-radius: var(--radius);
  background: #fff;
}

.plugin-metrics span,
.plugin-metrics strong,
.plugin-metrics small {
  display: block;
}

.plugin-metrics span {
  color: #646970;
  font-size: 12px;
  font-weight: 700;
}

.plugin-metrics strong {
  margin-top: 9px;
  color: #1d2327;
  font-size: 28px;
  line-height: 0.95;
  font-weight: 760;
}

.plugin-metrics small {
  margin-top: 5px;
  color: #646970;
  font-size: 11px;
  font-weight: 650;
}

.plugin-warning {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid #f0d28a;
  border-radius: var(--radius);
  color: #1d2327;
  background: #fffaf0;
}

.plugin-warning strong,
.plugin-warning span {
  display: block;
}

.plugin-warning strong {
  font-size: 13px;
  font-weight: 780;
}

.plugin-warning div span {
  margin-top: 3px;
  color: #7a4f01;
  font-size: 12px;
  font-weight: 620;
}

.plugin-warning > span {
  padding: 3px 8px;
  border-radius: 999px;
  color: #7a4d00;
  background: #fff4ce;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.plugin-generated-chips {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #dcdcde;
  border-radius: var(--radius);
  background: #fff;
}

.plugin-generated-chips > strong {
  display: block;
  margin-bottom: 10px;
  color: #1d2327;
  font-size: 13px;
  font-weight: 780;
}

.plugin-generated-chips div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.plugin-generated-chips span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid #d0d7de;
  border-radius: 999px;
  color: #1d2327;
  background: #f6f7f7;
  font-size: 12px;
  font-weight: 700;
}

.plugin-generated-chips small {
  color: #646970;
  font-size: 11px;
  font-weight: 760;
}

.plugin-observability {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 12px;
  margin-top: 12px;
}

.plugin-analytics-panel,
.plugin-low-ctr-panel {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #e3e5e8;
  border-radius: var(--radius);
  background: #fff;
}

.plugin-analytics-panel header,
.plugin-low-ctr-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.plugin-analytics-panel header strong,
.plugin-low-ctr-panel header strong {
  color: #1d2327;
  font-size: 13px;
  font-weight: 780;
}

.plugin-analytics-panel header span,
.plugin-low-ctr-panel header span {
  color: #646970;
  font-size: 12px;
  font-weight: 650;
}

.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.analytics-metrics div {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid #e3e5e8;
  border-radius: 6px;
  background: #fcfcfd;
}

.analytics-metrics span,
.analytics-metrics strong {
  display: block;
}

.analytics-metrics span {
  color: #646970;
  font-size: 11px;
  font-weight: 700;
}

.analytics-metrics strong {
  margin-top: 5px;
  color: #1d2327;
  font-size: 18px;
  font-weight: 760;
}

.analytics-chart {
  position: relative;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 120px;
  padding: 14px 10px 10px;
  border: 1px solid #e3e5e8;
  border-radius: 6px;
  background:
    linear-gradient(180deg, transparent 24%, rgba(220, 220, 222, 0.55) 25%, transparent 26%),
    linear-gradient(180deg, transparent 49%, rgba(220, 220, 222, 0.55) 50%, transparent 51%),
    linear-gradient(180deg, transparent 74%, rgba(220, 220, 222, 0.55) 75%, transparent 76%),
    #fcfcfd;
}

.analytics-chart span {
  flex: 1;
  height: var(--h);
  min-height: 18px;
  border-radius: 4px 4px 0 0;
  background: #2271b1;
}

.analytics-chart span:nth-child(2n) {
  background: #00a32a;
}

.analytics-chart i {
  position: absolute;
  right: 10px;
  bottom: 38%;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(216, 119, 6, 0.82);
  transform: rotate(-5deg);
  transform-origin: center;
}

.plugin-low-ctr-panel [role="table"] {
  display: grid;
  overflow: hidden;
  border: 1px solid #e3e5e8;
  border-radius: 6px;
}

.plugin-low-ctr-panel [role="row"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  padding: 9px 10px;
  border-bottom: 1px solid #f0f1f3;
  color: #1d2327;
  font-size: 12px;
  font-weight: 650;
}

.plugin-low-ctr-panel [role="row"]:last-child {
  border-bottom: 0;
}

.plugin-low-ctr-panel strong {
  color: #7a4f01;
  font-size: 12px;
  font-weight: 780;
}

.plugin-local-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid #dcdcde;
  border-radius: var(--radius);
  color: #50575e;
  background: #fff;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 650;
}

.diagnostics-layout {
  grid-template-columns: minmax(360px, 420px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(30px, 3.4vw, 52px);
  width: min(1640px, calc(100vw - 40px));
}

.diagnostics-section {
  padding: clamp(70px, 7.5vw, 110px) 0;
  background: #fff;
}

.diagnostics-layout .section-intro {
  top: 112px;
}

.diagnostics-copy {
  align-self: start;
  gap: 28px;
}

.diagnostics-brandline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.diagnostics-brandline img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.diagnostics-brandline strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  font-weight: 820;
}

.diagnostic-kicker {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnostics-copy h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(42px, 4.3vw, 64px);
  line-height: 1.02;
  font-weight: 850;
}

.diagnostics-copy p {
  max-width: 430px;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.46;
  font-weight: 500;
}

.diagnostic-proof-list {
  gap: 24px;
  max-width: 430px;
}

.diagnostic-proof-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.diagnostic-proof-list article > div {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.diagnostic-proof-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(8, 123, 63, 0.22);
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 8px rgba(231, 245, 237, 0.7);
}

.diagnostic-proof-icon svg {
  width: 30px;
  height: 30px;
}

.diagnostic-proof-list strong,
.diagnostic-proof-list article span:not(.diagnostic-proof-icon) {
  display: block;
}

.diagnostic-proof-list strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 820;
}

.diagnostic-proof-list article span:not(.diagnostic-proof-icon) {
  margin-top: 5px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 520;
}

.plugin-window--concept {
  border-radius: 6px;
  background: #f6f7f7;
  box-shadow: 0 24px 74px rgba(16, 24, 32, 0.14);
}

.plugin-window--concept .plugin-window__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 30px;
  padding: 0 8px;
  color: #f0f0f1;
  background: #1d2327;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.wp-topbar-left,
.wp-topbar-right {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.wp-topbar-left span,
.wp-topbar-right span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.wp-mark {
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
}

.wp-avatar {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.2)),
    #dcdcde;
}

.plugin-window--concept .plugin-window__body {
  grid-template-columns: 178px minmax(0, 1fr);
  min-height: 720px;
}

.plugin-window--concept .plugin-sidebar {
  gap: 0;
  padding: 10px 0 0;
  background: linear-gradient(180deg, #23282d, #11171c);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

.plugin-window--concept .plugin-sidebar span,
.plugin-window--concept .plugin-sidebar small {
  display: flex;
  align-items: center;
  min-height: 37px;
  padding: 8px 13px;
  color: inherit;
  font-size: inherit;
  line-height: 1.1;
}

.plugin-window--concept .plugin-sidebar small {
  min-height: 30px;
  padding-left: 20px;
  color: #dcdcde;
  font-size: 13px;
  font-weight: 500;
}

.plugin-window--concept .plugin-sidebar small.is-current {
  border-left: 4px solid #72aee6;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.plugin-window--concept .plugin-sidebar em {
  display: inline-flex;
  justify-content: center;
  min-width: 17px;
  margin-left: 6px;
  padding: 2px 5px;
  border-radius: 999px;
  color: #fff;
  background: #d63638;
  font-size: 11px;
  font-style: normal;
  line-height: 1;
}

.plugin-window--concept .plugin-main {
  padding: 28px 22px 22px;
  background: linear-gradient(180deg, #f7f8fa 0%, #fff 70px, #fff 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.plugin-window--concept .plugin-main__head {
  align-items: center;
  margin-bottom: 18px;
}

.plugin-window--concept .plugin-main__head div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.plugin-window--concept .plugin-main__head img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.plugin-window--concept .plugin-main__head strong {
  font-size: 20px;
  line-height: 1.15;
}

.plugin-window--concept .plugin-tabs {
  display: flex;
  align-items: flex-end;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.plugin-window--concept .plugin-tabs span {
  min-height: 38px;
  min-width: 134px;
  padding: 10px 18px;
  border: 1px solid #dcdcde;
  border-bottom-color: #c3c4c7;
  border-radius: 6px 6px 0 0;
  color: #50575e;
  background: #f6f7f7;
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.plugin-window--concept .plugin-tabs .is-active {
  position: relative;
  z-index: 1;
  border-bottom-color: #fff;
  color: #135e96;
  background: #fff;
  box-shadow: inset 0 -3px 0 #2271b1;
}

.plugin-window--concept .plugin-test-row {
  grid-template-columns: minmax(240px, 1fr) auto minmax(190px, 0.62fr) 22px;
  gap: 14px;
  margin-top: -1px;
  padding: 28px 18px 24px;
  border-radius: 0 6px 0 0;
}

.plugin-window--concept .plugin-test-row label span {
  margin-bottom: 8px;
  font-size: 13px;
}

.plugin-window--concept .plugin-test-row label strong {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-color: #c3c4c7;
  font-size: 14px;
}

.plugin-window--concept .plugin-test-row label strong em {
  color: #a7aaad;
  font-style: normal;
  font-size: 13px;
}

.plugin-window--concept .plugin-test-row button {
  padding: 7px 14px;
  box-shadow: 0 1px 0 #135e96;
  font-size: 14px;
}

.plugin-help {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
  margin-bottom: 8px;
  border-radius: 50%;
  color: #8c8f94;
  background: #f0f0f1;
  font-size: 11px;
  font-weight: 800;
}

.plugin-window--concept .plugin-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
  padding: 0 18px 18px;
  border-right: 1px solid #dcdcde;
  border-left: 1px solid #dcdcde;
  background: #fff;
}

.plugin-window--concept .plugin-metrics article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  min-height: 102px;
  padding: 14px 12px;
  border: 1px solid #e3e5e8;
  border-radius: 6px;
  background: #fcfcfd;
}

.plugin-window--concept .plugin-metrics span {
  display: block;
  min-height: 30px;
  line-height: 1.15;
  font-size: 12px;
}

.plugin-window--concept .plugin-metrics strong {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-height: 31px;
  font-size: 26px;
  line-height: 1.05;
}

.plugin-window--concept .plugin-metrics small {
  display: inline;
  margin-left: 3px;
  color: #3c434a;
  font-size: 15px;
}

.plugin-window--concept .plugin-metrics a {
  display: block;
  margin-top: auto;
  color: #2271b1;
  font-size: 12px;
  font-weight: 650;
}

.plugin-window--concept .plugin-metrics em {
  display: block;
  width: fit-content;
  padding: 3px 9px;
  border: 1px solid #9be4b2;
  border-radius: 4px;
  color: #116329;
  background: #e7f7ed;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.plugin-window--concept .plugin-metrics em.is-warning {
  border-color: #e0b849;
  color: #7a4d00;
  background: #fff8e5;
}

.plugin-window--concept .plugin-metrics i {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  border-radius: 50%;
  background: #20a05a;
  vertical-align: -2px;
}

.plugin-window--concept .plugin-metrics article:last-child strong {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  line-height: 1.15;
  white-space: normal;
}

.plugin-window--concept .plugin-metrics article:last-child i {
  flex: 0 0 auto;
  margin-right: 0;
}

.plugin-window--concept .plugin-warning {
  grid-template-columns: 24px minmax(0, 1fr) auto;
  margin-top: 0;
  padding: 13px 14px;
  border-color: #dba617;
  border-radius: 4px;
  background: linear-gradient(90deg, #fff8e5, #fffaf0);
}

.plugin-warning-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  color: #fff;
  background: #d98400;
  font-size: 12px;
  font-weight: 900;
}

.plugin-window--concept .plugin-warning div span {
  font-size: 13px;
}

.plugin-window--concept .plugin-warning button {
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  color: #1d2327;
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}

.plugin-window--concept .plugin-generated-chips {
  margin-top: 0;
  padding: 16px 18px 13px;
  border-top: 0;
  border-radius: 0 0 6px 6px;
}

.plugin-window--concept .plugin-generated-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 4px;
  line-height: 1.15;
  font-weight: 600;
}

.plugin-generated-chips p {
  margin: 11px 0 0;
  color: #646970;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}

.plugin-window--concept .plugin-observability {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 16px;
  margin-top: 18px;
}

.plugin-window--concept .plugin-analytics-panel,
.plugin-window--concept .plugin-low-ctr-panel {
  min-height: 348px;
  padding: 16px;
  border-radius: 6px;
}

.plugin-window--concept .analytics-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.plugin-window--concept .analytics-metrics div {
  padding: 10px;
  border-radius: 4px;
}

.plugin-window--concept .analytics-metrics span {
  min-height: 27px;
  font-size: 10.5px;
  line-height: 1.16;
  overflow-wrap: anywhere;
  white-space: normal;
}

.plugin-window--concept .analytics-metrics strong {
  font-size: 19px;
}

.plugin-window--concept .analytics-metrics small {
  display: block;
  margin-top: 4px;
  color: #11833d;
  font-size: 11px;
  font-weight: 700;
}

.plugin-window--concept .analytics-metrics small::before {
  content: "+ ";
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #50575e;
  font-size: 12px;
  font-weight: 600;
}

.chart-legend span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 3px;
  background: #3b82f6;
  vertical-align: -1px;
}

.chart-legend .chart-clicks::before {
  background: #20a05a;
}

.chart-legend .chart-ctr::before {
  border: 1px solid #a7aaad;
  background: #f0f0f1;
}

.plugin-window--concept .analytics-chart {
  display: grid;
  align-items: stretch;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: 148px auto;
  gap: 4px 8px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #646970;
  font-size: 11px;
  font-weight: 600;
  text-align: right;
}

.chart-bars {
  position: relative;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 100%;
  min-width: 0;
  padding: 12px 8px 0;
  border-bottom: 1px solid #dcdcde;
  background:
    linear-gradient(180deg, transparent 24%, rgba(220, 220, 222, 0.68) 25%, transparent 26%),
    linear-gradient(180deg, transparent 49%, rgba(220, 220, 222, 0.68) 50%, transparent 51%),
    linear-gradient(180deg, transparent 74%, rgba(220, 220, 222, 0.68) 75%, transparent 76%);
}

.chart-bars > span {
  flex: 1;
  height: var(--h);
  min-height: 16px;
  border-radius: 3px 3px 0 0;
  background: rgba(34, 113, 177, 0.82);
}

.chart-bars svg {
  position: absolute;
  inset: 10px 8px 0 8px;
  width: calc(100% - 16px);
  height: calc(100% - 10px);
  pointer-events: none;
}

.chart-line {
  fill: none;
  stroke-width: 3;
}

.chart-line--clicks {
  stroke: #20a05a;
}

.chart-line--ctr {
  stroke: #a7aaad;
  stroke-dasharray: 7 7;
}

.chart-dates {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  color: #646970;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.15;
}

.plugin-window--concept .plugin-analytics-panel > a,
.plugin-window--concept .plugin-low-ctr-panel > a {
  color: #2271b1;
  font-size: 13px;
  font-weight: 650;
}

.plugin-window--concept .plugin-low-ctr-panel table {
  width: 100%;
  border: 1px solid #e3e5e8;
  border-collapse: collapse;
  font-size: 12px;
}

.plugin-window--concept .plugin-low-ctr-panel th,
.plugin-window--concept .plugin-low-ctr-panel td {
  padding: 9px 10px;
  border-top: 1px solid #f0f1f3;
  color: #1d2327;
  text-align: left;
  white-space: nowrap;
}

.plugin-window--concept .plugin-low-ctr-panel th {
  border-top: 0;
  color: #50575e;
  background: #fcfcfd;
  font-size: 12px;
  font-weight: 700;
}

.plugin-window--concept .plugin-low-ctr-panel td:first-child,
.plugin-window--concept .plugin-low-ctr-panel th:first-child {
  white-space: normal;
}

.plugin-window--concept .plugin-low-ctr-panel td span {
  display: inline-flex;
  padding: 2px 7px;
  border: 1px solid #f0d28a;
  border-radius: 4px;
  color: #7a4f01;
  background: #fff8e5;
  font-size: 12px;
  font-weight: 780;
}

.plugin-analytics-tab-model {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #dcdcde;
  border-radius: 6px;
  background: #fff;
}

.plugin-analytics-tab-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.plugin-analytics-tab-head strong,
.plugin-analytics-tab-head span {
  display: block;
}

.plugin-analytics-tab-head strong {
  color: #1d2327;
  font-size: 15px;
  font-weight: 780;
}

.plugin-analytics-tab-head span {
  margin-top: 3px;
  color: #646970;
  font-size: 12px;
  font-weight: 600;
}

.plugin-analytics-actions {
  display: flex;
  gap: 6px;
  flex: 0 0 auto;
}

.plugin-analytics-actions span {
  margin: 0;
  padding: 5px 8px;
  border: 1px solid #c3c4c7;
  border-radius: 4px;
  color: #1d2327;
  background: #f6f7f7;
  font-size: 11px;
  font-weight: 650;
}

.plugin-analytics-primary {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 12px;
}

.plugin-analytics-secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.plugin-analytics-tab-model .plugin-analytics-panel {
  min-height: 0;
  padding: 12px;
  border: 1px solid #e3e5e8;
  border-radius: 6px;
  background: #fcfcfd;
  overflow: hidden;
}

.plugin-analytics-tab-model .plugin-analytics-panel header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  margin-bottom: 10px;
}

.plugin-analytics-tab-model .plugin-analytics-panel header strong,
.plugin-analytics-tab-model .plugin-analytics-panel h4 {
  margin: 0;
  color: #1d2327;
  font-size: 12px;
  font-weight: 780;
}

.plugin-analytics-tab-model .plugin-analytics-panel header span {
  color: #646970;
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.plugin-analytics-tab-model .plugin-analytics-panel table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 11px;
}

.plugin-analytics-tab-model .plugin-analytics-panel th,
.plugin-analytics-tab-model .plugin-analytics-panel td {
  padding: 7px 6px;
  border-top: 1px solid #ebecef;
  color: #1d2327;
  line-height: 1.15;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.plugin-analytics-tab-model .plugin-analytics-panel th {
  color: #50575e;
  background: #fff;
  font-weight: 700;
}

.plugin-analytics-tab-model .plugin-analytics-panel td:first-child,
.plugin-analytics-tab-model .plugin-analytics-panel th:first-child {
  width: 42%;
  overflow-wrap: anywhere;
}

.plugin-analytics-tab-model .plugin-analytics-panel[aria-label="Top search queries preview"] th,
.plugin-analytics-tab-model .plugin-analytics-panel[aria-label="Top search queries preview"] td {
  padding-right: 4px;
  padding-left: 4px;
  font-size: 10.5px;
}

.plugin-analytics-tab-model .plugin-analytics-panel[aria-label="Top search queries preview"] th:nth-child(n+2),
.plugin-analytics-tab-model .plugin-analytics-panel[aria-label="Top search queries preview"] td:nth-child(n+2) {
  overflow-wrap: normal;
  text-align: right;
}

.plugin-analytics-tab-model .analytics-chart {
  grid-template-rows: 126px auto;
}

.plugin-analytics-tab-model .chart-legend {
  justify-content: start;
  gap: 12px;
  margin-bottom: 7px;
  font-size: 11px;
  flex-wrap: wrap;
}

.plugin-analytics-tab-model .chart-legend span {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

.plugin-analytics-tab-model .chart-bars > span {
  min-height: 12px;
}

.plugin-analytics-tab-model .chart-axis span,
.plugin-analytics-tab-model .chart-dates span {
  display: inline;
  flex: none;
  width: auto;
  height: auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
}

.plugin-window--concept .plugin-local-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  padding: 11px 13px;
  border-radius: 4px;
  background: #f6f7f7;
  font-size: 13px;
}

.plugin-window--concept .plugin-local-note span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid #8c8f94;
  border-radius: 50%;
  color: #646970;
  font-size: 12px;
  font-style: italic;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: var(--container);
  margin: 0 auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 306px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.plan-label {
  width: fit-content;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green);
  background: var(--green-soft);
  font-size: 12px;
  font-weight: 820;
}

.price-card h3 {
  margin-top: 22px;
  font-size: clamp(30px, 3.2vw, 42px);
}

.price-card h3 span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
}

.price-card p {
  margin-top: 14px;
  font-size: 15px;
}

.price-card .button {
  width: fit-content;
  margin-top: auto;
}

.pricing-grid .pro-price:nth-of-type(2) {
  border-color: rgba(8, 123, 63, 0.28);
  box-shadow: var(--shadow-md);
}

.free-price {
  background:
    linear-gradient(180deg, rgba(231, 245, 237, 0.7), rgba(255, 255, 255, 0.94));
}

.pro-feature-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: stretch;
  width: var(--container);
  margin: 18px auto 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(231, 245, 237, 0.78), rgba(255, 255, 255, 0.94) 38%),
    #fff;
  box-shadow: var(--shadow-sm);
}

.pro-feature-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding-right: clamp(0px, 1.8vw, 20px);
}

.pro-feature-intro span {
  width: fit-content;
  padding: 7px 9px;
  border: 1px solid rgba(8, 123, 63, 0.22);
  border-radius: var(--radius);
  color: var(--green);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 820;
}

.pro-feature-intro h3 {
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  font-weight: 840;
}

.pro-feature-intro p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.56;
  font-weight: 560;
}

.pro-feature-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.pro-feature-groups article {
  min-width: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.pro-feature-groups h4 {
  margin: 0;
  color: var(--ink);
  display: block;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 820;
}

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

.pro-feature-groups li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  font-weight: 580;
}

.pro-feature-groups li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(246, 248, 247, 0.96), rgba(255, 255, 255, 0) 480px),
    linear-gradient(90deg, rgba(223, 229, 226, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(223, 229, 226, 0.42) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.legal-header .site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-main {
  width: var(--container);
  margin: 0 auto;
  padding: 122px 0 56px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(20px, 4vw, 44px);
}

.legal-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 16px;
}

.legal-sidebar-card,
.legal-document {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.legal-sidebar-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.legal-sidebar-card strong {
  font-size: 15px;
  font-weight: 820;
}

.legal-sidebar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 560;
}

.legal-sidebar-card nav {
  display: grid;
  gap: 7px;
}

.legal-sidebar-card nav a,
.legal-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 760;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.legal-sidebar-card nav a::after {
  content: "->";
  color: var(--subtle);
  font-weight: 760;
}

.legal-sidebar-card nav a:hover,
.legal-sidebar-card nav a[aria-current="page"],
.legal-contact:hover {
  border-color: rgba(8, 123, 63, 0.28);
  background: var(--green-soft);
  color: var(--green);
}

.legal-contact {
  justify-content: center;
  color: #fff;
  background: var(--green);
}

.legal-contact:hover {
  color: #fff;
  background: var(--green-2);
}

.legal-document {
  padding: clamp(24px, 5vw, 58px);
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-document h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.98;
  font-weight: 840;
  letter-spacing: 0;
}

.legal-summary {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  font-weight: 500;
}

.legal-updated {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

.legal-content {
  max-width: 820px;
  margin-top: clamp(28px, 4vw, 46px);
}

.legal-content h2 {
  margin: 36px 0 12px;
  color: var(--ink);
  font-size: clamp(23px, 2.5vw, 32px);
  line-height: 1.15;
  font-weight: 830;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 24px 0 8px;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.24;
  font-weight: 800;
}

.legal-content p,
.legal-content li {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.74;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.legal-content li {
  position: relative;
  padding-left: 20px;
}

.legal-content li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.legal-content a {
  color: var(--green);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content em {
  color: var(--muted);
  font-style: normal;
  font-weight: 680;
}

.legal-page .site-footer {
  background: transparent;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  width: var(--container);
  min-height: 118px;
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer-identity {
  display: grid;
  gap: 12px;
}

.site-footer .brand {
  font-size: 16px;
}

.site-footer .brand img {
  width: 34px;
  height: 34px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 620;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 14px;
  text-align: right;
}

.footer-meta a {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--green);
}

.footer-meta nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

.footer-meta nav a,
.footer-meta nav button {
  color: var(--muted);
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 640;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer-meta nav button:hover {
  color: var(--green);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 120;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(920px, 100%);
  padding: 16px 18px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.16);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.cookie-consent__panel strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 820;
}

.cookie-consent__panel p {
  margin: 5px 0 0;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.45;
}

.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.cookie-consent__actions a {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 720;
  text-decoration: none;
}

.cookie-consent__actions a:hover {
  color: var(--green-dark);
}

.cookie-consent__actions .button {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes chip-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes row-in {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1120px) {
  .hero-layout,
  .capabilities-shell,
  .diagnostics-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
  }

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

  .product-shell {
    width: 100%;
  }

  .diagnostics-layout .section-intro {
    position: static;
  }

  .capability-count {
    margin-left: 0;
  }

  .hero-lower {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pro-feature-intro {
    padding-right: 0;
  }

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

  .free-price {
    grid-column: 1 / -1;
  }

  .hero-lower div {
    padding: 24px 22px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(720px, calc(100vw - 28px));
  }

  .site-header {
    top: 10px;
    flex-wrap: wrap;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-action {
    margin-left: 0;
    text-align: center;
  }

  .legal-header {
    flex-wrap: nowrap;
  }

  .legal-header .site-nav {
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 0;
    border-top: 0;
  }

  .legal-header .site-nav a,
  .legal-header .site-nav .nav-action {
    margin-left: 0;
    text-align: left;
  }

  .legal-main {
    padding-top: 104px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-document {
    order: 1;
  }

  .legal-sidebar {
    position: static;
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 112px;
  }

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

  .capability-item {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .capability-demo {
    grid-column: 2;
  }

  .plugin-window__body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .plugin-window--concept .plugin-window__body {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .plugin-sidebar {
    display: none;
  }

  .plugin-window--concept .plugin-sidebar {
    display: none;
  }

  .plugin-test-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .plugin-window--concept .plugin-test-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .plugin-test-row button {
    width: fit-content;
  }

  .plugin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plugin-observability {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .legal-header {
    min-height: 58px;
  }

  .legal-header .brand {
    max-width: min(52vw, 230px);
  }

  .legal-header .brand img {
    width: 34px;
    height: 34px;
  }

  .legal-header .site-nav a:not(.nav-action) {
    display: none;
  }

  .legal-header .site-nav .nav-action {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 13px;
    white-space: nowrap;
  }

  .legal-main {
    padding-top: 92px;
    padding-bottom: 36px;
  }

  .legal-document {
    padding: 22px;
  }

  .legal-sidebar {
    grid-template-columns: 1fr;
  }

  .legal-document h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .legal-summary {
    font-size: 16px;
  }

  .legal-content h2 {
    margin-top: 30px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15.5px;
  }

  .hero h1,
  .capabilities-story h2,
  .section-intro h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .hero-copy p,
  .capabilities-story p,
  .section-intro p,
  .price-card p {
    font-size: 16px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

  .hero-lower,
  .pro-feature-groups {
    grid-template-columns: 1fr;
  }

  .capability-list::before,
  .capability-count::before,
  .capability-count::after {
    display: none;
  }

  .capabilities-story {
    gap: 20px;
  }

  .capability-count {
    display: none;
  }

  .capability-actions {
    display: none;
  }

  .capability-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .capability-icon {
    width: 50px;
    height: 50px;
  }

  .capability-demo {
    grid-column: auto;
  }

  .analytics-demo,
  .debug-demo {
    grid-template-columns: 1fr;
  }

  .diagnostic-proof-list div {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 52px;
  }

  .diagnostic-proof-list {
    display: none;
  }

  .plugin-window__topbar {
    grid-template-columns: 1fr auto;
  }

  .plugin-window__topbar span:first-child {
    display: none;
  }

  .plugin-window__topbar span:nth-child(2) {
    justify-self: start;
  }

  .plugin-window--concept .plugin-window__topbar {
    display: flex;
    min-width: 0;
  }

  .plugin-window--concept .plugin-window__topbar span:first-child,
  .plugin-window--concept .plugin-window__topbar span:nth-child(2) {
    display: inline-flex;
    justify-self: auto;
  }

  .plugin-window--concept .wp-topbar-left span:nth-child(n+3) {
    display: none;
  }

  .plugin-window--concept .wp-topbar-left {
    gap: 9px;
  }

  .plugin-window--concept .wp-topbar-right {
    flex-shrink: 0;
    gap: 8px;
  }

  .plugin-main {
    padding: 14px;
  }

  .plugin-window--concept .plugin-main {
    padding: 16px 14px;
  }

  .plugin-main__head,
  .plugin-warning {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .plugin-main__head {
    display: grid;
  }

  .plugin-status,
  .plugin-warning > span,
  .plugin-test-row button {
    width: fit-content;
  }

  .plugin-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .plugin-tabs::-webkit-scrollbar {
    display: none;
  }

  .plugin-tabs span {
    flex: 0 0 auto;
  }

  .plugin-window--concept .plugin-tabs span {
    min-width: 112px;
    padding: 10px 12px;
  }

  .plugin-metrics,
  .analytics-metrics {
    grid-template-columns: 1fr;
  }

  .plugin-window--concept .plugin-metrics,
  .plugin-window--concept .analytics-metrics {
    grid-template-columns: 1fr;
  }

  .plugin-window--concept .plugin-observability {
    grid-template-columns: 1fr;
  }

  .analytics-chart {
    height: 104px;
  }

  .plugin-window--concept .analytics-chart {
    height: auto;
  }

  .chart-dates {
    font-size: 10px;
  }

  .plugin-window--concept .plugin-low-ctr-panel {
    overflow-x: auto;
  }

  .result-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .result-title-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .result-price {
    grid-column: 2;
    justify-self: start;
  }

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

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 26px 0;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-meta nav {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .diagnostics-workspace {
    position: relative;
    height: var(--dashboard-height, 720px);
    overflow: hidden;
  }

  .diagnostics-workspace .plugin-window--concept {
    --dashboard-base-width: 860px;
    position: absolute;
    top: 0;
    left: 0;
    width: var(--dashboard-base-width);
    max-width: none;
    transform: scale(var(--dashboard-scale, 0.78));
    transform-origin: top left;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-window__body {
    grid-template-columns: 156px minmax(0, 1fr);
    min-height: 720px;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-sidebar {
    display: grid;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-test-row {
    grid-template-columns: minmax(220px, 1fr) auto minmax(160px, 0.62fr) 22px;
    align-items: end;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-test-row button {
    width: auto;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-metrics {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .diagnostics-workspace .plugin-window--concept .analytics-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .diagnostics-workspace .plugin-window--concept .plugin-observability {
    grid-template-columns: minmax(380px, 1fr) minmax(290px, 0.76fr);
  }

  .diagnostics-workspace .plugin-window--concept .plugin-main {
    padding: 28px 22px 22px;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-tabs span {
    min-width: 124px;
    padding: 10px 18px;
  }

  .diagnostics-workspace .plugin-window--concept .wp-topbar-left span:nth-child(n+3) {
    display: inline-flex;
  }

  .diagnostics-workspace .plugin-window--concept .wp-topbar-left {
    gap: 13px;
  }

  .diagnostics-workspace .plugin-window--concept .wp-topbar-right {
    gap: 13px;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-low-ctr-panel {
    overflow: visible;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-low-ctr-panel table {
    table-layout: fixed;
    font-size: 10.5px;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-low-ctr-panel th,
  .diagnostics-workspace .plugin-window--concept .plugin-low-ctr-panel td {
    padding: 7px 6px;
    line-height: 1.15;
    white-space: normal;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-low-ctr-panel th:first-child,
  .diagnostics-workspace .plugin-window--concept .plugin-low-ctr-panel td:first-child {
    width: 38%;
  }

  .diagnostics-workspace .plugin-window--concept .plugin-low-ctr-panel th:nth-child(2),
  .diagnostics-workspace .plugin-window--concept .plugin-low-ctr-panel td:nth-child(2) {
    width: 21%;
  }
}

@media (max-width: 620px) {
  .diagnostic-proof-list {
    display: grid;
  }
}

@media (max-width: 720px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .cookie-consent__panel {
    display: grid;
    gap: 14px;
    padding: 15px;
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__actions a {
    margin-right: auto;
  }

  .cookie-consent__actions .button {
    flex: 1 1 0;
    justify-content: center;
  }
}
