:root {
  --bg: #f7f7f8;
  --bg-2: #ffffff;
  --panel: #ffffff;
  --ink: #1a1b1e;
  --muted: #5c616a;
  --line: #e4e6ea;
  --line-strong: #d0d3d9;
  --accent: #e2187a;
  --accent-soft: #fce7f1;
  --accent-ink: #9d0f54;
  --accent-2: #2a2d34;
  --danger: #c0392b;
  --shadow: 0 1px 2px rgba(26, 27, 30, 0.04), 0 8px 24px rgba(26, 27, 30, 0.05);
  --shadow-soft: 0 1px 2px rgba(26, 27, 30, 0.03);
  --radius: 14px;
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
  --shell: 1120px;
  --header-h: 108px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 0% -5%, rgba(226, 24, 122, 0.06) 0%, transparent 55%),
    radial-gradient(720px 380px at 100% 0%, rgba(26, 27, 30, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #f3f4f6 100%);
}
a { color: var(--accent-ink); text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; display: block; }
.shell { width: min(var(--shell), calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, #ffffff 88%, transparent);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-logo {
  height: 96px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: transform 0.28s ease;
}
.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.015);
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 1rem;
}
.site-nav a { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.site-nav a:hover { color: var(--ink); }
.nav-ghost {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--ink) !important;
}
.nav-ghost:hover { border-color: var(--ink); }
.nav-cta {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(226, 24, 122, 0.22);
}
.nav-cta:hover { color: #fff !important; filter: brightness(1.05); }

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0.8rem 1.25rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 16px rgba(226, 24, 122, 0.18);
}
.btn:hover {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.btn.secondary {
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.btn.secondary:hover {
  color: var(--ink);
  border-color: var(--ink);
  filter: none;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; }

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.12; margin: 0 0 0.75rem; color: var(--ink); font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5.5vw, 4.1rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 2.8vw, 2.35rem); letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; }
.lede, .section-lede {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}
.muted, .status { color: var(--muted); }
.error { color: var(--danger); }

.hero-plane {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - var(--header-h));
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0 4.5rem;
  max-width: 560px;
  width: min(560px, calc(100% - 2rem));
  margin-left: max(1rem, calc((100vw - var(--shell)) / 2));
  margin-right: auto;
  animation: rise-in 0.75s ease both;
}
.hero-brand {
  display: block;
  width: min(280px, 82%);
  height: auto;
  margin: 0 0 1.35rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.85; }
}
@keyframes drift {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(6px); }
}
.hero-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 35%, rgba(226, 24, 122, 0.12), transparent 42%),
    linear-gradient(165deg, #ffffff 0%, #f5f5f6 55%, #eeeef1 100%);
}
.signal-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(26, 27, 30, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 27, 30, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 58% 42%, black 18%, transparent 72%);
  animation: pulse-soft 7s ease-in-out infinite;
}
.signal-panel {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.3rem;
  animation: rise-in 0.9s ease 0.12s both, drift 8s ease-in-out 1s infinite;
}
.signal-panel-sample {
  gap: 0.7rem;
}
.sample-eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sample-url {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  font-size: 0.92rem;
  word-break: break-all;
}
.sample-scores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.sample-scores span {
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: #f4f5f7;
  border: 1px solid var(--line);
}
.sample-summary {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.5;
}
.sample-fixes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.sample-fixes li {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}
.sample-fixes .prio {
  display: inline-block;
  min-width: 1.6rem;
  margin-right: 0.25rem;
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 0.78rem;
}
.signal-panel span:first-child {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.signal-panel strong {
  font-family: var(--display);
  font-size: 2.55rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.signal-panel span:last-child {
  color: var(--muted);
  margin-top: 0.15rem;
}

.section { padding: 4.75rem 0; }
.section-alt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.1rem;
}
.feature-row article,
.dash-panel,
.auth-card,
.price-plan,
.pricing-note {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--panel);
  padding: 1.45rem 1.5rem;
  box-shadow: var(--shadow-soft);
}
.feature-row article h3 { margin-bottom: 0.45rem; }
.feature-row article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.signal-list {
  display: grid;
  gap: 0;
  margin-top: 1.75rem;
}
.signal-list div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.signal-list div:last-child { border-bottom: 0; }
.signal-list strong {
  font-family: var(--display);
  font-size: 1.15rem;
}
.signal-list span { color: var(--muted); line-height: 1.55; }
.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 1.75rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.85rem 2rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(120deg, rgba(226, 24, 122, 0.06), rgba(255, 255, 255, 0.9) 45%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}
.cta-band h2 { margin-bottom: 0.4rem; }
.cta-band p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  line-height: 1.55;
}
.cta-band .hero-actions { margin-top: 0; }

.page-hero { padding: 3.75rem 0 1.15rem; }
.page-hero .lede { max-width: 42rem; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
  align-items: stretch;
}
.price-plan {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.price-plan:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: var(--shadow);
}
.price-plan h2 { font-size: 1.3rem; margin-bottom: 0.35rem; }
.plan-badge {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan-badge-slot {
  min-height: 1.7rem;
  margin-bottom: 0.35rem;
}
.plan-credits { color: var(--muted); margin: 0.15rem 0; font-size: 0.92rem; }
.plan-price {
  font-family: var(--display);
  font-size: 1.95rem;
  margin: 0.45rem 0;
  letter-spacing: -0.02em;
}
.plan-unit {
  color: var(--accent);
  font-weight: 700;
  margin: 0 0 0.95rem;
  font-size: 0.92rem;
}
.price-plan ul {
  margin: 0 0 1.2rem;
  padding-left: 1.1rem;
  color: var(--muted);
  flex: 1 1 auto;
}
.price-plan ul li { margin: 0.35rem 0; line-height: 1.4; }
.price-plan .btn {
  margin-top: auto;
  width: 100%;
}
.price-plan.featured {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent),
    var(--shadow);
  background:
    linear-gradient(180deg, rgba(226, 24, 122, 0.04), transparent 42%),
    #ffffff;
}
.pricing-note { margin-top: 1.75rem; }
.pricing-note h3 { margin-bottom: 0.45rem; }
.pricing-note p { margin: 0; color: var(--muted); line-height: 1.6; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 0.5rem;
}
.contact-details,
.contact-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--panel);
  padding: 1.55rem 1.6rem;
  box-shadow: var(--shadow-soft);
}
.contact-details h2,
.contact-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}
.contact-dl {
  margin: 1.35rem 0 1rem;
  display: grid;
  gap: 1rem;
}
.contact-dl dt {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-dl dd {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.contact-dl a {
  color: var(--ink);
  text-decoration: none;
}
.contact-dl a:hover { color: var(--accent); }
.contact-hours { margin: 0; line-height: 1.55; }
.contact-card .optional {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85em;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.auth-shell {
  min-height: calc(100vh - 260px);
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
}
.auth-card {
  width: min(440px, 100%);
}
.auth-card h1 { font-size: 2.15rem; }
label {
  display: block;
  margin: 0.8rem 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}
input[type="email"],
input[type="text"],
input[type="search"],
input[type="password"],
input[type="file"],
textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
textarea {
  min-height: 8.5rem;
  resize: vertical;
  line-height: 1.5;
}
input[type="email"]:focus,
input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  box-shadow: 0 0 0 3px rgba(226, 24, 122, 0.12);
}
.auth-switch { margin-top: 1.1rem; color: var(--muted); }

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.dash-account {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}
.credit-balance-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}
.credit-balance-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.credit-balance-chip strong {
  font-size: 1.15rem;
  font-family: var(--display);
}
.credit-balance-chip.is-low {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  background: var(--accent-soft);
}
.credits-panel {
  margin-bottom: 1.25rem;
  border-color: color-mix(in srgb, var(--accent) 28%, var(--line));
  background:
    linear-gradient(120deg, rgba(226, 24, 122, 0.05), rgba(255, 255, 255, 0.95)),
    #ffffff;
}
.credits-panel.is-low {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent);
}
.credits-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}
.credits-panel-head h2 { margin-bottom: 0.35rem; }
.credits-warning {
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.95rem;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 600;
}
.quick-buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.8rem;
  margin-top: 0.75rem;
  align-items: stretch;
}
.quick-buy-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  height: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}
.quick-buy-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.15rem;
}
.quick-buy-credits {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.quick-buy-price {
  margin: 0.15rem 0 0.7rem;
  font-family: var(--display);
  font-size: 1.35rem;
}
.quick-buy-card .btn {
  margin-top: auto;
  width: 100%;
}
.dash-heading { margin-top: 2.15rem; }
.projects-hint { margin: 0.35rem 0 0.95rem; }
.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 0.8rem;
}
#downloadsPanel { margin-top: 1.5rem; }
.project-empty { margin: 0.25rem 0 0; }
.project-card {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.project-card:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  box-shadow: var(--shadow);
}
.project-card.is-active {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 22%, transparent);
}
.project-name {
  font-weight: 700;
  letter-spacing: 0.01em;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
}
.project-counts {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.project-eta {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.urls-crawl-eta {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
}
.status.status-emphasis {
  color: var(--ink);
  font-weight: 650;
  margin-top: 0.65rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid #f3dfc4;
  background: #fff7ed;
}
.queue-status-box {
  margin-top: 0.95rem;
  padding: 1rem 1.1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.85), #ffffff 55%),
    #fff;
  box-shadow: var(--shadow-soft);
}
.pagination-trim-box {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid #e8d4b8;
  border-radius: calc(var(--radius) + 2px);
  background: #fffaf3;
}
.pagination-trim-box p {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
}
.pagination-trim-box p strong:last-of-type {
  color: #9a5b12;
}
.pagination-trim-box ul {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.88rem;
  word-break: break-all;
}
.pagination-trim-box .actions {
  margin: 0;
  gap: 0.5rem;
}
.not-found-trim-box {
  border-color: #e2b4b0;
  background: #fff7f6;
}
.not-found-trim-box p strong:last-of-type {
  color: #9b2c2c;
}
.queue-status-box--analysis {
  border-color: #f0c995;
  background:
    linear-gradient(135deg, rgba(255, 236, 209, 0.95), #ffffff 60%),
    #fff;
}
.queue-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.queue-status-head-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}
.queue-stop-btn {
  border-color: #e2b4b0 !important;
  color: #9b2c2c !important;
  background: #fff5f4 !important;
}
.queue-stop-btn:hover {
  background: #fdecea !important;
}
.queue-status-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a5b12;
}
.queue-status-title {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.05rem;
  font-family: var(--display);
  color: var(--ink);
}
.queue-status-pulse {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #d97706;
  box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.45);
  animation: queue-pulse 1.6s ease-out infinite;
  flex: 0 0 auto;
}
@keyframes queue-pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.45); }
  70% { box-shadow: 0 0 0 0.55rem rgba(217, 119, 6, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 119, 6, 0); }
}
.queue-status-lanes {
  display: grid;
  gap: 0.55rem;
}
.queue-status-lane {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid #efe6d8;
  background: rgba(255, 255, 255, 0.85);
}
.queue-status-lane-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.85rem;
  min-width: 0;
}
.queue-status-lane.is-emphasize,
.queue-status-lane--analysis,
.queue-status-lane--analyze {
  border-color: #ecc891;
  background: #fff8ef;
}
.queue-status-lane-title {
  font-weight: 700;
  color: var(--ink);
}
.queue-status-lane-detail {
  color: #9a5b12;
  font-weight: 650;
  font-size: 0.95rem;
}
.queue-status-note {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}
.project-queue-flag {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #9a5b12;
}
.table-wrap {
  overflow-x: auto;
  overflow-y: visible;
  margin-top: 0.9rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.urls-find {
  margin-top: 0.85rem;
  max-width: 42rem;
}
.urls-find-label {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
}
.urls-find-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.urls-find-input {
  flex: 1 1 16rem;
  min-width: 0;
  margin-top: 0;
}
.urls-find-hint {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
}
.urls-find-hint[hidden] {
  display: none !important;
}
.urls-pager {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.urls-pager[hidden] {
  display: none !important;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.85rem;
  table-layout: auto;
}
th, td {
  text-align: left;
  padding: 0;
  border-bottom: 0;
  vertical-align: top;
}
tr:last-child td { border-bottom: 0; }
.url-row td { padding: 0; }
.url-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1.15rem 1.2rem 1.2rem;
}
.url-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.url-title {
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: 0.28rem;
  color: var(--ink);
}
.url-link {
  display: inline-block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  word-break: break-all;
}
.url-link:hover { color: var(--accent-ink); }
.url-crawl-error {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: #9b2c2c;
}
.url-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  justify-content: flex-end;
  max-width: 100%;
}
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f7f8fa;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1;
  text-transform: lowercase;
}
.status-chip em {
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
  text-transform: none;
}
.status-chip.status-completed {
  background: #eef8f1;
  border-color: #cfe8d7;
  color: #1f6b3a;
}
.status-chip.status-failed {
  background: #fdf1f0;
  border-color: #f0d0cc;
  color: #9b2c2c;
}
.status-chip.status-queued,
.status-chip.status-crawling,
.status-chip.status-analyzing,
.status-chip.status-writing {
  background: #fff7ed;
  border-color: #f3dfc4;
  color: #9a5b12;
}
.status-chip.status-none,
.status-chip.status-pending,
.status-chip.status-skipped {
  background: #f4f5f7;
  border-color: var(--line);
  color: var(--muted);
}
.url-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eef0f3;
}
.btn.btn-sm {
  padding: 0.48rem 0.85rem;
  font-size: 0.84rem;
  box-shadow: none;
}
.btn.btn-sm.secondary {
  background: #fff;
}
.btn.btn-sm.ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
  box-shadow: none;
}
.btn.btn-sm.ghost:hover {
  color: var(--ink);
  border-color: var(--line-strong);
  background: #fff;
}
.url-meta-write {
  margin-top: 0.95rem;
  padding: 0.95rem 1rem;
  border: 1px solid #e8ebf0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fbfcfd 0%, #f6f8fa 100%);
}
.meta-write-head {
  margin-bottom: 0.7rem;
}
.meta-write-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-field + .meta-field {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e9edf2;
}
.meta-field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.meta-field-top strong {
  display: block;
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 700;
}
.meta-chars {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.18rem 0.48rem;
}
.url-meta-write .meta-suggest {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 600;
}
.meta-current {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}
.meta-current span {
  display: block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
  color: #8a909a;
}
.url-meta-write .meta-rationale {
  margin: 0.9rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid #e9edf2;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
}
.url-report {
  margin-top: 0.95rem;
  padding: 0.95rem 1rem;
  border: 1px solid #e8ebf0;
  border-radius: var(--radius);
  background: #fafafa;
  overflow: visible;
  max-width: 100%;
}
.scores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.score-delta {
  font-weight: 650;
  margin-left: 0.15rem;
  white-space: nowrap;
}
.score-delta.score-up {
  color: #1f5c2e;
}
.score-delta.score-down {
  color: #7a2e2e;
}
.report-summary { margin: 0.65rem 0 0; color: var(--ink); }
.report-section { margin-top: 0.85rem; }
.report-section summary {
  cursor: pointer;
  color: var(--accent-ink);
  font-weight: 650;
}
.report-body {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0.55rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.92rem;
  line-height: 1.5;
  max-height: none;
  overflow: visible;
}
.report-improvements {
  margin: 0.75rem 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}
.report-improvements li { margin: 0.45rem 0; }
.report-improvements .prio {
  display: inline-block;
  min-width: 1.6rem;
  color: var(--accent);
  font-weight: 700;
}
.improve-hint {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}
.improve-item {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.improve-item.improve-verified {
  border-color: #9cc5a1;
  background: #f3faf4;
}
.improve-item.improve-done {
  border-color: #c9d4e8;
  background: #f5f8fc;
}
.improve-item.improve-regressed {
  border-color: #e0b4b4;
  background: #fdf6f6;
}
.improve-check {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  align-items: center;
  cursor: pointer;
}
.improve-check input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
}
.improve-desc {
  margin-top: 0.35rem;
  font-size: 0.92rem;
}
.improve-notes {
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}
.action-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.action-badge-done {
  color: #2a4a7a;
  background: #e8eef8;
  border-color: #c9d4e8;
}
.action-badge-verified {
  color: #1f5c2e;
  background: #e6f4ea;
  border-color: #9cc5a1;
}
.action-badge-regressed {
  color: #7a2e2e;
  background: #f8eaea;
  border-color: #e0b4b4;
}
.tracked-improvements {
  margin-top: 0.85rem;
}
.tracked-improvements summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--accent-ink);
}
.crawl-history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.crawl-history-list li {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.crawl-history-actions {
  margin-top: 0.45rem;
}

.site-footer {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  padding: 2.35rem 0 2.75rem;
  color: var(--muted);
  background: #ffffff;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
}
.footer-logo,
.footer-brand img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.footer-inner > div > p {
  margin: 0;
  max-width: 28rem;
  line-height: 1.55;
}
.footer-company {
  margin-top: 0.65rem !important;
  font-size: 0.85rem;
  color: var(--muted);
}
.legal-doc {
  max-width: 46rem;
  padding-bottom: 2rem;
}
.legal-doc h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
}
.legal-doc p,
.legal-doc li {
  line-height: 1.65;
}
.legal-doc ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}
.legal-doc li + li {
  margin-top: 0.35rem;
}
.legal-doc a {
  color: var(--accent);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: flex-start;
}
.footer-links a {
  color: var(--muted);
  font-weight: 600;
}
.footer-links a:hover { color: var(--accent); }

@media (max-width: 1280px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-plane { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy {
    width: min(var(--shell), calc(100% - 2rem));
    max-width: none;
    margin: 0 auto;
    padding: 3rem 0 2.5rem;
  }
  .hero-visual { min-height: 420px; border-left: 0; border-top: 1px solid var(--line); }
  .signal-panel {
    left: 1rem;
    right: 1rem;
    position: relative;
    top: auto;
    transform: none;
    margin: 1.5rem auto 1.75rem;
    max-width: 34rem;
    animation: rise-in 0.9s ease 0.12s both;
  }
  .feature-row { grid-template-columns: 1fr; }
  .signal-list div { grid-template-columns: 1fr; gap: 0.35rem; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .price-grid { grid-template-columns: 1fr; }
  .brand-logo {
    height: 76px;
    width: auto;
  }
  .site-nav a:not(.nav-ghost):not(.nav-cta) { display: none; }
  .cta-band { padding: 1.4rem; }
}

/* Page source viewer (dashboard) */
.source-modal {
  width: min(960px, calc(100vw - 2rem));
  max-height: min(88vh, 900px);
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(20, 24, 40, 0.22);
}
.source-modal::backdrop {
  background: rgba(18, 22, 36, 0.45);
}
.source-modal-shell {
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 900px);
}
.source-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 1.15rem 1.25rem 0.85rem;
  border-bottom: 1px solid var(--line);
}
.source-modal-head h2 {
  margin: 0;
  font-size: 1.25rem;
}
.source-modal-url {
  margin: 0.35rem 0 0;
  word-break: break-all;
  font-size: 0.9rem;
}
.source-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.source-modal .status {
  margin: 0;
  padding: 0.45rem 1.25rem 0;
}
.source-modal-body {
  margin: 0.75rem 1.25rem 1.25rem;
  padding: 0.9rem 1rem;
  overflow: auto;
  flex: 1 1 auto;
  min-height: 220px;
  max-height: calc(88vh - 170px);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink);
  background: #f7f7f8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.single-url-box {
  margin: 0.85rem 0 0;
  padding: 1.15rem 1.2rem 1.2rem;
  border: 1.5px dashed color-mix(in srgb, var(--accent) 28%, var(--line-strong));
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(180deg, rgba(226, 24, 122, 0.03), transparent 55%),
    #fafafa;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.single-url-box.is-dragover {
  border-color: var(--accent);
  border-style: solid;
  background: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(226, 24, 122, 0.1);
}
.single-url-copy {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}
.single-url-title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.single-url-row {
  display: flex;
  align-items: stretch;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0;
}
.single-url-input {
  flex: 1 1 16rem;
  min-width: 0;
  margin-top: 0;
}
.single-url-row .btn {
  flex: 0 0 auto;
  align-self: stretch;
}
.single-url-or {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 1rem 0 0;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.single-url-or::before,
.single-url-or::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: var(--line);
}

.csv-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  margin: 0.85rem 0 0;
  padding: 1.65rem 1.25rem;
  text-align: center;
  cursor: pointer;
  border: 1.5px dashed color-mix(in srgb, var(--accent) 28%, var(--line-strong));
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(180deg, rgba(226, 24, 122, 0.03), transparent 55%),
    #fafafa;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.csv-dropzone:hover {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
  background:
    linear-gradient(180deg, rgba(226, 24, 122, 0.05), transparent 55%),
    #ffffff;
}
.csv-dropzone.is-dragover {
  border-color: var(--accent);
  border-style: solid;
  background: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(226, 24, 122, 0.1);
}
.csv-dropzone.has-file {
  border-style: solid;
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  background: #ffffff;
}
.csv-dropzone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.25rem;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
}
.csv-dropzone-title {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.csv-dropzone-sub {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
}
.csv-dropzone-hint {
  max-width: 34rem;
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 500;
}
.csv-dropzone-file {
  display: block;
  max-width: min(100%, 40rem);
  margin-top: 0.65rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 650;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Live ops (superuser) */
.ops-shell { --shell: 1180px; }
.ops-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--muted);
}
.ops-live-chip.on {
  color: var(--accent-ink);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line-strong));
  background: var(--accent-soft);
}
.ops-grid.ops-server {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.ops-stat {
  padding: 1rem 1.05rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.ops-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.ops-stat strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  word-break: break-word;
}
.ops-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ops-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.ops-table th,
.ops-table td {
  text-align: left;
  padding: 0.55rem 0.45rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.ops-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 700;
}
.ops-compact { font-size: 0.82rem; color: var(--muted); white-space: nowrap; }
.ops-pill {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #eef0f3;
  color: var(--ink);
}
.ops-pill.ok { background: #e7f6ec; color: #1b6b3a; }
.ops-pill.idle { background: #eef2f7; color: #3d4a5c; }
.ops-pill.bad { background: #fdecea; color: var(--danger); }

.ops-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.ops-actions .btn {
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
}
.ops-activity {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 280px;
  overflow: auto;
}
.ops-activity li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
}
.ops-activity li span,
.ops-activity li small {
  color: var(--muted);
  word-break: break-all;
  font-size: 0.82rem;
}
.ops-failures-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 0.65rem;
}
.ops-failure-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  margin-bottom: 0.25rem;
}
.ops-failure-when {
  color: var(--muted);
  font-size: 0.82rem;
}
.ops-failure-clear {
  margin-left: auto;
  padding: 0.25rem 0.55rem;
  font-size: 0.78rem;
}
.ops-unread-badge {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #fdecea;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 700;
  vertical-align: middle;
}
.ops-contact-list {
  display: grid;
  gap: 0.75rem;
}
.ops-contact-card {
  border: 1px solid #d8e0ea;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: #fff;
}
.ops-contact-card.unread {
  border-color: #f0b4ae;
  background: #fff8f7;
}
.ops-contact-card header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  align-items: baseline;
  margin-bottom: 0.45rem;
}
.ops-contact-card header strong {
  font-size: 0.98rem;
}
.ops-contact-card .ops-contact-meta {
  color: var(--muted);
  font-size: 0.82rem;
}
.ops-contact-card .ops-contact-body {
  white-space: pre-wrap;
  line-height: 1.5;
  margin: 0.35rem 0 0.65rem;
  font-size: 0.92rem;
}
.ops-credits { margin: 0; font-size: 1.05rem; font-weight: 650; }
.ops-billing-panel { margin-bottom: 1.25rem; }
.ops-billing-status {
  margin: 0.75rem 0 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  background: #f3f6f9;
  font-size: 0.92rem;
  line-height: 1.45;
}
.ops-billing-status .ok { color: #1b6b3a; font-weight: 650; }
.ops-billing-status .warn { color: #8a5a00; font-weight: 650; }
.ops-billing-status .bad { color: var(--danger); font-weight: 650; }
.ops-billing-form {
  display: grid;
  gap: 0.85rem;
  max-width: 640px;
}
.ops-billing-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.ops-billing-form label small {
  font-weight: 500;
  color: var(--muted);
}
.ops-billing-form input {
  font: inherit;
  font-weight: 500;
  padding: 0.65rem 0.75rem;
  border: 1px solid #c9d3de;
  border-radius: 8px;
  background: #fff;
}
.ops-billing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
@media (max-width: 900px) {
  .ops-grid.ops-server { grid-template-columns: 1fr 1fr; }
  .ops-columns { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .ops-grid.ops-server { grid-template-columns: 1fr; }
}
