/* ===== ZDCT — editorial/industrial dark theme ===== */

:root {
  --bg: #0b0a08;
  --bg-2: #100e0b;
  --bg-3: #15120e;
  --line: #2a2620;
  --line-soft: #1d1a15;
  --ink: #f3ece0;
  --ink-2: #c9c0b1;
  --ink-3: #8a8276;
  --ink-dim: #5a544a;
  --accent: #f5a524;      /* warm amber */
  --accent-2: #ffcf6a;
  --accent-ink: #1a1206;
  --danger: #e5484d;
  --ok: #46a758;

  --f-display: "Fraunces", "Cambria", "Times New Roman", serif;
  --f-body: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --max: 1180px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* Subtle grain overlay (SVG noise) */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-word { font-family: var(--f-display); font-weight: 500; font-size: 18px; letter-spacing: -0.01em; }
.brand-wordmark {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
}
@media (max-width: 720px) {
  .brand-wordmark { font-size: 11px; letter-spacing: 0.1em; }
}
@media (max-width: 480px) {
  .brand-wordmark { font-size: 10px; }
}
.site-header nav { display: flex; gap: clamp(14px, 2.4vw, 30px); }
.site-header nav a {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
}
.site-header nav a:hover { color: var(--ink); }
.site-header nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--accent); transition: right 220ms ease;
}
.site-header nav a:hover::after { right: 0; }
@media (max-width: 560px) {
  .site-header nav { gap: 14px; }
  .site-header nav a:nth-child(2) { display: none; }
}

/* ===== Layout primitives ===== */
main { display: block; }
.section, .hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) var(--pad);
  position: relative;
}
.section-alt { background: linear-gradient(180deg, transparent, var(--bg-2) 12%, var(--bg-2) 88%, transparent); max-width: none; }
.section-alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section-num {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.section-head { margin-bottom: clamp(40px, 6vw, 64px); }
.kicker {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 18ch;
  font-variation-settings: "opsz" 144;
}
.display em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.display-md {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 0;
  font-variation-settings: "opsz" 96;
}

/* ===== Hero ===== */
.hero { padding-top: clamp(40px, 8vw, 96px); }
.hero-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 28px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--ok) 60%, transparent);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--ok) 50%, transparent); }
  70% { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.lede {
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 36px;
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
  white-space: nowrap;
  text-align: left;
  line-height: 1.3;
}
@media (max-width: 560px) {
  .btn { white-space: normal; }
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 24px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.hero-strip {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-strip li {
  background: var(--bg);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-strip .k {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.hero-strip .v {
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}
@media (max-width: 720px) {
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Services ===== */
.cards { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  padding: 32px;
  border-radius: 6px;
  position: relative;
}
.card-quiet { background: transparent; border: 1px dashed var(--line); }
.card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48;
}
.card p { color: var(--ink-2); margin: 0 0 22px; }
.card-spec {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin: 0; padding: 20px 0 0;
  border-top: 1px solid var(--line-soft);
}
.card-spec > div { display: flex; flex-direction: column; gap: 2px; }
.card-spec dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.card-spec dd {
  margin: 0;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
}
.inline-link {
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 13px;
}
.inline-link:hover { color: var(--accent-2); }

/* ===== Platform rows ===== */
.platform-grid {
  border-top: 1px solid var(--line);
}
.platform-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.platform-key .mono {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.platform-val {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 62ch;
}
@media (max-width: 620px) {
  .platform-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ===== Reviews ===== */
.review-card {
  background:
    radial-gradient(800px 300px at 80% 0%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.review-lead {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 28px;
  max-width: 38ch;
  font-variation-settings: "opsz" 48;
}
.review-note {
  margin-top: 24px;
  color: var(--ink-3);
  font-size: 13.5px;
  max-width: 60ch;
}
.review-note .mono { color: var(--ink-dim); margin-right: 6px; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-pane {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 36px);
}
.contact-fiverr { background: transparent; border: 1px dashed var(--line); display: flex; flex-direction: column; }
.contact-pane h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.contact-pane p { color: var(--ink-2); margin: 0 0 22px; }

#contact-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.field input, .field select, .field textarea {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 11px 13px;
  border-radius: 4px;
  outline: none;
  transition: border-color 140ms ease, background 140ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  background: var(--bg-2);
}
.field textarea { resize: vertical; min-height: 110px; }
.honeypot { position: absolute; left: -9999px; }

.btn-spinner {
  display: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid color-mix(in oklab, var(--accent-ink) 30%, transparent);
  border-top-color: var(--accent-ink);
  animation: spin 700ms linear infinite;
}
form.is-loading .btn-spinner { display: inline-block; }
form.is-loading button[type=submit] { opacity: 0.7; pointer-events: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status { font-family: var(--f-mono); font-size: 12.5px; min-height: 1.4em; margin: 4px 0 0; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--danger); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 56px var(--pad) 28px;
  margin-top: 40px;
}
.footer-cols {
  max-width: var(--max);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) { .footer-cols { grid-template-columns: 1fr; gap: 28px; } }
.footer-blurb { color: var(--ink-3); max-width: 36ch; margin-top: 12px; }
.brand-footer .brand-word { font-size: 16px; }
.site-footer h4 {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer ul a { color: var(--ink-2); font-size: 14.5px; }
.site-footer ul a:hover { color: var(--accent); }
.footer-base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--ink-dim);
}
.footer-base .mono { font-family: var(--f-mono); }

/* ===== Motion: hero reveal ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero-meta, .display, .lede, .cta-row, .hero-strip {
    opacity: 0;
    transform: translateY(10px);
    animation: reveal 700ms cubic-bezier(.2,.7,.2,1) forwards;
  }
  .hero-meta { animation-delay: 60ms; }
  .display    { animation-delay: 160ms; }
  .lede       { animation-delay: 280ms; }
  .cta-row    { animation-delay: 380ms; }
  .hero-strip { animation-delay: 480ms; }
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ NEW v2 COMPONENTS ============ */

/* Single-column contact (no more Fiverr pane) */
.contact-single { grid-template-columns: 1fr; max-width: 640px; }

/* Apps preview card on the home page */
.apps-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px);
  color: inherit;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
  position: relative;
  overflow: hidden;
}
.apps-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 100% 0%, color-mix(in oklab, var(--accent) 10%, transparent), transparent 60%);
  opacity: 0; transition: opacity 240ms ease;
  pointer-events: none;
}
.apps-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.apps-card:hover::after { opacity: 1; }
.apps-card-mark { color: var(--accent); flex-shrink: 0; }
.apps-card-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.apps-card-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.apps-card-body h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  margin: 0;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 48;
}
.apps-card-body p { color: var(--ink-2); margin: 4px 0 8px; }
.apps-card-body strong { color: var(--ink); font-weight: 500; }
.apps-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 13px;
  margin-top: 4px;
}
@media (max-width: 560px) {
  .apps-card { grid-template-columns: 1fr; gap: 16px; }
}

/* Badges */
.badge {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  padding: 4px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.badge-lg { font-size: 11.5px; padding: 6px 13px; }
.badge-soft {
  color: var(--ink-3);
  background: transparent;
  border-color: var(--line);
}

/* Creator section */
.creator {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
@media (max-width: 720px) { .creator { grid-template-columns: 1fr; } }

.creator-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, color-mix(in oklab, var(--accent) 80%, transparent), transparent 55%),
    linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 56px;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96;
}

.creator-body h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  font-variation-settings: "opsz" 48;
}
.creator-body p {
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.65;
}
.creator-facts {
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.creator-facts > div { display: flex; flex-direction: column; gap: 4px; }
.creator-facts dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.creator-facts dd { margin: 0; color: var(--ink); font-size: 15px; }
@media (max-width: 720px) {
  .creator-facts { grid-template-columns: 1fr; gap: 14px; }
}

/* ===== Page-style hero (for apps.html, reviews.html) ===== */
.hero-page { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 60px); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 28px;
  transition: color 140ms ease;
}
.back-link:hover { color: var(--accent); }

.status-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--ink-2);
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  background: color-mix(in oklab, var(--accent) 8%, transparent);
}
.status-banner strong { color: var(--accent); font-weight: 600; }

/* ===== Apps page — project cards ===== */
.apps-list { display: flex; flex-direction: column; gap: 20px; padding-top: clamp(20px, 3vw, 40px); }
.project-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
}
.project-card-placeholder { background: transparent; border-style: dashed; }

.project-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.project-mark {
  width: 64px; height: 64px;
  border-radius: 8px;
  background: color-mix(in oklab, var(--accent) 18%, var(--bg-3));
  border: 1px solid color-mix(in oklab, var(--accent) 50%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--accent);
  font-variation-settings: "opsz" 48;
}
.project-mark-soft {
  background: var(--bg-3);
  border-color: var(--line);
  color: var(--ink-dim);
}
.project-id {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-dim);
  margin-bottom: 4px;
}
.project-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 48;
}
.project-body {
  color: var(--ink-2);
  max-width: 70ch;
  margin: 0 0 22px;
}
.project-meta {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.project-meta > div { display: flex; flex-direction: column; gap: 3px; }
.project-meta dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.project-meta dd { margin: 0; color: var(--ink); font-size: 14.5px; }
@media (max-width: 720px) {
  .project-meta { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .project-head { grid-template-columns: auto 1fr; }
  .project-head > .badge { grid-column: 1 / -1; justify-self: start; }
}

/* CTA card */
.cta-section { padding-top: 0; }
.cta-card {
  text-align: center;
  background:
    radial-gradient(600px 250px at 50% 0%, color-mix(in oklab, var(--accent) 12%, transparent), transparent 65%),
    var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(40px, 6vw, 60px) clamp(24px, 5vw, 60px);
}
.cta-card .display-md { margin-bottom: 14px; max-width: 24ch; margin-left: auto; margin-right: auto; }
.cta-card p { color: var(--ink-2); max-width: 50ch; margin: 0 auto 28px; }
.cta-card .btn { margin: 0 auto; }

/* Reviews empty state */
.reviews-status { padding-top: clamp(20px, 3vw, 40px); }
.empty-state {
  background: var(--bg-2);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: clamp(36px, 6vw, 64px);
  max-width: 760px;
  margin: 0 auto;
}
.empty-glyph {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--ink-dim);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.empty-state h2 { margin: 0 0 20px; max-width: 22ch; }
.empty-state p { color: var(--ink-2); max-width: 60ch; margin: 0 0 16px; }
.empty-state strong { color: var(--ink); font-weight: 500; }
.empty-meta {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.empty-meta > div { display: flex; flex-direction: column; gap: 4px; }
.empty-meta dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.empty-meta dd { margin: 0; color: var(--ink); font-size: 14.5px; }
@media (max-width: 720px) { .empty-meta { grid-template-columns: 1fr; gap: 14px; } }

.empty-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }

