@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,600&family=Inter:wght@500;700;800;900&display=swap');

:root {
  --black: #000000;
  --white: #ffffff;
  --off-white: #f9f8f4;
  --brown: #462521;
  --pink: #cf0a66;
  --pink-soft: #fbe6f0;
  --ink: #1a1210;
  --line: #e9e5dd;
  --muted: #6b6260;
  --radius: 12px;
  --shadow: 0 4px 18px rgba(0,0,0,0.06);
  --max: 1160px;
  --display: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 var(--pink);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo img { height: 32px; width: auto; }

nav.main-nav {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: rgba(0,0,0,0.62);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

nav.main-nav a:hover { color: var(--ink); background: rgba(0,0,0,0.05); }
nav.main-nav a.active { color: #fff; background: var(--pink); }

.mobile-toggle { display: none; }

@media (max-width: 860px) {
  .nav-inner { flex-wrap: wrap; height: auto; padding: 14px 20px; gap: 10px; }
  nav.main-nav { width: 100%; justify-content: flex-start; gap: 6px; }
  nav.main-nav a { font-size: 13px; padding: 8px 10px; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--brown) 0%, #2a1512 100%);
  color: #fff;
  padding: 64px 0 56px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
}

.hero-heart { height: 56px; width: auto; margin-bottom: 20px; }

.brand-tagline {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(207,10,102,0.14);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--display);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.star-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
}
.star-line .stars { color: #3fbf5f; letter-spacing: 1px; font-size: 13px; white-space: nowrap; }
.star-line strong { color: #fff; font-weight: 700; white-space: nowrap; }

.hero p.lead {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
  margin: 0 0 26px;
}

.hero-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background 0.15s, color 0.15s, border-color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: #b30958; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: #fff; }
.btn-black { background: var(--black); color: #fff; }
.btn-black:hover { background: #222; }
.btn-outline-black { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-black:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 12.5px; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
section.tight { padding: 36px 0; }
section.on-white { background: #fff; }
section.on-offwhite { background: var(--off-white); }
section.on-black { background: var(--black); color: #fff; }

.section-head { max-width: 62ch; margin-bottom: 34px; }
.section-head .kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 8px;
  display: block;
}
.section-head h2 { font-family: var(--display); font-size: 30px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 10px; line-height: 1.2; }
.section-head p { color: var(--muted); margin: 0; font-size: 15.5px; }
.on-black .section-head p { color: rgba(255,255,255,0.7); }

/* ---------- Stat bar ---------- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 760px) { .stat-bar { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  background: #fff;
  padding: 26px 20px;
  text-align: center;
}
.stat-cell .num { font-family: var(--display); font-size: 28px; font-weight: 800; letter-spacing: -0.01em; color: var(--pink); line-height: 1.1; }
.stat-cell .label { font-size: 13px; color: var(--muted); margin-top: 6px; }

.stat-bar.dark .stat-cell { background: #16100f; color: #fff; }
.stat-bar.dark .stat-cell .label { color: rgba(255,255,255,0.65); }
.stat-bar.dark { background: #2a1e1c; border-color: #2a1e1c; }

/* big shocking number blocks */
.shock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .shock-grid { grid-template-columns: 1fr; } }
.shock-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.shock-card .big { font-family: var(--display); font-size: 44px; font-weight: 800; letter-spacing: -0.01em; color: var(--brown); line-height: 1; margin-bottom: 10px; }
.shock-card .cap { font-size: 14.5px; color: var(--ink); font-weight: 600; }
.shock-card .src { font-size: 11.5px; color: var(--muted); margin-top: 10px; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.nav-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.nav-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0,0,0,0.1); }
.nav-card .tag { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--pink); }
.nav-card h3 { font-size: 19px; margin: 8px 0 8px; }
.nav-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Pillars ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--pink-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.pillar h3 { margin: 0 0 8px; font-size: 18px; color: var(--brown); }
.pillar p { margin: 0; font-size: 14.5px; color: #4a3530; }

/* ---------- Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }
.story-step {
  border-left: 3px solid var(--pink);
  padding-left: 18px;
}
.story-step .n { font-size: 12px; font-weight: 700; color: var(--pink); letter-spacing: .08em; text-transform: uppercase; }
.story-step h3 { margin: 6px 0 8px; font-size: 18px; }
.story-step p { margin: 0; font-size: 14.5px; color: var(--muted); }

/* ---------- Logos strip ---------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px 52px;
  justify-content: center;
  padding: 10px 0;
}
.logo-strip img { height: 52px; width: auto; object-fit: contain; }

/* ---------- Product line blocks ---------- */
.product-line {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.product-line-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
}
@media (max-width: 860px) { .product-line-grid { grid-template-columns: 1fr; } }
.product-line-media { background: var(--off-white); position: relative; min-height: 260px; }
.product-line-media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.core-focus-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--pink); color: #fff; font-size: 11.5px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.product-line-body { padding: 28px 30px; }
.product-line-body .format-tag {
  display: inline-block; font-size: 12px; font-weight: 700; color: var(--pink);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px;
}
.product-line-body h3 { font-size: 24px; margin: 0 0 6px; }
.product-line-body .flavours { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.product-line-body .marketing { font-size: 14.5px; color: #333; margin-bottom: 18px; white-space: pre-line; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin-bottom: 18px;
  font-size: 13.5px;
}
@media (max-width: 560px) { .spec-grid { grid-template-columns: 1fr; } }
.spec-grid dt { font-weight: 700; color: var(--muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; }
.spec-grid dd { margin: 2px 0 0; }

.usp-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.usp-list li {
  background: var(--off-white); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
}

.claim-box {
  background: var(--pink-soft); border-radius: 10px; padding: 14px 16px;
  font-size: 13px; color: #5a1638; margin-top: 6px;
}
.claim-box strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; color: var(--pink); }

/* ---------- Talking points ---------- */
.talk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) { .talk-grid { grid-template-columns: 1fr; } }
.talk-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow);
}
.talk-card h4 { margin: 0 0 8px; font-size: 16px; }
.talk-card .who { font-size: 12px; color: var(--pink); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 10px; }
.talk-card p { margin: 0; font-size: 14px; color: #333; }

/* FAQ / objections */
.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 16px 20px; font-weight: 600; font-size: 14.5px;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 20px; color: var(--pink); font-weight: 700; }
.faq[open] summary::after { content: '−'; }
.faq .faq-body { padding: 0 20px 18px; font-size: 14px; color: #333; }

/* testimonials */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: #10181c; color: #fff; border-radius: var(--radius); padding: 22px 20px;
}
.testi .stars { color: #3fbf5f; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.testi p.q { font-size: 14.5px; margin: 0 0 12px; }
.testi .who { font-size: 12.5px; color: rgba(255,255,255,0.6); }

/* ---------- Table (SKU Bible) ---------- */
.table-toolbar {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  margin-bottom: 18px;
}
.search-input {
  flex: 1; min-width: 220px;
  padding: 12px 16px; border-radius: 999px; border: 1px solid var(--line);
  font-family: inherit; font-size: 14px; background: #fff;
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-size: 13px; font-weight: 600; cursor: pointer;
  color: var(--ink);
}
.filter-pill.active { background: var(--black); color: #fff; border-color: var(--black); }

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.sku-table { border-collapse: collapse; width: 100%; min-width: 1100px; font-size: 13px; }
table.sku-table th {
  text-align: left; background: var(--black); color: #fff; padding: 12px 14px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .04em; position: sticky; top: 0;
  white-space: nowrap;
}
table.sku-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.sku-table tbody tr:hover { background: var(--pink-soft); }
table.sku-table td.flavour-cell { font-weight: 600; white-space: normal; }
table.sku-table td.flavour-cell a { color: var(--pink); text-decoration: none; }
table.sku-table td.flavour-cell a:hover { text-decoration: underline; }
.pill-badge {
  display: inline-block; font-size: 10.5px; font-weight: 700; padding: 3px 9px;
  border-radius: 999px; background: var(--off-white); color: var(--muted); text-transform: uppercase;
}
.result-count { font-size: 13px; color: var(--muted); margin-bottom: 14px; }

.note-box {
  background: #fff8e6; border: 1px solid #f0dca0; border-radius: 12px;
  padding: 16px 20px; font-size: 13.5px; color: #6b5511; margin: 20px 0;
}
.note-box strong { color: #4a3a0c; }

/* ---------- Asset gallery ---------- */
.gallery-subhead {
  display: flex; align-items: baseline; gap: 10px;
  margin: 44px 0 16px;
}
.gallery-subhead:first-of-type { margin-top: 8px; }
.gallery-subhead h3 { font-size: 19px; margin: 0; }
.gallery-subhead .count { font-size: 12.5px; color: var(--muted); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.asset-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.asset-thumb { aspect-ratio: 1/1; background: var(--off-white); overflow: hidden; }
.asset-thumb img { width: 100%; height: 100%; object-fit: cover; }
.asset-thumb.contain img { object-fit: contain; padding: 14px; }
.asset-meta { padding: 12px 14px; }
.asset-meta .name { font-size: 12.5px; font-weight: 600; margin-bottom: 8px; }
.asset-meta a.btn { width: 100%; justify-content: center; }

.swatch-row { display: flex; gap: 14px; flex-wrap: wrap; }
.swatch {
  width: 150px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line);
}
.swatch .fill { height: 80px; }
.swatch .info { background: #fff; padding: 10px 12px; }
.swatch .info .name { font-size: 12.5px; font-weight: 700; }
.swatch .info .hex { font-size: 12px; color: var(--muted); }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--black); color: rgba(255,255,255,0.6);
  padding: 30px 0; font-size: 13px;
}
footer.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
footer.site-footer a { color: rgba(255,255,255,0.75); text-decoration: none; }

/* page header (non-home pages) */
.page-header {
  background: var(--black); color: #fff; padding: 40px 0 36px;
  border-bottom: 3px solid var(--pink);
}
.page-header .kicker { color: var(--pink); font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.page-header h1 { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; font-size: 34px; margin: 8px 0 10px; }
.page-header p { color: rgba(255,255,255,0.72); max-width: 62ch; margin: 0; font-size: 15px; }

h2.h2 { font-family: var(--display); font-weight: 800; letter-spacing: -0.01em; font-size: 27px; margin: 0 0 6px; }

/* ---------- Experts ---------- */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .expert-grid { grid-template-columns: 1fr; } }
.expert-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 140px 1fr;
}
@media (max-width: 520px) { .expert-card { grid-template-columns: 1fr; } }
.expert-card .photo { aspect-ratio: 3/4; overflow: hidden; background: var(--off-white); }
.expert-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.expert-card .info { padding: 20px 22px; }
.expert-card .info h3 { font-size: 17px; margin: 0 0 4px; }
.expert-card .info .credentials { font-size: 12px; color: var(--pink); font-weight: 700; letter-spacing: .03em; margin-bottom: 10px; }
.expert-card .info .expertise-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 4px; }
.expert-card .info p { font-size: 13.5px; color: #333; margin: 0; }

/* ---------- Form ---------- */
.form-section { margin-bottom: 30px; }
.form-section h3 { font-size: 15px; margin: 0 0 4px; }
.form-section .hint { font-size: 13px; color: var(--muted); margin: 0 0 16px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 760px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 520px) { .form-grid.cols-2 { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--pink); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink);
}
.field textarea { resize: vertical; min-height: 70px; font-family: inherit; }

.request-category { margin-bottom: 22px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.request-category-head {
  background: var(--brown); color: #fff; font-size: 12.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 12px 18px; border-left: 4px solid var(--pink);
}
.request-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 18px; background: #fff; }
@media (max-width: 760px) { .request-items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .request-items { grid-template-columns: 1fr; } }
.request-item { border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; background: var(--off-white); }
.request-item .name { font-size: 13.5px; font-weight: 700; }
.request-item .sku { font-size: 11.5px; color: var(--muted); margin-bottom: 8px; }
.request-item .qty-row { display: flex; gap: 8px; align-items: center; }
.request-item .qty-row label { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; flex: 1; }
.request-item input[type="number"] {
  width: 100%; font-family: inherit; font-size: 14px; padding: 8px 10px;
  border: 1px solid var(--line); border-radius: 6px; background: #fff;
}
.request-item .qty-pair { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }

.form-success {
  text-align: center; padding: 60px 32px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); max-width: 560px; margin: 0 auto;
}
.form-success h2 { font-family: var(--display); font-weight: 800; font-size: 23px; margin: 0 0 10px; }
.form-success p { color: var(--muted); font-size: 14.5px; }

/* ---------- Empty state ---------- */
.empty-state {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 32px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.empty-state .icon {
  width: 56px; height: 56px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--pink-soft);
}
.empty-state .icon img { width: 26px; height: auto; }
.empty-state h2 { font-family: var(--display); font-weight: 800; letter-spacing: -0.01em; font-size: 23px; margin: 0 0 10px; }
.empty-state p { color: var(--muted); font-size: 14.5px; margin: 0 0 26px; }
