/* =============================================================================
 * Anstello — landing page styles
 *
 * Mirrors the in-app design system: the design tokens below are the same
 * CSS variables defined in design/handover/web/src/styles/index.css. Keep
 * them in sync — when the app's tokens move, these should move too.
 *
 * Scope:
 *   - Tokens (variables)        — exactly mirror the app
 *   - Reset + base typography   — marketing scale, looser than the tool's
 *   - Layout primitives         — .container, section spacing
 *   - Component atoms           — button, chip, score, status, card
 *   - Section blocks            — nav, hero, brief, how, feature, etc.
 *   - Inline product-mock CSS   — keep at bottom, easy to delete when the
 *                                 designer replaces with real screenshots
 *
 * For designer rework: the page is intentionally a single static HTML +
 * single CSS file. No build step, no React, no Tailwind. Open index.html
 * in any browser; edit this file in any editor; ship.
 * ============================================================================= */


/* -- 1. TOKENS — mirror of the app's design system --------------------------- */

@import url('https://rsms.me/inter/inter.css');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Surfaces */
  --bg-0: #0b0d10;
  --bg-1: #11141a;
  --bg-2: #161a22;
  --bg-3: #1d222b;
  --bg-hover: #1d222b;

  /* Foreground */
  --fg-0: #e8ecf2;
  --fg-1: #c2cad6;
  --fg-2: #8a93a3;
  --fg-3: #5b6473;
  --fg-on-accent: #ffffff;

  /* Lines */
  --line-1: #232833;
  --line-2: #2c323f;

  /* Accent */
  --accent: #5a8eef;
  --accent-hover: #6b9bf3;
  --accent-soft: rgba(90, 142, 239, 0.16);

  /* Status palette (UI-SPEC §3.3) */
  --status-neu-fg: #c2cad6;        --status-neu-bg: rgba(138, 147, 163, 0.16);
  --status-spaeter-fg: #f4be6c;    --status-spaeter-bg: rgba(244, 190, 108, 0.14);
  --status-beworben-fg: #6ea8f5;   --status-beworben-bg: rgba(110, 168, 245, 0.14);
  --status-interview-fg: #b791f0;  --status-interview-bg: rgba(183, 145, 240, 0.14);
  --status-angebot-fg: #8aa0f5;    --status-angebot-bg: rgba(138, 160, 245, 0.14);
  --status-gewonnen-fg: #6ed39a;   --status-gewonnen-bg: rgba(110, 211, 154, 0.14);
  --status-verloren-fg: #ee7a7a;   --status-verloren-bg: rgba(238, 122, 122, 0.14);
  --status-ignoriert-fg: #6b7280;  --status-ignoriert-bg: rgba(107, 114, 128, 0.10);

  /* Score chips (BRIEF §6.2) */
  --score-high-fg: #6ed39a;        --score-high-bg: rgba(110, 211, 154, 0.16);
  --score-mid-fg:  #f4be6c;        --score-mid-bg:  rgba(244, 190, 108, 0.16);
  --score-low-fg:  #c2cad6;        --score-low-bg:  rgba(194, 202, 214, 0.10);
  --score-bad-fg:  #ee7a7a;        --score-bad-bg:  rgba(238, 122, 122, 0.16);

  /* Marketing-only scale (looser than tool's 14/20 base) */
  --m-display: 64px;
  --m-display-line: 70px;
  --m-h2: 32px;
  --m-h2-line: 40px;
  --m-h3: 22px;
  --m-h3-line: 28px;
  --m-body: 17px;
  --m-body-line: 26px;
  --m-small: 13px;
  --m-small-line: 18px;

  color-scheme: dark;
}


/* -- 2. RESET + BASE -------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-0);
  color: var(--fg-0);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  font-size: var(--m-body);
  line-height: var(--m-body-line);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg-0), 0 0 0 4px var(--accent);
  border-radius: 6px;
}

::selection { background: var(--accent-soft); color: var(--fg-0); }


/* -- 3. TYPE — marketing scale --------------------------------------------- */

h1, h2, h3, h4, p { margin: 0; }

.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-2);
}

.display {
  font-family: 'Inter', sans-serif;
  font-size: var(--m-display);
  line-height: var(--m-display-line);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg-0);
}

h2 {
  font-size: var(--m-h2);
  line-height: var(--m-h2-line);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--fg-0);
}

h3 {
  font-size: var(--m-h3);
  line-height: var(--m-h3-line);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--fg-0);
}

p { color: var(--fg-1); }
.muted { color: var(--fg-2); }
.mono  { font-family: 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: 'tnum'; }
.tnum  { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }


/* -- 4. LAYOUT PRIMITIVES --------------------------------------------------- */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }
section.tight { padding: 72px 0; }

@media (max-width: 768px) {
  section { padding: 64px 0; }
  section.tight { padding: 48px 0; }
}


/* -- 5. ATOMS — mirror of in-app components --------------------------------- */

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--fg-on-accent);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary {
  background: transparent;
  color: var(--fg-0);
  border: 1px solid var(--line-2);
}
.btn-secondary:hover { background: var(--bg-2); border-color: var(--fg-3); }
.btn-ghost {
  background: transparent;
  color: var(--fg-1);
}
.btn-ghost:hover { color: var(--fg-0); }
.btn-lg { padding: 12px 22px; font-size: 15px; line-height: 22px; }

/* Card */
.card {
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 10px;
  padding: 24px;
}
.card-head { font-size: 14px; color: var(--fg-2); margin-bottom: 8px; }
.card h3   { margin-bottom: 8px; }
.card p    { font-size: 15px; line-height: 23px; color: var(--fg-1); }

/* Score chip — reused from app's BRIEF §6.2 */
.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 26px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.score-high { color: var(--score-high-fg); background: var(--score-high-bg); }
.score-mid  { color: var(--score-mid-fg);  background: var(--score-mid-bg);  }
.score-low  { color: var(--score-low-fg);  background: var(--score-low-bg);  }
.score-bad  { color: var(--score-bad-fg);  background: var(--score-bad-bg);  }

/* Status pill — mirror of UI-SPEC §3.3 */
.status {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.status-neu       { color: var(--status-neu-fg);       background: var(--status-neu-bg); }
.status-spaeter   { color: var(--status-spaeter-fg);   background: var(--status-spaeter-bg); }
.status-beworben  { color: var(--status-beworben-fg);  background: var(--status-beworben-bg); }
.status-interview { color: var(--status-interview-fg); background: var(--status-interview-bg); }
.status-angebot   { color: var(--status-angebot-fg);   background: var(--status-angebot-bg); }
.status-gewonnen  { color: var(--status-gewonnen-fg);  background: var(--status-gewonnen-bg); }
.status-verloren  { color: var(--status-verloren-fg);  background: var(--status-verloren-bg); }
.status-ignoriert { color: var(--status-ignoriert-fg); background: var(--status-ignoriert-bg); }

/* Skill chip (matched / missing) */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 22px; padding: 0 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.chip-match   { color: var(--score-high-fg); background: var(--score-high-bg); }
.chip-miss    { color: var(--fg-2); background: transparent; border: 1px solid var(--line-2); }

/* Hairline divider */
.hairline { height: 1px; background: var(--line-1); }


/* -- 6. WORDMARK ------------------------------------------------------------ */

.wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg-0);
  display: inline-flex;
  align-items: baseline;
}
/* The dot on the "i" in "anstello" is replaced with an accent square,
 * achieved by overlaying the dot with a pseudo-element. We keep the text
 * accessible (the "i" is real); the square is decorative. */
.wordmark .dotted-i {
  position: relative;
  display: inline-block;
}
.wordmark .dotted-i::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  /* Position the dot at the same place the "i" tittle would be. Tuned for
   * Inter at the wordmark sizes used on this page. */
  top: 0.18em;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
}
/* Hide the original i-tittle by setting font-feature: 'cv11' to the dotless
 * form would be ideal, but we don't have a dotless 'i' in Inter. Instead
 * we let the tittle show through — at 4 px the accent square sits right on
 * top of it, and the colour difference makes it read as the new dot. */


/* -- 7. NAV ---------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 16, 0.0);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, backdrop-filter 200ms ease;
}
.nav.scrolled {
  background: rgba(11, 13, 16, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--line-1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 14px;
  color: var(--fg-1);
}
.nav-links a:hover { color: var(--fg-0); }


/* -- 8. HERO --------------------------------------------------------------- */

.hero {
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 { margin-top: 16px; }
.hero h1 .line { display: block; }
.hero p.lead {
  margin-top: 20px;
  max-width: 60ch;
  color: var(--fg-1);
  font-size: var(--m-body);
  line-height: var(--m-body-line);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-microcopy {
  margin-top: 14px;
  font-size: 12px;
  color: var(--fg-2);
}
.hero-mock-frame {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 30px 60px -30px rgba(0, 0, 0, 0.6),
    -1px 0 32px -8px rgba(90, 142, 239, 0.18);
}

/* "Live ticker" under the hero columns */
.ticker {
  margin-top: 56px;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  padding: 14px 0;
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.ticker-label {
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-3);
  background: var(--bg-1);
  padding-right: 16px;
  z-index: 2;
}
.ticker-track {
  display: flex; gap: 48px;
  white-space: nowrap;
  animation: tickerScroll 50s linear infinite;
  padding-left: 220px;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: var(--fg-1);
}
.ticker-item .score { transform: scale(0.85); transform-origin: center; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}


/* -- 9. THE BRIEF (problem framing) ---------------------------------------- */

.brief h2 { margin-bottom: 20px; }
.brief p { color: var(--fg-1); }
.brief p + p { margin-top: 16px; }


/* -- 10. HOW IT WORKS ------------------------------------------------------ */

.how {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; }
}
.how-card {
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 10px;
  padding: 28px;
}
.how-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 16px;
}
.how-card h3 { margin-bottom: 10px; }
.how-card p { font-size: 15px; line-height: 24px; color: var(--fg-1); }


/* -- 11. FEATURE BLOCKS ---------------------------------------------------- */

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}
.feature.image-left { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.feature.image-left .feature-text { order: 2; }
.feature.image-left .feature-image { order: 1; }
@media (max-width: 1024px) {
  .feature, .feature.image-left {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature.image-left .feature-text,
  .feature.image-left .feature-image { order: initial; }
}
.feature-text h2 { margin-bottom: 16px; }
.feature-text p  { font-size: 16px; line-height: 26px; color: var(--fg-1); }
.feature-text p + p { margin-top: 14px; }
.feature-image {
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 12px;
  overflow: hidden;
}


/* -- 12. SAFETY & TRUST band ----------------------------------------------- */

.safety {
  background: var(--bg-1);
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 900px) {
  .safety-grid { grid-template-columns: 1fr; gap: 32px; }
}
.safety-item h3 { font-size: 17px; line-height: 24px; margin-bottom: 8px; }
.safety-item p  { font-size: 15px; line-height: 24px; color: var(--fg-2); }


/* -- 13. PRICING ----------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.pricing-grid.two {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}
@media (max-width: 900px) {
  .pricing-grid,
  .pricing-grid.two { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card h3 { margin-bottom: 0; }
.price-card .price-amount {
  font-size: 40px;
  line-height: 44px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}
.price-card .price-amount .per {
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-2);
  margin-left: 4px;
}
.price-card .desc { color: var(--fg-2); font-size: 14px; line-height: 20px; }
.price-card ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
  color: var(--fg-1);
}
.price-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
}
.price-card ul li::before {
  content: '';
  flex: 0 0 auto;
  width: 14px; height: 14px;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.5L4.5 9L10 3.5' stroke='%235a8eef' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.price-card .btn { margin-top: auto; }
.pricing-footnote {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--fg-2);
}


/* -- 14. FAQ --------------------------------------------------------------- */

.faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  border-top: 1px solid var(--line-1);
}
.faq-item {
  border-bottom: 1px solid var(--line-1);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--fg-0);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: var(--fg-2);
  transition: transform 160ms ease;
}
.faq-item[open] summary::after { content: '−'; color: var(--accent); }
.faq-item .faq-body {
  padding: 0 0 22px;
  color: var(--fg-1);
  font-size: 15px;
  line-height: 25px;
  max-width: 70ch;
}


/* -- 15. FINAL CTA --------------------------------------------------------- */

.final-cta {
  text-align: center;
  padding: 96px 0;
}
.final-cta h2 { max-width: 22ch; margin: 0 auto 20px; }
.final-cta .btn { margin-top: 8px; }
.final-cta .signature {
  margin-top: 20px;
  font-size: 13px;
  color: var(--fg-2);
}


/* -- 16. FOOTER ------------------------------------------------------------ */

footer.site-footer {
  border-top: 1px solid var(--line-1);
  padding: 48px 0 36px;
  background: var(--bg-1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 12px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: var(--fg-1); font-size: 14px; }
.footer-col a:hover { color: var(--fg-0); }
.footer-meta {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line-1);
  padding-top: 24px;
  font-size: 13px;
  color: var(--fg-3);
}
.footer-meta .wordmark { opacity: 0.7; }
.footer-meta .meta-right { display: flex; align-items: center; gap: 14px; }


/* =========================================================================
 * 17. INLINE PRODUCT MOCKS
 *
 * These are hand-coded approximations of the in-app views, used as
 * placeholders until the designer drops in real screenshots. Each mock is
 * self-contained and removable: the parent container (.hero-mock-frame
 * or .feature-image) keeps its rounded frame, so swapping a mock for an
 * <img> doesn't disturb layout.
 * ========================================================================= */

/* — Catalog mock (hero, right column) — */
.mock-catalog { padding: 14px; }
.mock-catalog .toolbar {
  display: flex; align-items: center; justify-content: space-between;
  height: 32px;
  padding: 0 8px;
  background: var(--bg-2);
  border: 1px solid var(--line-1);
  border-radius: 6px;
  font-size: 12px;
  color: var(--fg-2);
  margin-bottom: 12px;
}
.mock-catalog .toolbar .filters { display: flex; gap: 8px; }
.mock-catalog .toolbar .pill {
  height: 22px; padding: 0 8px;
  border-radius: 4px;
  background: var(--bg-3);
  color: var(--fg-1);
  display: inline-flex; align-items: center;
  font-size: 11px;
}
.mock-catalog table { width: 100%; border-collapse: collapse; }
.mock-catalog thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 10px 12px 8px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line-1);
}
.mock-catalog tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line-1);
  font-size: 13px;
  color: var(--fg-1);
}
.mock-catalog tr.row-active td { background: var(--bg-3); }
.mock-catalog .role-title { color: var(--fg-0); font-weight: 500; }
.mock-catalog .role-meta  { color: var(--fg-2); font-size: 12px; margin-top: 2px; }
.mock-catalog .col-score  { width: 56px; }
.mock-catalog .col-status { width: 80px; }

.mock-catalog .reasoning-rail {
  margin-top: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 14px 16px;
}
.mock-catalog .reasoning-rail .rail-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 10px;
}
.mock-catalog .reasoning-rail p {
  font-size: 13px;
  line-height: 20px;
  color: var(--fg-1);
  margin-bottom: 12px;
}
.mock-catalog .chips { display: flex; flex-wrap: wrap; gap: 6px; }

/* — CV interview mock — */
.mock-cv-interview {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) {
  .mock-cv-interview { grid-template-columns: 1fr; }
}
.mock-cv-interview .pane {
  padding: 16px;
}
.mock-cv-interview .pane + .pane {
  border-left: 1px solid var(--line-1);
}
@media (max-width: 700px) {
  .mock-cv-interview .pane + .pane { border-left: 0; border-top: 1px solid var(--line-1); }
}
.mock-cv-interview .pane-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 12px;
}
.bubble {
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 10px;
  max-width: 100%;
}
.bubble-agent {
  background: var(--bg-2);
  color: var(--fg-1);
  border: 1px solid var(--line-1);
}
.bubble-user {
  background: var(--accent-soft);
  color: var(--fg-0);
  border: 1px solid rgba(90, 142, 239, 0.28);
}
.cv-block {
  background: var(--bg-2);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 12px 14px;
}
.cv-block + .cv-block { margin-top: 10px; }
.cv-block .cv-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--fg-0); font-weight: 500;
  margin-bottom: 6px;
}
.cv-block .cv-head .when { font-size: 11px; color: var(--fg-3); font-family: 'JetBrains Mono', monospace; }
.cv-block ul { list-style: none; padding: 0; margin: 0; font-size: 12px; color: var(--fg-1); display: flex; flex-direction: column; gap: 4px; }
.cv-block ul li { display: flex; gap: 8px; }
.cv-block ul li::before { content: '·'; color: var(--fg-3); }
.cv-block ul li.added { color: var(--score-high-fg); }
.cv-block ul li.added::before { content: '+'; color: var(--score-high-fg); }
.added-pill {
  display: inline-flex; align-items: center;
  height: 18px; padding: 0 6px;
  border-radius: 4px;
  background: var(--score-high-bg);
  color: var(--score-high-fg);
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  margin-left: 8px;
}

/* — Sources modal mock — */
.mock-sources { padding: 18px; }
.mock-sources .modal-head {
  font-size: 13px;
  color: var(--fg-2);
  margin-bottom: 10px;
}
.mock-sources textarea {
  width: 100%;
  height: 88px;
  background: var(--bg-2);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--fg-0);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 20px;
  resize: none;
}
.mock-sources textarea:focus { outline: none; border-color: var(--accent); }
.mock-sources .preview-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg-3);
  margin: 16px 0 8px;
}
.mock-sources .preview {
  display: flex; flex-direction: column; gap: 6px;
}
.mock-sources .url-chip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line-1);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fg-1);
}
.mock-sources .url-chip .test-pill {
  height: 18px; padding: 0 6px;
  border-radius: 4px;
  font-size: 10px;
  display: inline-flex; align-items: center; gap: 4px;
}
.mock-sources .url-chip .test-pill.ok    { background: var(--score-high-bg); color: var(--score-high-fg); }
.mock-sources .url-chip .test-pill.drift { background: var(--score-mid-bg);  color: var(--score-mid-fg); }
.mock-sources .url-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}

/* — Diff panel mock — */
.mock-diff { display: flex; flex-direction: column; }
.mock-diff .validator-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: var(--score-high-bg);
  color: var(--score-high-fg);
  font-size: 12px;
  border-bottom: 1px solid var(--line-1);
  font-family: 'JetBrains Mono', monospace;
}
.mock-diff .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mock-diff .col { padding: 16px; }
.mock-diff .col + .col { border-left: 1px solid var(--line-1); }
.mock-diff .col-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 10px;
}
.mock-diff .bullet {
  font-size: 13px;
  line-height: 19px;
  padding: 6px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  color: var(--fg-1);
}
.mock-diff .bullet del   { color: var(--score-bad-fg); text-decoration: line-through; background: var(--score-bad-bg); padding: 0 2px; }
.mock-diff .bullet ins   { color: var(--score-high-fg); text-decoration: none; background: var(--score-high-bg); padding: 0 2px; }
.mock-diff .bullet em    { color: var(--score-mid-fg); font-style: normal; background: var(--score-mid-bg); padding: 0 2px; }

/* — Pipeline kanban mock — */
.mock-pipeline { padding: 14px; overflow-x: auto; }
.mock-pipeline .columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
}
.mock-pipeline .col {
  background: var(--bg-2);
  border: 1px solid var(--line-1);
  border-radius: 8px;
  padding: 10px;
}
.mock-pipeline .col-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  margin-bottom: 10px;
}
.mock-pipeline .col-head .count {
  font-family: 'JetBrains Mono', monospace;
  color: var(--fg-3);
}
.mock-pipeline .kcard {
  background: var(--bg-1);
  border: 1px solid var(--line-1);
  border-radius: 6px;
  padding: 10px;
  font-size: 12px;
  color: var(--fg-1);
  margin-bottom: 8px;
}
.mock-pipeline .kcard .ktitle { color: var(--fg-0); font-weight: 500; margin-bottom: 4px; }
.mock-pipeline .kcard .kmeta  { color: var(--fg-3); font-size: 11px; font-family: 'JetBrains Mono', monospace; }
.mock-pipeline .popover {
  margin-top: 8px;
  padding: 10px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 6px;
  font-size: 12px;
  color: var(--fg-1);
}
.mock-pipeline .popover .popover-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 4px;
}
