/* ─────────────────────────────────────────────────────────────────────
   LaunchWithAgency — Marketing site styles
   (lifted from ui_kits/website/Marketing Site.html — Zen Aesthetics)
   ───────────────────────────────────────────────────────────────────── */

.wrap { max-width: 1184px; margin: 0 auto; padding: 0 32px; }
@keyframes pulse { 0%,100%{opacity:0.4; transform:scale(0.85)} 50%{opacity:1; transform:scale(1.15)} }
@keyframes lwa-pulse { 0%,100%{opacity:0.4; transform:scale(0.85)} 50%{opacity:1; transform:scale(1.15)} }

/* ── NAV ──────────────────────────────────────────────── */
.nav-outer { padding: 16px 32px 0; position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.6); backdrop-filter: blur(8px); }
.nav {
  max-width: 1184px; margin: 0 auto;
  background: white; border: 1px solid var(--border-default);
  border-radius: 8px;
  padding: 10px 12px 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-modern);
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--gray-9); }
.brand-mark { font-size: 22px; font-weight: 900; line-height: 1; color: var(--gray-9); letter-spacing: -0.05em; }
.brand-name { font-size: 16px; font-weight: 900; letter-spacing: -0.02em; color: var(--gray-9); }
.nav-links { display: flex; align-items: center; gap: 4px; position: relative; }
.nav-links > a,
.nav-links > .nav-dropdown > .nav-link {
  display: inline-flex; align-items: center;
  text-decoration: none; font-size: 13px; font-weight: 600; color: var(--gray-7);
  height: 34px; padding: 0 14px; border-radius: 8px;
  transition: background 0.1s ease, color 0.1s ease;
}
.nav-links > a:hover,
.nav-links > .nav-dropdown > .nav-link:hover { background: var(--gray-1); color: var(--gray-9); }

/* Dropdown trigger (button) */
.nav-links .nav-link-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit; line-height: 1;
  -webkit-appearance: none; appearance: none;
}
.nav-links .nav-link-trigger:focus { outline: none; }
.nav-links .nav-link-trigger:focus-visible {
  outline: 2px solid var(--gray-9); outline-offset: 2px;
}
.nav-link-trigger .nav-caret { transition: transform 0.15s ease; opacity: 0.6; }
.nav-dropdown.open .nav-links .nav-link-trigger,
.nav-dropdown.open .nav-link-trigger { background: var(--gray-1); color: var(--gray-9); }
.nav-dropdown.open .nav-link-trigger .nav-caret { transform: rotate(180deg); opacity: 1; }

/* Dropdown panel */
.nav-dropdown { position: relative; }
.nav-panel {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(700px, calc(100vw - 64px));
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04),
              0 8px 24px rgba(0,0,0,0.08),
              0 24px 56px rgba(0,0,0,0.10);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 60;
  overflow: hidden;
}
.nav-dropdown.open .nav-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-panel-inner { padding: 24px 28px 12px; }
.nav-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 10px;
  border-bottom: 1px solid var(--border-default);
}
.nav-panel-eyebrow {
  font-size: 17px; font-weight: 800;
  letter-spacing: -0.01em; color: var(--gray-9);
}
.nav-links .nav-panel-all {
  font-size: 13.5px; font-weight: 600; color: var(--gray-6);
  text-decoration: none; padding: 6px 10px; border-radius: 6px;
}
.nav-links .nav-panel-all:hover { color: var(--gray-9); background: var(--gray-1); }
.nav-panel-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 20px;
}
.nav-links .nav-panel-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px; border-radius: 10px;
  text-decoration: none; color: inherit;
  transition: background 0.1s ease;
}
.nav-links .nav-panel-item:hover { background: var(--gray-1); }
.nav-panel-item-icon {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border-default); border-radius: 9px;
  background: #fff; color: var(--gray-9);
  font-size: 19px;
  transition: border-color 0.1s ease, background 0.1s ease;
}
.nav-links .nav-panel-item:hover .nav-panel-item-icon {
  border-color: var(--gray-3); background: #fff;
}
.nav-panel-item-text { display: flex; flex-direction: column; min-width: 0; }
.nav-panel-item-title {
  font-size: 14px; font-weight: 700; color: var(--gray-9);
  margin-bottom: 3px; letter-spacing: -0.01em;
}
.nav-panel-item-body {
  font-size: 13px; font-weight: 500; color: var(--gray-6); line-height: 1.5;
}
.nav-panel-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 12px; padding: 20px 28px;
  background: var(--gray-1);
  border-top: 1px solid var(--border-default);
}
.nav-panel-footer-text { display: flex; flex-direction: column; gap: 3px; }
.nav-panel-footer-label { font-size: 14px; font-weight: 700; color: var(--gray-9); }
.nav-panel-footer-sub { font-size: 12.5px; font-weight: 500; color: var(--gray-6); }
.nav-links .nav-panel-footer-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gray-9); color: #fff !important;
  font-size: 13px; font-weight: 700;
  padding: 10px 18px; border-radius: 8px; text-decoration: none;
  transition: background 0.15s ease;
}
.nav-links .nav-panel-footer-cta:hover { background: #000; color: #fff !important; }
.nav-panel-footer-cta svg { color: #fff; }

@media (max-width: 720px) {
  .nav-panel { width: calc(100vw - 32px); left: 0; transform: translateX(0) translateY(-6px); }
  .nav-dropdown.open .nav-panel { transform: translateX(0) translateY(0); }
  .nav-panel-grid { grid-template-columns: 1fr; }
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-lang {
  font-family: var(--font-mono); font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; color: var(--gray-7); text-decoration: none;
  padding: 6px 10px; border-radius: 8px; border: 1px solid var(--border-default);
  background: white;
  transition: background 0.1s ease, color 0.1s ease, border-color 0.1s ease;
}
.nav-lang:hover { background: var(--gray-1); color: var(--gray-9); border-color: var(--gray-3); }
.nav-login { font-size: 13px; font-weight: 700; color: var(--gray-7); text-decoration: none; padding: 8px 14px; border-radius: 8px; }
.nav-login:hover { color: var(--gray-9); }
.nav-cta {
  background: var(--gray-9); color: white; font-size: 13px; font-weight: 700;
  padding: 10px 16px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; cursor: pointer; border: 0;
  transition: background 0.15s ease, transform 0.1s ease;
}
.nav-cta:hover { background: #000; }
.nav-cta:active { transform: scale(0.98); }

/* ── BUTTONS (generic, used everywhere) ───────────────── */
.btn-pri, .btn-sec, .cta-btn, .nav-cta {
  /* Reset any inherited tight tracking — buttons live inside .hero etc.
     which set negative letter-spacing on display text. */
  letter-spacing: 0;
  font-variant-ligatures: none;
  font-feature-settings: "kern" 1;
  white-space: nowrap;
}
.btn-pri, .btn-sec, .cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 8px; border: 0;
  font-family: var(--font-sans); font-size: 14px; font-weight: 700; line-height: 1;
  cursor: pointer; text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.btn-pri { background: var(--gray-9); color: white; }
.btn-pri:hover { background: #000; }
.btn-pri:active { transform: scale(0.98); }
.btn-sec { background: white; color: var(--gray-9); border: 1px solid var(--border-default); }
.btn-sec:hover { background: var(--gray-0); border-color: var(--gray-3); }
.btn-sec:active { transform: scale(0.98); }
.cta-btn { background: white; color: var(--gray-9); }
.cta-btn:hover { background: var(--gray-1); }
.cta-btn:active { transform: scale(0.98); }

/* ── HERO ────────────────────────────────────────────── */
.hero { padding: 120px 0 80px; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gray-9);
  background: var(--gray-0); border: 1px solid var(--border-default);
  padding: 8px 16px; border-radius: 9999px;
  margin-bottom: 32px;
}
.hero-eyebrow .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green-5); animation: pulse 2s ease-in-out infinite; }

.hero h1 {
  font-size: 80px; font-weight: 950; line-height: 1.0; letter-spacing: -0.05em;
  margin: 0 auto 24px; max-width: 980px;
  color: var(--gray-9);
}
.hero h1 em { font-style: italic; color: var(--gray-5); font-weight: 950; }
.hero p {
  font-size: 22px; font-weight: 600; color: var(--gray-9); line-height: 1.55;
  max-width: 680px; margin: 0 auto 40px;
  text-wrap: pretty;
  letter-spacing: -0.01em;
}
.hero p code {
  font-family: var(--font-mono); font-size: 18px; font-weight: 700;
  background: var(--gray-1); color: var(--gray-9);
  padding: 2px 8px; border-radius: 8px;
  border: 1px solid var(--border-default);
  vertical-align: 1px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── METRICS ──────────────────────────────────────────── */
.metrics { padding: 80px 0; }
.metrics-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 80px; }
.m { text-align: center; }
.m .v { font-size: 80px; font-weight: 950; letter-spacing: -0.05em; line-height: 1; color: var(--gray-9); }
.m .v .u { font-size: 20px; font-weight: 900; color: var(--gray-4); }
.m .l { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-4); margin-top: 8px; }

/* ── ZEN HEADER ──────────────────────────────────────── */
.zen { padding: 120px 0 0; }
.zen-head { text-align: center; margin-bottom: 60px; }
.zen-eyebrow { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-4); margin-bottom: 12px; }
.zen-title { font-size: 50px; font-weight: 950; line-height: 1; letter-spacing: -0.04em; max-width: 960px; margin: 0 auto; color: var(--gray-9); }
.zen-title em { font-style: italic; color: var(--gray-5); font-weight: 950; }

/* ── BENTO ───────────────────────────────────────────── */
.bento-stack { display: flex; flex-direction: column; gap: 16px; }
.bento { display: grid; grid-template-columns: 7fr 5fr; gap: 16px; }
.bento.bento-row-2 { grid-template-columns: 5fr 7fr; }
.b {
  border: 1px solid var(--border-default); border-radius: 8px; padding: 40px;
  background: white; position: relative; overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
  min-height: 260px;
  text-decoration: none;
  color: inherit;
  display: block;
}
.b:hover { transform: translateY(-8px); box-shadow: var(--shadow-bento-hover); }
.b.dark { background: var(--gray-9); color: white; }
.b .eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-4); margin-bottom: 16px; }
.b .title { font-size: 32px; font-weight: 950; line-height: 1.1; letter-spacing: -0.04em; color: var(--gray-9); margin-bottom: 14px; }
.b.dark .title { color: white; }
.b .body { font-size: 14px; color: var(--gray-6); line-height: 1.6; font-weight: 500; max-width: 460px; }
.b.dark .body { color: var(--gray-3); }
.b .deco { position: absolute; right: -30px; bottom: -40px; opacity: 0.05; pointer-events: none; font-size: 220px; color: var(--gray-9); }
.b.dark .deco { opacity: 0.10; color: white; }
.b code {
  display: inline-block;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  background: var(--gray-0); padding: 2px 8px; border-radius: 4px; color: var(--gray-9);
}
.b.dark code { background: var(--brand-9); color: white; }

/* ── COMPARISON ──────────────────────────────────────── */
.compare-card { border: 1px solid var(--border-default); border-radius: 8px; overflow: hidden; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; }
.col-trad { background: var(--gray-0); padding: 60px; }
.col-rili { background: white; padding: 60px; }
.col-h { font-size: 22px; font-weight: 900; color: var(--gray-9); letter-spacing: -0.02em; margin-bottom: 4px; }
.col-sub { font-size: 13px; color: var(--gray-5); font-weight: 500; margin-bottom: 32px; }
.col-h .pill {
  display: inline-block; vertical-align: middle; margin-left: 10px;
  background: var(--gray-9); color: white; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.10em;
  padding: 4px 10px; border-radius: 9999px;
}
.row-it { display: flex; justify-content: space-between; padding: 12px 0; font-size: 14px; color: var(--gray-7); border-bottom: 1px solid var(--border-default); }
.row-it:last-child { border-bottom: 0; }
.row-it .v { color: var(--gray-9); font-weight: 700; }
.total { background: white; border: 1px solid var(--border-default); border-radius: 8px; padding: 20px; margin-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.total .lbl { font-size: 13px; font-weight: 700; color: var(--gray-7); }
.total .v { font-size: 24px; font-weight: 950; color: var(--gray-9); letter-spacing: -0.02em; }
.checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.checks .ck { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--gray-7); font-weight: 500; }
.checks .ck .ico { width: 22px; height: 22px; padding: 4px; background: var(--gray-1); color: var(--gray-9); border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.price-box { background: rgba(0,0,0,0.03); border: 1px solid var(--border-default); border-radius: 8px; padding: 20px; }
.price-box .lbl { font-size: 13px; color: var(--gray-6); font-weight: 500; }
.price-box .v { font-size: 24px; font-weight: 950; color: var(--gray-9); letter-spacing: -0.02em; margin: 4px 0; }
.price-box .note { font-size: 12px; color: var(--gray-5); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.test-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.test-card { background: white; border: 1px solid var(--border-default); border-radius: 8px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.test-card .q { width: 28px; height: 28px; color: var(--gray-3); font-size: 28px; }
.test-card .body { font-size: 15px; color: var(--gray-7); font-style: italic; line-height: 1.6; font-weight: 500; }
.test-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gray-2); color: var(--gray-9); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; letter-spacing: 0.04em; }
.test-name { font-size: 13px; font-weight: 800; color: var(--gray-9); }
.test-role { font-size: 12px; color: var(--gray-5); font-weight: 500; }

/* ── News landing ────────────────────────────────────── */
.news-hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px;
  align-items: center; padding: 100px 0 40px;
}
.news-hero-copy h1 {
  font-size: 60px; font-weight: 950; line-height: 1.02; letter-spacing: -0.045em;
  margin: 24px 0 20px; color: var(--gray-9);
}
.news-hero-sub {
  font-size: 19px; font-weight: 500; color: var(--gray-6); line-height: 1.6;
  margin: 0 0 28px; max-width: 480px;
}
.news-hero-points { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.news-hero-points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--gray-8); line-height: 1.5;
}
.news-hero-cadence {
  font-size: 12px; font-weight: 800; color: var(--gray-5);
  text-transform: uppercase; letter-spacing: 0.08em; margin: 0;
}
.news-hero-form { position: relative; }
.news-form-card { max-width: none; margin: 0; padding: 32px; }
.news-form-head { display: flex; gap: 14px; align-items: center; margin-bottom: 24px; }
.news-form-ico {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: var(--gray-9); color: white;
  display: flex; align-items: center; justify-content: center;
}
.news-form-ico svg { width: 22px; height: 22px; }
.news-form-title { font-size: 17px; font-weight: 900; letter-spacing: -0.02em; color: var(--gray-9); }
.news-form-note { font-size: 13px; font-weight: 500; color: var(--gray-6); margin-top: 2px; }
@media (max-width: 860px) {
  .news-hero { grid-template-columns: 1fr; gap: 36px; padding: 64px 0 24px; }
  .news-hero-copy h1 { font-size: 44px; }
  .news-hero-sub { max-width: none; }
}

.news-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.news-card { background: white; border: 1px solid var(--border-default); border-radius: 8px; padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.news-ico { width: 32px; height: 32px; color: var(--gray-9); }
.news-ico svg { width: 32px; height: 32px; }
.news-card-title { font-size: 17px; font-weight: 900; letter-spacing: -0.02em; color: var(--gray-9); }
.news-card-body { font-size: 14px; color: var(--gray-6); line-height: 1.6; font-weight: 500; }
.news-why { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; max-width: 760px; margin: 0 auto; }
.news-reason { display: flex; gap: 14px; align-items: flex-start; }
.news-check { flex-shrink: 0; width: 22px; height: 22px; color: var(--gray-9); }
.news-check svg { width: 22px; height: 22px; }
.news-reason-title { font-size: 15px; font-weight: 800; color: var(--gray-9); margin-bottom: 2px; }
.news-reason-body { font-size: 14px; color: var(--gray-6); line-height: 1.55; font-weight: 500; }
@media (max-width: 720px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-why { grid-template-columns: 1fr; }
}

/* ── CTA ─────────────────────────────────────────────── */
.cta {
  background: var(--gray-9); color: white;
  border-radius: 8px; padding: 80px 60px; text-align: center; margin: 120px 0 80px;
}
.cta .eyebrow { color: var(--gray-4); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.cta h2 { font-size: 56px; font-weight: 950; letter-spacing: -0.04em; line-height: 1.05; margin: 16px auto; max-width: 720px; color: white; }
.cta p { font-size: 18px; color: var(--gray-3); font-weight: 500; max-width: 520px; margin: 0 auto 32px; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { padding: 60px 0 40px; border-top: 1px solid var(--border-default); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.foot-brand-name { font-size: 18px; font-weight: 900; letter-spacing: -0.02em; color: var(--gray-9); margin-bottom: 12px; }
.foot-brand p { font-size: 13px; color: var(--gray-6); line-height: 1.6; max-width: 280px; font-weight: 500; margin: 0; }
.foot-col h5 { margin: 0 0 16px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-9); }
.foot-col a { display: block; padding: 6px 0; font-size: 13px; color: var(--gray-6); text-decoration: none; font-weight: 500; }
.foot-col a:hover { color: var(--gray-9); }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 32px; margin-top: 32px; border-top: 1px solid var(--border-default); font-size: 12px; color: var(--gray-5); font-weight: 500; }
.foot-bottom em { font-style: normal; color: var(--gray-9); font-weight: 700; }

/* ── PRODUCTS GRID (landing /products) ───────────────── */
.products-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; } }

/* ── BLOG LIST ───────────────────────────────────────── */
.post-list { display: flex; flex-direction: column; gap: 0; }
.post-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 32px; align-items: baseline; padding: 28px 0; border-bottom: 1px solid var(--border-default); text-decoration: none; color: inherit; transition: background 0.1s ease; }
.post-row:hover { background: var(--gray-0); }
.post-row .date { font-family: var(--font-mono); font-size: 12px; color: var(--gray-5); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.post-row .title { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; color: var(--gray-9); }
.post-row .read { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-4); }
.post-row:hover .read { color: var(--gray-9); }

/* ── BLOG POST ───────────────────────────────────────── */
.post-article { max-width: 720px; margin: 0 auto; padding: 80px 0; }
.post-article .meta { font-family: var(--font-mono); font-size: 12px; color: var(--gray-5); font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; }
.post-article h1 { font-size: 56px; font-weight: 950; letter-spacing: -0.04em; line-height: 1.05; margin: 12px 0 32px; color: var(--gray-9); }
.post-article .body { font-size: 18px; line-height: 1.7; color: var(--gray-7); font-weight: 500; }
.post-article .body h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; color: var(--gray-9); margin: 48px 0 16px; }
.post-article .body p { margin: 0 0 20px; }

/* ── RENDERED MARKDOWN: tables ───────────────────────── */
.post-article .body table,
.prose table,
.md-preview table,
.issue-item table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.5;
}
.post-article .body table { font-size: 15px; }
.post-article .body th, .post-article .body td,
.prose th, .prose td,
.md-preview th, .md-preview td,
.issue-item th, .issue-item td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border-default);
  vertical-align: top;
}
.post-article .body thead th,
.prose thead th,
.md-preview thead th,
.issue-item thead th {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-9);
  background: var(--gray-0);
  border-bottom: 2px solid var(--border-default);
}
.post-article .body tbody td,
.prose tbody td,
.md-preview tbody td,
.issue-item tbody td { color: var(--gray-7); font-weight: 500; }
.post-article .body tbody tr:last-child td,
.prose tbody tr:last-child td,
.md-preview tbody tr:last-child td,
.issue-item tbody tr:last-child td { border-bottom: 0; }
.post-article .body tbody tr:hover td,
.prose tbody tr:hover td { background: var(--gray-0); }
@media (max-width: 640px) {
  .post-article .body table,
  .prose table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ── FORM (subscribe, login, signup) ─────────────────── */
.form-card { max-width: 480px; margin: 80px auto; background: white; border: 1px solid var(--border-default); border-radius: 8px; padding: 40px; }
.form-card h1 { font-size: 32px; font-weight: 950; letter-spacing: -0.04em; line-height: 1.1; margin: 0 0 8px; color: var(--gray-9); }
.form-card .sub { font-size: 14px; color: var(--gray-6); font-weight: 500; margin-bottom: 28px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.10em; color: var(--gray-7); }
.form-field input {
  font-family: inherit; font-size: 14px; font-weight: 500;
  padding: 12px 14px; border: 1px solid var(--border-default); border-radius: 8px;
  background: white; color: var(--gray-9);
  outline: none;
  transition: border-color 0.1s ease;
}
.form-field input:focus { border-color: var(--gray-9); }
.form-card button[type="submit"] { width: 100%; justify-content: center; margin-top: 8px; }
.form-card .alt { font-size: 13px; color: var(--gray-6); margin-top: 20px; text-align: center; font-weight: 500; }
.form-card .alt a { color: var(--gray-9); font-weight: 700; text-decoration: none; }
.form-card .alt a:hover { text-decoration: underline; }
.form-error { background: var(--red-0); border: 1px solid var(--red-1); color: var(--red-8); padding: 12px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.form-success { background: var(--gray-0); border: 1px solid var(--border-default); color: var(--gray-9); padding: 12px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }

/* ── Combobox (custom select replacement) ────────────── */
.cb { position: relative; display: inline-block; font-family: inherit; }
.cb-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  padding: 11px 12px 11px 14px; border: 1px solid var(--border-default); border-radius: 8px;
  background: white; color: var(--gray-9);
  cursor: pointer; outline: none; text-align: left;
  transition: border-color 0.1s ease;
}
.cb-trigger:hover { border-color: var(--gray-3); }
.cb-trigger:focus-visible,
.cb.cb-open .cb-trigger { border-color: var(--gray-9); }
.cb-trigger-inner { display: flex; align-items: center; gap: 8px; min-width: 0; flex: 1; }
.cb-trigger-inner .cb-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cb-placeholder { color: var(--gray-5); font-weight: 500; }
.cb-leading { font-size: 16px; line-height: 1; flex-shrink: 0; }
.cb-caret { font-size: 11px; color: var(--gray-5); transition: transform 0.12s ease; flex-shrink: 0; }
.cb.cb-open .cb-caret { transform: rotate(180deg); color: var(--gray-9); }

.cb-popover {
  position: absolute; z-index: 50; top: calc(100% + 6px); left: 0; right: 0;
  background: white; border: 1px solid var(--border-default); border-radius: 10px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.12), 0 4px 12px -4px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  animation: cb-pop-in 0.08s ease-out;
}
@keyframes cb-pop-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cb-search { padding: 8px; border-bottom: 1px solid var(--border-default); background: var(--gray-0); }
.cb-search input {
  width: 100%; box-sizing: border-box;
  font-family: inherit; font-size: 13px; font-weight: 500;
  padding: 8px 10px; border: 1px solid var(--border-default); border-radius: 6px;
  background: white; color: var(--gray-9); outline: none;
}
.cb-search input:focus { border-color: var(--gray-9); }
.cb-list { max-height: 280px; overflow-y: auto; padding: 4px; }
.cb-group {
  font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gray-4); padding: 10px 10px 6px;
}
.cb-item {
  width: 100%; display: flex; align-items: center; gap: 10px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  padding: 8px 10px; border: 0; border-radius: 6px;
  background: transparent; color: var(--gray-9);
  cursor: pointer; outline: none; text-align: left;
}
.cb-item:hover:not(.is-disabled),
.cb-item:focus-visible { background: var(--gray-1); }
.cb-item.is-selected { background: var(--gray-0); }
.cb-item.is-selected .cb-check { opacity: 1; }
.cb-item.is-disabled { opacity: 0.45; cursor: not-allowed; }
.cb-item-text { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cb-item-text .cb-label { font-weight: 700; color: var(--gray-9); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cb-desc { font-size: 11px; font-weight: 500; color: var(--gray-5); margin-top: 1px; line-height: 1.35; }
.cb-check { opacity: 0; color: var(--gray-9); font-size: 12px; font-weight: 900; flex-shrink: 0; }
.cb-empty { padding: 24px 12px; text-align: center; font-size: 12px; color: var(--gray-5); font-weight: 500; }

/* ── Landing pages built from blocks ─────────────────── */
body.page-light { background: white; }
body.page-dark { background: var(--gray-9); color: white; }
body.page-dark .hero h1, body.page-dark .zen-title { color: white; }
body.page-dark .hero h1 em, body.page-dark .zen-title em { color: var(--gray-4); }
body.page-dark .hero p, body.page-dark .prose p, body.page-dark .md-preview p { color: var(--gray-3); }
body.page-dark .b { background: var(--gray-9); color: white; border-color: var(--gray-8); }
body.page-dark .b .title { color: white; }
body.page-dark .b .body { color: var(--gray-3); }
body.page-dark .b.dark { background: black; }
body.page-dark .m .v { color: white; }
body.page-dark .m .l { color: var(--gray-4); }
.page-section + .page-section { padding-top: 0; }
.page-richtext .prose { max-width: 720px; margin: 60px auto; padding: 0 32px; }

/* ── Public newsletter issue ─────────────────────────── */
.issue-page { padding: 80px 0; }
.issue-header { max-width: 720px; margin: 0 auto 48px; }
.issue-eyebrow { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--gray-5); text-transform: uppercase; letter-spacing: 0.10em; }
.issue-eyebrow a { color: var(--gray-9); text-decoration: none; font-weight: 800; }
.issue-page h1 { font-size: 56px; font-weight: 950; letter-spacing: -0.04em; line-height: 1.05; margin: 12px 0 0; color: var(--gray-9); }
.issue-intro, .issue-outro { max-width: 720px; margin: 0 auto 32px; font-size: 17px; line-height: 1.7; color: var(--gray-7); font-weight: 500; }
.issue-items { max-width: 720px; margin: 0 auto 32px; display: flex; flex-direction: column; gap: 36px; }
.issue-item { border-top: 1px solid var(--border-default); padding-top: 28px; }
.issue-item h2 { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; color: var(--gray-9); margin: 0 0 12px; line-height: 1.25; }
.issue-item h2 a { color: var(--gray-9); text-decoration: none; }
.issue-item h2 a:hover { text-decoration: underline; }
.issue-item h2 .ext { color: var(--gray-4); font-weight: 700; font-size: 0.85em; vertical-align: 1px; }
.issue-footer { max-width: 720px; margin: 60px auto 0; }
.subscribe-card { background: var(--gray-0); border: 1px solid var(--border-default); border-radius: 8px; padding: 32px; margin-bottom: 24px; }
.subscribe-card .lbl { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-4); margin-bottom: 4px; }
.subscribe-card .ttl { font-size: 22px; font-weight: 900; color: var(--gray-9); letter-spacing: -0.02em; margin-bottom: 20px; }
.subscribe-card > div[id^="lwa-news-"] { max-width: none; }
.archive-link { display: inline-block; font-size: 13px; font-weight: 700; color: var(--gray-7); text-decoration: none; padding: 8px 0; }
.archive-link:hover { color: var(--gray-9); }

/* ── Google One Tap / GSI ────────────────────────────── */
.g_id_signin { display: flex; justify-content: center; margin: 4px 0 8px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-4); }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-default); }

/* ── EMPTY STATES ────────────────────────────────────── */
.empty { padding: 80px 32px; text-align: center; border: 1px dashed var(--border-default); border-radius: 8px; background: var(--gray-0); display: flex; flex-direction: column; align-items: center; gap: 12px; }
.empty-title { font-size: 18px; font-weight: 900; letter-spacing: -0.02em; color: var(--gray-9); }
.empty-body { font-size: 14px; color: var(--gray-6); font-weight: 500; max-width: 420px; }
.empty .btn-pri { margin-top: 8px; }

/* ── PROSE (long-form copy) ──────────────────────────── */
.prose { max-width: 720px; margin: 80px auto; padding: 0 32px; }
.prose h1 { font-size: 48px; font-weight: 950; letter-spacing: -0.04em; line-height: 1.05; margin: 0 0 24px; color: var(--gray-9); }
.prose h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; color: var(--gray-9); margin: 40px 0 12px; }
.prose p { font-size: 17px; line-height: 1.7; color: var(--gray-7); font-weight: 500; margin: 0 0 20px; }

/* ── LANDING BLOCK: HEADER ───────────────────────────── */
.lp-header {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 20px 0; margin: 16px 0 0;
}
.lp-header-nav { display: flex; gap: 4px; flex: 1; justify-content: center; }
.lp-header-nav a {
  text-decoration: none; font-size: 13px; font-weight: 600; color: var(--gray-7);
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.1s ease, color 0.1s ease;
}
.lp-header-nav a:hover { background: var(--gray-1); color: var(--gray-9); }
.lp-header-actions { display: flex; gap: 8px; align-items: center; }
body.page-dark .lp-header-nav a { color: var(--gray-3); }
body.page-dark .lp-header-nav a:hover { background: var(--gray-8); color: white; }
@media (max-width: 720px) {
  .lp-header { flex-wrap: wrap; }
  .lp-header-nav { order: 3; width: 100%; justify-content: flex-start; flex-wrap: wrap; }
}

/* ── LANDING BLOCK: LOGOS ────────────────────────────── */
.logos { padding: 60px 0; text-align: center; }
.logos-eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gray-4); margin-bottom: 32px;
}
.logos-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 48px;
}
.logo-item {
  font-family: var(--font-mono); font-size: 18px; font-weight: 800;
  letter-spacing: 0.10em; color: var(--gray-5);
  opacity: 0.8; transition: opacity 0.15s ease, color 0.15s ease;
}
.logo-item:hover { opacity: 1; color: var(--gray-9); }
body.page-dark .logo-item { color: var(--gray-4); }
body.page-dark .logo-item:hover { color: white; }

/* ── LANDING BLOCK: FEATURES (3-col) ─────────────────── */
.features-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.feature-card {
  background: white; border: 1px solid var(--border-default); border-radius: 8px;
  padding: 32px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-bento-hover); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--gray-0); color: var(--gray-9);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
}
.feature-title { font-size: 20px; font-weight: 900; letter-spacing: -0.02em; color: var(--gray-9); }
.feature-body { font-size: 14px; color: var(--gray-6); line-height: 1.6; font-weight: 500; }
body.page-dark .feature-card { background: var(--gray-9); border-color: var(--gray-8); }
body.page-dark .feature-card .feature-title { color: white; }
body.page-dark .feature-card .feature-body { color: var(--gray-3); }
body.page-dark .feature-icon { background: var(--gray-8); color: white; }
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }

/* ── LANDING BLOCK: FAQ ──────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: white; border: 1px solid var(--border-default); border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq-item:hover { border-color: var(--gray-3); }
.faq-item[open] { border-color: var(--gray-9); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-size: 16px; font-weight: 800; color: var(--gray-9); letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { flex: 1; }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gray-0); color: var(--gray-9);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--gray-9); color: white; }
.faq-a {
  padding: 0 24px 22px; font-size: 15px; color: var(--gray-6); line-height: 1.65; font-weight: 500;
}
body.page-dark .faq-item { background: var(--gray-9); border-color: var(--gray-8); }
body.page-dark .faq-item summary { color: white; }
body.page-dark .faq-a { color: var(--gray-3); }
body.page-dark .faq-icon { background: var(--gray-8); color: white; }

/* ── LANDING BLOCK: PRICING ──────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; align-items: stretch; }
.pricing-card {
  position: relative;
  background: white; border: 1px solid var(--border-default); border-radius: 8px;
  padding: 32px; display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.2s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-bento-hover); }
.pricing-card.highlight { background: var(--gray-9); color: white; border-color: var(--gray-9); }
.pricing-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: white; color: var(--gray-9);
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.10em;
  padding: 4px 12px; border-radius: 9999px; border: 1px solid var(--gray-9);
}
.pricing-name {
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gray-5);
}
.pricing-card.highlight .pricing-name { color: var(--gray-4); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; }
.pp-num { font-size: 48px; font-weight: 950; letter-spacing: -0.04em; color: var(--gray-9); line-height: 1; }
.pricing-card.highlight .pp-num { color: white; }
.pp-period { font-size: 14px; font-weight: 700; color: var(--gray-5); }
.pricing-card.highlight .pp-period { color: var(--gray-3); }
.pricing-feats {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.pricing-feats li {
  font-size: 13px; color: var(--gray-7); font-weight: 500; line-height: 1.5;
  padding-left: 22px; position: relative;
}
.pricing-feats li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--gray-9); font-weight: 900; font-size: 13px;
}
.pricing-card.highlight .pricing-feats li { color: var(--gray-3); }
.pricing-card.highlight .pricing-feats li::before { color: white; }
body.page-dark .pricing-card:not(.highlight) { background: var(--gray-9); border-color: var(--gray-8); }
body.page-dark .pricing-card:not(.highlight) .pp-num { color: white; }
body.page-dark .pricing-card:not(.highlight) .pricing-feats li { color: var(--gray-3); }
body.page-dark .pricing-card:not(.highlight) .pricing-feats li::before { color: white; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ── LANDING BLOCK: WAITLIST ─────────────────────────── */
.waitlist-section { padding: 80px 0; }
.waitlist-card {
  max-width: 520px; margin: 0 auto;
  background: white; border: 1px solid var(--border-default); border-radius: 8px;
  padding: 40px; text-align: center;
}
.waitlist-eyebrow {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gray-4); margin-bottom: 8px;
}
.waitlist-title { font-size: 28px; font-weight: 950; letter-spacing: -0.03em; color: var(--gray-9); }
.waitlist-sub { font-size: 14px; color: var(--gray-6); font-weight: 500; margin: 8px auto 24px; max-width: 380px; line-height: 1.55; }
.waitlist-form { display: flex; gap: 8px; }
.waitlist-form input {
  flex: 1; font-family: inherit; font-size: 14px; font-weight: 500;
  padding: 12px 14px; border: 1px solid var(--border-default); border-radius: 8px;
  background: white; color: var(--gray-9); outline: none;
  transition: border-color 0.1s ease;
}
.waitlist-form input:focus { border-color: var(--gray-9); }
.waitlist-footer { font-size: 11px; color: var(--gray-5); font-weight: 500; margin-top: 12px; }
body.page-dark .waitlist-card { background: var(--gray-9); border-color: var(--gray-8); }
body.page-dark .waitlist-title { color: white; }
body.page-dark .waitlist-sub { color: var(--gray-3); }
body.page-dark .waitlist-form input { background: black; color: white; border-color: var(--gray-8); }
@media (max-width: 600px) { .waitlist-form { flex-direction: column; } }

/* ── LANDING BLOCK: FOOTER (rendered as block) ───────── */
.lp-footer { padding: 60px 0 40px; margin-top: 80px; border-top: 1px solid var(--border-default); }
body.page-dark .lp-footer { border-top-color: var(--gray-8); }
body.page-dark .foot-brand-name, body.page-dark .foot-col h5 { color: white; }
body.page-dark .foot-brand p, body.page-dark .foot-col a { color: var(--gray-3); }
body.page-dark .foot-col a:hover { color: white; }
body.page-dark .foot-bottom { color: var(--gray-4); border-top-color: var(--gray-8); }
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── PRICING ─────────────────────────────────────────── */
.pricing-plans { display: flex; flex-direction: column; align-items: center; }

.billing-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: var(--gray-1); border: 1px solid var(--border-default);
  border-radius: 999px; margin-bottom: 48px;
}
.billing-toggle button {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; background: transparent; cursor: pointer;
  font-size: 13px; font-weight: 700; color: var(--gray-6);
  padding: 8px 18px; border-radius: 999px;
  transition: background 0.12s ease, color 0.12s ease;
}
.billing-toggle button:hover { color: var(--gray-9); }
.billing-toggle button.active { background: white; color: var(--gray-9); box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.billing-save {
  font-size: 10px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--gray-9);
  background: var(--gray-2); padding: 2px 7px; border-radius: 999px;
}
.billing-toggle button.active .billing-save { background: var(--gray-1); }

.price-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; width: 100%; align-items: start;
}

.price-tier {
  position: relative; display: flex; flex-direction: column;
  background: white; border: 1px solid var(--border-default);
  border-radius: 12px; padding: 32px;
}
.price-tier.is-featured {
  border-color: var(--gray-9); border-width: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  padding: 36px 32px;
}
.price-tier-badge {
  position: absolute; top: -12px; left: 32px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; color: white; background: var(--gray-9);
  padding: 5px 12px; border-radius: 999px;
}
.price-tier-head { min-height: 78px; }
.price-tier-name {
  font-size: 15px; font-weight: 900; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--gray-9);
}
.price-tier-tag {
  font-size: 13.5px; font-weight: 500; color: var(--gray-6);
  line-height: 1.5; margin: 8px 0 0;
}
.price-tier-price {
  display: flex; align-items: baseline; gap: 6px;
  margin: 20px 0 6px; padding-top: 20px;
  border-top: 1px solid var(--border-default);
}
.price-tier-price .amt {
  font-size: 52px; font-weight: 950; letter-spacing: -0.04em;
  line-height: 1; color: var(--gray-9);
}
.price-tier-price .per { font-size: 14px; font-weight: 600; color: var(--gray-5); }
.price-tier-note { font-size: 12px; font-weight: 500; color: var(--gray-5); min-height: 30px; }
.price-tier-cta {
  width: 100%; justify-content: center; margin: 16px 0 8px;
}
.price-tier-feats {
  display: flex; flex-direction: column; gap: 13px;
  margin-top: 20px; padding-top: 24px;
  border-top: 1px solid var(--border-default);
}
.price-feat-intro {
  font-size: 12px; font-weight: 800; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--gray-5); margin-bottom: 2px;
}
.price-feat {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--gray-7); line-height: 1.45;
}
.price-feat .ico {
  width: 18px; height: 18px; padding: 3px; flex-shrink: 0;
  background: var(--gray-1); color: var(--gray-9); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.price-tier.is-featured .price-feat .ico { background: var(--gray-9); color: white; }

.pricing-save-body {
  max-width: 640px; margin: 0 auto 16px; text-align: center;
  font-size: 16px; font-weight: 500; color: var(--gray-7); line-height: 1.6;
}

/* ── PRICING: comparison table ───────────────────────── */
.cmp-card {
  border: 1px solid var(--border-default); border-radius: 12px;
  overflow: hidden; background: white;
}
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th, .cmp-table td {
  padding: 14px 20px; text-align: center; font-size: 13.5px;
  border-bottom: 1px solid var(--border-default);
}
.cmp-table thead th {
  font-size: 14px; font-weight: 900; color: var(--gray-9);
  background: var(--gray-0); padding-top: 18px; padding-bottom: 18px;
}
.cmp-table .cmp-feat-col {
  text-align: left; font-weight: 600; color: var(--gray-8);
}
.cmp-table thead .cmp-feat-col { color: var(--gray-5); font-weight: 700; }
.cmp-table .cmp-featured { background: rgba(0,0,0,0.03); }
.cmp-table thead .cmp-featured { background: var(--gray-1); }
.cmp-group td {
  text-align: left; font-size: 11px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gray-5); background: var(--gray-0);
  padding-top: 16px; padding-bottom: 10px;
}
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; padding: 3px;
  background: var(--gray-9); color: white; border-radius: 50%;
}
.cmp-no { color: var(--gray-3); font-weight: 700; }
.cmp-txt { font-weight: 700; color: var(--gray-8); }

/* ── PRICING: FAQ ────────────────────────────────────── */
.faq-list {
  max-width: 720px; margin: 0 auto;
  border-top: 1px solid var(--border-default);
}
.faq-item { border-bottom: 1px solid var(--border-default); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; cursor: pointer; list-style: none;
  padding: 22px 4px; font-size: 16px; font-weight: 700; color: var(--gray-9);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gray-6); }
.faq-plus {
  font-size: 22px; font-weight: 400; color: var(--gray-5);
  flex-shrink: 0; line-height: 1; transition: transform 0.15s ease;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-answer {
  padding: 0 4px 24px; font-size: 14.5px; font-weight: 500;
  color: var(--gray-6); line-height: 1.65; max-width: 600px;
}

@media (max-width: 880px) {
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-tier-head { min-height: 0; }
  .cmp-table th, .cmp-table td { padding: 12px 10px; font-size: 12.5px; }
  .cmp-table .cmp-feat-col { padding-left: 14px; }
}
