/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  --bg:            #0d1117;
  --bg-surface:    #161b22;
  --bg-elevated:   #1c2232;
  --bg-card:       #161b22;
  --border:        #30363d;
  --border-blue:   #1e3a5f;

  --accent:        #3b9dff;
  --accent-hover:  #58b4ff;
  --accent-muted:  #1a2f4e;
  --accent-dim:    rgba(59, 157, 255, 0.12);

  --text:          #e6edf3;
  --text-sub:      #9cb3cc;
  --text-muted:    #8b949e;
  --text-dim:      #6e7681;

  --green:         #3fb950;
  --red:           #ff6b6b;
  --orange:        #d08f58;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif;
  --font-mono: "Cascadia Code", "Fira Code", Consolas, "Courier New", monospace;

  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow:    0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.6);

  --max-w: 1100px;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

code, pre {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 20px rgba(59, 157, 255, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  border-color: var(--border);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-blue);
}
.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.btn-sm  { padding: 7px 15px; font-size: 0.85rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 6px 14px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(59, 157, 255, 0.12) 0%,
    transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--accent-dim);
  border: 1px solid var(--border-blue);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-sub);
  margin-bottom: 10px;
  line-height: 1.55;
}

.hero-support {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-compat {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.hero-compat .sep { color: var(--border); }

/* ─── Code Window ────────────────────────────────────────────── */
.code-window {
  background: #0d1117;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.code-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-r { background: #ff5f56; }
.dot-y { background: #febc2e; }
.dot-g { background: #27c840; }

.code-window-title {
  margin-left: 4px;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.code-window-body {
  padding: 20px 20px;
  overflow-x: auto;
}

.code-window-body pre {
  white-space: pre;
  line-height: 1.75;
}

/* ─── Syntax Colors ──────────────────────────────────────────── */
.c-label    { color: #8b949e; font-size: 0.78rem; letter-spacing: 0.06em; }
.c-code     { color: #79c0ff; }
.c-func     { color: #79c0ff; }
.c-type     { color: #ff7b72; }
.c-punct    { color: #8b949e; }
.c-path     { color: #8b949e; }
.c-num      { color: #a5d6ff; }
.c-muted    { color: #6e7681; }
.c-red      { color: #ff6b6b; }
.c-orange   { color: #d08f58; }
.c-divider  { color: #30363d; }
.c-frame-num { color: #6e7681; }
.c-finding  { color: #3fb950; font-weight: 600; }
.c-bullet   { color: #3b9dff; }
.c-conf     { color: #3b9dff; font-size: 0.78rem; letter-spacing: 0.06em; }
.c-dim      { color: #3d444d; }

/* ─── Sections (shared) ──────────────────────────────────────── */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ─── Built For ──────────────────────────────────────────────── */
.built-for {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 50%, var(--bg) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-col {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: border-color 0.2s;
}
.feature-col:hover { border-color: var(--border-blue); }

.feature-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.feature-col-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.feature-col-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--border-blue);
}
.feature-list li code {
  background: var(--bg);
  color: var(--c-code, #79c0ff);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.82rem;
  color: #79c0ff;
}

.trace-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trace-panel-label {
  padding: 10px 20px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.trace-body {
  padding: 20px 20px;
  overflow-x: auto;
}
.trace-body pre { line-height: 1.85; }

.trace-highlight {
  display: inline-block;
  background: rgba(59, 157, 255, 0.1);
  border-left: 2px solid var(--accent);
  color: var(--accent);
  padding: 2px 10px;
  margin: 4px 0;
  border-radius: 0 4px 4px 0;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ─── Explain Mode ───────────────────────────────────────────── */
.explain-mode { border-top: 1px solid var(--border); }

.comparison {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.comparison-col { flex: 1; }

.comparison-header {
  margin-bottom: 12px;
}

.comparison-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.comparison-badge-raw {
  background: rgba(255, 107, 107, 0.1);
  color: #ff8f8f;
  border: 1px solid rgba(255, 107, 107, 0.25);
}
.comparison-badge-cc {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-blue);
}

.comparison-arrow {
  display: flex;
  align-items: center;
  padding-top: 56px;
  flex-shrink: 0;
}

/* ─── Engineer Mode ──────────────────────────────────────────── */
.engineer-mode {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.engineer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.engineer-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.engineer-text > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

.engineer-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.engineer-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.eng-icon {
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1.4;
  flex-shrink: 0;
  margin-top: 1px;
}

.engineer-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.engineer-list li strong {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.engineer-list li span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ─── Team Tier ──────────────────────────────────────────────── */
.team-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.team-feature:hover {
  border-color: var(--border-blue);
  transform: translateY(-2px);
}

.team-feature-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.team-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.team-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Pricing ────────────────────────────────────────────────── */
.pricing { border-top: 1px solid var(--border); }

.pricing-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  padding: 12px 18px;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-notice svg { flex-shrink: 0; }

.pricing-notice a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing-notice a:hover { color: var(--accent-hover); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: var(--border-blue); }

.pricing-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #0f1e33 0%, var(--bg-card) 100%);
}
.pricing-featured:hover { border-color: var(--accent-hover); }

.pricing-featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.price-term {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-sub);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.82rem;
}

/* ─── Trust ──────────────────────────────────────────────────── */
.trust {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.trust-heading {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─── Final CTA ──────────────────────────────────────────────── */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.final-cta-glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(59, 157, 255, 0.14) 0%,
    transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.final-cta-sub {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand img { height: 30px; width: auto; }

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.8rem !important;
  color: var(--text-dim) !important;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col li a {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 0.15s;
}
.footer-col li a:hover { color: var(--text); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-panel         { display: none; }
  .features-grid      { grid-template-columns: 1fr; }
  .engineer-inner     { grid-template-columns: 1fr; }
  .engineer-panel     { display: none; }
  .team-features      { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid       { grid-template-columns: repeat(2, 1fr); }
  .comparison         { flex-direction: column; }
  .comparison-arrow   { display: none; }
  .footer-inner       { grid-template-columns: 1fr; gap: 40px; }
  .footer-links       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nav-links a:not(.btn) { display: none; }
  .team-features    { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .footer-links     { grid-template-columns: repeat(2, 1fr); }
  .trust-badges     { flex-direction: column; align-items: center; }
}

/* ─── Inner Pages (shared) ───────────────────────────────────── */
.page-hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.page-meta {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.page-body {
  padding: 64px 0 96px;
}

/* ─── Prose (legal / about content) ─────────────────────────── */
.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 48px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 14px;
}

.prose ul, .prose ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

.prose li {
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 6px;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover { color: var(--accent-hover); }

.prose strong { color: var(--text); font-weight: 600; }

.prose code {
  background: var(--bg-elevated);
  color: #79c0ff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

.prose .callout {
  background: var(--accent-dim);
  border: 1px solid var(--border-blue);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ─── Coming Soon pages ──────────────────────────────────────── */
.coming-soon {
  min-height: calc(100vh - 64px - 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.coming-soon-inner {
  max-width: 480px;
  margin: 0 auto;
}

.coming-soon-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  background: var(--accent-dim);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.coming-soon-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ─── Mailchimp form ─────────────────────────────────────────── */
.mc-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 12px;
}

.mc-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s;
  min-width: 0;
}

.mc-form input[type="email"]:focus {
  border-color: var(--accent);
}

.mc-form input[type="email"]::placeholder {
  color: var(--text-dim);
}

.mc-form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* ─── Status page ────────────────────────────────────────────── */
.status-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 0;
  max-width: 600px;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.status-row span:first-child { color: var(--text-muted); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}

.status-pill-ok {
  background: rgba(63, 185, 80, 0.12);
  color: var(--green);
  border: 1px solid rgba(63, 185, 80, 0.25);
}

.status-pill-pending {
  background: rgba(59, 157, 255, 0.1);
  color: var(--accent);
  border: 1px solid var(--border-blue);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* ─── About page specifics ───────────────────────────────────── */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.about-value {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.about-value h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.about-value p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 700px) {
  .about-values { grid-template-columns: 1fr; }
  .mc-form      { flex-direction: column; }
}
