@font-face { font-family: 'Plex Sans'; font-style: normal; font-weight: 400 700; src: url('../fonts/plex-sans-var.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Plex Mono'; font-style: normal; font-weight: 400; src: url('../fonts/plex-mono-400.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Plex Mono'; font-style: normal; font-weight: 500; src: url('../fonts/plex-mono-500.woff2') format('woff2'); font-display: swap; }

:root {
  --surface-0: #F3F6F6; --surface-1: #FFFFFF; --surface-2: #E7EDED; --surface-3: #DCE5E5;
  --border: #D3DEDE; --border-strong: #B9C8C8;
  --ink-primary: #101E1D; --ink-secondary: #435554; --ink-muted: #74898A;
  --accent: #9C6B2E; --accent-strong: #7E551F; --accent-soft: #F1E3D0;
  --good: #237A54; --good-soft: #DDEFE5;
  --warning: #A16A0A; --critical: #B23A28; --info: #2E6B80;
  --shadow: rgba(16, 30, 29, 0.10);
  --ink-terminal-bg: #0B1415;
  --font-display: 'Plex Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Plex Sans', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Plex Mono', ui-monospace, 'SF Mono', Consolas, monospace;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --surface-0: #0B1415; --surface-1: #101B1C; --surface-2: #17262A; --surface-3: #1F3033;
    --border: #24373A; --border-strong: #345053;
    --ink-primary: #EAF2F1; --ink-secondary: #A9BFBE; --ink-muted: #6D8A89;
    --accent: #D6A257; --accent-strong: #E8B96F; --accent-soft: #2C2013;
    --good: #57B98A; --good-soft: #16332A; --warning: #E0B23D; --critical: #E17A63; --info: #6FB0C4;
    --shadow: rgba(0, 0, 0, 0.45);
  }
}
:root[data-theme="dark"] {
  --surface-0: #0B1415; --surface-1: #101B1C; --surface-2: #17262A; --surface-3: #1F3033;
  --border: #24373A; --border-strong: #345053;
  --ink-primary: #EAF2F1; --ink-secondary: #A9BFBE; --ink-muted: #6D8A89;
  --accent: #D6A257; --accent-strong: #E8B96F; --accent-soft: #2C2013;
  --good: #57B98A; --good-soft: #16332A; --warning: #E0B23D; --critical: #E17A63; --info: #6FB0C4;
  --shadow: rgba(0, 0, 0, 0.45);
}
:root[data-theme="light"] {
  --surface-0: #F3F6F6; --surface-1: #FFFFFF; --surface-2: #E7EDED; --surface-3: #DCE5E5;
  --border: #D3DEDE; --border-strong: #B9C8C8;
  --ink-primary: #101E1D; --ink-secondary: #435554; --ink-muted: #74898A;
  --accent: #9C6B2E; --accent-strong: #7E551F; --accent-soft: #F1E3D0;
  --good: #237A54; --good-soft: #DDEFE5; --warning: #A16A0A; --critical: #B23A28; --info: #2E6B80;
  --shadow: rgba(16, 30, 29, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--surface-0); color: var(--ink-primary); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }
a { color: inherit; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, .reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; } }

.wrap { max-width: 1600px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

/* ---- Nav ---- */
.nav { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--surface-0) 85%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 28px; padding: 14px clamp(20px, 4vw, 56px); max-width: 1600px; margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em; margin-right: auto; }
.brand-mark { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(145deg, var(--accent-strong), var(--accent)); position: relative; flex: none; }
.brand-mark::after { content: ""; position: absolute; inset: 5px; border: 1.5px solid var(--surface-1); border-radius: 2px; }
.brand-sub { font-size: 10px; font-weight: 600; color: var(--ink-muted); background: var(--surface-2); padding: 2px 6px; border-radius: 4px; margin-left: 4px; letter-spacing: .03em; text-transform: uppercase; }
.nav-links { display: flex; gap: 22px; font-size: 13.5px; font-weight: 600; color: var(--ink-secondary); }
.nav-links a:hover { color: var(--ink-primary); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 760px) { .nav-links { display: none; } }

.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; padding: 10px 18px; border-radius: 8px; border: 1px solid var(--border-strong); cursor: pointer; background: var(--surface-1); color: var(--ink-primary); transition: background .15s, border-color .15s, transform .1s; text-decoration: none; white-space: nowrap; }
.btn:hover { background: var(--surface-2); transform: translateY(-1px); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #1A1206; }
.btn-primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.btn-lg { padding: 13px 24px; font-size: 14.5px; }

/* ---- Hero ---- */
.hero { padding: clamp(56px, 9vw, 108px) 0 clamp(40px, 6vw, 64px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-strong); background: var(--accent-soft); border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px; margin-bottom: 22px; }
.hero-title { font-size: clamp(36px, 5.2vw, 60px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
.hero-title em { font-style: normal; color: var(--accent-strong); }
.hero-sub { font-size: clamp(15px, 1.6vw, 18px); color: var(--ink-secondary); margin-top: 22px; max-width: 46ch; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 12.5px; color: var(--ink-muted); }

.reveal { opacity: 0; transform: translateY(14px); animation: reveal-in .6s ease-out forwards; }
@keyframes reveal-in { to { opacity: 1; transform: translateY(0); } }

/* ---- Terminal hero visual ---- */
.term-window { background: var(--ink-terminal-bg); border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 24px 60px -20px var(--shadow); }
.term-titlebar { background: #17262A; padding: 10px 14px; display: flex; align-items: center; gap: 7px; }
.term-dot { width: 9px; height: 9px; border-radius: 50%; }
.term-path { margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: #7C9190; }
.term-body { padding: 18px 20px; font-family: var(--font-mono); font-size: 12.5px; color: #C9D6D5; min-height: 300px; line-height: 1.85; }
.term-prompt { color: #E8B96F; }
.term-line { opacity: 0; white-space: pre-wrap; }
.term-line.shown { animation: term-in .35s ease-out forwards; }
@keyframes term-in { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: translateY(0); } }
.term-cursor { display: inline-block; width: 7px; height: 13px; background: #E8B96F; vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.term-ok { color: #57B98A; } .term-warn { color: #E0B23D; } .term-info { color: #6FB0C4; } .term-dim { color: #7C9190; }

/* ---- Stats band ---- */
.stats-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-1); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 30px 0; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
.stat { text-align: left; }
.stat-value { font-family: var(--font-mono); font-size: clamp(22px, 2.6vw, 30px); font-weight: 500; }
.stat-label { font-size: 12.5px; color: var(--ink-muted); margin-top: 4px; }

/* ---- Sections ---- */
section.pad { padding: clamp(56px, 8vw, 96px) 0; }
.section-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--accent-strong); margin-bottom: 12px; }
.section-title { font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; letter-spacing: -0.02em; max-width: 24ch; }
.section-sub { font-size: 15.5px; color: var(--ink-secondary); margin-top: 14px; max-width: 58ch; line-height: 1.65; }

/* ---- Feature grid ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-top: 44px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--surface-1); padding: 26px 24px; transition: background .15s; }
.feature-card:hover { background: var(--surface-2); }
.feature-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent-strong); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-title { font-size: 15.5px; font-weight: 700; letter-spacing: -0.005em; }
.feature-desc { font-size: 13.5px; color: var(--ink-secondary); margin-top: 8px; line-height: 1.6; }
.tag-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: var(--ink-secondary); background: var(--surface-1); border: 1px solid var(--border); padding: 7px 13px; border-radius: 999px; }
.tag-pill svg { color: var(--accent-strong); flex: none; }

/* ---- Screenshot proof ---- */
.proof-frame { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px -30px var(--shadow); margin-top: 44px; }
.proof-chrome { display: grid; grid-template-columns: 200px 1fr; min-height: 380px; }
.proof-sidebar { background: #2B323C; padding: 0; }
.proof-sidebar-search { padding: 10px 10px 6px; }
.proof-sidebar-search input { width: 100%; background: #232A33; border: 1px solid #38414D; color: #C7D0D6; border-radius: 6px; padding: 6px 9px; font-size: 11.5px; }
.proof-stage-head { display: flex; align-items: center; gap: 7px; padding: 12px 12px 4px; color: #7C8A96; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.proof-branch-row { display: flex; align-items: center; gap: 8px; padding: 8px 12px 8px 16px; font-size: 12.5px; color: #B9C3CB; }
.proof-branch-row.active { background: #232A33; color: #fff; font-weight: 600; border-left: 2px solid #00A09D; padding-left: 14px; }
.proof-dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.proof-main { background: var(--surface-1); padding: 20px 24px; }
.proof-branch-title { font-family: var(--font-mono); font-size: 19px; font-weight: 700; }
.proof-tabs { display: flex; gap: 16px; margin: 14px 0; border-bottom: 1px solid var(--border); font-size: 12px; font-weight: 700; color: var(--ink-muted); }
.proof-tabs span { padding-bottom: 8px; }
.proof-tabs span.active { color: var(--accent-strong); border-bottom: 2px solid var(--accent); }
.proof-history-item { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 12.5px; }
.proof-history-item .pill { font-size: 10px; font-weight: 700; background: var(--surface-2); color: var(--ink-secondary); padding: 2px 7px; border-radius: 4px; }

/* ---- Pipeline visual ---- */
.pipeline-demo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
@media (max-width: 760px) { .pipeline-demo { grid-template-columns: 1fr; } }
.pipe-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: 12px; padding: 20px; position: relative; }
.pipe-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-muted); display: flex; align-items: center; gap: 7px; }
.pipe-dot { width: 8px; height: 8px; border-radius: 50%; }
.pipe-branch { font-family: var(--font-mono); font-size: 14px; font-weight: 600; margin-top: 10px; }
.pipe-meta { font-size: 12px; color: var(--ink-muted); margin-top: 6px; }
.pipe-arrow { display: none; }
@media (min-width: 761px) {
  .pipe-arrow { display: flex; position: absolute; right: -24px; top: 50%; transform: translateY(-50%); z-index: 2; width: 32px; height: 32px; background: var(--surface-0); border: 1px solid var(--border); border-radius: 50%; align-items: center; justify-content: center; color: var(--ink-muted); }
}

/* ---- Tier compare ---- */
.tier-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
@media (max-width: 760px) { .tier-compare { grid-template-columns: 1fr; } }
.tier-card { border: 1.5px solid var(--border); border-radius: 14px; padding: 28px; background: var(--surface-1); }
.tier-card.featured { border-color: var(--accent); background: var(--accent-soft); }
.tier-name { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; }
.node-icon { width: 11px; height: 11px; border-radius: 2px; display: inline-block; border: 1.5px solid currentColor; }
.node-icon.dedicated { background: currentColor; }
.node-icon.shared { background-image: repeating-linear-gradient(45deg, currentColor 0, currentColor 1.5px, transparent 1.5px, transparent 4px); }
.tier-desc { font-size: 13.5px; color: var(--ink-secondary); margin-top: 8px; }
.tier-list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tier-list li { font-size: 13.5px; display: flex; gap: 9px; align-items: flex-start; }
.tier-list li::before { content: "✓"; color: var(--good); font-weight: 700; flex: none; }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { border: 1.5px solid var(--border); border-radius: 14px; padding: 28px; background: var(--surface-1); display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--accent); box-shadow: 0 20px 44px -24px var(--shadow); }
.price-plan { font-weight: 700; font-size: 15px; }
.price-value { font-family: var(--font-mono); font-size: 34px; font-weight: 500; margin-top: 10px; }
.price-value span { font-size: 14px; color: var(--ink-muted); font-weight: 400; }
.price-list { list-style: none; margin: 20px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price-list li { font-size: 13px; color: var(--ink-secondary); display: flex; gap: 8px; }
.price-list li::before { content: "—"; color: var(--ink-muted); flex: none; }

/* ---- Final CTA ---- */
.cta-band { background: var(--ink-primary); color: var(--surface-0); border-radius: 20px; padding: clamp(40px, 6vw, 64px); text-align: center; margin: clamp(56px, 8vw, 96px) auto; }
.cta-band .section-title { color: #fff; max-width: none; }
.cta-band .section-sub { color: #A9BFBE; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 28px; }
.cta-band .btn:not(.btn-primary) { background: transparent; border-color: #345053; color: #EAF2F1; }
.cta-band .btn:not(.btn-primary):hover { background: rgba(255,255,255,.06); }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--border); padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(2, 1fr); gap: 32px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col-title { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-muted); margin-bottom: 14px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13.5px; }
.footer-links a:hover { color: var(--accent-strong); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 12.5px; color: var(--ink-muted); flex-wrap: wrap; gap: 10px; }

/* ---- Auth pages (login/signup/forgot-password) ---- */
.auth-shell { min-height: calc(100vh - 65px); display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
.auth-brand-panel { position: relative; background: linear-gradient(165deg, #132321, var(--ink-terminal-bg) 65%); color: #E9F1EF; padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; overflow: hidden; }
.auth-brand-panel::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 1.5px 1.5px, rgba(233,241,239,0.07) 1px, transparent 0); background-size: 22px 22px; pointer-events: none; }
.auth-brand-panel .brand { color: #fff; position: relative; }
.auth-brand-panel .brand-sub { background: rgba(233,241,239,0.1); color: #C7D6D3; }
.auth-brand-body { margin: auto 0; position: relative; max-width: 40ch; }
.auth-brand-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #E8B96F; margin-bottom: 16px; }
.auth-brand-headline { font-size: clamp(24px, 2.6vw, 32px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.18; }
.auth-brand-headline em { font-style: normal; color: #E8B96F; }
.auth-brand-sub { font-size: 14px; color: #9FB4B1; margin-top: 16px; line-height: 1.65; }
.auth-brand-bullets { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; position: relative; }
.auth-brand-bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: #D5E1DE; }
.auth-brand-bullets li::before { content: "✓"; color: #57B98A; font-weight: 700; flex: none; }
.auth-brand-foot { position: relative; font-size: 12px; color: #71908C; margin-top: 32px; }
@media (max-width: 860px) { .auth-shell { grid-template-columns: 1fr; } .auth-brand-panel { display: none; } }
@media (min-width: 861px) { .auth-page-nav { display: none; } }
.auth-form-panel { display: flex; align-items: center; justify-content: center; padding: 48px 20px; }
.auth-card { width: 100%; max-width: 400px; background: var(--surface-1); border: 1px solid var(--border); border-radius: 14px; padding: 32px; box-shadow: 0 20px 50px -24px var(--shadow); }
.auth-card.wide { max-width: 440px; }
.auth-title { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; text-align: center; }
.auth-sub { font-size: 13.5px; color: var(--ink-secondary); text-align: center; margin-top: 8px; line-height: 1.5; }
.auth-form { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--ink-secondary); }
.field input, .field select { background: var(--surface-1); border: 1px solid var(--border-strong); border-radius: 8px; padding: 10px 12px; font-size: 14px; color: var(--ink-primary); font-family: inherit; }
.field input:focus, .field select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.field-row-inline { display: flex; justify-content: space-between; align-items: baseline; }
.field-hint { font-size: 12px; color: var(--ink-muted); }
.field-error { font-size: 12px; color: var(--critical); display: none; }
.field.has-error input { border-color: var(--critical); }
.field.has-error .field-error { display: block; }
.auth-submit { width: 100%; justify-content: center; padding: 11px 18px; font-size: 14px; }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--ink-muted); font-size: 12px; margin: 4px 0; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.oauth-row { display: flex; flex-direction: column; gap: 10px; }
.oauth-btn { display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%; padding: 10px 16px; border-radius: 8px; border: 1px solid var(--border-strong); background: var(--surface-1); color: var(--ink-primary); font-size: 13.5px; font-weight: 600; cursor: pointer; text-decoration: none; }
.oauth-btn:hover { background: var(--surface-2); }
.auth-foot { text-align: center; font-size: 13px; color: var(--ink-secondary); margin-top: 22px; }
.auth-foot a { color: var(--accent-strong); font-weight: 600; }
.auth-check { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: var(--ink-secondary); line-height: 1.5; }
.auth-check input { margin-top: 3px; }
.auth-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-muted); margin-bottom: 18px; }
.auth-back:hover { color: var(--ink-primary); }
.auth-success-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--good-soft); color: var(--good); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 22px; }
.plan-badge-row { display: flex; justify-content: center; margin-top: 4px; }

/* Admin variant — same shell, red-accented brand mark to visually separate from customer auth */
.admin-shell .brand-mark { background: linear-gradient(145deg, #7A2E2E, #B23A28); }
.admin-shell .btn-primary { background: #B23A28; border-color: #B23A28; color: #fff; }
.admin-shell .btn-primary:hover { background: #9A2F20; border-color: #9A2F20; }
.admin-shell .field input:focus { outline-color: #B23A28; }
.admin-shell .auth-brand-panel { background: linear-gradient(165deg, #241412, #150B0A 65%); }
.admin-shell .auth-brand-eyebrow { color: #E39A82; }
.admin-shell .auth-brand-headline em { color: #E39A82; }
.admin-shell .auth-brand-bullets li::before { color: #E39A82; }

/* Comparison table (HostOdoo vs. Odoo.sh) — shared by the homepage's
   condensed teaser section and the full /compare page. */
.cmp-intro { max-width: 68ch; }
.cmp-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 12px; margin-top: 32px; }
table.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
table.cmp-table th, table.cmp-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
table.cmp-table thead th { background: var(--surface-2); font-family: var(--font-display); font-weight: 700; font-size: 13px; }
table.cmp-table th.cmp-dim-col { width: 22%; color: var(--ink-muted); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; }
table.cmp-table td.cmp-dim { color: var(--ink-muted); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; }
table.cmp-table tbody tr:last-child td { border-bottom: none; }
table.cmp-table td.cmp-hostodoo { background: var(--accent-soft); }
.cmp-not-yet { color: var(--ink-muted); }
.cmp-note { font-size: 12.5px; color: var(--ink-muted); margin-top: 28px; max-width: 68ch; }
.cmp-legend { display: flex; gap: 18px; margin-top: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-muted); }
.cmp-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cmp-swatch { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
