:root {
  color-scheme: light;
  --ink: #121D2F;
  --ink-soft: #26364d;
  --muted: #5f6b7a;
  --line: #d8dee8;
  --line-soft: #e7ebf1;
  --paper: #f8fafc;
  --paper-blue: #f2f6fc;
  --white: #ffffff;
  --blue: #245BB3;
  --blue-soft: #e9f1ff;
  --green: #2f7d45;
  --amber: #b7791f;
  --red: #b42318;
  --code: #101827;
  --shadow: 0 18px 44px rgba(18, 29, 47, 0.1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

pre {
  overflow-x: auto;
  margin: 0;
  border-radius: 8px;
  background: var(--code);
  color: #f6f8fb;
  padding: 18px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88rem;
  line-height: 1.72;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  padding: 0 56px;
}

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

.brand {
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
}

nav {
  gap: 24px;
}

nav a {
  color: #303b4b;
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  padding: 0 18px;
  font: inherit;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 150ms ease,
    background 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
}

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(36, 91, 179, 0.18);
}

.button.primary:hover {
  background: #1f4f9b;
}

.button.secondary {
  border-color: rgba(18, 29, 47, 0.18);
  background: var(--white);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(36, 91, 179, 0.38);
  color: var(--blue);
}

.button.ghost {
  background: transparent;
  color: #303b4b;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

input:focus {
  outline: 3px solid rgba(36, 91, 179, 0.16);
  border-color: var(--blue);
}

label span,
.section-kicker,
.account-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-main section,
.home-main article {
  scroll-margin-top: 92px;
}

.hero-shell {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  gap: 64px;
  align-items: center;
  margin: 0 auto;
  padding: 86px 0 52px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-title {
  max-width: 12ch;
  color: var(--ink);
  font-size: 5.5rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 730px;
  color: var(--ink-soft);
  font-size: 1.45rem;
  line-height: 1.38;
}

.hero-note {
  max-width: 690px;
  font-size: 1.03rem;
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.quick-install {
  max-width: 650px;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.quick-install > span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-install p {
  color: #6b7480;
  font-size: 0.92rem;
}

.status-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.status-window {
  min-height: 52px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
  background: #f3f6fa;
  padding: 0 16px;
}

.status-window span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7d0dd;
}

.status-window strong {
  margin-left: 8px;
  color: #485465;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86rem;
}

.status-body {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.status-running {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  border-radius: 999px;
  background: #ecf8f0;
  color: var(--green);
  padding: 6px 10px;
  font-size: 0.9rem;
  font-weight: 800;
}

.status-body dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.status-body dl div {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #fbfcfe;
  padding: 14px;
}

.status-body dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.status-body dd {
  color: var(--ink);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
}

.trust-strip div {
  min-height: 118px;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 24px 42px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line-soft);
}

.trust-strip strong {
  color: var(--ink);
  font-size: 1.03rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section-row {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
  margin: 0 auto;
  padding: 82px 0;
}

.section-copy {
  display: grid;
  gap: 16px;
}

.section-copy.compact {
  max-width: 850px;
  margin-bottom: 28px;
}

.section-copy h2,
.faq-section h2,
.supporters-wall h2,
.page-title,
.account-top h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p {
  max-width: 710px;
  font-size: 1.03rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 5px var(--blue-soft);
}

.system-visual {
  min-height: 290px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  box-shadow: var(--shadow);
}

.system-visual img {
  width: 94px;
  height: 94px;
}

.system-visual > div {
  width: min(78%, 280px);
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.system-visual span {
  height: 10px;
  border-radius: 999px;
  background: #dce4ef;
}

.system-visual span:nth-child(1) {
  width: 100%;
}

.system-visual span:nth-child(2) {
  width: 72%;
}

.system-visual span:nth-child(3) {
  width: 48%;
  background: var(--blue-soft);
}

.install-row,
.notes-row {
  border-top: 1px solid var(--line-soft);
}

.install-card,
.support-panel,
.support-checkout,
.updates-strip,
.unsubscribe-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.install-card {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.then-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.then-row span {
  color: var(--muted);
  font-weight: 750;
}

.then-row code {
  border-radius: 999px;
  background: var(--paper-blue);
  color: var(--ink);
  padding: 6px 9px;
  font-size: 0.78rem;
  line-height: 1.3;
}

.artifact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.artifact-links a {
  border: 1px solid rgba(36, 91, 179, 0.2);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--blue);
  padding: 9px 11px;
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
}

.artifact-links a:hover {
  border-color: rgba(36, 91, 179, 0.42);
  background: var(--blue-soft);
}

.support-row {
  border-top: 1px solid var(--line-soft);
  background: transparent;
}

.support-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.support-panel strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.35;
}

.support-panel a {
  color: var(--blue);
  font-weight: 760;
  overflow-wrap: anywhere;
}

.support-checkout {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: end;
  margin: -34px auto 82px;
  padding: 22px;
}

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

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

.plan-button {
  width: 100%;
}

.checkout-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--muted);
  font-weight: 760;
}

.notes-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.resource-preview {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  gap: 24px;
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  padding: 82px 0;
}

.resource-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.resource-preview-head h2 {
  max-width: 720px;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.resource-preview-head p {
  max-width: 720px;
  margin-top: 12px;
  font-size: 1.03rem;
}

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

.resource-card {
  min-height: 230px;
  display: grid;
  gap: 12px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 22px;
  text-decoration: none;
}

.resource-card:hover {
  border-color: rgba(36, 91, 179, 0.38);
  box-shadow: 0 12px 30px rgba(18, 29, 47, 0.08);
}

.resource-card span {
  justify-self: start;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 800;
}

.resource-card strong {
  font-size: 1.22rem;
  line-height: 1.24;
}

.resource-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.supporters-wall {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  gap: 20px;
  margin: 0 auto 82px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 28px;
}

.supporters-wall-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.supporters-wall h2 {
  color: var(--white);
  font-size: 2rem;
}

.supporters-wall p {
  max-width: 760px;
  margin-top: 8px;
  color: #d7dce5;
}

.supporters-wall-head > strong {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(42px, 42px));
  gap: 9px;
}

.supporter-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: none;
}

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

.supporter-avatar:hover {
  border-color: #ffffff;
}

.supporters-empty {
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 14px 16px;
}

.faq-section {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  gap: 22px;
  margin: 0 auto;
  padding: 0 0 88px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
  padding: 18px 20px;
}

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

.faq-list details p {
  border-top: 1px solid var(--line-soft);
  padding: 0 20px 18px;
}

.section-band {
  padding: 76px 56px;
}

.updates-page-band,
.unsubscribe-band {
  min-height: calc(100vh - 68px);
  align-content: start;
}

.updates-page-band {
  background: var(--paper);
}

.page-title {
  font-size: 3.1rem;
}

.updates-strip {
  max-width: 920px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.updates-strip > div {
  display: grid;
  gap: 8px;
}

.updates-strip strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.resource-main {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  gap: 30px;
  margin: 0 auto;
  padding: 72px 0 86px;
}

.resource-hero {
  display: grid;
  gap: 16px;
  max-width: 880px;
}

.resource-hero h1,
.article-header h1 {
  color: var(--ink);
  font-size: 3.45rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.resource-hero p,
.article-header p {
  max-width: 780px;
  color: var(--ink-soft);
  font-size: 1.15rem;
  line-height: 1.56;
}

.resource-hub-grid {
  margin-top: 8px;
}

.resource-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

.resource-cta h2 {
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.2;
}

.resource-cta p {
  max-width: 760px;
  margin-top: 8px;
}

.resource-article {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 86px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 760;
  text-decoration: none;
}

.resource-article article {
  display: grid;
  gap: 34px;
}

.article-header {
  display: grid;
  gap: 16px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 34px;
}

.operator-path {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.operator-path-copy {
  display: grid;
  gap: 8px;
  max-width: 780px;
}

.operator-path-copy h2 {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.22;
}

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

.operator-path-grid a {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 150px;
  border: 1px solid rgba(36, 91, 179, 0.18);
  border-radius: 8px;
  background: #fbfdff;
  padding: 14px;
  color: var(--ink);
  text-decoration: none;
}

.operator-path-grid a:hover {
  border-color: rgba(36, 91, 179, 0.34);
  background: var(--blue-soft);
}

.operator-path-grid span {
  width: fit-content;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 4px 9px;
  font-size: 0.78rem;
  font-weight: 850;
}

.operator-path-grid strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.operator-path-grid small {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.resource-article section {
  display: grid;
  gap: 16px;
}

.resource-article h2 {
  color: var(--ink);
  font-size: 1.9rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.resource-article p {
  font-size: 1.03rem;
}

.article-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.article-check-list li::marker {
  color: var(--blue);
}

.article-links,
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-links a {
  border: 1px solid rgba(36, 91, 179, 0.22);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--blue);
  padding: 10px 12px;
  font-weight: 760;
  text-decoration: none;
}

.article-links a:hover {
  background: var(--blue-soft);
}

.unsubscribe-panel {
  display: grid;
  gap: 14px;
  max-width: 520px;
  padding: 22px;
}

.site-footer {
  display: grid;
  gap: 20px;
  border-top: 1px solid var(--line-soft);
  background: var(--white);
  color: var(--muted);
  padding: 30px 56px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.footer-main p {
  max-width: 720px;
  text-align: right;
}

.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.site-footer .footer-nav a {
  color: #303b4b;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer .footer-nav a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.account-body {
  min-height: 100vh;
  background: var(--paper);
}

.account-header {
  position: sticky;
  top: 0;
}

.account-shell {
  width: min(1120px, calc(100% - 36px));
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: 56px 0 76px;
}

.account-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.account-top h1 {
  max-width: none;
  font-size: 3rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-panel {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
}

.account-login-panel,
.account-claim-panel {
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  align-items: center;
}

.account-secondary-panel {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.account-panel h2 {
  max-width: none;
  font-size: 1.75rem;
  line-height: 1.12;
}

.account-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.account-login-form,
.account-claim-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.account-login-form .button,
.account-claim-form .button {
  min-width: 180px;
}

.account-summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.account-grid {
  display: grid;
  gap: 14px;
}

.account-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fafb;
  padding: 18px;
}

.account-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.account-card-head p {
  color: var(--muted);
  font-weight: 760;
}

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

.account-facts div {
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
}

.account-facts strong {
  display: block;
  margin-top: 8px;
}

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

.account-card pre {
  padding: 14px;
}

@media (max-width: 1040px) {
  .site-header {
    padding: 0 28px;
  }

  .hero-shell,
  .section-row,
  .support-checkout,
  .resource-card-grid,
  .resource-hub-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 38px;
    padding-top: 62px;
  }

  .status-panel {
    max-width: 720px;
  }

  .trust-strip,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip div:nth-child(odd) {
    border-left: 0;
  }

  .trust-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--line-soft);
  }

  .notes-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .support-checkout {
    margin-top: -46px;
  }

  .account-login-panel,
  .account-claim-panel,
  .account-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: flex-start;
  }

  .hero-shell,
  .section-row,
  .support-checkout,
  .supporters-wall,
  .faq-section,
  .resource-preview,
  .resource-main,
  .resource-article {
    width: min(100% - 32px, 1180px);
  }

  .hero-shell {
    padding: 46px 0 38px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-lede {
    font-size: 1.18rem;
  }

  .hero-actions .button,
  .support-actions .button,
  .notes-row .button,
  .resource-preview-head .button,
  .resource-cta .button {
    width: 100%;
  }

  .quick-install pre,
  .install-card pre,
  .account-card pre,
  .resource-article pre {
    overflow-x: hidden;
    white-space: pre-wrap;
  }

  .quick-install code,
  .install-card code,
  .account-card code,
  .resource-article code {
    overflow-wrap: anywhere;
    font-size: 0.78rem;
    line-height: 1.62;
  }

  .status-body dl,
  .trust-strip,
  .checkout-form,
  .plan-grid,
  .faq-list,
  .updates-strip,
  .operator-path-grid,
  .account-login-form,
  .account-claim-form {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div,
  .trust-strip div:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .trust-strip div {
    min-height: 96px;
    padding: 20px 18px;
  }

  .section-row {
    gap: 28px;
    padding: 58px 0;
  }

  .section-copy h2,
  .faq-section h2,
  .page-title,
  .resource-preview-head h2 {
    font-size: 2.05rem;
  }

  .resource-hero h1,
  .article-header h1 {
    font-size: 2.35rem;
  }

  .resource-preview-head,
  .resource-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .resource-preview,
  .resource-main {
    padding: 58px 0;
  }

  .resource-article {
    padding: 38px 0 58px;
  }

  .system-visual {
    min-height: 230px;
  }

  .support-checkout {
    margin-bottom: 58px;
    padding: 18px;
  }

  .supporters-wall {
    margin-bottom: 58px;
    padding: 22px;
  }

  .supporters-wall-head {
    flex-direction: column;
  }

  .faq-section {
    padding-bottom: 64px;
  }

  .section-band {
    padding: 52px 18px;
  }

  .updates-strip {
    align-items: stretch;
  }

  .updates-strip .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom,
  .account-summary,
  .account-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding: 24px 18px;
  }

  .footer-main p {
    text-align: left;
  }

  .account-shell {
    padding: 38px 0 56px;
  }

  .account-top h1 {
    font-size: 2.3rem;
  }

  .account-panel {
    padding: 20px;
  }

  .account-login-form .button,
  .account-claim-form .button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 3.3rem;
  }

  .section-copy h2,
  .faq-section h2,
  .page-title,
  .resource-preview-head h2 {
    font-size: 1.82rem;
  }

  .resource-hero h1,
  .article-header h1 {
    font-size: 2rem;
  }
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
}

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

.hero-proof {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link {
  width: fit-content;
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link.light {
  color: var(--white);
}

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

.signal-list > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.4fr) minmax(0, 1fr);
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.signal-list strong {
  color: var(--ink);
}

.signal-list span {
  color: var(--muted);
  line-height: 1.5;
}

.workflow-band {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
}

.workflow-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-content: start;
  background: var(--white);
  padding: 24px;
}

.workflow-steps li > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 850;
}

.workflow-steps li div {
  display: grid;
  gap: 8px;
}

.workflow-steps strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.ai-row {
  border-bottom: 1px solid var(--line-soft);
}

.ai-signal-panel {
  display: grid;
  gap: 18px;
  border: 1px solid #2e3c52;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

.ai-signal-panel > p {
  color: #cdd7e5;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ai-signal-panel dl {
  display: grid;
  gap: 0;
}

.ai-signal-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 15px 0;
}

.ai-signal-panel dt {
  color: #aebbd0;
}

.ai-signal-panel dd {
  color: var(--white);
  font-weight: 800;
  text-align: right;
}

.install-banner {
  width: min(1180px, calc(100% - 48px));
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  margin: 0 auto 82px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 34px;
}

.install-banner > div:first-child {
  display: grid;
  gap: 10px;
}

.install-banner .section-kicker,
.install-banner h2 {
  color: var(--white);
}

.install-banner h2 {
  font-size: 2rem;
}

.install-banner p {
  max-width: 720px;
  color: #d2dae6;
}

.install-banner-actions {
  flex: 0 0 auto;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.content-main {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  gap: 54px;
  margin: 0 auto;
  padding: 64px 0 86px;
}

.content-hero {
  max-width: 940px;
  display: grid;
  gap: 18px;
}

.content-hero h1 {
  max-width: 18ch;
  color: var(--ink);
  font-size: 3.65rem;
  line-height: 1.02;
}

.content-hero > p:not(.section-kicker) {
  max-width: 800px;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: start;
}

.content-flow {
  display: grid;
  gap: 42px;
}

.content-flow section {
  display: grid;
  gap: 15px;
}

.content-flow h2 {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.15;
}

.content-flow h3 {
  color: var(--ink);
  font-size: 1.2rem;
}

.content-flow p,
.content-flow li {
  font-size: 1.02rem;
  line-height: 1.65;
}

.content-flow ul,
.content-flow ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.content-aside {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 22px;
}

.content-aside h2 {
  color: var(--ink);
  font-size: 1.25rem;
}

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

.content-aside li {
  border-top: 1px solid var(--line-soft);
  padding-top: 9px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.command-stack {
  display: grid;
  gap: 14px;
}

.command-block {
  display: grid;
  gap: 10px;
}

.command-block > strong {
  color: var(--ink);
}

.callout {
  display: grid;
  gap: 10px;
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
  padding: 18px 20px;
}

.callout.warning {
  border-left-color: var(--amber);
  background: #fff8e8;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.comparison-table th {
  background: var(--paper-blue);
  color: var(--ink);
}

.comparison-table td {
  color: var(--ink-soft);
}

.page-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.release-entry {
  display: grid;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 38px;
}

.release-entry h2 {
  color: var(--ink);
  font-size: 2.25rem;
}

.release-entry ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
}

.support-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: start;
}

.support-page-grid .support-checkout {
  width: auto;
  grid-template-columns: 1fr;
  margin: 0;
}

@media (max-width: 1040px) {
  .workflow-steps,
  .content-grid,
  .support-page-grid {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
  }
}

@media (max-width: 720px) {
  .workflow-inner,
  .install-banner,
  .content-main {
    width: min(100% - 32px, 1180px);
  }

  .workflow-inner,
  .content-main {
    padding: 54px 0;
  }

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

  .workflow-steps li {
    min-height: 0;
  }

  .signal-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ai-signal-panel dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .ai-signal-panel dd {
    text-align: left;
  }

  .install-banner {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 58px;
    padding: 24px;
  }

  .install-banner-actions {
    justify-items: stretch;
  }

  .content-hero h1 {
    font-size: 2.45rem;
  }

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

  .comparison-scroll {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 680px;
  }
}
