:root {
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #64748b;
  --accent: #1e40af;
  --critical: #dc2626;
  --developing: #ea580c;
  --strong: #ca8a04;
  --source: #16a34a;
  --max-width: 1080px;
  --font-body: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: var(--font-body);
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); background: var(--bg); color: var(--fg); line-height: 1.5; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }

/* header */
.site-header { padding: 1rem 0; border-bottom: 1px solid #e2e8f0; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.brand { font-weight: 700; text-decoration: none; color: var(--fg); }
.brand-source { color: var(--accent); }
.site-nav { display: flex; gap: 1rem; }
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover { color: var(--fg); }

/* hero */
.hero { padding: 4rem 0 3rem; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin: 0 0 1rem; line-height: 1.1; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--muted); margin: 0 0 2rem; }
.audit-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 480px; margin: 0 auto; }
.audit-form input { padding: 0.875rem 1rem; font-size: 1rem; border: 1px solid #cbd5e1; border-radius: 8px; }
.audit-form input:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.audit-form button { padding: 0.875rem 1rem; font-size: 1rem; font-weight: 600; background: var(--accent); color: white; border: none; border-radius: 8px; cursor: pointer; }
.audit-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.hero-microcopy { color: var(--muted); font-size: 0.875rem; margin: 1rem 0 0; }
.form-error { color: var(--critical); font-size: 0.875rem; margin-top: 0.5rem; }

/* examples */
.examples { padding: 3rem 0; background: #f8fafc; }
.examples h2 { text-align: center; margin: 0 0 2rem; }
.example-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .example-grid { grid-template-columns: repeat(3, 1fr); } }
.example-card { display: block; padding: 1.5rem; background: white; border: 1px solid #e2e8f0; border-radius: 12px; text-decoration: none; color: var(--fg); }
.example-card:hover { border-color: var(--accent); }
.example-domain { display: block; font-weight: 600; }
.example-score { display: block; font-size: 2rem; font-weight: 700; margin: 0.5rem 0; }
.example-label { display: block; color: var(--muted); font-size: 0.875rem; }
.examples-note { text-align: center; color: var(--muted); font-size: 0.75rem; margin-top: 1rem; }

/* pillars */
.pillars { padding: 3rem 0; }
.pillars h2 { text-align: center; margin: 0 0 2rem; }
.pillar-list { list-style: none; padding: 0; max-width: 720px; margin: 0 auto; }
.pillar-list li { padding: 0.75rem 0; border-bottom: 1px solid #e2e8f0; }
.pillar-list strong { display: inline-block; min-width: 180px; color: var(--accent); }
.pillars-formula { text-align: center; font-style: italic; color: var(--muted); margin: 2rem auto 1rem; max-width: 600px; }
.cta-secondary { display: inline-block; margin: 1rem auto 0; padding: 0.75rem 1.5rem; background: var(--fg); color: white; text-decoration: none; border-radius: 8px; }
.pillars .container { text-align: center; }

/* footer */
.site-footer { padding: 2rem 0; border-top: 1px solid #e2e8f0; text-align: center; color: var(--muted); font-size: 0.875rem; }
.site-footer a { color: var(--muted); }
.site-footer p { margin: 0.25rem 0; }

/* progress page */
.progress { padding: 4rem 0 3rem; }
.progress h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin: 0 0 0.5rem; }
.progress h1 #domain { color: var(--accent); }
.progress-sub { color: var(--muted); margin: 0 0 2.5rem; }

.steps { list-style: none; padding: 0; max-width: 600px; margin: 0 auto; }
.steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1.0625rem;
  border-left: 2px solid #e2e8f0;
  transition: color 0.2s, border-color 0.2s;
}
.steps li::before {
  position: absolute;
  left: -0.875rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: white;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #cbd5e1;
}
.steps li[data-state="pending"] { color: var(--muted); }
.steps li[data-state="pending"]::before { content: '☐'; border-color: #cbd5e1; color: #cbd5e1; }
.steps li[data-state="active"] { color: var(--fg); font-weight: 600; }
.steps li[data-state="active"]::before { content: '⋯'; border-color: var(--accent); color: var(--accent); animation: pulse 1.4s infinite; }
.steps li[data-state="done"] { color: var(--source); }
.steps li[data-state="done"]::before { content: '✓'; border-color: var(--source); color: var(--source); background: var(--source); color: white; }
.steps li[data-state="failed"] { color: var(--critical); }
.steps li[data-state="failed"]::before { content: '✗'; border-color: var(--critical); color: var(--critical); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.progress-hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
  margin: 2rem auto 0;
  max-width: 480px;
}
.progress-error {
  text-align: center;
  color: var(--critical);
  margin: 2rem auto 0;
  padding: 1rem;
  background: #fef2f2;
  border-radius: 8px;
  max-width: 480px;
}
.progress-error a { color: var(--critical); font-weight: 600; }

/* ==========================================================================
   Report page
   ========================================================================== */

/* Strength colour helpers — applied via data-strength attribute. The score
   ring uses currentColor so the SVG strokes/text pick up these values. */
[data-strength="critical"] { color: var(--critical); }
[data-strength="developing"] { color: var(--developing); }
[data-strength="strong"] { color: var(--strong); }
[data-strength="source"] { color: var(--source); }

/* Sticky header */
.report-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.report-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.report-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}
.report-header-divider { color: #cbd5e1; }
.report-header-domain {
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.score-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: #f1f5f9;
  color: currentColor;
  border: 1px solid currentColor;
  white-space: nowrap;
}
.share-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--fg);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}
.share-btn:hover { background: var(--accent); }
.share-toast {
  position: fixed;
  top: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fg);
  color: white;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

/* Section spacing + common heads */
.hero-report,
.key-findings,
.quick-wins,
.pillars-section,
.engagement-section,
.deep-upsell,
.booking-cta {
  padding: 3rem 0;
}
.key-findings,
.pillars-section,
.deep-upsell {
  background: #f8fafc;
}
.hero-report h2,
.key-findings h2,
.quick-wins h2,
.pillars-section h2,
.engagement-section h2,
.deep-upsell h2,
.booking-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}
.section-sub {
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
}

/* Hero */
.hero-report {
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.score-ring {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
}
.score-ring svg {
  display: block;
  max-width: 100%;
  height: auto;
}
.strength-label {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  color: currentColor;
}
.verdict {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.stats {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stats li {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.stats strong {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.stats span {
  color: var(--muted);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

/* Key findings */
.key-findings-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}
.finding {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  border-left: 4px solid #cbd5e1;
}
.finding-strength { border-left-color: var(--source); }
.finding-gap { border-left-color: var(--developing); }
.finding-icon {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  flex-shrink: 0;
}
.finding-strength .finding-icon { color: var(--source); }
.finding-gap .finding-icon { color: var(--developing); }
.finding-empty {
  border-left-color: #cbd5e1;
  color: var(--muted);
  font-style: italic;
}
.finding-text { line-height: 1.5; }

/* Quick wins */
.quick-wins-wrap { overflow-x: auto; }
.quick-wins-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.quick-wins-table thead {
  background: #f1f5f9;
}
.quick-wins-table th {
  text-align: left;
  padding: 0.875rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #e2e8f0;
}
.quick-wins-table td {
  padding: 1rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
  font-size: 0.9375rem;
}
.quick-wins-table tr:last-child td { border-bottom: none; }
.cell-fix { font-weight: 500; }
.quick-wins-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem !important;
}
.pillar-tag {
  display: inline-block;
  padding: 0.1875rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: #eef2ff;
  color: var(--accent);
  white-space: nowrap;
}
.effort-tag {
  display: inline-block;
  padding: 0.1875rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: #f1f5f9;
  color: var(--muted);
}
.effort-1, .effort-2 { background: #dcfce7; color: #166534; }
.effort-3 { background: #fef3c7; color: #92400e; }
.effort-4, .effort-5 { background: #fee2e2; color: #991b1b; }
.impact-tag {
  font-weight: 600;
  color: var(--source);
}

/* Stacked-card layout on narrow screens */
@media (max-width: 640px) {
  .quick-wins-table thead { display: none; }
  .quick-wins-table,
  .quick-wins-table tbody,
  .quick-wins-table tr,
  .quick-wins-table td {
    display: block;
    width: 100%;
  }
  .quick-wins-table tr {
    border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 0;
  }
  .quick-wins-table tr:last-child { border-bottom: none; }
  .quick-wins-table td {
    border: none;
    padding: 0.375rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .quick-wins-table td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }
  .quick-wins-table td.cell-fix {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* Pillar cards */
.pillars-grid {
  display: grid;
  gap: 0.75rem;
}
.pillar-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-left: 4px solid currentColor;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.15s;
}
.pillar-card[open] {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.pillar-summary {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
}
.pillar-summary::-webkit-details-marker { display: none; }
.pillar-letter {
  font-size: 1.5rem;
  font-weight: 800;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: currentColor;
  border-radius: 8px;
  flex-shrink: 0;
}
.pillar-info { min-width: 0; }
.pillar-info h3 {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--fg);
}
.pillar-tagline {
  margin: 0.125rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.4;
}
.pillar-score {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.125rem;
}
.pillar-score-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.pillar-strength {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: currentColor;
}
.pillar-chevron {
  color: var(--muted);
  font-size: 1rem;
  transition: transform 0.15s;
  flex-shrink: 0;
}
.pillar-card[open] .pillar-chevron { transform: rotate(180deg); }
.pillar-detail {
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.625rem;
}
.criterion {
  padding: 0.875rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #cbd5e1;
}
.criterion[data-status="pass"] { border-left-color: var(--source); }
.criterion[data-status="warn"] { border-left-color: var(--developing); }
.criterion[data-status="fail"] { border-left-color: var(--critical); }
.criterion-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.criterion-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  background: #e2e8f0;
  color: var(--muted);
}
.criterion-icon[data-status="pass"] { background: var(--source); color: white; }
.criterion-icon[data-status="warn"] { background: var(--developing); color: white; }
.criterion-icon[data-status="fail"] { background: var(--critical); color: white; }
.criterion-name {
  flex: 1;
  font-weight: 500;
  font-size: 0.9375rem;
}
.criterion-score {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.criterion-finding {
  margin: 0.5rem 0 0;
  color: var(--fg);
  font-size: 0.875rem;
  line-height: 1.5;
}
.criterion-fix {
  margin: 0.5rem 0 0;
  padding: 0.625rem 0.75rem;
  background: white;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--fg);
  line-height: 1.5;
}
.criteria-empty {
  color: var(--muted);
  font-style: italic;
  margin: 1rem 0 0;
}

@media (max-width: 640px) {
  .pillar-summary {
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
  }
  .pillar-chevron {
    grid-column: 1 / -1;
    text-align: center;
  }
  .pillar-tagline { display: none; }
}

/* Engagement section */
.engagement-section {
  background: #fafbfc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.engagement-intro {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
}
.engagement-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) {
  .engagement-grid { grid-template-columns: repeat(2, 1fr); }
}
.engagement-metric {
  background: white;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.engagement-metric h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--fg);
}
.metric-desc {
  margin: 0 0 0.75rem;
  color: var(--fg);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.metric-where,
.metric-why {
  margin: 0.375rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}
.metric-where strong,
.metric-why strong {
  color: var(--fg);
  font-weight: 600;
}

/* Citation × Traffic 2×2 matrix */
.citation-matrix {
  margin-top: 1.5rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.citation-matrix h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--fg);
}
.matrix-desc {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.9375rem;
}
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .matrix-grid { grid-template-columns: 1fr 1fr; }
}
.matrix-quadrant {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}
.matrix-quadrant strong {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
  color: var(--fg);
}
.matrix-quadrant p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}
.matrix-quadrant-0 { border-left: 3px solid var(--source); }
.matrix-quadrant-1 { border-left: 3px solid var(--strong); }
.matrix-quadrant-2 { border-left: 3px solid var(--developing); }
.matrix-quadrant-3 { border-left: 3px solid #cbd5e1; }
.matrix-axes {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-style: italic;
}

/* Deep audit upsell */
.deep-upsell { text-align: left; }
.deep-upsell h2 { margin-bottom: 0.75rem; }
.deep-upsell > .container > p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 1.25rem;
}
.deep-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin-bottom: 0.75rem;
}
.deep-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9375rem;
  background: #f1f5f9;
}
.deep-form button {
  padding: 0.75rem 1rem;
  background: #cbd5e1;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: not-allowed;
  white-space: nowrap;
}
.deep-note {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 480px) {
  .deep-form { flex-direction: column; }
}

/* Booking CTA */
.booking-cta {
  background: var(--fg);
  color: white;
  text-align: center;
}
.booking-cta h2 {
  color: white;
  margin: 0 0 0.5rem;
}
.booking-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.book-call-button {
  display: inline-block;
  background: var(--source);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s;
}
.book-call-button:hover { background: #15803d; }

/* Error state */
.report-error {
  padding: 5rem 0;
  text-align: center;
}
.report-error h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
}
.report-error p { color: var(--muted); }
.report-error a { color: var(--accent); font-weight: 600; }

/* ==========================================================================
   Legal pages (privacy / terms / remove)
   ========================================================================== */
.legal {
  padding: 3rem 0 4rem;
  max-width: 720px;
  margin: 0 auto;
}
.legal h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
}
.legal .legal-updated {
  color: var(--muted);
  font-size: 0.875rem;
  margin: 0 0 2rem;
}
.legal h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.5rem;
  color: var(--accent);
}
.legal p,
.legal li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
}
.legal ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}
.legal li {
  margin: 0.375rem 0;
}
.legal a {
  color: var(--accent);
}
.legal strong {
  color: var(--fg);
}

/* Remove form */
.remove-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.remove-form label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 600;
}
.remove-form .field-hint {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8125rem;
}
.remove-form input,
.remove-form textarea {
  padding: 0.75rem 0.875rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: white;
  color: var(--fg);
}
.remove-form input:focus,
.remove-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.remove-form textarea {
  min-height: 5rem;
  resize: vertical;
}
.remove-form button {
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.remove-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.remove-status {
  margin: 1rem 0 0;
  padding: 0.875rem 1rem;
  border-radius: 8px;
  font-size: 0.9375rem;
}
.remove-status[data-state="success"] {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}
.remove-status[data-state="error"] {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
