@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:wght@500;600;700;800;900&family=Roboto+Condensed:wght@400;500;600;700;800;900&family=Nunito:wght@700;800;900&display=swap');

:root {
  --bg: #130713;
  --panel: #21101d;
  --panel-strong: #321528;
  --line: rgba(255, 148, 91, 0.28);
  --ink: #fff8f5;
  --muted: #ffd2c0;
  --accent: #ff4fa3;
  --accent-2: #ff8a3d;
  --accent-3: #ffd166;
  --danger: #b91c1c;
  --shadow: 0 24px 90px rgba(255, 79, 163, 0.16), 0 20px 70px rgba(0, 0, 0, 0.38);
}

/* Neon.Computer reskin */
:root {
  --bg: #ffffff;
  --panel: #f4f4f4;
  --panel-strong: #ffffff;
  --line: #000000;
  --ink: #000000;
  --muted: #242424;
  --accent: #f66399;
  --accent-2: #55ffff;
  --accent-3: #cdff55;
  --orange: #ff9f00;
  --pink: #f66399;
  --danger: #b91c1c;
  --shadow: 8px 8px 0 #000000;
}

body {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 26px 26px;
  color: var(--ink);
  font-family: "Roboto Condensed", ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #000;
  background:
    radial-gradient(circle, rgba(255, 255, 119, 0.95) 2px, transparent 3px),
    radial-gradient(circle, rgba(85, 255, 255, 0.92) 2px, transparent 3px),
    #f66399;
  background-size: 64px 64px, 92px 92px, auto;
  background-position: 0 0, 34px 28px, 0 0;
  backdrop-filter: none;
}

.brand,
.site-header nav,
.site-footer .brand {
  color: #000;
}

.brand {
  gap: 14px;
  justify-content: center;
  font-family: "Rethink Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.06rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-logo {
  display: inline-block;
  width: 84px;
  height: 70px;
  flex: 0 0 auto;
}

.loop-frame {
  position: relative;
  display: block;
  width: 84px;
  height: 70px;
}

.loop-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
}

.loop-frame img:nth-child(1) { animation: logo-cut1 5s infinite; }
.loop-frame img:nth-child(2) { animation: logo-cut2 5s infinite; }
.loop-frame img:nth-child(3) { animation: logo-cut3 5s infinite; }
.loop-frame img:nth-child(4) { animation: logo-cut4 5s infinite; }
.loop-frame img:nth-child(5) { animation: logo-cut5 5s infinite; }

@keyframes logo-cut1 {
  0%, 19.99% { opacity: 1; }
  20%, 100% { opacity: 0; }
}

@keyframes logo-cut2 {
  0%, 19.99% { opacity: 0; }
  20%, 39.99% { opacity: 1; }
  40%, 100% { opacity: 0; }
}

@keyframes logo-cut3 {
  0%, 39.99% { opacity: 0; }
  40%, 59.99% { opacity: 1; }
  60%, 100% { opacity: 0; }
}

@keyframes logo-cut4 {
  0%, 59.99% { opacity: 0; }
  60%, 79.99% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

@keyframes logo-cut5 {
  0%, 79.99% { opacity: 0; }
  80%, 100% { opacity: 1; }
}

.brand-mark {
  border: 1px solid #000;
  border-radius: 0;
  background: #55ffff;
  color: #000;
  box-shadow: 4px 4px 0 #000;
}

.site-header nav {
  gap: 0;
  justify-content: center;
  border: 1px solid #000;
  background: #55ffff;
}

.site-header nav a,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  color: #000;
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
}

.site-header nav a + a {
  border-left: 1px solid #000;
}

.site-header nav a:hover,
.text-link:hover {
  background: #cdff55;
  color: #000;
}

.hero,
.section {
  background: transparent;
}

.hero {
  min-height: auto;
  border-bottom: 1px solid #000;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(135deg, #ff9f00 0 12px, #f66399 12px 24px, #55ffff 24px 36px, #cdff55 36px 48px);
}

.hero::after {
  display: none;
}

.docs-hero {
  background:
    linear-gradient(90deg, rgba(246, 99, 153, 0.92) 0%, rgba(246, 99, 153, 0.78) 45%, rgba(255, 255, 255, 0.5) 100%),
    url('decay-fixer-docs-header.png') center / cover no-repeat;
}

.hero-panel,
.card,
.policy-hero,
.policy-section,
.docs-toc,
.support-expectations,
.detail-grid div,
.message-box,
.admin-panel-details,
.ops-checklist span {
  border: 1px solid #000;
  border-radius: 0;
  background: #ffffff;
  color: #000;
  box-shadow: 6px 6px 0 #000;
}

.hero-panel div {
  border-bottom: 1px solid #000;
}

.hero-panel span,
p,
.lede,
.docs-guide-section p,
.docs-guide-section li,
.docs-definition-grid span,
.docs-faq-list p,
.ticket-row span,
.ticket-row small,
.admin-subtitle,
.admin-metrics .card span,
.site-footer,
.site-footer a,
.footer-bottom,
.form-note,
.checkbox-row,
.policy-updated {
  color: #242424;
}

.eyebrow,
.status-pill,
.license-plan,
.license-status {
  border: 1px solid #000;
  border-radius: 0;
  background: #55ffff;
  color: #000;
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 10px 14px;
}

h1,
h2,
h3,
h4,
.policy-title,
.policy-heading,
.support-hero-title,
.admin-header h1,
.admin-section-heading h2,
.login-card h1 {
  color: #000;
  font-family: "Rethink Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.button {
  border: 1px solid #000;
  border-radius: 0;
  color: #000;
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000;
}

.button.primary {
  border-color: #000;
  background: #f66399;
  color: #000;
  box-shadow: 4px 4px 0 #000;
}

.button.secondary {
  background: #55ffff;
  color: #000;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

input,
select,
textarea {
  border: 1px solid #000;
  border-radius: 0;
  background: #ffffff;
  color: #000;
}

.section {
  border-top: 1px solid #000;
}

.product-card--decay,
.docs-product-card,
.docs-feature-card {
  background: #ededed;
}

.product-card--decay:hover,
.ticket-row:hover,
.ticket-row.is-active {
  border-color: #000;
  background: #cdff55;
}

.product-card--empty,
.docs-product-card--empty {
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0 8px, transparent 8px 16px),
    #ffffff;
  opacity: 1;
}

.docs-callout,
.docs-definition-grid div,
.docs-faq-list div {
  border: 1px solid #000;
  border-radius: 0;
  background: #ffef7a;
  color: #000;
}

.alert {
  border: 1px solid #000;
  border-radius: 0;
  background: #ffb0b0;
  color: #000;
}

.notice-good,
.status-pill.is-good,
.license-status--active {
  border: 1px solid #000;
  border-radius: 0;
  background: #cdff55;
  color: #000;
}

.status-pill.is-warning {
  background: #ff9f00;
  color: #000;
}

.site-footer {
  border-top: 1px solid #000;
  background:
    radial-gradient(circle, rgba(255, 255, 119, 0.95) 2px, transparent 3px),
    radial-gradient(circle, rgba(85, 255, 255, 0.92) 2px, transparent 3px),
    #f66399;
  background-size: 64px 64px, 92px 92px, auto;
}

.footer-column h3,
.site-footer a:hover {
  color: #000;
}

.footer-bottom {
  border-top: 1px solid #000;
}

code {
  color: #000;
  background: #55ffff;
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .site-header nav a + a {
    border-left: 0;
  }

  .site-header nav a {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 79, 163, 0.2), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(255, 138, 61, 0.18), transparent 30%),
    linear-gradient(180deg, #1a0718 0%, var(--bg) 45%, #0b0610 100%);
  color: var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.simple-page,
.admin-shell,
.policy-page {
  min-height: 100vh;
  padding: clamp(28px, 5vw, 72px);
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(19, 7, 19, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2) 64%, var(--accent-3));
  color: #220313;
  box-shadow: 0 0 28px rgba(255, 79, 163, 0.48);
}

.site-header nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a,
.text-link {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.hero,
.section {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  min-height: 620px;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 138, 61, 0.28), transparent 32%),
    radial-gradient(circle at 38% 74%, rgba(255, 79, 163, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(36, 8, 30, 0.96) 0%, rgba(19, 7, 19, 0.72) 100%);
  position: relative;
  overflow: hidden;
}

.docs-hero {
  background:
    linear-gradient(90deg, rgba(10, 2, 15, 0.96) 0%, rgba(10, 2, 15, 0.84) 44%, rgba(10, 2, 15, 0.46) 100%),
    url('decay-fixer-docs-header.png') center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.docs-hero .hero-panel {
  background: rgba(14, 5, 17, 0.78);
  backdrop-filter: blur(14px);
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -12% -32% 38%;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.28), transparent 62%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-3);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
}

.support-hero-title {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.05;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.lede {
  max-width: 680px;
  color: #ffe7dc;
  font-size: 1.25rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.actions--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 32px rgba(255, 79, 163, 0.32);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.button.danger {
  border-color: rgba(185, 28, 28, 0.75);
  background: rgba(185, 28, 28, 0.18);
  color: #fecaca;
}

.button.danger:hover {
  background: rgba(185, 28, 28, 0.28);
}

.button-small {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.82rem;
}

.hero-panel,
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(33, 16, 29, 0.88);
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.hero-panel div {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-bottom: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 6px;
}

.hero-panel span {
  color: var(--muted);
}

.section {
  border-top: 1px solid rgba(255, 148, 91, 0.16);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 32px;
  text-align: center;
}

.policy-topbar {
  position: static;
}

.policy-page {
  display: grid;
  gap: 22px;
  max-width: 1040px;
  min-height: auto;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 40px);
}

.policy-hero,
.policy-section {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(33, 16, 29, 0.88);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.policy-title {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.02;
}

.policy-heading {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.16;
}

.policy-section p,
.policy-hero .lede {
  max-width: 790px;
  font-size: 1.03rem;
}

.policy-updated {
  color: rgba(255, 210, 192, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.product-grid,
.policy-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.policy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.docs-product-grid,
.docs-topic-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.docs-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.docs-topic-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  min-height: 230px;
  color: inherit;
  text-decoration: none;
}

.product-card--decay {
  background:
    linear-gradient(145deg, rgba(255, 79, 163, 0.16), rgba(255, 138, 61, 0.1)),
    rgba(33, 16, 29, 0.92);
}

.product-card--decay:hover {
  border-color: rgba(255, 210, 192, 0.5);
  transform: translateY(-2px);
}

.product-card--empty {
  border-style: dashed;
  background: rgba(33, 16, 29, 0.36);
  box-shadow: none;
  opacity: 0.5;
}

.docs-feature-card,
.docs-product-card,
.docs-topic-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.docs-feature-card .button {
  justify-self: start;
  margin-top: 4px;
}

.docs-project-section {
  padding-top: 40px;
}

.docs-product-card {
  min-height: 240px;
  color: inherit;
  text-decoration: none;
}

.docs-product-card--empty {
  border-style: dashed;
  opacity: 0.7;
}

.docs-topic-card h3,
.docs-product-card h3,
.docs-feature-card h3 {
  margin-bottom: 0;
}

.docs-manual {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.docs-toc {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 210, 192, 0.14);
  border-radius: 16px;
  background: rgba(33, 16, 29, 0.74);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.24);
}

.docs-toc h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.docs-toc a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
}

.docs-toc a:hover {
  color: var(--ink);
}

.docs-content {
  display: grid;
  gap: 20px;
}

.docs-guide-section {
  scroll-margin-top: 18px;
}

.docs-guide-section h3 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.docs-guide-section h4 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.docs-guide-section p,
.docs-guide-section li,
.docs-definition-grid span,
.docs-faq-list p {
  color: var(--muted);
}

.docs-steps,
.docs-list {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.docs-steps li::marker {
  color: var(--orange);
  font-weight: 900;
}

.docs-list li::marker {
  color: var(--pink);
}

.docs-callout {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 138, 61, 0.28);
  border-radius: 12px;
  background: rgba(255, 138, 61, 0.08);
  color: var(--muted);
}

.docs-callout strong {
  color: var(--ink);
}

.docs-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.docs-definition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.docs-definition-grid--wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.docs-definition-grid div,
.docs-faq-list div {
  padding: 16px;
  border: 1px solid rgba(255, 210, 192, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.docs-definition-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.docs-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.docs-faq-list h4 {
  margin-top: 0;
}

.card {
  padding: 24px;
}

.status-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 79, 163, 0.16);
  color: #ffd1e7;
  font-size: 0.78rem;
  font-weight: 900;
}

.status-pill.is-good {
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
}

.status-pill.is-warning {
  background: rgba(255, 138, 61, 0.18);
  color: #fed7aa;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.form-card {
  display: grid;
  gap: 16px;
}

.compact-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.compact-form .button {
  width: fit-content;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

label span {
  font-size: 0.82rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 210, 192, 0.28);
  border-radius: 7px;
  background: #160914;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.form-note a {
  color: var(--ink);
  font-weight: 800;
}

.saved-replies {
  display: grid;
  gap: 8px;
}

.saved-replies > span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.saved-replies > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.support-expectations {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 210, 192, 0.16);
  border-radius: 8px;
  background: rgba(33, 16, 29, 0.52);
}

.support-expectations h3 {
  margin-bottom: 8px;
}

.support-expectations p:last-child {
  margin-bottom: 0;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.danger-zone {
  border-color: rgba(185, 28, 28, 0.42);
  background: rgba(185, 28, 28, 0.08);
}

.danger-zone .actions {
  margin-top: 12px;
}

.result-card,
.login-card {
  max-width: 720px;
  margin: 8vh auto 0;
}

.login-card h1 {
  max-width: 100%;
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.admin-password-fallback {
  margin-top: 10px;
  color: var(--muted);
}

.admin-password-fallback summary {
  cursor: pointer;
  font-weight: 800;
}

.admin-password-fallback .form-card {
  margin-top: 14px;
}

.inline-admin-form {
  margin: 10px 0 18px;
}

.alert {
  padding: 12px 14px;
  border: 1px solid rgba(185, 28, 28, 0.48);
  border-radius: 8px;
  background: rgba(185, 28, 28, 0.14);
  color: #fecaca;
}

.notice-good {
  padding: 12px 14px;
  border: 1px solid rgba(34, 197, 94, 0.38);
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

.admin-header,
.admin-metrics,
.admin-layout,
.admin-section-heading {
  max-width: 1380px;
  margin-inline: auto;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-header h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.admin-subtitle {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.admin-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-header-actions form {
  margin: 0;
}

.admin-header-actions .button {
  min-height: 38px;
  padding: 8px 12px;
}

.admin-section-heading {
  margin-top: 30px;
  margin-bottom: 12px;
}

.admin-section-heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.admin-metrics .card {
  padding: 18px;
}

.admin-metrics .card strong,
.admin-metrics .card span {
  display: block;
}

.admin-metrics .card strong {
  font-size: 2rem;
  line-height: 1;
}

.admin-metrics .card span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-layout--licenses {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.34fr);
  margin-top: 0;
}

.create-license-panel {
  margin-top: 14px;
}

.ticket-list {
  display: grid;
  gap: 12px;
}

.ticket-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ticket-list-head h2 {
  margin: 0;
  font-size: 1.3rem;
}

.ticket-row {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 210, 192, 0.2);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
}

.ticket-row:hover,
.ticket-row.is-active {
  border-color: var(--accent-2);
  background: rgba(255, 138, 61, 0.1);
}

.ticket-row span,
.ticket-row small {
  color: var(--muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.detail-grid div,
.message-box {
  padding: 14px;
  border: 1px solid rgba(255, 210, 192, 0.18);
  border-radius: 8px;
  background: rgba(22, 9, 20, 0.68);
}

.detail-grid dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-grid dd {
  margin: 4px 0 0;
}

.message-box {
  margin: 18px 0;
}

.message-box h3 {
  margin-bottom: 8px;
}

.support-snapshot-box pre {
  max-height: 340px;
  margin: 0;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.85rem;
  line-height: 1.45;
}

.admin-panel-details {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 210, 192, 0.18);
  border-radius: 8px;
  background: rgba(22, 9, 20, 0.5);
}

.admin-panel-details summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.admin-panel-details .form-card {
  margin-top: 14px;
}

.ops-checklist {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
}

.ops-checklist span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 210, 192, 0.16);
  border-radius: 8px;
  background: rgba(22, 9, 20, 0.68);
  color: var(--muted);
  font-weight: 800;
}

.ops-checklist span::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #f59e0b;
  flex: 0 0 auto;
}

.ops-checklist .is-ready::before {
  background: #22c55e;
}

.ops-checklist .is-missing::before {
  background: #ef4444;
}

.license-table-wrap {
  overflow-x: auto;
}

.license-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
}

.license-table th,
.license-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 210, 192, 0.18);
  text-align: left;
  vertical-align: top;
}

.license-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.license-table tbody tr:hover {
  background: rgba(255, 138, 61, 0.08);
}

.license-plan,
.license-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 210, 192, 0.08);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.license-status--active {
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
}

.license-status--past_due,
.license-status--canceled,
.license-status--inactive {
  background: rgba(239, 68, 68, 0.14);
  color: #fecaca;
}

code {
  color: #ffd1e7;
}

.site-footer {
  padding: 44px clamp(20px, 5vw, 72px) 28px;
  border-top: 1px solid rgba(255, 148, 91, 0.18);
  background:
    linear-gradient(180deg, rgba(19, 7, 19, 0.78), rgba(10, 4, 12, 0.96)),
    radial-gradient(circle at 82% 15%, rgba(255, 138, 61, 0.16), transparent 32%);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(150px, 0.34fr) minmax(180px, 0.34fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.footer-brand {
  max-width: 460px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 210, 192, 0.12);
  color: rgba(255, 210, 192, 0.78);
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .split,
  .admin-layout,
  .admin-metrics,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .section,
  .simple-page,
  .admin-shell,
  .policy-page {
    padding-inline: 20px;
  }

  h1 {
    max-width: 100%;
    font-size: 3.35rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .support-hero-title {
    font-size: 3rem;
  }

  .lede {
    font-size: 1.12rem;
  }

  .footer-inner,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .policy-title {
    font-size: 2.35rem;
  }

  .policy-heading {
    font-size: 1.45rem;
  }

  .result-card,
  .login-card {
    margin-top: 0;
  }

  .product-grid,
  .policy-grid,
  .docs-product-grid,
  .docs-topic-grid,
  .docs-manual,
  .docs-definition-grid,
  .docs-definition-grid--wide {
    grid-template-columns: 1fr;
  }

  .docs-toc {
    position: static;
  }
}

@media (max-width: 480px) {
  .site-header nav {
    gap: 14px 18px;
  }

  h1,
  .support-hero-title,
  .policy-title {
    font-size: 2.75rem;
  }

  .policy-heading {
    font-size: 1.35rem;
  }

  .button {
    width: 100%;
  }
}

/* Final Neon.Computer skin overrides: keep this block last. */
body {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 26px 26px;
  color: #000;
  font-family: "Roboto Condensed", ui-sans-serif, system-ui, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #000;
  background:
    radial-gradient(circle, rgba(255, 255, 119, 0.95) 2px, transparent 3px),
    radial-gradient(circle, rgba(85, 255, 255, 0.92) 2px, transparent 3px),
    #f66399;
  background-size: 64px 64px, 92px 92px, auto;
  background-position: 0 0, 34px 28px, 0 0;
  backdrop-filter: none;
}

.brand,
.site-header nav,
.site-footer .brand {
  color: #000;
}

.brand {
  gap: 14px;
  font-family: "Rethink Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.06rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-logo,
.loop-frame {
  display: inline-block;
  width: 84px;
  height: 70px;
  flex: 0 0 auto;
}

.loop-frame {
  position: relative;
}

.loop-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
}

.brand-mark {
  border: 1px solid #000;
  border-radius: 0;
  background: #55ffff;
  color: #000;
  box-shadow: 4px 4px 0 #000;
}

.site-header nav {
  gap: 0;
  border: 1px solid #000;
  background: #55ffff;
}

.site-header nav a,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  color: #000;
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
}

.site-header nav a + a {
  border-left: 1px solid #000;
}

.site-header nav a:hover,
.text-link:hover {
  background: #cdff55;
  color: #000;
}

.hero {
  min-height: auto;
  border-bottom: 1px solid #000;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(135deg, #ff9f00 0 12px, #f66399 12px 24px, #55ffff 24px 36px, #cdff55 36px 48px);
}

.hero::after {
  display: none;
}

.docs-hero {
  background:
    linear-gradient(90deg, rgba(246, 99, 153, 0.92) 0%, rgba(246, 99, 153, 0.78) 45%, rgba(255, 255, 255, 0.5) 100%),
    url('decay-fixer-docs-header.png') center / cover no-repeat;
}

.hero-panel,
.card,
.policy-hero,
.policy-section,
.docs-toc,
.support-expectations,
.detail-grid div,
.message-box,
.admin-panel-details,
.ops-checklist span {
  border: 1px solid #000;
  border-radius: 0;
  background: #ffffff;
  color: #000;
  box-shadow: 6px 6px 0 #000;
}

.hero-panel div {
  border-bottom: 1px solid #000;
}

.hero-panel span,
p,
.lede,
.docs-guide-section p,
.docs-guide-section li,
.docs-definition-grid span,
.docs-faq-list p,
.ticket-row span,
.ticket-row small,
.admin-subtitle,
.admin-metrics .card span,
.site-footer,
.site-footer a,
.footer-bottom,
.form-note,
.checkbox-row,
.policy-updated {
  color: #242424;
}

.eyebrow,
.status-pill,
.license-plan,
.license-status {
  border: 1px solid #000;
  border-radius: 0;
  background: #cdff55;
  color: #000;
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
.policy-title,
.policy-heading,
.support-hero-title,
.admin-header h1,
.admin-section-heading h2,
.login-card h1 {
  color: #000;
  font-family: "Rethink Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.button {
  border: 1px solid #000;
  border-radius: 0;
  color: #000;
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000;
}

.button.primary {
  border-color: #000;
  background: #f66399;
  color: #000;
  box-shadow: 4px 4px 0 #000;
}

.button.secondary {
  background: #55ffff;
  color: #000;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

input,
select,
textarea {
  border: 1px solid #000;
  border-radius: 0;
  background: #ffffff;
  color: #000;
}

.section {
  border-top: 1px solid #000;
  background: transparent;
}

.product-card--decay,
.docs-product-card,
.docs-feature-card {
  background: #ededed;
}

.product-card--decay:hover,
.ticket-row:hover,
.ticket-row.is-active {
  border-color: #000;
  background: #cdff55;
}

.product-card--empty,
.docs-product-card--empty {
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0 8px, transparent 8px 16px),
    #ffffff;
  opacity: 1;
}

.docs-callout,
.docs-definition-grid div,
.docs-faq-list div {
  border: 1px solid #000;
  border-radius: 0;
  background: #ffef7a;
  color: #000;
}

.alert {
  border: 1px solid #000;
  border-radius: 0;
  background: #ffb0b0;
  color: #000;
}

.notice-good,
.status-pill.is-good,
.license-status--active {
  border: 1px solid #000;
  border-radius: 0;
  background: #cdff55;
  color: #000;
}

.status-pill.is-warning {
  background: #ff9f00;
  color: #000;
}

.site-footer {
  border-top: 1px solid #000;
  background:
    radial-gradient(circle, rgba(255, 255, 119, 0.95) 2px, transparent 3px),
    radial-gradient(circle, rgba(85, 255, 255, 0.92) 2px, transparent 3px),
    #f66399;
  background-size: 64px 64px, 92px 92px, auto;
}

.footer-column h3,
.site-footer a:hover {
  color: #000;
}

.footer-bottom {
  border-top: 1px solid #000;
}

code {
  color: #000;
  background: #55ffff;
}

@media (max-width: 820px) {
  .site-header nav a + a {
    border-left: 0;
  }

  .site-header nav a {
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
  }
}
/* Match neon.computer header background exactly. */
.site-header,
.site-footer {
  background-color: #F66399;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='919' height='459.5' viewBox='0 0 1600 800'%3E%3Cpath fill='%23FF7' d='M1102.5 734.8c2.5-1.2 24.8-8.6 25.6-7.5.5.7-3.9 23.8-4.6 24.5C1123.3 752.1 1107.5 739.5 1102.5 734.8zM1226.3 229.1c0-.1-4.9-9.4-7-14.2-.1-.3-.3-1.1-.4-1.6-.1-.4-.3-.7-.6-.9-.3-.2-.6-.1-.8.1l-13.1 12.3c0 0 0 0 0 0-.2.2-.3.5-.4.8 0 .3 0 .7.2 1 .1.1 1.4 2.5 2.1 3.6 2.4 3.7 6.5 12.1 6.5 12.2.2.3.4.5.7.6.3 0 .5-.1.7-.3 0 0 1.8-2.5 2.7-3.6 1.5-1.6 3-3.2 4.6-4.7 1.2-1.2 1.6-1.4 2.1-1.6.5-.3 1.1-.5 2.5-1.9C1226.5 230.4 1226.6 229.6 1226.3 229.1zM33 770.3C33 770.3 33 770.3 33 770.3c0-.7-.5-1.2-1.2-1.2-.1 0-.3 0-.4.1-1.6.2-14.3.1-22.2 0-.3 0-.6.1-.9.4-.2.2-.4.5-.4.9 0 .2 0 4.9.1 5.9l.4 13.6c0 .3.2.6.4.9.2.2.5.3.8.3 0 0 .1 0 .1 0 7.3-.7 14.7-.9 22-.6.3 0 .7-.1.9-.3.2-.2.4-.6.4-.9C32.9 783.3 32.9 776.2 33 770.3z'/%3E%3Cpath fill='%235ff' d='M171.1 383.4c1.3-2.5 14.3-22 15.6-21.6.8.3 11.5 21.2 11.5 22.1C198.1 384.2 177.9 384 171.1 383.4zM596.4 711.8c-.1-.1-6.7-8.2-9.7-12.5-.2-.3-.5-1-.7-1.5-.2-.4-.4-.7-.7-.8-.3-.1-.6 0-.8.3L574 712c0 0 0 0 0 0-.2.2-.2.5-.2.9 0 .3.2.7.4.9.1.1 1.8 2.2 2.8 3.1 3.1 3.1 8.8 10.5 8.9 10.6.2.3.5.4.8.4.3 0 .5-.2.6-.5 0 0 1.2-2.8 2-4.1 1.1-1.9 2.3-3.7 3.5-5.5.9-1.4 1.3-1.7 1.7-2 .5-.4 1-.7 2.1-2.4C596.9 713.1 596.8 712.3 596.4 711.8zM727.5 179.9C727.5 179.9 727.5 179.9 727.5 179.9c.6.2 1.3-.2 1.4-.8 0-.1 0-.2 0-.4.2-1.4 2.8-12.6 4.5-19.5.1-.3 0-.6-.2-.8-.2-.3-.5-.4-.8-.5-.2 0-4.7-1.1-5.7-1.3l-13.4-2.7c-.3-.1-.7 0-.9.2-.2.2-.4.4-.5.6 0 0 0 .1 0 .1-.8 6.5-2.2 13.1-3.9 19.4-.1.3 0 .6.2.9.2.3.5.4.8.5C714.8 176.9 721.7 178.5 727.5 179.9zM728.5 178.1c-.1-.1-.2-.2-.4-.2C728.3 177.9 728.4 178 728.5 178.1z'/%3E%3Cg fill='%23FFF'%3E%3Cpath d='M699.6 472.7c-1.5 0-2.8-.8-3.5-2.3-.8-1.9 0-4.2 1.9-5 3.7-1.6 6.8-4.7 8.4-8.5 1.6-3.8 1.7-8.1.2-11.9-.3-.9-.8-1.8-1.2-2.8-.8-1.7-1.8-3.7-2.3-5.9-.9-4.1-.2-8.6 2-12.8 1.7-3.1 4.1-6.1 7.6-9.1 1.6-1.4 4-1.2 5.3.4 1.4 1.6 1.2 4-.4 5.3-2.8 2.5-4.7 4.7-5.9 7-1.4 2.6-1.9 5.3-1.3 7.6.3 1.4 1 2.8 1.7 4.3.5 1.1 1 2.2 1.5 3.3 2.1 5.6 2 12-.3 17.6-2.3 5.5-6.8 10.1-12.3 12.5C700.6 472.6 700.1 472.7 699.6 472.7zM740.4 421.4c1.5-.2 3 .5 3.8 1.9 1.1 1.8.4 4.2-1.4 5.3-3.7 2.1-6.4 5.6-7.6 9.5-1.2 4-.8 8.4 1.1 12.1.4.9 1 1.7 1.6 2.7 1 1.7 2.2 3.5 3 5.7 1.4 4 1.2 8.7-.6 13.2-1.4 3.4-3.5 6.6-6.8 10.1-1.5 1.6-3.9 1.7-5.5.2-1.6-1.4-1.7-3.9-.2-5.4 2.6-2.8 4.3-5.3 5.3-7.7 1.1-2.8 1.3-5.6.5-7.9-.5-1.3-1.3-2.7-2.2-4.1-.6-1-1.3-2.1-1.9-3.2-2.8-5.4-3.4-11.9-1.7-17.8 1.8-5.9 5.8-11 11.2-14C739.4 421.6 739.9 421.4 740.4 421.4zM261.3 590.9c5.7 6.8 9 15.7 9.4 22.4.5 7.3-2.4 16.4-10.2 20.4-3 1.5-6.7 2.2-11.2 2.2-7.9-.1-12.9-2.9-15.4-8.4-2.1-4.7-2.3-11.4 1.8-15.9 3.2-3.5 7.8-4.1 11.2-1.6 1.2.9 1.5 2.7.6 3.9-.9 1.2-2.7 1.5-3.9.6-1.8-1.3-3.6.6-3.8.8-2.4 2.6-2.1 7-.8 9.9 1.5 3.4 4.7 5 10.4 5.1 3.6 0 6.4-.5 8.6-1.6 4.7-2.4 7.7-8.6 7.2-15-.5-7.3-5.3-18.2-13-23.9-4.2-3.1-8.5-4.1-12.9-3.1-3.1.7-6.2 2.4-9.7 5-6.6 5.1-11.7 11.8-14.2 19-2.7 7.7-2.1 15.8 1.9 23.9.7 1.4.1 3.1-1.3 3.7-1.4.7-3.1.1-3.7-1.3-4.6-9.4-5.4-19.2-2.2-28.2 2.9-8.2 8.6-15.9 16.1-21.6 4.1-3.1 8-5.1 11.8-6 6-1.4 12 0 17.5 4C257.6 586.9 259.6 588.8 261.3 590.9z'/%3E%3Ccircle cx='1013.7' cy='153.9' r='7.1'/%3E%3Ccircle cx='1024.3' cy='132.1' r='7.1'/%3E%3Ccircle cx='1037.3' cy='148.9' r='7.1'/%3E%3Cpath d='M1508.7 297.2c-4.8-5.4-9.7-10.8-14.8-16.2 5.6-5.6 11.1-11.5 15.6-18.2 1.2-1.7.7-4.1-1-5.2-1.7-1.2-4.1-.7-5.2 1-4.2 6.2-9.1 11.6-14.5 16.9-4.8-5-9.7-10-14.7-14.9-1.5-1.5-3.9-1.5-5.3 0-1.5 1.5-1.5 3.9 0 5.3 4.9 4.8 9.7 9.8 14.5 14.8-1.1 1.1-2.3 2.2-3.5 3.2-4.1 3.8-8.4 7.8-12.4 12-1.4 1.5-1.4 3.8 0 5.3 0 0 0 0 0 0 1.5 1.4 3.9 1.4 5.3-.1 3.9-4 8.1-7.9 12.1-11.7 1.2-1.1 2.3-2.2 3.5-3.3 4.9 5.3 9.8 10.6 14.6 15.9.1.1.1.1.2.2 1.4 1.4 3.7 1.5 5.2.2C1510 301.2 1510.1 298.8 1508.7 297.2zM327.6 248.6l-.4-2.6c-1.5-11.1-2.2-23.2-2.3-37 0-5.5 0-11.5.2-18.5 0-.7 0-1.5 0-2.3 0-5 0-11.2 3.9-13.5 2.2-1.3 5.1-1 8.5.9 5.7 3.1 13.2 8.7 17.5 14.9 5.5 7.8 7.3 16.9 5 25.7-3.2 12.3-15 31-30 32.1L327.6 248.6zM332.1 179.2c-.2 0-.3 0-.4.1-.1.1-.7.5-1.1 2.7-.3 1.9-.3 4.2-.3 6.3 0 .8 0 1.7 0 2.4-.2 6.9-.2 12.8-.2 18.3.1 12.5.7 23.5 2 33.7 11-2.7 20.4-18.1 23-27.8 1.9-7.2.4-14.8-4.2-21.3l0 0C347 188.1 340 183 335 180.3 333.6 179.5 332.6 179.2 332.1 179.2zM516.3 60.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C517.3 60.4 516.8 60.8 516.3 60.8zM506.1 70.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C506.4 70.5 506.2 70.5 506.1 70.5zM494.1 64.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C494.7 64.3 494.4 64.4 494.1 64.4zM500.5 55.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C500.9 55.3 500.7 55.3 500.5 55.3zM506.7 55c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C507.4 54.8 507.1 55 506.7 55zM1029.3 382.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C1030.3 382.4 1029.8 382.8 1029.3 382.8zM1019.1 392.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C1019.4 392.5 1019.2 392.5 1019.1 392.5zM1007.1 386.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C1007.7 386.3 1007.4 386.4 1007.1 386.4zM1013.5 377.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C1013.9 377.3 1013.7 377.3 1013.5 377.3zM1019.7 377c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C1020.4 376.8 1020.1 377 1019.7 377zM1329.7 573.4c-1.4 0-2.9-.2-4.5-.7-8.4-2.7-16.6-12.7-18.7-20-.4-1.4-.7-2.9-.9-4.4-8.1 3.3-15.5 10.6-15.4 21 0 1.5-1.2 2.7-2.7 2.8 0 0 0 0 0 0-1.5 0-2.7-1.2-2.7-2.7-.1-6.7 2.4-12.9 7-18 3.6-4 8.4-7.1 13.7-8.8.5-6.5 3.1-12.9 7.4-17.4 7-7.4 18.2-8.9 27.3-10.1l.7-.1c1.5-.2 2.9.9 3.1 2.3.2 1.5-.9 2.9-2.3 3.1l-.7.1c-8.6 1.2-18.4 2.5-24 8.4-3 3.2-5 7.7-5.7 12.4 7.9-1 17.7 1.3 24.3 5.7 4.3 2.9 7.1 7.8 7.2 12.7.2 4.3-1.7 8.3-5.2 11.1C1335.2 572.4 1332.6 573.4 1329.7 573.4zM1311 546.7c.1 1.5.4 3 .8 4.4 1.7 5.8 8.7 14.2 15.1 16.3 2.8.9 5.1.5 7.2-1.1 2.7-2.1 3.2-4.8 3.1-6.6-.1-3.2-2-6.4-4.8-8.3C1326.7 547.5 1317.7 545.6 1311 546.7z'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: auto;
  background-position: 0 0;
}

/* Support header/logo tune-up. */
.site-header {
  gap: 16px;
  padding-block: 22px 18px;
}

.site-header .brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 0.95;
  text-align: center;
}

.site-header .brand-logo,
.site-header .loop-frame {
  width: clamp(118px, 18vw, 170px);
  height: clamp(98px, 15vw, 142px);
}

.site-header nav {
  margin-top: 0;
}

.site-header nav {
  gap: 10px;
  border: 0;
  background: transparent;
}

.site-header nav a,
.site-header nav a + a {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid #000;
  background: #55ffff;
  box-shadow: 4px 4px 0 #000;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  transform: translate(2px, 2px);
  background: #cdff55;
  box-shadow: 2px 2px 0 #000;
}

.hero {
  background-color: #F66399;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='919' height='459.5' viewBox='0 0 1600 800'%3E%3Cpath fill='%23FF7' d='M1102.5 734.8c2.5-1.2 24.8-8.6 25.6-7.5.5.7-3.9 23.8-4.6 24.5C1123.3 752.1 1107.5 739.5 1102.5 734.8zM1226.3 229.1c0-.1-4.9-9.4-7-14.2-.1-.3-.3-1.1-.4-1.6-.1-.4-.3-.7-.6-.9-.3-.2-.6-.1-.8.1l-13.1 12.3c0 0 0 0 0 0-.2.2-.3.5-.4.8 0 .3 0 .7.2 1 .1.1 1.4 2.5 2.1 3.6 2.4 3.7 6.5 12.1 6.5 12.2.2.3.4.5.7.6.3 0 .5-.1.7-.3 0 0 1.8-2.5 2.7-3.6 1.5-1.6 3-3.2 4.6-4.7 1.2-1.2 1.6-1.4 2.1-1.6.5-.3 1.1-.5 2.5-1.9C1226.5 230.4 1226.6 229.6 1226.3 229.1zM33 770.3C33 770.3 33 770.3 33 770.3c0-.7-.5-1.2-1.2-1.2-.1 0-.3 0-.4.1-1.6.2-14.3.1-22.2 0-.3 0-.6.1-.9.4-.2.2-.4.5-.4.9 0 .2 0 4.9.1 5.9l.4 13.6c0 .3.2.6.4.9.2.2.5.3.8.3 0 0 .1 0 .1 0 7.3-.7 14.7-.9 22-.6.3 0 .7-.1.9-.3.2-.2.4-.6.4-.9C32.9 783.3 32.9 776.2 33 770.3z'/%3E%3Cpath fill='%235ff' d='M171.1 383.4c1.3-2.5 14.3-22 15.6-21.6.8.3 11.5 21.2 11.5 22.1C198.1 384.2 177.9 384 171.1 383.4zM596.4 711.8c-.1-.1-6.7-8.2-9.7-12.5-.2-.3-.5-1-.7-1.5-.2-.4-.4-.7-.7-.8-.3-.1-.6 0-.8.3L574 712c0 0 0 0 0 0-.2.2-.2.5-.2.9 0 .3.2.7.4.9.1.1 1.8 2.2 2.8 3.1 3.1 3.1 8.8 10.5 8.9 10.6.2.3.5.4.8.4.3 0 .5-.2.6-.5 0 0 1.2-2.8 2-4.1 1.1-1.9 2.3-3.7 3.5-5.5.9-1.4 1.3-1.7 1.7-2 .5-.4 1-.7 2.1-2.4C596.9 713.1 596.8 712.3 596.4 711.8zM727.5 179.9C727.5 179.9 727.5 179.9 727.5 179.9c.6.2 1.3-.2 1.4-.8 0-.1 0-.2 0-.4.2-1.4 2.8-12.6 4.5-19.5.1-.3 0-.6-.2-.8-.2-.3-.5-.4-.8-.5-.2 0-4.7-1.1-5.7-1.3l-13.4-2.7c-.3-.1-.7 0-.9.2-.2.2-.4.4-.5.6 0 0 0 .1 0 .1-.8 6.5-2.2 13.1-3.9 19.4-.1.3 0 .6.2.9.2.3.5.4.8.5C714.8 176.9 721.7 178.5 727.5 179.9zM728.5 178.1c-.1-.1-.2-.2-.4-.2C728.3 177.9 728.4 178 728.5 178.1z'/%3E%3Cg fill='%23FFF'%3E%3Cpath d='M699.6 472.7c-1.5 0-2.8-.8-3.5-2.3-.8-1.9 0-4.2 1.9-5 3.7-1.6 6.8-4.7 8.4-8.5 1.6-3.8 1.7-8.1.2-11.9-.3-.9-.8-1.8-1.2-2.8-.8-1.7-1.8-3.7-2.3-5.9-.9-4.1-.2-8.6 2-12.8 1.7-3.1 4.1-6.1 7.6-9.1 1.6-1.4 4-1.2 5.3.4 1.4 1.6 1.2 4-.4 5.3-2.8 2.5-4.7 4.7-5.9 7-1.4 2.6-1.9 5.3-1.3 7.6.3 1.4 1 2.8 1.7 4.3.5 1.1 1 2.2 1.5 3.3 2.1 5.6 2 12-.3 17.6-2.3 5.5-6.8 10.1-12.3 12.5C700.6 472.6 700.1 472.7 699.6 472.7zM740.4 421.4c1.5-.2 3 .5 3.8 1.9 1.1 1.8.4 4.2-1.4 5.3-3.7 2.1-6.4 5.6-7.6 9.5-1.2 4-.8 8.4 1.1 12.1.4.9 1 1.7 1.6 2.7 1 1.7 2.2 3.5 3 5.7 1.4 4 1.2 8.7-.6 13.2-1.4 3.4-3.5 6.6-6.8 10.1-1.5 1.6-3.9 1.7-5.5.2-1.6-1.4-1.7-3.9-.2-5.4 2.6-2.8 4.3-5.3 5.3-7.7 1.1-2.8 1.3-5.6.5-7.9-.5-1.3-1.3-2.7-2.2-4.1-.6-1-1.3-2.1-1.9-3.2-2.8-5.4-3.4-11.9-1.7-17.8 1.8-5.9 5.8-11 11.2-14C739.4 421.6 739.9 421.4 740.4 421.4zM261.3 590.9c5.7 6.8 9 15.7 9.4 22.4.5 7.3-2.4 16.4-10.2 20.4-3 1.5-6.7 2.2-11.2 2.2-7.9-.1-12.9-2.9-15.4-8.4-2.1-4.7-2.3-11.4 1.8-15.9 3.2-3.5 7.8-4.1 11.2-1.6 1.2.9 1.5 2.7.6 3.9-.9 1.2-2.7 1.5-3.9.6-1.8-1.3-3.6.6-3.8.8-2.4 2.6-2.1 7-.8 9.9 1.5 3.4 4.7 5 10.4 5.1 3.6 0 6.4-.5 8.6-1.6 4.7-2.4 7.7-8.6 7.2-15-.5-7.3-5.3-18.2-13-23.9-4.2-3.1-8.5-4.1-12.9-3.1-3.1.7-6.2 2.4-9.7 5-6.6 5.1-11.7 11.8-14.2 19-2.7 7.7-2.1 15.8 1.9 23.9.7 1.4.1 3.1-1.3 3.7-1.4.7-3.1.1-3.7-1.3-4.6-9.4-5.4-19.2-2.2-28.2 2.9-8.2 8.6-15.9 16.1-21.6 4.1-3.1 8-5.1 11.8-6 6-1.4 12 0 17.5 4C257.6 586.9 259.6 588.8 261.3 590.9z'/%3E%3Ccircle cx='1013.7' cy='153.9' r='7.1'/%3E%3Ccircle cx='1024.3' cy='132.1' r='7.1'/%3E%3Ccircle cx='1037.3' cy='148.9' r='7.1'/%3E%3Cpath d='M1508.7 297.2c-4.8-5.4-9.7-10.8-14.8-16.2 5.6-5.6 11.1-11.5 15.6-18.2 1.2-1.7.7-4.1-1-5.2-1.7-1.2-4.1-.7-5.2 1-4.2 6.2-9.1 11.6-14.5 16.9-4.8-5-9.7-10-14.7-14.9-1.5-1.5-3.9-1.5-5.3 0-1.5 1.5-1.5 3.9 0 5.3 4.9 4.8 9.7 9.8 14.5 14.8-1.1 1.1-2.3 2.2-3.5 3.2-4.1 3.8-8.4 7.8-12.4 12-1.4 1.5-1.4 3.8 0 5.3 0 0 0 0 0 0 1.5 1.4 3.9 1.4 5.3-.1 3.9-4 8.1-7.9 12.1-11.7 1.2-1.1 2.3-2.2 3.5-3.3 4.9 5.3 9.8 10.6 14.6 15.9.1.1.1.1.2.2 1.4 1.4 3.7 1.5 5.2.2C1510 301.2 1510.1 298.8 1508.7 297.2zM327.6 248.6l-.4-2.6c-1.5-11.1-2.2-23.2-2.3-37 0-5.5 0-11.5.2-18.5 0-.7 0-1.5 0-2.3 0-5 0-11.2 3.9-13.5 2.2-1.3 5.1-1 8.5.9 5.7 3.1 13.2 8.7 17.5 14.9 5.5 7.8 7.3 16.9 5 25.7-3.2 12.3-15 31-30 32.1L327.6 248.6zM332.1 179.2c-.2 0-.3 0-.4.1-.1.1-.7.5-1.1 2.7-.3 1.9-.3 4.2-.3 6.3 0 .8 0 1.7 0 2.4-.2 6.9-.2 12.8-.2 18.3.1 12.5.7 23.5 2 33.7 11-2.7 20.4-18.1 23-27.8 1.9-7.2.4-14.8-4.2-21.3l0 0C347 188.1 340 183 335 180.3 333.6 179.5 332.6 179.2 332.1 179.2zM516.3 60.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C517.3 60.4 516.8 60.8 516.3 60.8zM506.1 70.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C506.4 70.5 506.2 70.5 506.1 70.5zM494.1 64.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C494.7 64.3 494.4 64.4 494.1 64.4zM500.5 55.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C500.9 55.3 500.7 55.3 500.5 55.3zM506.7 55c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C507.4 54.8 507.1 55 506.7 55zM1029.3 382.8c-.1 0-.2 0-.4-.1-2.4-.7-4-.9-6.7-.7-.7 0-1.3-.5-1.4-1.2 0-.7.5-1.3 1.2-1.4 3.1-.2 4.9 0 7.6.8.7.2 1.1.9.9 1.6C1030.3 382.4 1029.8 382.8 1029.3 382.8zM1019.1 392.5c-.5 0-1-.3-1.2-.8-.8-2.1-1.2-4.3-1.3-6.6 0-.7.5-1.3 1.2-1.3.7 0 1.3.5 1.3 1.2.1 2 .5 3.9 1.1 5.8.2.7-.1 1.4-.8 1.6C1019.4 392.5 1019.2 392.5 1019.1 392.5zM1007.1 386.4c-.4 0-.8-.2-1-.5-.4-.6-.3-1.4.2-1.8 1.8-1.4 3.7-2.6 5.8-3.6.6-.3 1.4 0 1.7.6.3.6 0 1.4-.6 1.7-1.9.9-3.7 2-5.3 3.3C1007.7 386.3 1007.4 386.4 1007.1 386.4zM1013.5 377.3c-.5 0-.9-.3-1.2-.7-.5-1-1.2-1.9-2.4-3.4-.3-.4-.7-.9-1.1-1.4-.4-.6-.3-1.4.2-1.8.6-.4 1.4-.3 1.8.2.4.5.8 1 1.1 1.4 1.3 1.6 2.1 2.6 2.7 3.9.3.6 0 1.4-.6 1.7C1013.9 377.3 1013.7 377.3 1013.5 377.3zM1019.7 377c-.3 0-.5-.1-.8-.2-.6-.4-.7-1.2-.3-1.8 1.2-1.7 2.3-3.4 3.3-5.2.3-.6 1.1-.9 1.7-.5.6.3.9 1.1.5 1.7-1 1.9-2.2 3.8-3.5 5.6C1020.4 376.8 1020.1 377 1019.7 377zM1329.7 573.4c-1.4 0-2.9-.2-4.5-.7-8.4-2.7-16.6-12.7-18.7-20-.4-1.4-.7-2.9-.9-4.4-8.1 3.3-15.5 10.6-15.4 21 0 1.5-1.2 2.7-2.7 2.8 0 0 0 0 0 0-1.5 0-2.7-1.2-2.7-2.7-.1-6.7 2.4-12.9 7-18 3.6-4 8.4-7.1 13.7-8.8.5-6.5 3.1-12.9 7.4-17.4 7-7.4 18.2-8.9 27.3-10.1l.7-.1c1.5-.2 2.9.9 3.1 2.3.2 1.5-.9 2.9-2.3 3.1l-.7.1c-8.6 1.2-18.4 2.5-24 8.4-3 3.2-5 7.7-5.7 12.4 7.9-1 17.7 1.3 24.3 5.7 4.3 2.9 7.1 7.8 7.2 12.7.2 4.3-1.7 8.3-5.2 11.1C1335.2 572.4 1332.6 573.4 1329.7 573.4zM1311 546.7c.1 1.5.4 3 .8 4.4 1.7 5.8 8.7 14.2 15.1 16.3 2.8.9 5.1.5 7.2-1.1 2.7-2.1 3.2-4.8 3.1-6.6-.1-3.2-2-6.4-4.8-8.3C1326.7 547.5 1317.7 545.6 1311 546.7z'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: auto;
  background-position: 0 0;
}

.site-footer {
  border-top: 1px solid #000;
}

@media (max-width: 820px) {
  .site-header .brand {
    font-size: clamp(1.2rem, 7vw, 1.65rem);
  }

  .site-header .brand-logo,
  .site-header .loop-frame {
    width: clamp(108px, 34vw, 148px);
    height: clamp(90px, 28vw, 124px);
  }
}

/* Headers should scroll with the page. */
.site-header {
  position: static !important;
  top: auto !important;
}

/* Header logo/nav cleanup. */
.site-header .brand-logo,
.site-header .loop-frame,
.site-header .loop-frame img {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

.site-header nav {
  border: 0 !important;
  box-shadow: none !important;
}

/* Larger animated laptop mark in the support header. */
.site-header .brand-logo,
.site-header .loop-frame {
  width: clamp(150px, 21vw, 220px) !important;
  height: clamp(125px, 17.5vw, 184px) !important;
}

.site-header > .brand > span:not(.brand-logo) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 820px) {
  .site-header .brand-logo,
  .site-header .loop-frame {
    width: clamp(138px, 42vw, 190px) !important;
    height: clamp(115px, 35vw, 158px) !important;
  }
}

/* Fresh hero treatment and selected font. */
body,
.brand,
.site-header nav a,
.button,
.eyebrow,
.status-pill,
.license-plan,
.license-status,
h1,
h2,
h3,
h4,
.policy-title,
.policy-heading,
.support-hero-title,
.admin-header h1,
.admin-section-heading h2,
.login-card h1 {
  font-family: "Nunito", ui-sans-serif, system-ui, sans-serif !important;
}

.hero,
.docs-hero,
.policy-hero {
  background-color: #fff8fb !important;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(85, 255, 255, 0.72) 0 68px, transparent 69px),
    radial-gradient(circle at 84% 20%, rgba(205, 255, 85, 0.82) 0 58px, transparent 59px),
    radial-gradient(circle at 76% 82%, rgba(246, 99, 153, 0.32) 0 96px, transparent 97px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff 0%, #f4ffff 48%, #fff7d6 100%) !important;
  background-size: auto, auto, auto, 24px 24px, 24px 24px, auto !important;
  background-position: center !important;
  background-attachment: scroll !important;
}

.docs-hero {
  background-blend-mode: normal !important;
}

/* Footer polish: compact, readable, and aligned. */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 7vw, 72px) 20px 24px !important;
  color: #000 !important;
}

.site-footer::before {
  display: none !important;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid !important;
  grid-template-columns: minmax(280px, 1.35fr) repeat(2, minmax(170px, 0.5fr)) !important;
  gap: clamp(28px, 5vw, 72px) !important;
  width: min(1180px, 100%) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  align-items: start !important;
}

.footer-brand {
  display: grid !important;
  gap: 14px !important;
  max-width: 520px !important;
}

.footer-brand .brand {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: center !important;
  justify-content: start !important;
  width: fit-content !important;
  text-align: left !important;
}

.footer-brand .brand-logo,
.footer-brand .loop-frame {
  width: 78px !important;
  height: 65px !important;
}

.footer-brand .brand-label {
  color: #000 !important;
  font-size: clamp(1.05rem, 2vw, 1.28rem) !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
}

.footer-brand p {
  max-width: 440px !important;
  margin: 0 !important;
  color: #000 !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
}

.footer-column {
  display: grid !important;
  gap: 11px !important;
  justify-items: start !important;
}

.footer-column h3 {
  margin: 0 0 6px !important;
  padding: 0 !important;
  color: #000 !important;
  font-size: 0.95rem !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.site-footer a {
  display: inline-flex !important;
  width: fit-content !important;
  color: #000 !important;
  font-size: 0.98rem !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #000 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}

.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 18px !important;
  width: min(1180px, 100%) !important;
  max-width: 1180px !important;
  margin: clamp(34px, 5vw, 48px) auto 0 !important;
  padding-top: 18px !important;
  border-top: 1px solid #000 !important;
}

.footer-bottom p {
  margin: 0 !important;
  color: #000 !important;
  font-size: 0.94rem !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}

@media (max-width: 820px) {
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .footer-brand,
  .footer-brand .brand,
  .footer-column {
    justify-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .footer-brand .brand {
    grid-template-columns: 1fr !important;
  }

  .footer-brand p {
    margin-inline: auto !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
  }
}

/* Docs hero final readability fix: white right column and roomier CTAs. */
.docs-hero .hero-actions {
  gap: 18px 22px !important;
  margin-top: 26px !important;
}

.docs-hero .button {
  margin: 0 !important;
}

.docs-hero .hero-panel {
  background: #fff !important;
  color: #000 !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  box-shadow: 6px 6px 0 #000 !important;
  opacity: 1 !important;
}

.docs-hero .hero-panel div {
  background: #fff !important;
  color: #000 !important;
  border-bottom: 1px solid #000 !important;
  padding: 24px !important;
}

.docs-hero .hero-panel div:last-child {
  border-bottom: 0 !important;
}

.docs-hero .hero-panel strong,
.docs-hero .hero-panel span {
  color: #000 !important;
  opacity: 1 !important;
}

/* Docs page color pass: bars and badges use support blue instead of lime. */
.docs-page .eyebrow,
.docs-page .status-pill,
.docs-page .license-plan,
.docs-page .license-status {
  background: #55ffff !important;
  color: #000 !important;
}

/* Support hero panel title links. */
.hero-panel-title {
  display: inline-block !important;
  margin-bottom: 6px !important;
  color: #000 !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.hero-panel-title:hover,
.hero-panel-title:focus-visible {
  text-decoration: underline !important;
  text-decoration-thickness: 3px !important;
  text-underline-offset: 4px !important;
}

/* === SUPPORT GLOBAL SPACING SYSTEM: final source of truth === */
:root {
  --support-page-x: clamp(22px, 5vw, 72px);
  --support-wrap: 1180px;
  --support-module-gap: clamp(64px, 8vw, 96px);
  --support-section-gap: clamp(36px, 5vw, 56px);
  --support-inner-gap: clamp(20px, 3vw, 30px);
  --support-card-gap: 18px;
  --support-box-pad: clamp(32px, 5vw, 56px);
  --support-label-gap: clamp(22px, 3vw, 32px);
  --support-shadow: 7px 7px 0 #000;
}

body {
  margin: 0 !important;
}

.site-header,
.site-nav,
.hero,
.section,
.policy-hero,
.policy-section,
.docs-project-section,
.docs-guide-section,
.support-admin,
.site-footer {
  box-sizing: border-box !important;
}

.hero,
.docs-hero,
.policy-hero {
  padding: var(--support-module-gap) var(--support-page-x) !important;
}

.section,
.docs-project-section,
.docs-guide-section,
.policy-section {
  width: min(var(--support-wrap), calc(100vw - 44px)) !important;
  max-width: var(--support-wrap) !important;
  margin: 0 auto var(--support-module-gap) !important;
  padding: 0 !important;
}

.section:first-of-type,
.docs-project-section:first-of-type,
.docs-guide-section:first-of-type,
.policy-section:first-of-type {
  margin-top: var(--support-module-gap) !important;
}

.section:last-of-type,
.docs-project-section:last-of-type,
.docs-guide-section:last-of-type,
.policy-section:last-of-type {
  margin-bottom: var(--support-module-gap) !important;
}

.section-heading,
.support-hero-title,
.policy-title,
.docs-guide-section h3,
.docs-project-section h2,
.admin-section-heading {
  margin-top: 0 !important;
  margin-bottom: var(--support-section-gap) !important;
}

.eyebrow,
.status-pill,
.license-plan,
.license-status {
  margin-top: 0 !important;
  margin-bottom: var(--support-label-gap) !important;
}

.hero .eyebrow,
.docs-hero .eyebrow,
.policy-hero .eyebrow {
  margin-bottom: var(--support-label-gap) !important;
}

.hero p,
.section p,
.policy-section p,
.docs-guide-section p {
  margin-top: 0 !important;
}

.hero p:last-child,
.section p:last-child,
.policy-section p:last-child,
.docs-guide-section p:last-child {
  margin-bottom: 0 !important;
}

.hero-actions,
.form-actions,
.admin-actions,
.button-row {
  gap: 14px !important;
  margin-top: var(--support-inner-gap) !important;
}

.product-grid,
.docs-grid,
.policy-grid,
.card-grid,
.quick-grid,
.license-grid,
.billing-grid,
.support-grid,
.admin-grid {
  gap: var(--support-card-gap) !important;
}

.card,
.product-card,
.docs-card,
.policy-card,
.license-card,
.billing-card,
.hero-panel,
.form-card,
.admin-card {
  padding: var(--support-box-pad) !important;
}

.hero-panel {
  gap: 0 !important;
}

.hero-panel div {
  padding: var(--support-inner-gap) !important;
}

.hero-panel strong,
.hero-panel span,
.hero-panel-title {
  margin-top: 0 !important;
}

.hero-panel-title,
.hero-panel strong {
  margin-bottom: 8px !important;
}

.docs-guide-layout,
.support-layout,
.policy-layout,
.admin-layout {
  gap: var(--support-section-gap) !important;
}

.docs-guide-section h4 {
  margin: var(--support-inner-gap) 0 8px !important;
}

.docs-guide-section ul,
.docs-guide-section ol {
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}

.callout,
.notice,
.info-box,
.warning-box {
  margin-top: var(--support-inner-gap) !important;
  padding: var(--support-inner-gap) !important;
}

.site-footer {
  margin-top: var(--support-module-gap) !important;
  padding: var(--support-section-gap) var(--support-page-x) 28px !important;
}

.footer-inner {
  gap: var(--support-section-gap) !important;
}

.footer-bottom {
  margin-top: var(--support-section-gap) !important;
  padding-top: var(--support-inner-gap) !important;
}

@media (max-width: 760px) {
  :root {
    --support-module-gap: 54px;
    --support-section-gap: 30px;
    --support-box-pad: 24px;
  }

  .hero,
  .docs-hero,
  .policy-hero {
    padding-inline: 18px !important;
  }

  .section,
  .docs-project-section,
  .docs-guide-section,
  .policy-section {
    width: min(100% - 36px, var(--support-wrap)) !important;
  }
}

/* === FINAL SUPPORT REPAIR: only boxed elements get box treatment === */
:root {
  --support-module-gap: clamp(72px, 7vw, 104px);
  --support-section-gap: clamp(34px, 4.5vw, 54px);
  --support-card-pad: 24px;
}

.hero,
.docs-hero,
.policy-hero {
  border-bottom: 2px solid #000 !important;
  margin-bottom: var(--support-module-gap) !important;
}

.section,
.docs-project-section,
.docs-guide-section,
.policy-section {
  border: 0 !important;
  box-shadow: none !important;
  margin-top: 0 !important;
  margin-bottom: var(--support-module-gap) !important;
  padding: 0 !important;
}

.section::before,
.section::after,
.docs-project-section::before,
.docs-project-section::after,
.docs-guide-section::before,
.docs-guide-section::after,
.policy-section::before,
.policy-section::after {
  content: none !important;
  display: none !important;
}

.hero + .section,
.hero + main .section,
.docs-hero + .docs-project-section,
.docs-hero + .docs-guide-section,
.policy-hero + .policy-section {
  margin-top: 0 !important;
}

.hero-actions,
.docs-hero .hero-actions,
.policy-hero .hero-actions,
.form-actions,
.button-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 22px !important;
  margin-top: 32px !important;
}

.hero-actions > *,
.docs-hero .hero-actions > *,
.policy-hero .hero-actions > *,
.form-actions > *,
.button-row > * {
  margin: 0 !important;
}

.hero-panel {
  padding: 0 !important;
  align-self: center !important;
  height: auto !important;
  min-height: 0 !important;
}

.hero-panel div {
  padding: 24px 28px !important;
}

.hero-panel div + div {
  border-top: 1px solid #000 !important;
}

.hero-panel hr,
.hero-panel::before,
.hero-panel::after {
  display: none !important;
  content: none !important;
}

.product-card,
.docs-card,
.policy-card,
.license-card,
.billing-card,
.card {
  padding: 24px !important;
  min-height: 0 !important;
  height: auto !important;
}

.product-grid,
.docs-grid,
.policy-grid,
.card-grid,
.quick-grid,
.license-grid,
.billing-grid,
.support-grid {
  align-items: start !important;
}

.form-card,
.admin-card {
  padding: clamp(28px, 4vw, 44px) !important;
}

.section-heading,
.support-hero-title,
.policy-title,
.docs-guide-section h3,
.docs-project-section h2,
.admin-section-heading {
  margin-top: 0 !important;
  margin-bottom: var(--support-section-gap) !important;
}

.eyebrow,
.status-pill,
.license-plan,
.license-status {
  margin-bottom: 28px !important;
}

.site-footer {
  margin-top: var(--support-module-gap) !important;
}

@media (max-width: 760px) {
  .hero-panel div,
  .product-card,
  .docs-card,
  .policy-card,
  .license-card,
  .billing-card,
  .card {
    padding: 22px !important;
  }
}

/* === SUPPORT ACTION ROW GAP PATCH === */
.actions,
.hero .actions,
.docs-hero .actions,
.policy-hero .actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 22px !important;
  margin-top: 32px !important;
}

.actions > *,
.hero .actions > *,
.docs-hero .actions > *,
.policy-hero .actions > * {
  margin: 0 !important;
}

/* === SUPPORT HERO PANEL COMPACT PATCH === */
.hero-panel div {
  padding: 18px 28px !important;
}

.hero-panel-title,
.hero-panel strong {
  margin-bottom: 6px !important;
}

.hero-panel span,
.hero-panel p {
  line-height: 1.35 !important;
}

/* === SUPPORT HOMEPAGE CARD RHYTHM REPAIR === */
#products .product-grid,
#policies .policy-grid {
  align-items: stretch !important;
}

#products .product-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 300px !important;
}

#products .product-card .text-link {
  display: none !important;
}

#products .product-grid > .product-card:nth-child(odd) {
  background: #ededed !important;
}

#products .product-grid > .product-card:nth-child(even) {
  background:
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.045) 0 8px, transparent 8px 16px),
    #ffffff !important;
}

#products .product-card--empty {
  min-height: 300px !important;
}

#policies .policy-grid > .card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 190px !important;
}
