:root {
  --bg: #0a0a14;
  --bg-soft: #0f1020;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.105);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --faint: rgba(255, 255, 255, 0.42);
  --violet: #7c3aed;
  --violet-2: #8b5cf6;
  --violet-3: #5b21b6;
  --green: #10b981;
  --amber: #f59e0b;
  --pink: #ec4899;
  --cyan: #22d3ee;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.12), transparent 360px),
    var(--bg);
  color: var(--text);
  font-family: "Figtree", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  pointer-events: none;
  animation: gridDrift 18s linear infinite;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 10, 20, 0.78);
  backdrop-filter: blur(22px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 178px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links > a,
.nav-dropdown > .nav-dropdown-trigger {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  font-family: inherit;
  transition: background 160ms ease, color 160ms ease;
}

.nav-dropdown > .nav-dropdown-trigger {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown:hover > .nav-dropdown-trigger,
.nav-dropdown:focus-within > .nav-dropdown-trigger,
.nav-dropdown.active > .nav-dropdown-trigger {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 8px;
  width: min(560px, calc(100vw - 28px));
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 10, 20, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-panel.compact {
  grid-template-columns: 1fr;
  width: min(310px, calc(100vw - 28px));
}

.nav-panel.nav-panel-cols {
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  width: min(560px, calc(100vw - 28px));
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-panel a {
  display: grid;
  gap: 4px;
  border-radius: 12px;
  padding: 12px;
  color: var(--muted);
  transition: background 160ms ease, color 160ms ease;
}

.nav-panel a:hover {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.nav-panel strong {
  color: var(--text);
  font-size: 14px;
}

.nav-panel span {
  color: var(--faint);
  font-size: 12px;
  line-height: 1.35;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  border-radius: 2px;
  background: currentColor;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--violet-3));
  box-shadow: 0 12px 34px rgba(124, 58, 237, 0.32);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.26) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: rgba(196, 181, 253, 0.95);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.75);
  animation: pulseDot 2.8s ease-in-out infinite;
}

.hero {
  padding: 78px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 54px;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 66px);
  max-width: 820px;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero .eyebrow,
.page-hero .eyebrow,
.hero h1,
.page-hero h1,
.hero .lead,
.page-hero .lead,
.hero-actions,
.hero-proof {
  animation: fadeUp 460ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1,
.page-hero h1 {
  animation-delay: 30ms;
}

.hero .lead,
.page-hero .lead {
  animation-delay: 70ms;
}

.hero-actions {
  animation-delay: 110ms;
}

.hero-proof {
  animation-delay: 150ms;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  max-width: 650px;
}

.hero-proof.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 760px;
}

.proof-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.proof-item:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.36);
  background: rgba(255, 255, 255, 0.065);
}

.proof-item strong {
  display: block;
  font-size: 22px;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.35;
}

.product-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  animation: floatIn 540ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms both, softFloat 7s ease-in-out 900ms infinite;
}

.product-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.54), rgba(34, 211, 238, 0.16), rgba(236, 72, 153, 0.28));
  filter: blur(18px);
  opacity: 0.35;
  animation: glowBreath 5s ease-in-out infinite;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: #0d0d19;
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.035);
}

.traffic {
  display: flex;
  gap: 7px;
}

.traffic i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.traffic i:nth-child(1) { animation: blinkDot 4.2s ease-in-out infinite; }
.traffic i:nth-child(2) { animation: blinkDot 4.2s ease-in-out 0.25s infinite; }
.traffic i:nth-child(3) { animation: blinkDot 4.2s ease-in-out 0.5s infinite; }

.traffic i:nth-child(1) { background: var(--pink); }
.traffic i:nth-child(2) { background: var(--amber); }
.traffic i:nth-child(3) { background: var(--green); }

.window-top span {
  color: var(--faint);
  font-size: 12px;
  font-weight: 700;
}

.dashboard {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 520px;
}

.side {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.025);
}

.side-logo {
  width: 110px;
  margin-bottom: 22px;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  border-radius: 10px;
  padding: 10px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 750;
}

.side-item.active {
  background: rgba(124, 58, 237, 0.18);
  color: #ddd6fe;
}

.side-item.green .dot { background: var(--green); }
.side-item.amber .dot { background: var(--amber); }
.side-item.pink .dot { background: var(--pink); }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet-2);
}

.dash-main {
  padding: 18px;
}

.dash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.dash-head h2 {
  margin: 0 0 7px;
  font-size: 22px;
}

.dash-head p {
  margin: 0;
  color: var(--faint);
  font-size: 13px;
}

.credit-pill {
  border: 1px solid rgba(124, 58, 237, 0.38);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(124, 58, 237, 0.13);
  color: #ddd6fe;
  font-size: 12px;
  font-weight: 850;
  animation: creditPulse 3.6s ease-in-out infinite;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.metric {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, background 180ms ease;
}

.metric:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.065);
}

.metric b {
  display: block;
  font-size: 21px;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
}

.generator-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.16), rgba(255, 255, 255, 0.035));
}

.generator-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.operation-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.22);
}

.operation-box span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.mini-btn {
  border-radius: 10px;
  padding: 9px 11px;
  background: var(--violet);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.article-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.article-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
  animation: rowBreathe 4.8s ease-in-out infinite;
}

.article-row:nth-child(2) { animation-delay: 0.55s; }
.article-row:nth-child(3) { animation-delay: 1.1s; }

.article-row b {
  display: block;
  font-size: 13px;
}

.article-row span {
  display: block;
  margin-top: 4px;
  color: var(--faint);
  font-size: 11px;
}

.status {
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 10px;
  font-weight: 850;
  animation: statusGlow 3.5s ease-in-out infinite;
}

.status.green { background: rgba(16, 185, 129, 0.14); color: #6ee7b7; }
.status.amber { background: rgba(245, 158, 11, 0.14); color: #fcd34d; }
.status.pink { background: rgba(236, 72, 153, 0.14); color: #f9a8d4; }

.section {
  padding: 86px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.04;
}

.section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-chip-card,
.feature-card,
.price-card,
.contact-card,
.legal-card,
.work-step,
.faq-item,
.workflow-node {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.feature-chip-card,
.feature-card,
.price-card,
.contact-card,
.legal-card,
.work-step,
.faq-item,
.integration-card,
.signal-panel,
.opportunity-card,
.timeline-step,
.limit-card,
.credit-pack,
.cta-band,
.workflow-node {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.feature-chip-card:hover,
.feature-card:hover,
.price-card:hover,
.contact-card:hover,
.work-step:hover,
.integration-card:hover,
.timeline-step:hover,
.limit-card:hover,
.credit-pack:hover,
.workflow-node:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.38);
  background: var(--panel-strong);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.feature-chip-card {
  padding: 18px;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: rgba(124, 58, 237, 0.16);
  color: #c4b5fd;
  transition: transform 220ms ease, background 220ms ease;
}

.feature-chip-card:hover .icon,
.feature-card:hover .icon {
  transform: rotate(-4deg) scale(1.06);
  background: rgba(124, 58, 237, 0.28);
}

.feature-chip-card h3,
.feature-card h3,
.work-step h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.feature-chip-card p,
.feature-card p,
.work-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: steps;
}

.work-step {
  position: relative;
  padding: 22px;
  overflow: hidden;
}

.work-step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.22);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  transition: color 220ms ease, transform 220ms ease;
}

.work-step:hover::before {
  color: rgba(196, 181, 253, 0.38);
  transform: translateX(4px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  padding: 24px;
  min-height: 210px;
}

.feature-card.wide {
  grid-column: span 2;
}

.signal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.proof-band,
.operations-board,
.decision-grid,
.resource-hub,
.market-map,
.link-lattice,
.buyer-matrix,
.review-board,
.channel-board,
.audience-board {
  display: grid;
  gap: 14px;
}

.proof-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card,
.operations-card,
.decision-card,
.resource-card,
.market-card,
.link-card,
.buyer-card,
.review-card,
.channel-card,
.audience-card,
.insight-row,
.queue-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.proof-card,
.decision-card,
.resource-card,
.market-card,
.link-card,
.buyer-card,
.review-card,
.channel-card,
.audience-card {
  padding: 22px;
}

.proof-card:hover,
.operations-card:hover,
.decision-card:hover,
.resource-card:hover,
.market-card:hover,
.link-card:hover,
.buyer-card:hover,
.review-card:hover,
.channel-card:hover,
.audience-card:hover,
.insight-row:hover,
.queue-item:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.28);
  background: var(--panel-strong);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.proof-card small,
.decision-card small,
.resource-card small,
.market-card small,
.buyer-card small,
.review-card small,
.channel-card small,
.audience-card small {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(34, 211, 238, 0.1);
  color: #67e8f9;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card h3,
.decision-card h3,
.resource-card h3,
.market-card h3,
.buyer-card h3,
.review-card h3,
.channel-card h3,
.audience-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.proof-card p,
.decision-card p,
.resource-card p,
.market-card p,
.buyer-card p,
.review-card p,
.channel-card p,
.audience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.operations-board {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
}

.operations-card {
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(34, 211, 238, 0.075), rgba(124, 58, 237, 0.055)),
    var(--panel);
}

.operations-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.queue-list,
.insight-list {
  display: grid;
  gap: 10px;
}

.queue-item,
.insight-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
}

.queue-item b,
.insight-row b {
  display: block;
  font-size: 14px;
}

.queue-item span,
.insight-row span {
  display: block;
  margin-top: 4px;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.35;
}

.queue-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.2);
  color: #ddd6fe;
  font-size: 12px;
  font-weight: 900;
}

.decision-grid,
.resource-hub,
.market-map,
.review-board,
.channel-board,
.audience-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-lattice {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.link-card {
  display: grid;
  min-height: 138px;
}

.link-card strong {
  align-self: end;
  color: var(--text);
  font-size: 17px;
}

.link-card span {
  display: block;
  margin-top: 7px;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.45;
}

.buyer-matrix {
  grid-template-columns: minmax(0, 1fr);
}

.buyer-card {
  display: grid;
  grid-template-columns: 220px repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.buyer-card strong {
  color: var(--text);
}

.buyer-card span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.section-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.inline-link {
  color: #c4b5fd;
  font-weight: 850;
}

.signal-panel,
.opportunity-card,
.integration-card,
.timeline-step,
.limit-card,
.credit-pack {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.signal-panel {
  border-radius: 22px;
  padding: 26px;
}

.signal-panel h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.signal-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--violet-2);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.55);
}

.opportunity-stack {
  display: grid;
  gap: 12px;
}

.opportunity-card {
  padding: 16px;
}

.opportunity-card strong {
  display: block;
  margin-bottom: 8px;
}

.opportunity-card span {
  color: var(--faint);
  font-size: 13px;
}

.op-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(16, 185, 129, 0.13);
  color: #86efac;
  font-size: 12px;
  font-weight: 900;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.integration-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 14px;
}

.integration-card img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.92;
}

.integration-card strong {
  display: block;
  font-size: 14px;
}

.integration-card span {
  display: block;
  margin-top: 3px;
  color: var(--faint);
  font-size: 11px;
  line-height: 1.35;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  position: relative;
}

.price-card.featured {
  border-color: rgba(139, 92, 246, 0.5);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.18), rgba(255, 255, 255, 0.055));
  box-shadow: 0 20px 70px rgba(124, 58, 237, 0.18);
  animation: featuredBreath 5.5s ease-in-out infinite;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(16, 185, 129, 0.13);
  color: #86efac;
  font-size: 11px;
  font-weight: 850;
}

.badge-row {
  display: flex;
  align-self: flex-start;
  flex-wrap: wrap;
  gap: 7px;
}

.badge-popular {
  background: rgba(139, 92, 246, 0.22);
  color: #ddd6fe;
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.18);
}

.price-card h3 {
  margin: 20px 0 8px;
  font-size: 21px;
  line-height: 1.18;
  min-height: 50px;
}

.price {
  margin: 0;
  font-size: 38px;
  font-weight: 900;
}

.price small {
  color: var(--faint);
  font-size: 14px;
  font-weight: 650;
}

.price-card p {
  color: var(--muted);
  line-height: 1.6;
}

.price-card .check-list {
  margin-bottom: 26px;
}

.price-card > .btn {
  margin-top: auto;
  width: 100%;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.pricing-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 16px;
  color: var(--muted);
  text-align: left;
  font-size: 14px;
}

.pricing-table th {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table td:not(:first-child),
.pricing-table th:not(:first-child) {
  text-align: center;
}

.credit-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.credit-pack {
  padding: 22px;
}

.credit-pack strong {
  display: block;
  font-size: 26px;
}

.credit-pack span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  counter-reset: timeline;
}

.timeline-step {
  padding: 20px;
}

.timeline-step::before {
  counter-increment: timeline;
  content: "0" counter(timeline);
  display: inline-flex;
  margin-bottom: 28px;
  color: rgba(196, 181, 253, 0.6);
  font-size: 28px;
  font-weight: 900;
}

.timeline-step h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.limit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.limit-card {
  padding: 20px;
}

.limit-card h3 {
  margin: 0 0 14px;
}

.limit-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.45;
}

.limit-card strong {
  color: var(--text);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 1px;
  background: rgba(16, 185, 129, 0.18);
  box-shadow: inset 0 0 0 5px rgba(16, 185, 129, 0.35);
}

.cta-band {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.32), rgba(16, 185, 129, 0.08)),
    rgba(255, 255, 255, 0.045);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -15% -45% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.38), transparent 68%);
  animation: ctaGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
}

.cta-band p {
  max-width: 650px;
  margin: 18px 0 26px;
  color: var(--muted);
  line-height: 1.65;
}

.page-hero {
  padding: 72px 0 42px;
}

.page-hero .lead {
  max-width: 760px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  align-items: center;
  gap: 42px;
}

.hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  animation: floatIn 540ms cubic-bezier(0.2, 0.8, 0.2, 1) 80ms both, softFloat 8s ease-in-out 900ms infinite;
}

.visual-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 18px;
  background: rgba(10, 10, 20, 0.58);
}

.visual-card + .visual-card {
  margin-top: 12px;
}

.visual-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.visual-kicker span:last-child {
  color: #c4b5fd;
}

.visual-bars {
  display: grid;
  gap: 10px;
}

.visual-bar {
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.visual-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--green));
}

.visual-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.visual-stat {
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.visual-stat strong {
  display: block;
  font-size: 20px;
}

.visual-stat span {
  display: block;
  margin-top: 4px;
  color: var(--faint);
  font-size: 11px;
}

.ops-panel {
  min-height: 260px;
}

.workflow-mini {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.workflow-mini i {
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.85), rgba(34, 211, 238, 0.32));
}

.status-stack,
.locale-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.status-stack .status,
.locale-grid span {
  display: inline-flex;
  justify-content: center;
  margin: 0;
}

.locale-grid span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #ddd6fe;
  font-weight: 900;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.workflow-node {
  min-height: 240px;
  padding: 20px;
  overflow: hidden;
}

.workflow-node span {
  display: inline-flex;
  margin-bottom: 30px;
  color: rgba(196, 181, 253, 0.64);
  font-size: 30px;
  font-weight: 900;
}

.workflow-node h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.workflow-node p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.workflow-node small {
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 850;
}

.visual-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.visual-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.visual-logo img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 18px;
}

.contact-card {
  padding: 26px;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.method {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.method strong {
  display: block;
  margin-bottom: 6px;
}

.method span {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.14);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  padding: 20px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  color: #c4b5fd;
  font-size: 22px;
}

.faq-item.open button::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.open p {
  display: block;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 18px;
  pointer-events: none;
}

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(860px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 22px 80px rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: auto;
}

.cookie-banner.show .cookie-panel {
  opacity: 1;
  transform: translateY(0);
}

.cookie-panel strong {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 6px;
}

.cookie-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-panel a {
  display: inline-block;
  margin-top: 8px;
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1 1 150px;
  }
}

.reveal,
html.js-ready .reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.legal-nav a {
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.legal-nav a.active,
.legal-nav a:hover {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.legal-card {
  padding: 34px;
}

.legal-card h2 {
  margin: 28px 0 12px;
  font-size: 26px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 20px;
}

.blog-post h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
}

.post-meta,
.post-meta-row {
  color: var(--faint);
  font-size: 13px;
  font-weight: 750;
}

.post-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.post-body {
  margin: 0;
}

.post-body h2,
.post-body h3 {
  color: var(--text);
}

.post-body a {
  color: #c4b5fd;
  font-weight: 800;
}

.post-body img {
  border-radius: 18px;
  margin: 24px 0;
}

.post-hero-image,
.post-inline-image {
  margin: 30px 0;
}

.post-hero-image img,
.post-inline-image img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.post-hero-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-inline-image img {
  max-height: 620px;
  object-fit: contain;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  display: block;
  overflow: hidden;
  margin: -24px -24px 18px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(255, 255, 255, 0.04);
}

.blog-card-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 220ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.035);
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) minmax(220px, 280px);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.post-toc {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: var(--panel);
}

.post-toc strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
}

.post-toc a {
  color: var(--faint);
  font-size: 13px;
  line-height: 1.35;
  transition: color 160ms ease;
}

.post-toc a:hover {
  color: var(--text);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px 0;
  color: var(--faint);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer img {
  width: 148px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.footer-expanded {
  padding: 42px 0 46px;
}

.footer-brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.footer-brand-row img {
  width: 158px;
}

.footer-brand-row p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  text-align: right;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--faint);
  font-size: 14px;
  transition: color 160ms ease;
}

.footer-col a:hover {
  color: var(--text);
}

@keyframes fadeUp {
  from {
    opacity: 0.35;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0.4;
    transform: translateY(14px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 18px rgba(16, 185, 129, 0.75); }
  50% { transform: scale(1.28); box-shadow: 0 0 28px rgba(16, 185, 129, 0.95); }
}

@keyframes glowBreath {
  0%, 100% { opacity: 0.26; transform: scale(0.98); }
  50% { opacity: 0.5; transform: scale(1.02); }
}

@keyframes blinkDot {
  0%, 78%, 100% { opacity: 1; }
  84% { opacity: 0.35; }
}

@keyframes creditPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(124, 58, 237, 0); }
  50% { box-shadow: 0 0 28px rgba(124, 58, 237, 0.32); }
}

@keyframes rowBreathe {
  0%, 100% { border-color: rgba(255, 255, 255, 0.08); }
  50% { border-color: rgba(139, 92, 246, 0.28); }
}

@keyframes statusGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.2); }
}

@keyframes featuredBreath {
  0%, 100% { box-shadow: 0 20px 70px rgba(124, 58, 237, 0.18); }
  50% { box-shadow: 0 24px 84px rgba(124, 58, 237, 0.28); }
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate(-60px, -30px) scale(1.15); opacity: 0.82; }
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .contact-layout,
  .legal-layout,
  .post-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .product-frame {
    max-width: 720px;
    margin: 0 auto;
  }

  .feature-strip,
  .work-grid,
  .workflow-track,
  .feature-grid,
  .pricing-grid,
  .integration-grid,
  .limit-grid,
  .timeline,
  .proof-band,
  .decision-grid,
  .resource-hub,
  .market-map,
  .review-board,
  .channel-board,
  .audience-board,
  .link-lattice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-grid,
  .operations-board {
    grid-template-columns: 1fr;
  }

  .buyer-card {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .post-toc {
    position: static;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-inner {
    min-height: 68px;
  }

  .brand img {
    width: 150px;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    background: rgba(10, 10, 20, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-links > a,
  .nav-dropdown > .nav-dropdown-trigger {
    border-radius: 12px;
    width: 100%;
    text-align: left;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-panel,
  .nav-panel.compact,
  .nav-panel.nav-panel-cols {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 6px;
    border-radius: 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .nav-dropdown:hover .nav-panel,
  .nav-dropdown:focus-within .nav-panel,
  .nav-dropdown.open .nav-panel,
  .nav.open .nav-dropdown .nav-panel {
    display: grid;
  }

  .nav-actions .btn-secondary {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-inner {
    min-height: 68px;
  }

  .brand img {
    width: 150px;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    background: rgba(10, 10, 20, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-links a {
    border-radius: 12px;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-proof,
  .feature-strip,
  .work-grid,
  .workflow-track,
  .feature-grid,
  .pricing-grid,
  .integration-grid,
  .credit-pack-grid,
  .timeline,
  .limit-grid,
  .metric-grid,
  .proof-band,
  .decision-grid,
  .resource-hub,
  .market-map,
  .review-board,
  .channel-board,
  .audience-board,
  .link-lattice {
    grid-template-columns: 1fr;
  }

  .hero-proof.four {
    grid-template-columns: 1fr;
  }

  .feature-card.wide {
    grid-column: auto;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }

  .side {
    display: none;
  }

  .dash-head,
  .article-row,
  .footer-grid,
  .footer-brand-row {
    align-items: start;
    flex-direction: column;
  }

  .footer-brand-row p {
    text-align: left;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }

  .dash-head {
    display: flex;
  }

  .operation-box {
    align-items: stretch;
    flex-direction: column;
  }

  .queue-item,
  .insight-row {
    grid-template-columns: 1fr;
  }

  .mini-btn {
    text-align: center;
  }

  .section {
    padding: 62px 0;
  }

  .cta-band,
  .legal-card {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.nav-top-link { font-weight: 600; }
.section-cta { margin-top: 1.25rem; text-align: center; }
.section-cta a { font-weight: 600; }
.faq-list details.faq-item { margin-bottom: 0.75rem; padding: 1rem; border: 1px solid var(--border, #e5e7eb); border-radius: 0.75rem; }
.faq-list summary { cursor: pointer; font-weight: 600; }

/* Marketing visuals — academic pass */
.nav-panel.nav-panel-grouped {
  width: min(680px, calc(100vw - 28px));
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  padding: 14px 16px;
}
.nav-panel-col { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.nav-panel-label {
  margin: 0 0 6px;
  padding: 0 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
.section-tight { padding-top: 0; }
.section-tight .section-head { margin-bottom: 12px; }

.engine-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.engine-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: linear-gradient(165deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}
.engine-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.engine-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.engine-card .engine-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.engine-card.seo .engine-tag { background: rgba(99, 102, 241, 0.2); color: #a5b4fc; }
.engine-card.academic .engine-tag { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; }
.flow-diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 6px;
  padding: 28px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
}
.flow-step {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.flow-arrow { color: var(--faint); font-size: 18px; user-select: none; }
.output-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.output-card-grid.compact { grid-template-columns: repeat(3, 1fr); }
.output-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  transition: border-color 160ms ease, transform 160ms ease;
}
.output-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.output-card h3 { margin: 0; font-size: 15px; }
.output-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.45; }
.output-card a.stretched { margin-top: auto; font-size: 13px; font-weight: 600; }
.output-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  color: #c7d2fe;
  font-size: 16px;
}
.responsible-note {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 3px solid rgba(16, 185, 129, 0.5);
  border-radius: 0 12px 12px 0;
  background: rgba(16, 185, 129, 0.06);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.responsible-note p { margin: 0; }
.thesis-path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.thesis-path-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}
.thesis-path-card h3 { margin: 0 0 8px; font-size: 1rem; }
.depth-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.depth-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
@media (max-width: 960px) {
  .engine-split, .thesis-path-grid { grid-template-columns: 1fr; }
  .output-card-grid, .output-card-grid.compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .output-card-grid, .output-card-grid.compact { grid-template-columns: 1fr; }
  .nav-panel.nav-panel-grouped { grid-template-columns: 1fr; width: min(320px, calc(100vw - 28px)); }
}

.hub-section { scroll-margin-top: 96px; }
.hub-section .section-head.left { text-align: left; max-width: 720px; }
.hub-note { color: var(--muted); font-size: 15px; line-height: 1.6; margin-top: 16px; }
.hub-path-card { text-decoration: none; color: inherit; display: block; transition: border-color 160ms ease, transform 160ms ease; }
.hub-path-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-2px); }
.path-cta { display: inline-block; margin-top: 12px; font-weight: 600; font-size: 14px; color: #a5b4fc; }
.hub-link-card { text-decoration: none; color: inherit; }
.hub-link-card:hover h3 { color: var(--text); }
.section-muted { background: rgba(255,255,255,0.02); border-block: 1px solid var(--line); }
.flow-diagram-tall { flex-direction: column; align-items: stretch; max-width: 320px; margin-inline: auto; }
.flow-diagram-tall .flow-arrow { transform: rotate(90deg); }
@media (min-width: 768px) {
  .flow-diagram-tall { flex-direction: row; flex-wrap: wrap; max-width: none; justify-content: center; }
  .flow-diagram-tall .flow-arrow { transform: none; }
}

.hub-hero--seo .visual-card { border-color: rgba(99, 102, 241, 0.35); }
.hub-hero--academic .visual-card { border-color: rgba(16, 185, 129, 0.35); }
.hub-hero--seo .eyebrow { color: #a5b4fc; }
.hub-hero--academic .eyebrow { color: #6ee7b7; }
.hub-page .hub-section:nth-of-type(even) { background: transparent; }
.hub-page .hub-section:nth-of-type(even) > .container {
  padding-block: 8px;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.preview-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.preview-hub-grid a { padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); text-decoration: none; color: inherit; font-size: 14px; font-weight: 600; transition: border-color 160ms ease; }
.preview-hub-grid a:hover { border-color: rgba(255, 255, 255, 0.2); }
.hub-preview-section--academic .preview-hub-grid a:hover { border-color: rgba(16, 185, 129, 0.35); }
@media (max-width: 768px) { .preview-hub-grid { grid-template-columns: 1fr; } }

/* —— Hub landing pages (content width = hero .container) —— */
.hub-page {
  --hub-content-width: min(1160px, calc(100% - 40px));
  overflow-x: clip;
}
.hub-page--seo { --hub-accent: #818cf8; --hub-accent-dim: rgba(99, 102, 241, 0.14); --hub-glow: rgba(99, 102, 241, 0.22); }
.hub-page--academic { --hub-accent: #34d399; --hub-accent-dim: rgba(16, 185, 129, 0.14); --hub-glow: rgba(16, 185, 129, 0.2); }

.hub-page .hub-hero > .container,
.hub-page .hub-jump > .container,
.hub-page .hub-section > .container {
  width: var(--hub-content-width);
  max-width: 100%;
  margin-inline: auto;
}

.hub-page .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 46%);
  gap: 32px;
}

.hub-hero { position: relative; overflow: hidden; }
.hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  left: 50%;
  width: var(--hub-content-width);
  max-width: 100%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 80% 60% at 90% 25%, var(--hub-glow), transparent 62%);
  pointer-events: none;
}
.hub-hero .container { position: relative; z-index: 1; }
.hub-hero-visual {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.hub-mock { position: relative; width: 100%; max-width: 100%; min-width: 0; }
.hub-mock-glow {
  position: absolute;
  inset: -12% 0;
  left: 0;
  right: 0;
  width: 100%;
  background: radial-gradient(circle at 50% 40%, var(--hub-glow), transparent 65%);
  pointer-events: none;
}
.hub-mock-window {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(8, 8, 18, 0.92);
  box-shadow: var(--shadow);
}
.hub-mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.hub-mock-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.hub-mock-bar span:nth-child(1) { background: #f87171; }
.hub-mock-bar span:nth-child(2) { background: #fbbf24; }
.hub-mock-bar span:nth-child(3) { background: #34d399; }
.hub-mock-bar em {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hub-mock-body { display: grid; grid-template-columns: 88px 1fr; gap: 0; min-height: 220px; }
.hub-mock-side {
  padding: 14px 10px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  align-content: start;
}
.hub-mock-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.hub-mock-line.w60 { width: 60%; }
.hub-mock-line.w70 { width: 70%; }
.hub-mock-line.w80 { width: 80%; }
.hub-mock-line.w88 { width: 88%; }
.hub-mock-line.w90 { width: 90%; }
.hub-mock-line.w95 { width: 95%; }
.hub-mock-line.w100 { width: 100%; }
.hub-mock-line.active { background: var(--hub-accent); opacity: 0.65; }
.hub-mock-main { padding: 14px; display: grid; gap: 12px; align-content: start; }
.hub-mock-chart {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
}
.hub-mock-chart svg { width: 100%; height: auto; display: block; }
.hub-mock-label { display: block; margin-top: 6px; font-size: 10px; font-weight: 700; color: var(--faint); text-transform: uppercase; }
.hub-mock-article { border: 1px solid var(--line); border-radius: 12px; padding: 12px; display: grid; gap: 8px; }
.hub-mock-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.hub-mock-tags span {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--hub-accent-dim);
  color: var(--hub-accent);
}
.hub-mock-source {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--muted);
  border: 1px solid transparent;
}
.hub-mock-source i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
.hub-mock-source.active { border-color: rgba(52, 211, 153, 0.35); background: rgba(16, 185, 129, 0.1); color: var(--text); }
.hub-mock-source.active i { background: #34d399; }
.hub-mock-chapters { display: grid; gap: 6px; }
.hub-mock-ch {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
}
.hub-mock-ch span {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}
.hub-mock-ch.active { border-color: rgba(52, 211, 153, 0.4); background: rgba(16, 185, 129, 0.12); color: var(--text); }
.hub-mock-ch.active span { background: #10b981; color: #042f1a; }
.hub-mock-ch.done span { background: rgba(52, 211, 153, 0.25); color: #6ee7b7; }
.hub-mock-matrix { width: 100%; max-width: 140px; margin-top: 4px; }

.hub-jump {
  position: sticky;
  top: 64px;
  z-index: 20;
  border-block: 1px solid var(--line);
  background: rgba(8, 8, 16, 0.88);
  backdrop-filter: blur(12px);
}
.hub-jump-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 0;
}
.hub-jump a {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.hub-jump a:hover { border-color: var(--hub-accent); color: var(--text); background: var(--hub-accent-dim); }

.hub-section { padding: 72px 0; }
.hub-section-inner {
  box-sizing: border-box;
}
.hub-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 36px;
}
.hub-section-head--full { grid-template-columns: minmax(0, 1fr); }
.hub-section-head--full .hub-lead { max-width: 65ch; }
.hub-section-copy .eyebrow { margin: 0 0 10px; }
.hub-section-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  max-width: 100%;
}
.hub-lead {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 65ch;
}
.hub-section-aside { display: flex; align-items: center; justify-content: center; }
.hub-section-body {
  max-width: 100%;
  min-width: 0;
}
.hub-page .hub-section-body > *,
.hub-page .hub-content-row,
.hub-page .hub-split-panel,
.hub-page .feature-strip,
.hub-page .workflow-track,
.hub-page .integration-grid,
.hub-page .output-card-grid,
.hub-page .signal-grid,
.hub-page .feature-grid,
.hub-page .thesis-path-grid {
  max-width: 100%;
  min-width: 0;
}

.hub-section .section-head.left { max-width: none; text-align: left; }
.hub-feature-strip--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hub-output-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.hub-workflow-track { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hub-page .signal-grid.hub-signal-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.hub-integration-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hub-feature-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hub-thesis-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.hub-content-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: 24px;
  align-items: stretch;
}
.hub-split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  gap: 28px;
  align-items: center;
}
.hub-split-panel--sources { grid-template-columns: minmax(0, 1fr) minmax(0, 300px); }
.hub-split-panel--integrity {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
.hub-split-panel--integrity .responsible-note { margin: 0; }
.hub-signal-list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  list-style: none;
  padding: 20px 24px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.hub-signal-list--grid li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}
.hub-signal-list--grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--hub-accent);
}

.icon--seo { background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(99, 102, 241, 0.08)); color: #c7d2fe; }
.icon--academic { background: linear-gradient(135deg, rgba(16, 185, 129, 0.35), rgba(16, 185, 129, 0.08)); color: #a7f3d0; }

.hub-viz {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hub-viz--refresh { flex-direction: row; gap: 16px; }
.hub-viz-col span { font-size: 11px; font-weight: 800; text-transform: uppercase; color: var(--faint); }
.hub-viz-doc { display: grid; gap: 6px; margin-top: 10px; padding: 12px; border-radius: 10px; background: rgba(0, 0, 0, 0.25); min-width: 100px; }
.hub-viz-doc div { height: 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.15); }
.hub-viz-doc div.short { width: 55%; }
.hub-viz-doc div.accent { background: var(--hub-accent); opacity: 0.7; }
.hub-viz-doc.faded { opacity: 0.45; }
.hub-viz-arrow { font-size: 22px; color: var(--hub-accent); font-weight: 300; }
.hub-viz--langs svg { width: 100%; max-width: 200px; }
.hub-lang-tabs { display: flex; gap: 6px; margin-top: 14px; flex-wrap: wrap; justify-content: center; }
.hub-lang-tabs span {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--line);
  color: var(--muted);
}
.hub-lang-tabs span.on { border-color: var(--hub-accent); color: var(--hub-accent); background: var(--hub-accent-dim); }
.hub-cal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; width: 100%; max-width: 200px; }
.hub-cal-grid span { aspect-ratio: 1; border-radius: 8px; background: rgba(255, 255, 255, 0.08); }
.hub-cal-grid span.on { background: var(--hub-accent); opacity: 0.55; }
.hub-cal-grid span.dot { box-shadow: inset 0 0 0 2px var(--hub-accent); background: transparent; }
.hub-cal-queue {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 650;
  color: var(--muted);
}
.hub-cal-queue i { width: 8px; height: 8px; border-radius: 50%; background: #fbbf24; }
.hub-viz--radar svg { width: 100%; max-width: 160px; }
.hub-matrix-table { width: 100%; font-size: 12px; }
.hub-matrix-row { display: grid; grid-template-columns: 36px repeat(3, 1fr); gap: 6px; margin-bottom: 6px; align-items: center; }
.hub-matrix-row span { color: var(--faint); font-weight: 700; }
.hub-matrix-row i { display: block; height: 28px; border-radius: 6px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); }
.hub-matrix-row i.hi { background: var(--hub-accent-dim); border-color: rgba(52, 211, 153, 0.35); }
.hub-page--seo .hub-matrix-row i.hi { border-color: rgba(129, 140, 248, 0.4); }
.hub-source-flow { display: flex; align-items: center; gap: 10px; width: 100%; justify-content: center; flex-wrap: wrap; }
.hub-source-node {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.hub-source-node.core { border-color: rgba(52, 211, 153, 0.4); color: #6ee7b7; background: rgba(16, 185, 129, 0.1); }
.hub-source-line { width: 28px; height: 2px; background: linear-gradient(90deg, transparent, var(--hub-accent), transparent); }
.hub-slide-stack { position: relative; width: 140px; height: 100px; }
.hub-slide {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}
.hub-slide.s3 { transform: translate(12px, 12px) scale(0.92); opacity: 0.35; }
.hub-slide.s2 { transform: translate(6px, 6px) scale(0.96); opacity: 0.55; }
.hub-slide.s1 { padding: 12px; display: grid; gap: 6px; align-content: start; }
.hub-slide.s1 span { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.2); }
.hub-slide.s1 span.wide { width: 70%; background: var(--hub-accent); opacity: 0.6; }
.hub-viz--integrity svg { width: 100px; height: 100px; }

.hub-section#faq .section-head { margin-bottom: 24px; }
.hub-section#faq .faq-list { max-width: none; }

@media (max-width: 1024px) {
  .hub-content-row,
  .hub-split-panel,
  .hub-split-panel--sources,
  .hub-split-panel--integrity { grid-template-columns: 1fr; }
  .hub-output-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hub-workflow-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hub-integration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hub-signal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hub-feature-strip--3,
  .hub-feature-grid--3,
  .hub-workflow-track,
  .hub-thesis-grid,
  .hub-signal-list--grid { grid-template-columns: 1fr; }
  .hub-output-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hub-jump-inner { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .hub-mock-body { grid-template-columns: 1fr; }
  .hub-mock-side { border-right: 0; border-bottom: 1px solid var(--line); grid-template-columns: repeat(4, 1fr); }
}

/* Compare hub */
.hub-page.compare-page { --hub-accent: #c4b5fd; --hub-accent-dim: rgba(196, 181, 253, 0.12); --hub-glow: rgba(124, 58, 237, 0.2); }
.hub-hero--compare .eyebrow { color: #c4b5fd; }
.compare-competitor { scroll-margin-top: 120px; }
.compare-proof { margin-top: 20px; flex-wrap: wrap; }
.compare-table-wrap { width: 100%; overflow-x: auto; margin-bottom: 24px; }
.compare-table { width: 100%; min-width: 0; }
.compare-choose-grid { margin-top: 8px; }
.compare-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.compare-tool-grid--stack { grid-template-columns: 1fr; margin-top: 8px; }
.compare-tool-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.compare-tool-card:hover {
  border-color: var(--hub-accent);
  background: var(--hub-accent-dim);
  transform: translateY(-2px);
}
.compare-tool-name {
  font-size: 17px;
  font-weight: 750;
  line-height: 1.2;
  color: var(--text);
  white-space: nowrap;
}
.compare-tool-desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.compare-proof .proof-item strong { white-space: nowrap; }
.icon--compare { background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(124, 58, 237, 0.08)); color: #ddd6fe; }
.icon--compare-alt { background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)); color: var(--muted); }
@media (max-width: 768px) {
  .compare-tool-grid:not(.compare-tool-grid--stack) { grid-template-columns: 1fr; }
}
