/* Meister-ERP — Edler Editorial Look */
:root {
  /* Warmes, cremiges Papier */
  --bg: oklch(0.975 0.008 75);
  --bg-alt: oklch(0.955 0.012 72);
  --bg-deep: oklch(0.93 0.014 70);
  --bg-card: oklch(0.99 0.005 80);

  /* Tiefer, warmer Tintenton statt Schwarz */
  --ink: oklch(0.22 0.015 50);
  --ink-soft: oklch(0.42 0.012 50);
  --ink-mute: oklch(0.58 0.01 55);

  --line: oklch(0.88 0.01 70);
  --line-soft: oklch(0.92 0.008 70);
  --line-strong: oklch(0.78 0.012 65);

  /* Gedämpftes Gold/Bronze statt Kupfer */
  --accent: oklch(0.56 0.09 70);
  --accent-ink: oklch(0.38 0.08 65);
  --accent-soft: oklch(0.94 0.025 75);

  /* Zweiter subtiler Akzent: Tiefes Tannengrün für Status */
  --ok: oklch(0.5 0.06 150);

  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px oklch(0.22 0.015 50 / 0.05);
  --shadow: 0 12px 30px -12px oklch(0.22 0.015 50 / 0.12), 0 2px 4px oklch(0.22 0.015 50 / 0.04);
  --shadow-lg: 0 40px 80px -30px oklch(0.22 0.015 50 / 0.2), 0 4px 12px oklch(0.22 0.015 50 / 0.06);
  --max: 1200px;
  --pad: clamp(20px, 4vw, 40px);

  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  background-image:
    radial-gradient(ellipse 1400px 700px at 50% -200px, oklch(0.94 0.03 75 / 0.5), transparent 65%);
  background-attachment: fixed;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 350;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--ink);
  font-variation-settings: 'SOFT' 50, 'opsz' 144;
}
h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  letter-spacing: -0.035em;
  font-weight: 340;
  line-height: 1.02;
}
h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  letter-spacing: -0.025em;
  font-weight: 360;
}
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); letter-spacing: -0.015em; font-weight: 380; }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 500; letter-spacing: -0.005em; }
p { margin: 0 0 1em; color: var(--ink-soft); text-wrap: pretty; }
a { color: var(--ink); text-decoration: none; }
em { font-style: italic; font-family: var(--serif); font-variation-settings: 'SOFT' 100, 'opsz' 144; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  font-family: var(--sans);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 var(--pad); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--bg), transparent 20%);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 380;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
}
.logo-mark {
  display: none;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 400;
}
.nav-links a { position: relative; padding: 4px 0;}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.lang-switch {
  font-size: 0.74rem;
  color: var(--ink-mute);
  display: flex;
  gap: 6px;
  align-items: center;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.lang-switch .on { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 1px 0 oklch(0.4 0.015 50) inset, 0 6px 20px -8px oklch(0.22 0.015 50 / 0.3);
}
.btn-primary:hover { background: oklch(0.3 0.015 50); transform: translateY(-1px); }
.btn-ghost { color: var(--ink); border-color: var(--line-strong); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-card); }
.btn-accent { background: var(--accent); color: oklch(0.98 0.01 80); }
.btn-accent:hover { background: var(--accent-ink); }
.btn-lg { padding: 16px 28px; font-size: 0.95rem; }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

/* Sections */
section { padding: clamp(80px, 12vw, 140px) 0; }
.section-head { max-width: 760px; margin-bottom: 72px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.4em; }

/* Grid */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* Footer */
footer {
  background: oklch(0.19 0.015 55);
  color: oklch(0.72 0.012 60);
  padding: 100px 0 40px;
  margin-top: 120px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
footer h4 { color: oklch(0.98 0.01 75); font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 20px; }
footer a { color: oklch(0.72 0.012 60); font-size: 0.9rem; display: block; padding: 5px 0; transition: color 0.15s; }
footer a:hover { color: oklch(0.98 0.01 75); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid oklch(0.28 0.015 55);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px;} }
.footer-bottom {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: oklch(0.55 0.01 60);
  flex-wrap: wrap;
  gap: 16px;
  letter-spacing: 0.02em;
}
.footer-brand .logo { color: oklch(0.98 0.01 75); font-size: 1.8rem;}
.footer-brand p { color: oklch(0.72 0.012 60); max-width: 300px; margin-top: 16px; font-size: 0.92rem; line-height: 1.6;}

/* Utility */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px oklch(0.5 0.06 150 / 0.2);}

.kbd {
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

/* Media frames */
.media-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.7) inset, 0 20px 40px -28px oklch(0.18 0.01 60 / 0.18);
}
.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.media-frame:hover img { transform: scale(1.02); }
.media-frame .media-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  background: oklch(0.18 0.01 60 / 0.72);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 4px;
}
.media-frame.media-dark { background: oklch(0.22 0.01 60); }

.portrait {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 1 / 1;
}
.portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.blog-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 0 0 40px;
}
.blog-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Placeholder */
.placeholder {
  background:
    repeating-linear-gradient(
      45deg,
      oklch(0.94 0.008 75),
      oklch(0.94 0.008 75) 14px,
      oklch(0.92 0.012 75) 14px,
      oklch(0.92 0.012 75) 28px
    );
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 28px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .lang-switch { display: none; }
}

/* Hero */
.hero {
  padding: clamp(90px, 14vw, 160px) 0 clamp(50px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero-bg { display: none; }
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 920px; margin: 0 auto; }
.hero h1 {
  margin-bottom: 0.3em;
  font-size: clamp(3rem, 7.5vw, 6rem);
  letter-spacing: -0.04em;
  font-weight: 320;
}
.hero h1 em {
  color: var(--accent-ink);
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
}
.hero .sub {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.55;
  font-weight: 350;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero-meta { display: flex; gap: 32px; justify-content: center; font-size: 0.85rem; color: var(--ink-mute); flex-wrap: wrap; letter-spacing: 0.01em;}
.hero-meta .check { color: var(--accent-ink); margin-right: 4px;}

/* Product shot */
.product-shot {
  max-width: 1200px;
  margin: clamp(56px, 7vw, 88px) auto 0;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
  position: relative;
}

/* Logo strip */
.logo-strip {
  padding: 56px 0;
  border-block: 1px solid var(--line);
  background: var(--bg-alt);
}
.logo-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  justify-content: center;
  align-items: center;
  opacity: 0.75;
}
.logo-strip p {
  margin: 0 0 28px; text-align: center; font-size: 0.72rem; color: var(--ink-mute);
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.logo-item {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink-soft);
  letter-spacing: -0.015em;
  font-weight: 400;
  font-variation-settings: 'SOFT' 50;
}

/* Feature grid */
.feature-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.feature-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'SOFT' 100;
}
.feature-card h3 { font-family: var(--sans); font-weight: 500; font-size: 1.05rem; letter-spacing: -0.01em; margin: 0; }
.feature-card p { font-size: 0.92rem; margin: 0; line-height: 1.6; }

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.2fr 1fr; }
.split.reverse .split-text { order: 2; }
@media (max-width: 900px) { .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; } .split.reverse .split-text { order: 0; } }
.split-text h2 { margin-bottom: 0.35em; margin-top: 0.4em;}
.feature-list { list-style: none; padding: 0; margin: 28px 0 0; }
.feature-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.55;
}
.feature-list li::before {
  content: '—';
  color: var(--accent);
  font-weight: 400;
  margin-top: -1px;
  flex: none;
  font-size: 0.95rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  padding: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.stat {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
@media (max-width: 700px) { .stat { border-right: 0; border-bottom: 1px solid var(--line); } .stat:last-child { border-bottom: 0; } }
.stat .value {
  font-family: var(--serif);
  font-size: 3.25rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
  font-weight: 320;
  font-variation-settings: 'SOFT' 30, 'opsz' 144;
}
.stat .label { font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; line-height: 1.45; }

/* Testimonial */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  font-style: italic;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.45;
  margin: 0 0 28px;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-weight: 360;
  font-variation-settings: 'SOFT' 50, 'opsz' 144;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background:
    repeating-linear-gradient(45deg, oklch(0.85 0.015 65), oklch(0.85 0.015 65) 6px, oklch(0.8 0.02 65) 6px, oklch(0.8 0.02 65) 12px);
  border: 1px solid var(--line);
  flex: none;
}
.testimonial-author .name { font-weight: 500; font-size: 0.92rem; color: var(--ink); }
.testimonial-author .role { font-size: 0.85rem; color: var(--ink-mute); margin-top: 2px;}

/* CTA */
.cta-band {
  background: oklch(0.19 0.015 55);
  color: oklch(0.95 0.01 75);
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 400px at 50% 100%, oklch(0.56 0.09 70 / 0.15), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: oklch(0.98 0.01 75); max-width: 780px; margin: 0 auto 20px; font-weight: 320;}
.cta-band p { color: oklch(0.75 0.012 60); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem;}
.cta-band .btn-primary { background: oklch(0.98 0.01 75); color: var(--ink); }
.cta-band .btn-primary:hover { background: oklch(0.9 0.01 75); }
.cta-band .btn-ghost { color: oklch(0.98 0.01 75); border-color: oklch(0.4 0.015 55); }
.cta-band .btn-ghost:hover { border-color: oklch(0.98 0.01 75); background: transparent; }
.cta-band .eyebrow { color: oklch(0.85 0.05 70); }
.cta-band .eyebrow::before { background: oklch(0.56 0.09 70); }

/* Breadcrumb */
.breadcrumb { font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 28px; letter-spacing: 0.02em; }
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span + span::before { content: '/'; margin: 0 10px; color: var(--line-strong); }

/* Page intro */
.page-intro {
  padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 7vw, 72px);
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-intro h1 { font-size: clamp(2.75rem, 5.5vw, 4.25rem); margin-top: 0.3em; }
.page-intro p { max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* Table */
table.price-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: 0.92rem; }
.price-table th { font-weight: 500; color: var(--ink-mute); background: var(--bg-alt); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
.price-table td.center { text-align: center; }
.price-table tr:last-child td { border-bottom: 0; }

/* Form */
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 8px; color: var(--ink); letter-spacing: 0.02em;}
input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px oklch(0.56 0.09 70 / 0.14); }
textarea { min-height: 140px; resize: vertical; }

/* FAQ */
details.faq {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
details.faq:last-child { border-bottom: 1px solid var(--line); }
details.faq summary {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
  font-variation-settings: 'SOFT' 30;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--ink-mute); transition: transform 0.25s; }
details.faq[open] summary::after { transform: rotate(45deg); color: var(--accent); }
details.faq p { margin-top: 14px; font-size: 0.95rem; max-width: 680px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 36px; }
.blog-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card .cover { aspect-ratio: 16 / 9; background: var(--bg-alt); border-bottom: 1px solid var(--line);}
.blog-card .cover.a { background: linear-gradient(135deg, oklch(0.6 0.09 70), oklch(0.38 0.08 55)); }
.blog-card .cover.b { background: linear-gradient(135deg, oklch(0.88 0.04 85), oklch(0.72 0.07 70)); }
.blog-card .cover.c { background: linear-gradient(135deg, oklch(0.3 0.02 230), oklch(0.2 0.02 240)); }
.blog-card .body { padding: 28px; }
.blog-card .meta { font-size: 0.72rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 12px; font-weight: 500;}
.blog-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -0.015em; line-height: 1.2;}
.blog-card p { font-size: 0.92rem; margin: 0; line-height: 1.55; }

/* Article */
article.prose { max-width: 720px; margin: 0 auto; }
article.prose p { font-size: 1.1rem; line-height: 1.8; color: var(--ink); margin-bottom: 1.3em; }
article.prose p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.5em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--accent-ink);
  font-weight: 350;
}
article.prose h2 { margin-top: 1.6em; font-size: 2.15rem; }
article.prose h3 { margin-top: 1.4em; font-family: var(--sans); font-weight: 500; font-size: 1.3rem; letter-spacing: -0.01em;}
article.prose ul, article.prose ol { padding-left: 22px; margin-bottom: 1.3em; }
article.prose li { margin-bottom: 0.6em; color: var(--ink); font-size: 1.05rem; line-height: 1.7;}
article.prose blockquote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  font-style: italic;
  line-height: 1.4;
  font-variation-settings: 'SOFT' 100;
}

/* Dashboard mock */
.dash {
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 210px 1fr;
  font-size: 12px;
  background: var(--bg);
}
.dash-side { border-right: 1px solid var(--line); padding: 16px 14px; background: var(--bg-alt); }
.dash-side .brand {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  margin-bottom: 24px; letter-spacing: -0.02em;
  font-variation-settings: 'SOFT' 30;
}
.dash-side .brand-mark { display: none; }
.dash-side .nav-group { font-size: 9px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-mute); margin: 16px 0 8px; padding: 0 8px; font-weight: 500; }
.dash-side .nav-item { padding: 7px 10px; border-radius: 5px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; margin-bottom: 2px; font-size: 11.5px;}
.dash-side .nav-item.active { background: var(--bg-card); color: var(--ink); font-weight: 500; box-shadow: var(--shadow-sm); border: 1px solid var(--line);}
.dash-side .nav-item .ico { width: 12px; height: 12px; border-radius: 3px; background: oklch(0.85 0.01 75); }
.dash-side .nav-item.active .ico { background: var(--accent); }
.dash-main { padding: 22px; overflow: hidden; }
.dash-topbar { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 22px; }
.dash-topbar h2 { font-family: var(--serif); font-size: 26px; margin: 0; font-weight: 360; letter-spacing: -0.02em;}
.dash-topbar .crumbs { font-size: 10px; color: var(--ink-mute); margin-bottom: 4px; letter-spacing: 0.05em;}
.dash-kpi { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
.dash-kpi .kpi { background: var(--bg-card); border: 1px solid var(--line); padding: 12px 14px; border-radius: 6px; }
.dash-kpi .k-label { font-size: 9px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500;}
.dash-kpi .k-value { font-family: var(--serif); font-size: 24px; color: var(--ink); margin-top: 4px; font-weight: 350; letter-spacing: -0.02em;}
.dash-kpi .k-trend { font-size: 10px; color: var(--ok); margin-top: 3px;}
.dash-panels { display: grid; grid-template-columns: 1.6fr 1fr; gap: 10px; }
.dash-panel { background: var(--bg-card); border: 1px solid var(--line); border-radius: 6px; padding: 14px; min-height: 180px;}
.dash-panel h4 { font-family: var(--sans); font-weight: 500; font-size: 10px; margin: 0 0 12px; color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase;}
.dash-chart { height: 140px; position: relative; }
.dash-chart svg { width: 100%; height: 100%; }
.dash-list .row { display: grid; grid-template-columns: 1fr auto; font-size: 11px; padding: 8px 0; border-top: 1px solid var(--line-soft); color: var(--ink-soft);}
.dash-list .row:first-child { border-top: 0; }
.dash-list .row .t { color: var(--ink); }
.dash-list .row .v { color: var(--ink); font-variant-numeric: tabular-nums; font-weight: 500; }
