:root {
  color-scheme: light;
  --paper: #f7faff;
  --surface: #ffffff;
  --ink: #101828;
  --muted: #667085;
  --line: #d7e0ef;
  --blue: #2b6cff;
  --blue-ink: #1746b8;
  --aqua: #61d9f4;
  --ice: #eaf7ff;
  --navy: #0b182d;
  --mint: #0f9f6e;
  --amber: #f59f00;
  --red: #cf3f32;
  --shadow: 0 22px 70px rgba(16, 24, 40, .12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(43, 108, 255, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(43, 108, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .72;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

button:hover,
.button:hover,
button:focus-visible,
.button:focus-visible {
  outline: 2px solid rgba(43, 108, 255, .28);
  outline-offset: 2px;
  border-color: var(--blue);
  color: var(--blue-ink);
}

.button.primary,
button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 24px rgba(43, 108, 255, .22);
}

.button.primary:hover,
button.primary:hover,
.button.primary:focus-visible,
button.primary:focus-visible {
  color: white;
  background: #1f59de;
}

button:disabled,
.button:disabled,
button.primary:disabled,
.button.primary:disabled,
.button.is-unavailable {
  border-color: #cbd7ea;
  background: #dbe4f3;
  color: #62738c;
  box-shadow: none;
  cursor: not-allowed;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(215, 224, 239, .82);
  background: rgba(247, 250, 255, .86);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 15px 0;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 880;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(43, 108, 255, .35);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, #e8f0ff);
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.nav-links a {
  white-space: nowrap;
}

.nav-links .button {
  min-height: 36px;
  padding: 0 12px;
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  display: flex;
  --hero-flow-x: 0px;
  --hero-flow-y: 0px;
  --hero-grid-x: 0px;
  --hero-grid-y: 0px;
  min-height: calc(92svh - 66px);
  margin: 0;
  padding: 0 16px;
  overflow: hidden;
  background:
    linear-gradient(124deg, rgba(234, 247, 255, .98) 0%, rgba(199, 238, 252, .98) 45%, rgba(93, 219, 244, .92) 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: repeating-linear-gradient(120deg, rgba(255, 255, 255, .2) 0 1px, transparent 1px 12px);
  background-size: 160px 160px;
  opacity: .62;
  transform: translate3d(var(--hero-grid-x), var(--hero-grid-y), 0);
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1);
  animation: heroGridDrift 32s linear infinite;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(62, 178, 216, .2));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(104px, 1fr) auto;
  width: min(100%, var(--max));
  min-height: calc(92svh - 66px);
  margin: 0 auto;
  padding: clamp(72px, 11vh, 128px) 0 0;
}

.hero-flow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: .48;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  transform: translate3d(var(--hero-flow-x), var(--hero-flow-y), 0);
  transition:
    transform 520ms cubic-bezier(.2, .8, .2, 1),
    opacity 520ms cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.hero.is-pointer-active .hero-flow {
  opacity: .54;
}

.flow-line {
  position: absolute;
  left: -44vw;
  width: min(860px, 76vw);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(8, 127, 242, 0) 18%, rgba(8, 127, 242, .12) 44%, rgba(255, 255, 255, .24) 51%, rgba(8, 127, 242, .08) 60%, transparent 100%);
  box-shadow: 0 0 8px rgba(255, 255, 255, .05);
  transform: translate3d(0, 0, 0) rotate(-17deg);
  transform-origin: center;
  animation: traceGlide 18s linear infinite;
}

.flow-a {
  top: 22%;
  animation-delay: -3s;
}

.flow-b {
  top: 52%;
  width: min(760px, 68vw);
  opacity: .46;
  animation-delay: -10s;
  animation-duration: 22s;
}

.flow-c {
  top: 74%;
  width: min(820px, 72vw);
  opacity: .38;
  animation-delay: -15s;
  animation-duration: 25s;
}

.flow-d {
  top: 86%;
  width: min(640px, 58vw);
  opacity: .28;
  animation-delay: -7s;
  animation-duration: 28s;
}

@keyframes heroGridDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 160px 0;
  }
}

@keyframes traceGlide {
  0% {
    transform: translate3d(-18vw, 0, 0) rotate(-17deg);
    opacity: 0;
  }

  14% {
    opacity: .64;
  }

  72% {
    opacity: .64;
  }

  100% {
    transform: translate3d(172vw, 0, 0) rotate(-17deg);
    opacity: 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--blue-ink);
  font-size: 13px;
  font-weight: 830;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
  color: #087ff2;
  font-size: 13px;
  letter-spacing: .09em;
}

.hero .eyebrow::before {
  display: none;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7.2vw, 92px);
  font-weight: 900;
}

.hero h1 {
  max-width: 1080px;
  margin: 0 auto;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 4.8vw, 70px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .98;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 880;
}

h3 {
  font-size: 21px;
  font-weight: 820;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #3f4f6d;
  font-size: 20px;
  line-height: 1.55;
}

.hero .lead {
  max-width: 760px;
  margin: 20px auto 0;
  color: #27415f;
  font-size: 18px;
}

.hero .lead code {
  padding: 4px 10px;
  border: 1px solid rgba(8, 127, 242, .22);
  border-radius: 6px;
  background: rgba(255, 255, 255, .34);
  color: #087ff2;
  white-space: nowrap;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero .hero-actions {
  justify-content: center;
  margin-top: 12px;
}

.hero .button.primary {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(11, 24, 45, .18);
}

.hero .button.primary:hover,
.hero .button.primary:focus-visible {
  background: #14253f;
}

.hero-console {
  align-self: end;
  width: min(640px, 100%);
  margin: 0 auto clamp(42px, 6vh, 78px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 20px;
  background: rgba(238, 250, 255, .8);
  box-shadow: 0 28px 68px rgba(35, 128, 177, .18);
  backdrop-filter: blur(12px);
}

.runtime-input {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(92, 133, 172, .24);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  color: #45627f;
  font-weight: 560;
}

.command-copy {
  color: #41607f;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 70px 0;
}

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

.console-embed-section {
  width: min(100% - 32px, 1240px);
  padding-top: 58px;
}

.console-embed-head {
  align-items: start;
}

.console-embed-shell {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.console-embed-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 6px 8px 6px 0;
}

.console-embed-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.02;
}

.console-embed-copy p {
  margin: 0;
  color: #465871;
  font-size: 17px;
  line-height: 1.68;
}

.console-embed-facts {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.console-embed-facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #d9e7f4;
}

.console-embed-facts dt {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.console-embed-facts dd {
  min-width: 0;
  margin: 0;
  color: #516178;
  line-height: 1.55;
}

.console-embed-facts code {
  white-space: normal;
}

.console-frame-wrap {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 43, 78, .18);
  border-radius: 8px;
  background: #050f1a;
  box-shadow: 0 28px 80px rgba(18, 80, 126, .18);
}

.console-frame {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #050f1a;
}

.payment-band {
  padding-top: 0;
}

.payment-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(280px, .42fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid #cfe0f2;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(236, 248, 255, .9));
  box-shadow: 0 18px 54px rgba(18, 80, 126, .08);
}

.payment-panel h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
}

.payment-panel p {
  margin: 16px 0 0;
  color: #465871;
  font-size: 17px;
  line-height: 1.68;
}

.payment-actions {
  display: grid;
  gap: 12px;
}

.payment-actions .button {
  width: 100%;
}

.payment-status,
.checkout-status {
  min-height: 22px;
  margin: 0;
  color: #516178;
  font-size: 14px;
  line-height: 1.5;
}

.button.is-loading {
  cursor: wait;
  opacity: .78;
}

.button:disabled,
.button.is-unavailable {
  cursor: not-allowed;
  opacity: .58;
  filter: saturate(.65);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .56fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 24px;
}

.section-head p,
.body-copy p,
.faq p,
.step p {
  color: #47566f;
  font-size: 17px;
}

.body-copy {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .55fr);
  gap: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
}

.body-copy p {
  margin: 0 0 16px;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.note-panel {
  padding: 20px;
  border: 1px solid #bfe6d5;
  border-radius: var(--radius);
  background: #f2fbf7;
}

.note-panel img {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid rgba(23, 70, 184, .12);
  border-radius: 6px;
  background: white;
}

.note-panel strong {
  display: block;
  margin-bottom: 8px;
}

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

.lab-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 36px rgba(16, 24, 40, .08);
}

.lab-card h3 {
  margin-top: 18px;
}

.lab-card p,
.fit-card li,
.checklist li span,
.small-note {
  color: #526179;
}

.lab-card .command-line {
  margin: 18px 0 12px;
  border-color: #d3def0;
  background: #f8fbff;
}

.lab-card .copy-btn {
  border-color: #c9d6ea;
  background: white;
  color: var(--blue-ink);
}

.small-note {
  margin: 0;
  font-size: 14px;
}

.checklist-panel {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 16px;
  padding: 28px;
  border: 1px solid #c9d6ea;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(239, 248, 255, .9));
}

.checklist-panel p {
  color: #465871;
  font-size: 17px;
}

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

.checklist li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid #dce6f5;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
}

.checklist strong {
  color: var(--navy);
}

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

.plugin-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.plugin-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 108, 255, .45);
  box-shadow: 0 18px 46px rgba(16, 24, 40, .12);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--blue-ink);
  font-size: 12px;
  font-weight: 800;
}

.plugin-card h3 {
  margin-top: 18px;
}

.plugin-card p {
  margin: 12px 0 0;
  color: #526179;
}

.trace-shell {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.command-panel {
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #101828;
  color: white;
}

.command-panel h3 {
  margin-bottom: 16px;
}

.command-box {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.command-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.copy-btn {
  min-height: 34px;
  padding: 0 10px;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: white;
}

.trace-panel {
  padding: 24px;
  background: #fbfdff;
}

.trace-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #e9eef7;
}

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

.stamp {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.trace-row p {
  margin: 4px 0 0;
  color: #55647a;
}

.mode-lab {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
}

.mode-tabs {
  display: grid;
  gap: 8px;
}

.mode-tab {
  justify-content: flex-start;
  width: 100%;
  border-color: var(--line);
}

.mode-tab[aria-selected="true"] {
  border-color: var(--blue);
  background: #edf3ff;
  color: var(--blue-ink);
}

.mode-panel {
  min-height: 248px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.mode-panel p {
  max-width: 700px;
  color: #4c5b72;
  font-size: 17px;
}

.mode-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.mode-list span {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  font-weight: 720;
}

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

.step {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
}

.step .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #edf3ff;
  color: var(--blue-ink);
  font-weight: 880;
}

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

.fit-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
}

.fit-card.positive {
  border-color: #bfe6d5;
  background: #f5fcf8;
}

.fit-card.caution {
  border-color: #f0d59a;
  background: #fffaf0;
}

.fit-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

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

.faq {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
}

.faq p {
  margin-bottom: 0;
}

.source-notes {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
}

.source-notes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer .footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-main {
  width: min(100% - 32px, 820px);
  margin: 0 auto;
  padding: 72px 0;
}

.legal-main p,
.legal-main li {
  color: #4c5b72;
  font-size: 17px;
}

.pricing-main {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 72px 0;
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .48fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.pricing-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .96;
}

.pricing-hero p {
  margin: 0;
  color: #465871;
  font-size: 18px;
  line-height: 1.62;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.pricing-card {
  display: flex;
  min-width: 0;
  min-height: 380px;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border: 1px solid #d7e3f1;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 44px rgba(16, 24, 40, .07);
}

.pricing-card.featured {
  border-color: #9ccff5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(235, 248, 255, .96));
  box-shadow: 0 24px 70px rgba(18, 113, 187, .16);
}

.pricing-card h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.pricing-card p {
  margin: 0;
  color: #4f6077;
  line-height: 1.62;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--navy);
  font-size: 42px;
  font-weight: 850;
}

.price-line span {
  line-height: .95;
}

.price-line small {
  color: #63748b;
  font-size: 14px;
  font-weight: 700;
}

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

.pricing-list li {
  position: relative;
  padding-left: 18px;
  color: #4c5d75;
  line-height: 1.5;
}

.pricing-list li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "•";
}

.pricing-card .button {
  margin-top: auto;
}

.payment-note-panel {
  padding: 20px;
  border-left: 4px solid #1ea97f;
  border-radius: 0 8px 8px 0;
  background: #f2fbf8;
  color: #41566c;
  line-height: 1.65;
}

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

@media (max-width: 940px) {
  .section-head,
  .console-embed-shell,
  .payment-panel,
  .body-copy,
  .trace-shell,
  .mode-lab,
  .checklist-panel,
  .pricing-hero,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .command-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .plugin-board,
  .steps,
  .lab-grid,
  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 46px;
  }

  .hero {
    min-height: calc(92svh - 63px);
    padding: 0 20px;
  }

  .hero-inner {
    grid-template-rows: auto minmax(150px, 1fr) auto;
    min-height: calc(92svh - 63px);
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1;
  }

  .hero-flow {
    opacity: .4;
  }

  .flow-line {
    width: 96vw;
    height: 2px;
  }

  .lead {
    font-size: 18px;
  }

  .hero .lead {
    font-size: 16px;
  }

  .hero .lead code {
    display: inline-block;
    margin-top: 2px;
    white-space: normal;
  }

  .hero-console {
    margin-bottom: 40px;
    padding: 16px;
  }

  .hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .button {
    width: 100%;
  }

  .console-embed-section {
    padding-top: 42px;
  }

  .console-embed-copy {
    padding-right: 0;
  }

  .console-embed-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .console-frame {
    height: 680px;
  }

  .payment-panel,
  .pricing-card {
    padding: 22px;
  }

  .pricing-main {
    padding-top: 46px;
  }

  .price-line {
    display: grid;
    align-items: start;
    gap: 8px;
    font-size: 40px;
  }

  .price-line small {
    max-width: 190px;
    line-height: 1.35;
  }

  .runtime-input {
    min-height: 42px;
    padding: 0 16px;
  }

  .plugin-board,
  .steps,
  .lab-grid,
  .fit-grid,
  .faq-grid,
  .source-notes ul,
  .mode-list {
    grid-template-columns: 1fr;
  }

  .checklist li {
    grid-template-columns: 1fr;
  }

  .trace-row {
    grid-template-columns: 72px 1fr;
  }

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