/* ============================================================
   NEURAPHIC WORKERS — landing.css
   Magistral-style editorial layout:
     · Full-bleed dark hero with animated graph
     · Cream article body with section-labelled blocks
     · Dark product callout + pearl latest/mission/pricing
   All brand-aligned (pearl gray + black + Space Grotesk + Inter)
   ============================================================ */

/* --- Hero: dark, full-bleed, animated graph ------------------ */
.hero-dark {
  position: relative;
  background: var(--black);
  color: var(--bg);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 24px);
}
.hero-dark__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.hero-dark__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, transparent 0%, rgba(19,19,20,0.35) 60%, rgba(19,19,20,0.75) 100%),
    linear-gradient(180deg, rgba(19,19,20,0.4) 0%, transparent 20%, transparent 80%, rgba(19,19,20,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-dark__inner {
  position: relative;
  z-index: 2;
  max-width: var(--w);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px) clamp(32px, 5vh, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 10vh, 120px);
}
.hero-dark__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
.hero-dark__superline {
  font-family: var(--head);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 28px);
  color: rgba(240,241,243,0.72);
  letter-spacing: -0.01em;
}
.hero-dark__title {
  font-family: var(--head);
  font-weight: 700;
  font-size: clamp(64px, 14vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--bg);
  margin: 0;
}
.hero-dark__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  border: 1px solid rgba(240,241,243,0.18);
  border-radius: 999px;
  background: rgba(19,19,20,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 100%;
}
.hero-dark__meta-left { display: flex; align-items: center; gap: 14px; min-width: 0; }
.hero-dark__tag {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--bg);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(240,241,243,0.1);
  border: 1px solid rgba(240,241,243,0.14);
  white-space: nowrap;
}
.hero-dark__date {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(240,241,243,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-dark__author {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(240,241,243,0.72);
  white-space: nowrap;
}

/* --- Article intro (cream) ---------------------------------- */
.article-intro {
  padding: clamp(56px, 9vh, 96px) 0 clamp(40px, 6vh, 64px);
  background: var(--bg);
}
.article-intro__layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.article-intro__meta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.article-intro__body {
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--black);
  line-height: 1.55;
  font-weight: 400;
  max-width: 760px;
}
.article-intro__body strong { font-weight: 600; }
.article-intro__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* --- Section block (label + content) ------------------------ */
.section {
  padding: clamp(56px, 8vh, 96px) 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.section__layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.section__label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.section__title {
  font-family: var(--head);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 clamp(20px, 3vh, 36px);
  max-width: 900px;
}
.section__title--flush { margin: 0; }
.section__lede {
  font-family: var(--sans);
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--black);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: clamp(24px, 4vh, 40px);
}

/* --- Dark product callout (Featured) ------------------------ */
.featured {
  background: var(--black);
  color: var(--bg);
  padding: clamp(80px, 12vh, 140px) 0;
  overflow: hidden;
}
.featured__layout {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.featured__label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(240,241,243,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.featured__body { max-width: 520px; }
.featured__title {
  font-family: var(--head);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}
.featured__sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(240,241,243,0.65);
  line-height: 1.65;
  margin-bottom: 28px;
}
.featured__link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--bg);
  border-bottom: 1px solid rgba(240,241,243,0.3);
  padding-bottom: 3px;
  transition: border-color .2s;
}
.featured__link:hover { border-color: var(--bg); }
.featured__visual {
  position: relative;
  aspect-ratio: 1;
  min-height: 280px;
}
.featured__visual canvas { width: 100%; height: 100%; display: block; }
.featured ::selection { background: rgba(240,241,243,0.25); color: var(--bg); }

/* --- Latest (3 items, border-separated) --------------------- */
.latest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.latest__item {
  padding: 0 clamp(16px, 2vw, 28px);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: opacity .2s;
}
.latest__item:first-child { padding-left: 0; border-left: none; }
.latest__item:last-child { padding-right: 0; }
.latest__item:hover { opacity: 0.65; }
.latest__date {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.latest__title {
  font-family: var(--head);
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 10px;
}
.latest__desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.latest__link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-top: 20px;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  transition: border-color .2s;
}
.latest__item:hover .latest__link { border-color: var(--black); }

/* --- Mission: 3 steps, Magistral numbered rows -------------- */
.mission__rows { display: flex; flex-direction: column; }
.mission__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(20px, 3vh, 32px) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.mission__row:first-child { border-top: 1px solid var(--line); }
.mission__num {
  font-family: var(--head);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.mission__row h3 {
  font-family: var(--head);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.mission__row p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 640px;
}

/* --- Pricing preview ---------------------------------------- */
.pricing-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: clamp(28px, 4vh, 40px);
  flex-wrap: wrap;
}
.pricing-preview__link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid rgba(19,19,20,0.25);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.pricing-preview__link:hover { border-color: var(--black); }
.pricing-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tier {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: background .2s, border-color .2s;
}
.tier:hover { border-color: rgba(19,19,20,0.25); }
.tier__name {
  font-family: var(--head);
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.tier__price {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 18px;
}
.tier__desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.tier--featured {
  background: var(--black);
  border-color: var(--black);
}
.tier--featured:hover { background: var(--ink-hover); border-color: var(--ink-hover); }
.tier--featured .tier__name { color: var(--bg); }
.tier--featured .tier__price { color: rgba(240,241,243,0.55); }
.tier--featured .tier__desc  { color: rgba(240,241,243,0.65); }

/* --- Closing CTA strip -------------------------------------- */
.closing {
  padding: clamp(60px, 10vh, 120px) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.closing__title {
  font-family: var(--head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.closing__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Responsive --------------------------------------------- */
@media (max-width: 960px) {
  .hero-dark { min-height: 85vh; }
  .hero-dark__meta { flex-wrap: wrap; border-radius: 18px; }
  .article-intro__layout,
  .section__layout { grid-template-columns: 1fr; gap: 16px; }
  .article-intro__meta,
  .section__label { padding-top: 0; }
  .featured__layout { grid-template-columns: 1fr; gap: 40px; }
  .featured__label { grid-row: 1; }
  .featured__visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .latest__grid { grid-template-columns: 1fr; }
  .latest__item {
    padding: 24px 0;
    border-left: none;
    border-top: 1px solid var(--line);
    min-height: 0;
  }
  .latest__item:first-child { border-top: none; padding-top: 0; }
  .pricing-preview__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hero-dark__title { font-size: clamp(54px, 18vw, 96px); }
  .hero-dark__superline { font-size: 16px; }
  .hero-dark__meta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 18px;
  }
  .hero-dark__meta-left { justify-content: space-between; }
  .featured__title { font-size: clamp(40px, 12vw, 64px); }
  .pricing-preview__grid { grid-template-columns: 1fr; }
}

/* --- Hero modifiers for auth + legal docs ------------------ */
.hero-dark--auth { min-height: 40vh; min-height: 40svh; }
.hero-dark--auth .hero-dark__title { font-size: clamp(40px, 6vw, 72px); }
.hero-dark--doc  { min-height: 50vh; min-height: 50svh; }
.hero-dark--doc  .hero-dark__title { font-size: clamp(44px, 7vw, 88px); }

/* ============================================================
   PAGE-SCOPED EXTENSIONS (Wave F2 refit)
   Marketing pages: pricing / features / security / contact /
   how-it-works / 404. All previously-inline styles now live
   here so the CSP (no 'unsafe-inline') stays clean.
   ============================================================ */

/* Current-page nav indicator */
.nav__links > a[aria-current="page"],
.nav__links .nav__group > button[aria-current="page"] {
  color: var(--black);
  position: relative;
}
.nav__links > a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--black);
  opacity: 0.85;
}
.header--over-dark:not(.header--s) .nav__links > a[aria-current="page"] { color: var(--bg); }
.header--over-dark:not(.header--s) .nav__links > a[aria-current="page"]::after { background: var(--bg); }

/* Hero-dark variants for content pages */
.hero-dark--left .hero-dark__center { align-items: flex-start; text-align: left; }
.hero-dark--compact { min-height: 72vh; min-height: 72svh; }
.hero-dark--short { min-height: 56vh; min-height: 56svh; }
.hero-dark__sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(240,241,243,0.72);
  line-height: 1.6;
  max-width: 640px;
  margin-top: 8px;
}

/* --- Pricing: full tier grid ------------------------------ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pricing-card {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}
.pricing-card--featured { background: var(--black); border-color: var(--black); color: var(--bg); }
.pricing-card__name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}
.pricing-card--featured .pricing-card__name { color: rgba(240,241,243,0.55); }
.pricing-card__price {
  font-family: var(--head);
  font-size: 44px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card--featured .pricing-card__price { color: var(--bg); }
.pricing-card__per {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
}
.pricing-card--featured .pricing-card__per { color: rgba(240,241,243,0.55); }
.pricing-card__tag {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--black);
  line-height: 1.55;
  margin-bottom: 22px;
  min-height: 44px;
}
.pricing-card--featured .pricing-card__tag { color: rgba(240,241,243,0.75); }
.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pricing-card__list li {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--black);
  padding: 10px 0;
  border-top: 1px solid var(--line);
  line-height: 1.5;
}
.pricing-card__list li:first-child { border-top: none; }
.pricing-card--featured .pricing-card__list li {
  color: rgba(240,241,243,0.85);
  border-top-color: rgba(240,241,243,0.12);
}
.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--bg);
  border-radius: 10px;
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}
.pricing-card__cta:hover { background: var(--ink-hover); }
.pricing-card--featured .pricing-card__cta { background: var(--bg); color: var(--black); }
.pricing-card--featured .pricing-card__cta:hover { background: #d5d6d9; }

.enterprise-row {
  margin-top: 20px;
  padding: 28px clamp(20px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.enterprise-row h3 {
  font-family: var(--head);
  font-size: 20px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.enterprise-row p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--gray);
  max-width: 520px;
}

/* Comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  min-width: 640px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--sans);
  font-size: 14px;
  border-top: 1px solid var(--line);
  color: var(--black);
}
.compare-table thead th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gray);
  border-top: none;
  background: rgba(19,19,20,0.02);
}
.compare-table td:first-child { color: var(--gray); font-weight: 500; }

/* FAQ list */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  padding: clamp(20px, 3vh, 28px) 0;
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 {
  font-family: var(--head);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  color: var(--black);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.faq-item p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 780px;
  margin: 0;
}

/* Features: tool tiles */
.tool-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 28px;
}
.tool-tile {
  border: 1px solid var(--line);
  border-radius: 10px;
  aspect-ratio: 1.6 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--head);
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
  text-align: center;
  padding: 8px;
  background: transparent;
}

/* Security: key-value rows + badge grid */
.kv-rows { display: flex; flex-direction: column; }
.kv-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding: 24px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.kv-row:last-child { border-bottom: 1px solid var(--line); }
.kv-row h3 {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
  margin: 0;
}
.kv-row p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
  max-width: 720px;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.badge-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}
.badge-card h3 {
  font-family: var(--head);
  font-size: 15px;
  color: var(--black);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.badge-card p {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--gray);
  margin: 0;
}

/* Contact channels */
.channel-list { display: flex; flex-direction: column; }
.channel-item {
  padding: clamp(24px, 3.5vh, 36px) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(16px, 2vw, 40px);
  align-items: baseline;
}
.channel-item:last-child { border-bottom: 1px solid var(--line); }
.channel-item h3 {
  font-family: var(--head);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin: 0;
}
.channel-item p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin: 0 0 12px;
  max-width: 680px;
}
.channel-item__mail {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
}
.channel-item__mail:hover { opacity: 0.65; }
.channel-item__inline-link { border-bottom: 1px solid var(--line); }

/* How-it-works: numbered step rows */
.step-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(16px, 2vw, 32px);
  padding: clamp(28px, 4vh, 44px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step-row:last-child { border-bottom: 1px solid var(--line); }
.step-row__num {
  font-family: var(--head);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}
.step-row__body h3 {
  font-family: var(--head);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: var(--black);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.step-row__body p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--gray);
  line-height: 1.65;
  max-width: 680px;
  margin: 0;
}

/* 404 centred hero */
.hero-dark--center-404 {
  min-height: 100vh;
  min-height: 100svh;
  justify-content: center;
}
.hero-dark--center-404 .hero-dark__inner { gap: 28px; padding-bottom: clamp(48px, 8vh, 96px); }
.nf-code {
  font-family: var(--head);
  font-size: clamp(120px, 22vw, 240px);
  font-weight: 700;
  color: var(--bg);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0;
}
.nf-sub {
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(240,241,243,0.72);
  line-height: 1.5;
  max-width: 560px;
  margin: 0;
}
.nf-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.nf-actions .btn--ghost {
  color: var(--bg);
  border-color: rgba(240,241,243,0.28);
  background: transparent;
}
.nf-actions .btn--ghost:hover { border-color: var(--bg); background: rgba(240,241,243,0.06); }

/* Responsive for page-scoped extensions */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .tool-tiles { grid-template-columns: repeat(3, 1fr); }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
  .kv-row { grid-template-columns: 1fr; gap: 6px; }
  .channel-item { grid-template-columns: 1fr; gap: 10px; }
  .step-row { grid-template-columns: 56px 1fr; }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: 0; }
  .tool-tiles { grid-template-columns: repeat(2, 1fr); }
}
