/* Step 13: public marketing / SEO pages — cacheable CSS (was inline in templates). */

/* ── Shared landing + SEO guide layout ───────────────────────────────────── */
.landing-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 24px 80px;
}
.landing-hero {
  text-align: center;
  margin-bottom: 44px;
}
.landing-hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
  color: var(--text);
}
.landing-hero .lead {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.65;
  margin: 0;
}
.landing-sec {
  margin-bottom: 32px;
}
.landing-sec h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}
.landing-sec p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.75;
  margin: 0;
}

/* Step 17: factual proof / evidence blocks (public SEO only) */
.seo-proof-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.seo-proof {
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg2);
}
.seo-proof-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: -0.2px;
}
.seo-proof-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.65;
}
.seo-proof-list li {
  margin-bottom: 8px;
}
.seo-proof-list li:last-child {
  margin-bottom: 0;
}

/* Step 25: product-shaped example / output blocks (guides only; no screenshots) */
.seo-example-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.seo-ex-disclaimer {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--text3);
  line-height: 1.5;
}
.seo-ex {
  padding: 16px 16px 14px;
  border: 1px solid var(--border2);
  border-radius: 12px;
  background: var(--bg2);
  border-left: 3px solid var(--blue3);
}
.seo-ex-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -0.15px;
}
.seo-ex-pre {
  margin: 0;
  padding: 12px 14px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.45;
  color: var(--text2);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  white-space: pre-wrap;
  word-break: break-word;
}
.seo-ex-pre code {
  font-family: inherit;
  color: inherit;
}
.seo-ex-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text2);
  font-size: 14px;
  line-height: 1.65;
}
.seo-ex-list li {
  margin-bottom: 8px;
}
.seo-ex-list li:last-child {
  margin-bottom: 0;
}

.landing-related {
  margin-top: 40px;
  margin-bottom: 32px;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
}
.landing-related h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--text);
}
.landing-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px 20px;
}
.landing-related a {
  color: var(--blue3);
  text-decoration: none;
  font-size: 15px;
}
.landing-related a:hover {
  text-decoration: underline;
}
.landing-faq {
  margin-top: 36px;
}
.landing-cta {
  text-align: center;
  margin-top: 44px;
  margin-bottom: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.landing-cta .btn-hero {
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s;
}
.landing-cta .btn-hero-p {
  background: var(--yellow);
  color: #000;
}
.landing-cta .btn-hero-p:hover {
  background: var(--yellow3);
  color: #000;
}
.landing-cta .btn-hero-s {
  background: var(--bg2);
  color: var(--text2);
  border: 1px solid var(--border2);
}
.landing-cta .btn-hero-s:hover {
  color: var(--text);
  border-color: var(--text3);
}
.landing-faq h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text);
}
.faq-item {
  margin-bottom: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text);
}
.faq-item p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 480px) {
  .landing-related ul {
    grid-template-columns: 1fr;
  }
  .landing-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── Home (index) ────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 70px 24px 50px;
  max-width: 760px;
  margin: 0 auto;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--yellow);
  background: var(--yellowBg);
  border: 1px solid var(--yellowBorder);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1.5px;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero p {
  font-size: 18px;
  color: var(--text2);
  margin: 0 0 36px;
  line-height: 1.7;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero {
  padding: 13px 30px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-hero-p {
  background: var(--yellow);
  color: #000;
  box-shadow: 0 0 28px rgba(250, 204, 21, 0.2);
}
.btn-hero-p:hover {
  background: var(--yellow3);
  color: #000;
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.35);
}
.btn-hero-s {
  background: var(--bg2);
  color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-hero-s:hover {
  color: var(--text);
  border-color: var(--text3);
}
.btn-hero-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s;
  background: var(--bg2);
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-hero-play:hover {
  color: var(--text);
  border-color: var(--yellowBorder);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.12);
}
.btn-hero-play img {
  display: block;
  flex-shrink: 0;
}
.btn-hero-play-icon {
  border-radius: 5px;
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 60px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.stats-bar.stats-bar--single {
  max-width: 160px;
}
.si {
  flex: 1;
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.si:last-child {
  border-right: none;
}
.si-num {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--mono);
}
.si-num.si-num--up {
  color: var(--up);
}
.si-num.si-num--down {
  color: var(--down);
}
.si-num.si-num--warn {
  color: var(--yellow);
}
.si-lbl {
  font-size: 12px;
  color: var(--text3);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--mono);
}

.sec-label {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text3);
  margin-bottom: 14px;
  text-align: center;
}
.landing-h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
  color: var(--text);
}
.landing-lead {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 32px;
  text-align: center;
}
.landing-lead.landing-lead--fine {
  font-size: 14px;
  margin-top: -12px;
  color: var(--text3);
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 8px;
  margin-bottom: 56px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.type-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color 0.15s;
}
.type-card:hover {
  border-color: var(--border2);
}
.ti {
  font-size: 24px;
  flex-shrink: 0;
  width: 34px;
  text-align: center;
}
.tn {
  font-size: 15px;
  font-weight: 700;
}
.td {
  font-size: 13px;
  color: var(--text3);
  margin-top: 1px;
}
.type-card-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
  margin-top: 6px;
  transition: color 0.15s;
}
.type-card-link:hover {
  color: var(--yellow3);
}

.feats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.feat {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.feat:hover {
  border-color: var(--yellowBorder);
  transform: translateY(-2px);
}
.fi {
  font-size: 24px;
  margin-bottom: 10px;
}
.ft {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.fd {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

.index-explore {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.index-explore-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.index-explore-links a {
  font-size: 15px;
  color: var(--blue3);
  text-decoration: none;
}
.index-explore-links a:hover {
  text-decoration: underline;
}

/* Index FAQ: bordered band (pricing FAQ omits top rule via .pr-wrap selector below). */
.page-content > section.conv-faq {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.page-content > section.conv-faq .landing-h2 {
  margin-bottom: 14px;
}

.pr-wrap .conv-faq {
  margin-top: 28px;
  margin-bottom: 8px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pr-wrap .conv-faq .pr-h2 {
  margin-top: 0;
}

.conv-faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  background: var(--bg2);
}
.conv-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  padding: 14px 16px;
  list-style: none;
}
.conv-faq-item summary::-webkit-details-marker {
  display: none;
}
.conv-faq-item p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  margin: 0;
  padding: 0 16px 14px;
}

/* ── Pricing topic strip (Step 14 internal linking) ─────────────────────── */
.pr-topic-nav {
  margin-top: 28px;
  margin-bottom: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.pr-topic-nav .pr-h2 {
  margin-top: 0;
  margin-bottom: 14px;
}
.pr-topic-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}
.pr-topic-nav-links a {
  font-size: 14px;
  color: var(--blue3);
  text-decoration: none;
  line-height: 1.45;
  max-width: 280px;
  text-align: center;
}
.pr-topic-nav-links a:hover {
  text-decoration: underline;
}
@media (max-width: 520px) {
  .pr-topic-nav-links {
    flex-direction: column;
    align-items: center;
  }
  .pr-topic-nav-links a {
    max-width: 100%;
  }
}

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pr-wrap {
  max-width: 1020px;
  margin: 0 auto;
}
.pr-top {
  text-align: center;
  margin-bottom: 40px;
}
.pr-top h1 {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.6px;
}
.pr-top p {
  color: var(--text2);
  font-size: 17px;
  margin: 0 0 26px;
}
.pr-h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 42px 0 10px;
  text-align: center;
  color: var(--text);
}
.pr-lead {
  color: var(--text2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 24px;
  text-align: center;
}

.plan-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.pc-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}
.pc-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pc-card.feat {
  border-color: var(--yellow);
  border-width: 2px;
  background: linear-gradient(160deg, rgba(250, 204, 21, 0.05) 0%, var(--bg2) 70%);
}
.pop-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 800;
  font-family: var(--mono);
  padding: 3px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.pc-name {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--mono);
  color: var(--text3);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.pc-price {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 4px;
}
.pc-sym {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--mono);
  color: var(--text2);
  margin-bottom: 6px;
}
.pc-num {
  font-size: 52px;
  font-weight: 800;
  font-family: var(--mono);
  line-height: 1;
  color: var(--yellow);
}
.pc-num.blue {
  color: var(--blue3);
}
.pc-per {
  font-size: 14px;
  color: var(--text3);
  margin-bottom: 14px;
}
.pc-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.pc-btn {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.18s;
}
.pc-btn-y {
  background: var(--yellow);
  color: #000;
}
.pc-btn-y:hover {
  background: var(--yellow3);
  color: #000;
}
.pc-btn-b {
  background: var(--blue2);
  color: #fff;
}
.pc-btn-b:hover {
  background: var(--blue);
}
.pc-btn-o {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
}
.pc-btn-o:hover {
  color: var(--text);
  background: var(--bg3);
  border-color: var(--text3);
}

.cmp-wrap {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.cmp-table {
  width: 100%;
  border-collapse: collapse;
}
.cmp-table thead th {
  padding: 13px 18px;
  background: var(--bg3);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text3);
  border-bottom: 2px solid var(--border);
  text-align: center;
}
.cmp-table thead th:first-child {
  text-align: left;
}
.cmp-table thead th.th-pop {
  color: var(--yellow);
  background: rgba(250, 204, 21, 0.05);
}
.cmp-table tbody td {
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text2);
  text-align: center;
  vertical-align: middle;
}
.cmp-table tbody td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}
.cmp-table tbody tr:last-child td {
  border-bottom: none;
}
.cmp-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.012);
}
.cmp-table tbody td.col-pop {
  background: rgba(250, 204, 21, 0.022);
}
.ico-y {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  font-size: 14px;
  font-weight: 700;
}
.ico-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  font-size: 14px;
  font-weight: 700;
}

.plan-banner.center {
  text-align: center;
  margin: 0 auto 16px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .plan-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}
.pr-explore {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.pr-explore-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.pr-explore-links a {
  font-size: 15px;
  color: var(--blue3);
  text-decoration: none;
}
.pr-explore-links a:hover {
  text-decoration: underline;
}
.pr-persona-list {
  max-width: 720px;
  margin: 0 auto 28px;
  padding-left: 20px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  text-align: left;
}
.pr-persona-list li {
  margin-bottom: 12px;
}
@media (max-width: 600px) {
  .pc-num {
    font-size: 40px;
  }
  .cmp-table td,
  .cmp-table th {
    padding: 9px 10px;
    font-size: 13px;
  }
}

/* ── Terms of service ───────────────────────────────────────────────────── */
.terms-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.terms-hero {
  margin-bottom: 36px;
}
.terms-hero h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0 0 8px;
}
.terms-hero .sub {
  color: var(--text2);
  font-size: 13px;
  font-family: var(--mono);
}
.terms-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 80px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
}
.toc-title {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text3);
  margin-bottom: 12px;
}
.toc a {
  display: block;
  font-size: 12px;
  color: var(--text2);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 5px;
  transition: all 0.15s;
  line-height: 1.4;
}
.toc a:hover {
  color: var(--yellow);
  background: var(--yellowBg);
}
.toc a.active {
  color: var(--yellow);
  background: var(--yellowBg);
  font-weight: 600;
}
.terms-content section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.terms-content section[id] {
  scroll-margin-top: 80px;
}
.terms-content section:last-child {
  border-bottom: none;
}
.terms-content .intro {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}
.sec-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}
.sec-title span {
  color: var(--yellow);
}
.sec-body {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
}
.changelog {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.changelog-hdr {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--mono);
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.cl-row {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 9px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.cl-row:last-child {
  border-bottom: none;
}
.cl-date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--yellow);
  flex-shrink: 0;
  width: 130px;
}
.cl-text {
  color: var(--text2);
}
.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  margin-top: 12px;
}
.contact-card p {
  font-size: 13px;
  color: var(--text2);
  margin: 4px 0;
}
.contact-card strong {
  color: var(--text);
}
.terms-footer-nav {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.terms-footer-nav a {
  color: var(--yellow);
  text-decoration: none;
}
.terms-footer-nav a:hover {
  text-decoration: underline;
}
@media (max-width: 680px) {
  .terms-body {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
  }
}

/* ── Privacy + delete-account (shared legal layout) ─────────────────────── */
.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.legal-hero {
  margin-bottom: 28px;
}
.legal-hero h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin: 0 0 8px;
}
.legal-hero .sub {
  color: var(--text2);
  font-size: 13px;
  font-family: var(--mono);
}
.legal-intro {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: var(--r);
  padding: 14px 18px;
  margin: 0 0 20px;
  color: var(--text2);
  line-height: 1.7;
}
.legal-content section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-content section:last-child {
  border-bottom: none;
}
.legal-content h2 {
  font-size: 18px;
  margin: 0 0 10px;
}
.legal-content p,
.legal-content li {
  color: var(--text2);
  line-height: 1.75;
  font-size: 14px;
}
.legal-content ul {
  margin: 8px 0 0 18px;
  padding: 0;
}
.legal-nav {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.legal-nav a {
  color: var(--yellow);
  text-decoration: none;
}
.legal-nav a:hover {
  text-decoration: underline;
}

/* ── Step 24: SEO cluster rows (landings), pricing lists, compare table helpers ─ */
p.seo-cluster-links {
  text-align: center;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin: 0 0 36px;
}
p.seo-cluster-links + p.seo-cluster-links {
  margin: -24px 0 36px;
}

.pr-top h1 .pr-title-dot {
  color: var(--yellow);
}
.pr-explore-links.pr-explore-links--mb {
  margin-bottom: 28px;
}
.plan-banner .plan-banner-line {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
}
.badge.badge-pricing-warn {
  padding: 6px 14px;
  font-size: 12px;
}
.badge.badge-pricing-sub {
  margin-left: 8px;
  font-size: 11px;
}
.pr-active-note {
  margin-bottom: 0;
}
form.pricing-checkout-form {
  margin: 0;
}
.plan-cards button.pc-btn:disabled {
  cursor: default;
  opacity: 0.85;
}
ul.pr-list {
  margin: 0 auto;
  padding-left: 22px;
  font-size: 15px;
  color: var(--text2);
  text-align: left;
}
ul.pr-list--scenarios {
  max-width: 720px;
  margin-bottom: 28px;
  line-height: 1.7;
}
ul.pr-list--scenarios > li {
  margin-bottom: 10px;
}
ul.pr-list--scenarios > li:last-child {
  margin-bottom: 0;
}
ul.pr-list--upgrade {
  max-width: 680px;
  margin-bottom: 24px;
  line-height: 1.65;
}
ul.pr-list--upgrade > li {
  margin-bottom: 8px;
}
ul.pr-list--upgrade > li:last-child {
  margin-bottom: 0;
}
.cmp-table thead th.cmp-th-feature {
  width: 40%;
}
.cmp-ico-gap {
  margin-left: 4px;
}
