/* AlphaAssist — shared design system */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600;6..72,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #faf8f3;
  --bg-alt: #f3efe6;
  --surface: #ffffff;
  --text: #1a1d24;
  --text-muted: #5a6068;
  --text-soft: #8a8f97;
  --border: #e8e4d8;
  --border-strong: #d4cebc;
  --accent: #1e3a5c;
  --accent-hover: #142847;
  --accent-soft: #eaeff5;
  --accent-soft-2: #d8e1ec;
  --gold: #8a6f3a;
  --success: #2d6a4f;
  --shadow-sm: 0 1px 2px rgba(26, 29, 36, 0.04), 0 1px 3px rgba(26, 29, 36, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 29, 36, 0.06), 0 2px 4px rgba(26, 29, 36, 0.04);
  --radius: 10px;
  --radius-lg: 14px;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: 3rem; font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.15rem; }

@media (max-width: 720px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
}

p { color: var(--text-muted); }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav .logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav .logo .accent { color: var(--accent); font-style: italic; }
.nav .links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
}
.nav .links a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.93rem;
  font-weight: 500;
}
.nav .links a:not(.btn):hover { color: var(--text); text-decoration: none; }
.nav .links .btn { margin-left: 8px; }

@media (max-width: 720px) {
  .nav-inner { padding: 12px 18px; gap: 12px; }
  .nav .links { gap: 14px; }
  .nav .links a:not(.btn) { display: none; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--accent-soft); border-color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--text); }
.btn-block { display: block; width: 100%; text-align: center; }

/* Layout */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .container { padding: 0 18px; } }

section { padding: 88px 0; }
section.alt { background: var(--bg-alt); }
section .section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
section .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
section .section-head h2 { margin-bottom: 12px; }
section .section-head p { font-size: 1.05rem; line-height: 1.6; }

@media (max-width: 720px) { section { padding: 60px 0; } section .section-head { margin-bottom: 36px; } }

/* Hero */
.hero {
  text-align: center;
  padding: 100px 0 64px;
  border-bottom: 1px solid var(--border);
}
.hero h1 { max-width: 880px; margin: 0 auto 20px; }
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero .lede {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.hero .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero .stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero .stat { text-align: center; }
.hero .stat .num {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero .stat .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-top: 4px;
}

@media (max-width: 720px) {
  .hero { padding: 60px 0 48px; }
  .hero .stats { gap: 28px; margin-top: 36px; }
}

/* Trust strip */
.trust {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-family: var(--sans);
}
.trust .label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}
.trust .vendor {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.feature:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature .icon svg { width: 20px; height: 20px; stroke-width: 1.75; }
.feature h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.005em; }
.feature p { font-size: 0.93rem; line-height: 1.6; }

@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* Voices */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.voice-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.voice-card .name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.voice-card .desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.voice-card audio {
  width: 100%;
  height: 36px;
}
.voices-note {
  text-align: center;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  text-align: center;
  padding: 4px 12px;
}
.step .num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--border-strong);
  margin: 0 auto 16px;
}
.step h3 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.005em; }
.step p { font-size: 0.9rem; line-height: 1.55; }

@media (max-width: 800px) { .steps { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* Use cases */
.usecases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.usecase {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.usecase .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.usecase .icon svg { width: 18px; height: 18px; stroke-width: 1.75; }
.usecase h3 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 6px; letter-spacing: -0.005em; }
.usecase p { font-size: 0.9rem; line-height: 1.55; }

@media (max-width: 720px) { .usecases { grid-template-columns: 1fr; } }

/* Dashboard preview */
.dashboard-preview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.dashboard-preview h2 { margin-bottom: 16px; }
.dashboard-preview p { font-size: 1.02rem; margin-bottom: 14px; }
.dashboard-preview ul {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}
.dashboard-preview ul li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 0.96rem;
  color: var(--text);
}
.dashboard-preview ul li:first-child { border-top: 0; }
.dashboard-preview ul li strong { color: var(--text); font-weight: 600; }
.dashboard-preview ul li span { color: var(--text-muted); display: block; font-size: 0.88rem; margin-top: 2px; }
.dashboard-mockup {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.dashboard-mockup .bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-mockup .bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.dashboard-mockup .bar .url {
  margin-left: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.dashboard-mockup .body { padding: 22px; }
.dashboard-mockup .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.dashboard-mockup .row:last-child { border-bottom: 0; }
.dashboard-mockup .row .label { color: var(--text-muted); }
.dashboard-mockup .row .val { color: var(--text); font-weight: 500; }
.dashboard-mockup .row .pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 800px) { .dashboard-preview { grid-template-columns: 1fr; gap: 32px; } }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  position: relative;
}
.price-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.price-card .name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.price-card .amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 4px;
}
.price-card .amount span {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--sans);
}
.price-card .desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}
.price-card ul li {
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.price-card ul li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
  stroke-width: 2.25;
}
.price-card ul li.dim { color: var(--text-soft); }
.price-card ul li.dim svg { color: var(--text-soft); }

.pricing-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pricing-grid-4 .price-card { padding: 28px 22px; }
.pricing-grid-4 .price-card .amount { font-size: 2.2rem; }
.price-card-premium {
  border-color: var(--text);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-soft, var(--surface)) 100%);
}
.price-card-premium .amount { color: var(--text); }

@media (max-width: 1100px) { .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; gap: 18px; } .pricing-grid-4 { grid-template-columns: 1fr; } }

/* AlphaSEO section CTA */
.alphaseo-cta { text-align: center; margin-top: 32px; }

/* FAQ */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq details[open] { border-color: var(--border-strong); }
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  font-size: 1rem;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--text-soft);
  font-weight: 400;
  transition: transform 0.15s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq .answer {
  padding: 0 22px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* CTA */
.cta-block {
  text-align: center;
  padding: 88px 0;
  background: var(--accent);
  color: #fff;
}
.cta-block h2 { color: #fff; margin-bottom: 14px; }
.cta-block p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 28px; }
.cta-block .btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.cta-block .btn-primary:hover { background: var(--bg-alt); border-color: var(--bg-alt); }

/* Footer */
footer {
  padding: 56px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.9rem;
  color: var(--text-muted);
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
footer .footer-grid h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 14px;
}
footer .footer-grid ul { list-style: none; padding: 0; }
footer .footer-grid li { margin-bottom: 8px; }
footer .footer-grid a { color: var(--text-muted); }
footer .footer-grid a:hover { color: var(--text); text-decoration: none; }
footer .brand { font-family: var(--serif); font-size: 1.2rem; color: var(--text); margin-bottom: 10px; }
footer .brand .accent { color: var(--accent); font-style: italic; }
footer .tagline { font-size: 0.92rem; line-height: 1.55; max-width: 280px; }
footer .copyright {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 800px) { footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { footer .footer-grid { grid-template-columns: 1fr; } }

/* Legal / content pages */
.content-page { max-width: 760px; margin: 0 auto; padding: 64px 28px 96px; }
.content-page h1 { font-size: 2.4rem; margin-bottom: 8px; }
.content-page .updated {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.content-page h2 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  color: var(--text);
}
.content-page h3 {
  font-size: 1.05rem;
  margin: 22px 0 8px;
  color: var(--text);
}
.content-page p, .content-page li {
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.content-page ul, .content-page ol { padding-left: 24px; margin-bottom: 16px; }
.content-page li { margin-bottom: 6px; }
.content-page .back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.content-page .back:hover { color: var(--text); text-decoration: none; }
.content-page .callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 18px 0;
}
.content-page .callout h3 { margin-top: 0; color: var(--accent); font-size: 1.05rem; }
.content-page .callout-quote {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  font-style: italic;
  color: var(--text);
  border-radius: 4px;
  margin: 12px 0;
}
.content-page .highlight { color: var(--text); font-weight: 600; }

/* Blog index */
.blog-hero { padding: 72px 0 32px; text-align: center; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  padding-bottom: 80px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.blog-card h2 { font-size: 1.25rem; margin-bottom: 10px; color: var(--text); }
.blog-card p { font-size: 0.93rem; line-height: 1.6; flex-grow: 1; }
.blog-card .meta { font-size: 0.8rem; color: var(--text-soft); margin-top: 14px; }

/* Blog post */
.post-page { max-width: 760px; margin: 0 auto; padding: 64px 28px 96px; }
.post-page h1 { font-size: 2.4rem; margin-bottom: 12px; line-height: 1.18; }
.post-page .post-meta { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.post-page h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.post-page h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.post-page p, .post-page li {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.post-page ul, .post-page ol { padding-left: 24px; margin-bottom: 18px; }
.post-page blockquote {
  border-left: 3px solid var(--accent);
  padding: 6px 18px;
  margin: 18px 0;
  background: var(--bg-alt);
  border-radius: 4px;
  color: var(--text);
  font-style: italic;
}
.post-page code { background: var(--bg-alt); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }


/* ── Free SEO audit section (P5) ── */
.audit-section { padding: 64px 0; background: var(--bg-alt); }
.audit-form { max-width: 720px; margin: 24px auto 0; }
.audit-row { display: flex; gap: 12px; flex-wrap: wrap; }
.audit-row input {
  flex: 1 1 220px; min-width: 0;
  padding: 12px 14px; font-size: 1rem; font-family: inherit;
  border: 1px solid var(--border); background: #fff; color: var(--text);
  border-radius: 8px; outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.audit-row input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(49,130,206,.18); }
.audit-row .btn { flex: 0 0 auto; }
.audit-note { color: var(--text-soft); font-size: 0.85rem; margin: 12px 0 0; text-align: center; }
.audit-result { max-width: 720px; margin: 24px auto 0; padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.audit-error { color: #c53030; font-weight: 600; }
.audit-score { display: flex; gap: 24px; align-items: center; padding: 16px; border-radius: 8px; margin-bottom: 16px; }
.audit-score-good { background: rgba(47,133,90,.08); }
.audit-score-warn { background: rgba(183,121,31,.08); }
.audit-score-bad  { background: rgba(197,48,48,.08); }
.audit-score .num { font-size: 48px; font-weight: 700; line-height: 1; color: var(--text); }
.audit-score-good .num { color: #2f855a; }
.audit-score-warn .num { color: #b7791f; }
.audit-score-bad  .num { color: #c53030; }
.audit-score .num span { font-size: 18px; color: var(--text-soft); font-weight: 400; margin-left: 4px; }
.audit-score .meta { font-size: 0.93rem; color: var(--text-soft); }
.audit-meta { font-size: 0.92rem; color: var(--text-soft); margin: 0 0 14px; }
.audit-issues { padding-left: 22px; margin: 0 0 16px; line-height: 1.7; font-size: 0.95rem; }
.audit-issues li { margin-bottom: 6px; }
.tier { display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 1px 6px; border-radius: 3px; margin-right: 6px; }
.tier-critical { background: rgba(197,48,48,.12); color: #c53030; }
.tier-warning  { background: rgba(183,121,31,.12); color: #b7791f; }
.tier-info     { background: rgba(113,128,150,.14); color: #4a5568; }
.audit-cta { margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--border); font-size: 0.95rem; }
