/* ============================================================
   GENERATED FILE, DO NOT EDIT.
   Copied verbatim from web/src/styles/global.css by
   infra/blog-proxy/sync-theme.sh. Edit the source, then re-run.
   ============================================================ */
/* ============================================================
   GenAuthority — marketing site design system
   Brand: orange #ea580c accent on neutral, Plus Jakarta Sans +
   JetBrains Mono, four-point-star mark. Matches the product app.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #fafaf9;
  --fg: #0a0a0a;
  --fg-2: #3f3f46;
  --muted: #71717a;
  --border: #e7e5e4;
  --brand: #ea580c;
  --brand-2: #f97316;
  --brand-soft: #fff1e9;
  --pos: #059669;
  --neg: #e11d48;

  /* Dark "product" surfaces (the dashboard mock) */
  --panel: #0e0e12;
  --panel-2: #16161c;
  --panel-3: #1e1e26;
  --panel-border: #2a2a34;
  --panel-fg: #f4f4f5;
  --panel-muted: #a1a1aa;

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1140px;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 2px rgba(234, 88, 12, 0.35), 0 8px 24px -8px rgba(234, 88, 12, 0.55);
}
.btn-primary:hover {
  background: #d64f0a;
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg-soft);
}
.btn-lg {
  padding: 15px 26px;
  font-size: 16px;
}

/* ---------- header ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
}
.brand-logo-sm {
  height: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 15px;
  color: var(--fg-2);
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover {
  color: var(--fg);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cta .signin {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-2);
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 90px;
  background:
    radial-gradient(60% 55% at 78% 8%, rgba(234, 88, 12, 0.10), transparent 70%),
    radial-gradient(50% 40% at 8% 20%, rgba(249, 115, 22, 0.07), transparent 70%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(70% 60% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 1.1fr;
  gap: 54px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hero h1 {
  font-size: clamp(36px, 5.1vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-top: 18px;
}
.hero h1 .hl {
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}
.hero p.sub {
  margin-top: 20px;
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--fg-2);
  max-width: 33ch;
}
.hero .cta-row {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .assurance {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pos);
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
  100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

/* ---------- dashboard mock ---------- */
.mock {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 18px;
  color: var(--panel-fg);
  box-shadow: 0 40px 80px -30px rgba(10, 10, 18, 0.5), 0 8px 24px -12px rgba(10, 10, 18, 0.4);
}
.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--panel-border);
}
.mock-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14px;
}
.mock-brand .m-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-2);
  animation: pulse-o 1.8s infinite;
}
@keyframes pulse-o {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
.mock-engines {
  display: flex;
  gap: 6px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--panel-2);
  border: 1px solid var(--panel-border);
  color: var(--panel-muted);
}
.chip.on {
  color: #fff;
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.12);
}
.mock-body {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 16px;
  padding-top: 16px;
}
@media (max-width: 460px) {
  .mock-body {
    grid-template-columns: 1fr;
  }
}
.panel {
  background: var(--panel-2);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 14px;
}
.panel .p-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--panel-muted);
}
/* score ring */
.score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ring {
  position: relative;
  width: 118px;
  height: 118px;
}
.ring svg {
  transform: rotate(-90deg);
}
.ring .track {
  stroke: var(--panel-3);
}
.ring .prog {
  stroke: var(--brand-2);
  stroke-linecap: round;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ring .num {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring .num b {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
.ring .num span {
  font-size: 10px;
  color: var(--panel-muted);
  margin-top: 2px;
}
.score .delta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--pos);
}
/* share of voice bars */
.sov {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 12px;
}
.bar-row {
  display: grid;
  grid-template-columns: 74px 1fr 38px;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
}
.bar-row .name {
  color: var(--panel-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bar-row.you .name {
  color: #fff;
  font-weight: 600;
}
.track-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--panel-3);
  overflow: hidden;
}
.fill {
  height: 100%;
  border-radius: 999px;
  width: 0;
  background: #52525b;
  transition: width 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.bar-row.you .fill {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}
.bar-row .val {
  font-family: var(--font-mono);
  text-align: right;
  color: var(--panel-muted);
}
.bar-row.you .val {
  color: #fff;
}
/* citation gap + change feed strip */
.mock-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 460px) {
  .mock-strip {
    grid-template-columns: 1fr;
  }
}
.gap-nums {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.gap-nums div {
  display: flex;
  flex-direction: column;
}
.gap-nums b {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
}
.gap-nums small {
  font-size: 10.5px;
  color: var(--panel-muted);
}
.gap-nums .miss b {
  color: var(--brand-2);
}
.feed-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 9px;
  font-size: 12px;
  color: var(--panel-muted);
  line-height: 1.4;
}
.feed-item i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
  background: var(--brand-2);
}
.feed-item.up i {
  background: var(--pos);
}
.feed-item b {
  color: #fff;
  font-weight: 600;
}

/* ---------- trust bar ---------- */
.trust {
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 26px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 34px;
  flex-wrap: wrap;
}
.trust .lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust .eng {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--fg-2);
  font-size: 15px;
}
/* One treatment for all five marks so a PNG and an SVG sit at the same weight.
   Greyscale keeps the row reading as one row rather than five brand palettes
   competing with each other; colour comes back on hover. */
.trust .eng img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.15s ease, filter 0.15s ease;
}
.trust-inner:hover .eng img {
  opacity: 0.9;
}
@media (max-width: 640px) {
  .trust .eng {
    font-size: 13px;
    gap: 6px;
  }
  .trust .eng img {
    width: 16px;
    height: 16px;
  }
}

/* ---------- sections ---------- */
.section {
  padding: 88px 0;
}
.section.soft {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}
.sec-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 800;
  margin-top: 14px;
}
.sec-head p {
  margin-top: 14px;
  color: var(--fg-2);
  font-size: 17px;
}

/* features grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: 0 24px 48px -28px rgba(10, 10, 18, 0.25);
}
.card .ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 16px;
}
.card .ico svg {
  width: 22px;
  height: 22px;
}
.card h3 {
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.card p {
  margin-top: 8px;
  color: var(--fg-2);
  font-size: 14.5px;
}
.card .soon {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 3px 9px;
  border-radius: 999px;
}

/* how it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
@media (max-width: 780px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding: 26px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}
.step .n {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
}
.step h3 {
  margin-top: 8px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.step p {
  margin-top: 8px;
  color: var(--fg-2);
  font-size: 14.5px;
}

/* cta band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  color: #fff;
  border-radius: 22px;
  padding: 56px 40px;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 120% at 50% 0%, rgba(234, 88, 12, 0.28), transparent 70%);
}
.cta-band h2 {
  position: relative;
  font-size: clamp(26px, 3.4vw, 38px);
  letter-spacing: -0.025em;
  font-weight: 800;
}
.cta-band p {
  position: relative;
  margin-top: 12px;
  color: var(--panel-muted);
  font-size: 17px;
}
.cta-band .cta-row {
  position: relative;
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band .btn-ghost {
  color: #fff;
  border-color: var(--panel-border);
}
.cta-band .btn-ghost:hover {
  background: var(--panel-2);
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 56px 0 34px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 780px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}
.foot-brand p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  max-width: 30ch;
}
.foot-col h4 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-mono);
  margin-bottom: 14px;
}
.foot-col a {
  display: block;
  color: var(--fg-2);
  font-size: 14.5px;
  padding: 5px 0;
  transition: color 0.15s ease;
}
.foot-col a:hover {
  color: var(--brand);
}
.foot-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13.5px;
}

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  margin-inline: auto;
  max-width: 720px;
  background: var(--panel);
  color: var(--panel-fg);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 24px 60px -20px rgba(10, 10, 18, 0.5);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.cookie.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie p {
  font-size: 13.5px;
  color: var(--panel-muted);
  line-height: 1.45;
}
.cookie p a {
  color: #fff;
  text-decoration: underline;
}
.cookie .btn {
  padding: 9px 16px;
  font-size: 13.5px;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .cookie {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
}

/* ---------- inner page header ---------- */
.page-hero {
  padding: 66px 0 40px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(234, 88, 12, 0.08), transparent 70%),
    var(--bg-soft);
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-weight: 800;
  margin-top: 12px;
}
.page-hero p.lead {
  margin-top: 14px;
  font-size: 18px;
  color: var(--fg-2);
  max-width: 60ch;
}

/* ---------- prose (legal / about) ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 54px 0 20px;
}
.prose h2 {
  font-size: 21px;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 34px 0 10px;
}
.prose h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 6px;
}
.prose p,
.prose li {
  color: var(--fg-2);
  font-size: 15.5px;
  line-height: 1.7;
}
.prose p {
  margin-bottom: 14px;
}
.prose ul {
  margin: 0 0 16px 20px;
}
.prose li {
  margin-bottom: 7px;
}
.prose a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose strong {
  color: var(--fg);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 18px;
  font-size: 14.5px;
}
.prose th,
.prose td {
  text-align: left;
  padding: 9px 12px;
  border: 1px solid var(--border);
}
.prose th {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--fg);
}
.draft-banner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  margin-bottom: 8px;
}
.eff-date {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px;
}

/* ---------- contact form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: start;
  padding: 54px 0 20px;
}
@media (max-width: 820px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fg);
}
.field input,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 13px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}
.form-msg {
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}
.form-msg.ok {
  display: block;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}
.form-msg.err {
  display: block;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.contact-aside {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.contact-aside h3 {
  font-size: 17px;
  font-weight: 700;
}
.contact-aside p {
  color: var(--fg-2);
  font-size: 14.5px;
  margin-top: 8px;
}
.contact-aside a {
  color: var(--brand);
  font-weight: 600;
}

/* ---------- pricing ---------- */
.price-wrap {
  padding: 40px 0 10px;
}
.soon-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 46px 34px;
  background: var(--bg);
}
.soon-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.tier-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0 26px;
  text-align: left;
}
@media (max-width: 620px) {
  .tier-teaser {
    grid-template-columns: 1fr;
  }
}
.tier {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}
.tier.mid {
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.15);
}
.tier .t-name {
  font-weight: 700;
  font-size: 15px;
}
.tier .t-for {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* pricing cards + comparison */
/* Four plans, four columns. This said repeat(5, 1fr) from when Free was one of
   them; once Free stopped being sold the four remaining cards packed into the
   first four tracks and the whole section sat left of centre with an empty
   column beside it. */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 16px;
}
@media (max-width: 1180px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pricing-grid { grid-template-columns: 1fr; } }
.pcard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background: var(--bg);
}
.pcard.feat {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 22px 44px -26px rgba(234, 88, 12, 0.45);
  position: relative;
}
.pcard .pop {
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 999px;
}
.pcard .pname { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.pcard .pfor { color: var(--muted); font-size: 13px; margin-top: 3px; min-height: 34px; }
.pcard .pprice {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.pcard .pprice span { font-family: var(--font-sans); font-size: 14px; font-weight: 400; color: var(--muted); }
.pcard .pcta { margin-top: 16px; }
.pcard .pcta .btn { width: 100%; justify-content: center; }
.pcard .pfeat { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 9px; }
.pcard .pfeat li { font-size: 13.5px; color: var(--fg-2); display: flex; gap: 8px; align-items: flex-start; }
.pcard .pfeat li::before { content: "\2713"; color: var(--brand); font-weight: 700; }
.annual-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 16px; }
.annual-note b { color: var(--brand); }
.compare-wrap { overflow-x: auto; margin-top: 20px; }
.compare { width: 100%; border-collapse: collapse; min-width: 680px; font-size: 13.5px; }
.compare th, .compare td { padding: 11px 14px; border-bottom: 1px solid var(--border); text-align: left; }
.compare thead th { font-weight: 700; color: var(--fg); }
.compare thead th:not(:first-child), .compare td:not(:first-child) { text-align: center; }
.compare td:first-child { color: var(--fg-2); }
.compare tbody tr:hover { background: var(--bg-soft); }
.compare .yes { color: var(--brand); font-weight: 700; }
.compare .no { color: var(--border); }
.compare .hl { color: var(--fg); font-weight: 600; font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ---------- scroll reveal ---------- */
/* Reveal is scoped under .js (added to <html> before paint). Without JS the
   rule never applies, so all content stays fully visible — crawlable + no-JS
   safe, which matters for an AI-visibility company's own site. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Blog + Docs
   Added when /blog/ and /docs/ moved onto the apex domain as
   real directories (not a subdomain, not WordPress), so every
   link they earn points at genauthority.com itself.
   ============================================================ */

/* A measure of ~68ch: long-form prose stops being readable well
   before it reaches the 1140px marketing container. */
.container-narrow {
  max-width: 760px;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.back-link:hover {
  color: var(--brand);
}

/* ---- Blog index ---- */

.post-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.post-item > a {
  display: block;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition:
    border-color 0.18s ease,
    transform 0.18s ease;
}
.post-item > a:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}
.post-item h2 {
  margin: 0.5rem 0 0.4rem;
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.post-item p {
  color: var(--fg-2);
  font-size: 0.95rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.post-tag {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 600;
}

/* ---- Docs shell ---- */

.docs-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.docs-nav {
  position: sticky;
  /* Clears the fixed header and leaves a little breathing room. */
  top: 5.5rem;
  max-height: calc(100vh - 7rem);
  overflow-y: auto;
  font-size: 0.9rem;
}

.docs-nav-group {
  margin-top: 1.5rem;
}
.docs-nav-group h2 {
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.docs-nav-link {
  display: block;
  padding: 0.3rem 0.7rem;
  border-left: 2px solid var(--border);
  color: var(--fg-2);
  line-height: 1.4;
}
.docs-nav-link:hover {
  color: var(--brand);
  border-left-color: var(--brand-2);
}
.docs-nav-link.is-active {
  color: var(--brand);
  border-left-color: var(--brand);
  font-weight: 600;
  background: var(--brand-soft);
}

/* Content column plus an optional right-hand contents rail. The rail is a
   second grid column rather than a float so a page without one (short docs,
   the index) fills the width instead of leaving a gap. */
.docs-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
}
.docs-body:has(.docs-toc) {
  grid-template-columns: minmax(0, 1fr) 190px;
}

.docs-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.docs-main .prose h1 {
  margin: 0.4rem 0 0.6rem;
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.docs-main .prose .lead {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  color: var(--muted);
}

/* Anchor targets sit under the sticky header without this. */
.docs-main .prose :is(h2, h3) {
  scroll-margin-top: 5.5rem;
}

.docs-toc {
  position: sticky;
  top: 5.5rem;
  font-size: 0.82rem;
}
.docs-toc h2 {
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.docs-toc a {
  display: block;
  padding: 0.2rem 0;
  color: var(--muted);
  line-height: 1.35;
}
.docs-toc a:hover {
  color: var(--brand);
}
.toc-d3 {
  padding-left: 0.75rem;
}

/* Inline code and fenced blocks show up in docs far more than in marketing
   copy, so they are styled here rather than in the base prose rules. */
.prose code {
  padding: 0.12em 0.38em;
  border-radius: 5px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.85em;
}
.prose pre {
  margin: 1.2rem 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.6;
}
.prose pre code {
  padding: 0;
  border: 0;
  background: none;
  font-size: inherit;
}
.prose blockquote {
  margin: 1.2rem 0;
  padding: 0.1rem 0 0.1rem 1rem;
  border-left: 3px solid var(--brand);
  color: var(--fg-2);
}

@media (max-width: 900px) {
  .docs-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .docs-nav {
    position: static;
    max-height: none;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  /* The contents rail is redundant on a narrow screen — the page is already
     one column and the reader is scrolling it anyway. */
  .docs-body:has(.docs-toc) {
    grid-template-columns: minmax(0, 1fr);
  }
  .docs-toc {
    display: none;
  }
}
