/* PD.Cash public subpage visual system.
   Loaded only for pd.cash and www.pd.cash after route-specific CSS. */

:root {
  --pv-bg: #07090b;
  --pv-bg-soft: #0b0f12;
  --pv-panel: #11171a;
  --pv-panel-strong: #151d20;
  --pv-line: rgba(255, 255, 255, 0.11);
  --pv-line-strong: rgba(255, 255, 255, 0.2);
  --pv-text: #f4f7f5;
  --pv-muted: #a7b3ae;
  --pv-green: #5ce66f;
  --pv-green-deep: #23b947;
  --pv-cyan: #67d5e6;
  --pv-amber: #f0b84b;
  --pv-red: #ff7d7d;
  --pv-nav-height: 72px;
  --pv-max: 1440px;
  --pv-content: 1180px;
  --pv-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.seo-landing {
  color-scheme: dark;
  background: var(--pv-bg);
}

html.seo-landing,
html.seo-landing body {
  min-width: 320px;
}

html.seo-landing body {
  background: var(--pv-bg) !important;
  color: var(--pv-text);
}

html.seo-landing body::after,
html.seo-landing .hero::before,
html.seo-landing .hero::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

html.seo-landing ::selection {
  background: rgba(92, 230, 111, 0.28);
  color: #ffffff;
}

html.seo-landing h1,
html.seo-landing h2,
html.seo-landing h3,
html.seo-landing .section-kicker,
html.seo-landing .nav,
html.seo-landing .btn-primary,
html.seo-landing .btn-secondary {
  letter-spacing: 0 !important;
}

html.seo-landing a:focus-visible,
html.seo-landing button:focus-visible,
html.seo-landing summary:focus-visible,
html.seo-landing input:focus-visible {
  outline: 2px solid var(--pv-cyan);
  outline-offset: 3px;
}

/* Shared PD.Cash navigation */

html.seo-landing .nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--pv-nav-height);
  padding: 0 24px;
  border-bottom: 1px solid var(--pv-line) !important;
  background: rgba(7, 9, 11, 0.9) !important;
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

html.seo-landing .nav-container {
  width: min(100%, var(--pv-max));
  min-height: var(--pv-nav-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

html.seo-landing .nav-logo {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pv-text) !important;
  text-decoration: none;
}

html.seo-landing .nav-logo-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px !important;
  background: var(--pv-green) !important;
  color: #041006 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 8px 24px rgba(35, 185, 71, 0.2) !important;
}

html.seo-landing .nav-logo-icon i {
  color: #041006 !important;
}

html.seo-landing .nav-lockup {
  min-width: 0;
  display: grid;
  gap: 1px;
  line-height: 1;
}

html.seo-landing .nav-product {
  color: var(--pv-text);
  font-size: 17px;
  font-weight: 800;
}

html.seo-landing .nav-byline {
  color: #8e9b96;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

html.seo-landing .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

html.seo-landing .nav-links a,
html.seo-landing .nav-signin,
html.seo-landing .nav-menu-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #b8c2be;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms var(--pv-ease);
}

html.seo-landing .nav-links a:hover,
html.seo-landing .nav-signin:hover,
html.seo-landing .nav-menu-panel a:hover {
  color: var(--pv-text);
}

html.seo-landing .nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

html.seo-landing .nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px !important;
  border: 1px solid var(--pv-green-deep) !important;
  border-radius: 7px !important;
  background: var(--pv-green) !important;
  color: #041006 !important;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(35, 185, 71, 0.18);
  transition: background 160ms var(--pv-ease), transform 160ms var(--pv-ease);
}

html.seo-landing .nav-cta:hover {
  background: #74ed84 !important;
  transform: translateY(-1px);
}

html.seo-landing .nav-menu {
  display: none;
  position: relative;
}

html.seo-landing .nav-menu summary {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pv-line-strong);
  border-radius: 7px;
  color: var(--pv-text);
  cursor: pointer;
  list-style: none;
}

html.seo-landing .nav-menu summary::-webkit-details-marker {
  display: none;
}

html.seo-landing .nav-menu-panel {
  position: absolute;
  top: 52px;
  right: 0;
  width: min(300px, calc(100vw - 32px));
  padding: 10px;
  display: grid;
  border: 1px solid var(--pv-line-strong);
  border-radius: 8px;
  background: #0d1215;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

html.seo-landing .nav-menu-panel a {
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

html.seo-landing .nav-menu-panel a:last-child {
  border-bottom: 0;
  color: var(--pv-green);
}

/* Shared typography and commands */

html.seo-landing .hero h1 span,
html.seo-landing .section-title,
html.seo-landing .section-title-left,
html.seo-landing .cta-section h2 {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
  animation: none !important;
}

html.seo-landing .hero h1 span,
html.seo-landing .section-kicker {
  color: var(--pv-green) !important;
}

html.seo-landing .section-title,
html.seo-landing .section-title-left,
html.seo-landing .cta-section h2 {
  color: var(--pv-text) !important;
}

html.seo-landing .hero p,
html.seo-landing .section-subtitle,
html.seo-landing .activation-copy > p,
html.seo-landing .ops-copy,
html.seo-landing .faq-item p {
  color: var(--pv-muted) !important;
}

html.seo-landing .btn-primary,
html.seo-landing .btn-secondary {
  min-height: 50px;
  padding: 0 20px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 7px !important;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms var(--pv-ease), background 160ms var(--pv-ease), border-color 160ms var(--pv-ease);
}

html.seo-landing .btn-primary {
  border: 1px solid var(--pv-green-deep) !important;
  background: var(--pv-green) !important;
  color: #041006 !important;
  box-shadow: 0 14px 32px rgba(35, 185, 71, 0.18) !important;
}

html.seo-landing .btn-primary::after {
  display: none !important;
}

html.seo-landing .btn-secondary {
  border: 1px solid var(--pv-line-strong) !important;
  background: #111619 !important;
  color: var(--pv-text) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html.seo-landing .btn-primary:hover,
html.seo-landing .btn-secondary:hover {
  transform: translateY(-1px);
}

html.seo-landing .btn-secondary:hover {
  border-color: rgba(103, 213, 230, 0.5) !important;
  background: #151d20 !important;
}

/* Product solution hero */

html.seo-landing--solution .hero {
  width: min(calc(100% - 48px), var(--pv-max));
  max-width: var(--pv-max) !important;
  min-height: 720px;
  margin: 0 auto;
  padding: 112px 0 28px !important;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(690px, 1.22fr);
  grid-template-areas:
    "title visual"
    "lead visual"
    "actions visual";
  grid-template-rows: auto auto auto;
  align-content: center;
  align-items: center;
  column-gap: 54px;
  row-gap: 20px;
  overflow: visible !important;
  text-align: left !important;
}

html.seo-landing--solution .hero > h1 {
  grid-area: title;
  margin: 0 !important;
  color: var(--pv-text);
  font-size: 52px !important;
  line-height: 1.04;
  font-weight: 780;
}

html.seo-landing--solution .hero > p {
  grid-area: lead;
  max-width: 570px;
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.6;
}

html.seo-landing--solution .hero > .btn-group {
  grid-area: actions;
  margin: 4px 0 0;
  justify-content: flex-start;
}

html.seo-landing--solution .hero > .platform-console {
  grid-area: visual;
  min-width: 0;
  width: 100%;
  max-width: none;
  max-height: 560px;
  margin: 0 !important;
  overflow: hidden;
}

html.seo-landing--solution .hero:has(> .solution-hero-copy) {
  grid-template-areas: "copy visual";
  grid-template-rows: auto;
  row-gap: 0;
}

html.seo-landing--solution .solution-hero-copy {
  grid-area: copy;
  min-width: 0;
  display: grid;
  align-self: center;
  gap: 20px;
}

html.seo-landing--solution .solution-hero-copy h1 {
  margin: 0 !important;
  color: var(--pv-text);
  font-size: 52px !important;
  line-height: 1.04;
  font-weight: 780;
}

html.seo-landing--solution .solution-hero-copy > p {
  max-width: 570px;
  margin: 0 !important;
  color: var(--pv-muted) !important;
  font-size: 18px !important;
  line-height: 1.6;
}

html.seo-landing--solution .solution-hero-copy .btn-group {
  margin: 4px 0 0;
  justify-content: flex-start;
}

/* The API page shows the routing surface; buyer-led routes show checkout + QR. */
html.route-cash-app-api .platform-console,
html.route-cash-app-payment-api .platform-console {
  grid-template-columns: 1fr !important;
}

html.route-cash-app-api .platform-side,
html.route-cash-app-payment-api .platform-side {
  display: none !important;
}

html.route-cash-app-api .platform-grid,
html.route-cash-app-payment-api .platform-grid {
  grid-template-columns: minmax(240px, 0.75fr) minmax(310px, 1.25fr) !important;
}

html.route-cash-app-api .api-event-panel,
html.route-cash-app-payment-api .api-event-panel {
  border-color: rgba(103, 213, 230, 0.38) !important;
  box-shadow: inset 3px 0 0 rgba(103, 213, 230, 0.7);
}

html.route-cash-app-api .event-panel-header i,
html.route-cash-app-payment-api .event-panel-header i,
html.route-cash-app-api .event-feed code,
html.route-cash-app-payment-api .event-feed code {
  color: var(--pv-cyan) !important;
}

html.route-cash-app-checkout .api-event-panel,
html.route-igaming-payments .api-event-panel,
html.route-sweepstakes-payments .api-event-panel,
html.route-iptv-payments .api-event-panel,
html.route-digital-goods-payments .api-event-panel,
html.route-digital-shop-payments .api-event-panel,
html.route-agent-payment-links .api-event-panel {
  display: none !important;
}

html.route-cash-app-checkout .platform-grid,
html.route-igaming-payments .platform-grid,
html.route-sweepstakes-payments .platform-grid,
html.route-iptv-payments .platform-grid,
html.route-digital-goods-payments .platform-grid,
html.route-digital-shop-payments .platform-grid,
html.route-agent-payment-links .platform-grid {
  grid-template-columns: 1fr !important;
}

html.route-igaming-payments .platform-side,
html.route-sweepstakes-payments .platform-side {
  border-top-color: rgba(240, 184, 75, 0.55) !important;
}

html.route-igaming-payments .vertical-signal > i,
html.route-sweepstakes-payments .vertical-signal > i {
  color: var(--pv-amber) !important;
  background: rgba(240, 184, 75, 0.12) !important;
}

/* Flatten the product frame: one glass shell, quiet internal hierarchy. */

html.seo-landing--solution .platform-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 0;
  border: 1px solid var(--pv-line-strong) !important;
  border-radius: 8px !important;
  background: rgba(17, 23, 26, 0.84) !important;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
}

html.seo-landing--solution .platform-browser {
  min-width: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html.seo-landing--solution .platform-side {
  min-width: 0;
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 0 !important;
  border-left: 1px solid var(--pv-line) !important;
  border-radius: 0 !important;
  background: #0c1113 !important;
  box-shadow: none !important;
}

html.seo-landing--solution .platform-side .side-api-card,
html.seo-landing--solution .platform-side .platform-mini-steps {
  display: none !important;
}

html.seo-landing--solution .platform-topbar {
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--pv-line) !important;
  background: #161d20 !important;
}

html.seo-landing--solution .preview-dot {
  width: 8px;
  height: 8px;
  opacity: 0.65;
}

html.seo-landing--solution .console-env {
  border: 0 !important;
  background: transparent !important;
  color: #b7c2be !important;
}

html.seo-landing--solution .platform-url-row {
  margin: 10px 12px 0;
  min-height: 36px;
  border: 1px solid var(--pv-line) !important;
  border-radius: 6px !important;
  background: #090d0f !important;
}

html.seo-landing--solution .platform-grid {
  padding: 12px !important;
  gap: 10px !important;
}

html.seo-landing--solution .platform-checkout-card,
html.seo-landing--solution .api-event-panel {
  border: 1px solid var(--pv-line) !important;
  border-radius: 7px !important;
  background: #0d1214 !important;
  box-shadow: none !important;
}

html.seo-landing--solution .platform-checkout-card {
  padding: 14px !important;
}

html.seo-landing--solution .checkout-brand .nav-logo-icon {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
}

html.seo-landing--solution .platform-checkout-card h3 {
  margin: 10px 0 12px;
  font-size: 21px;
  line-height: 1.15;
}

html.seo-landing--solution .checkout-meta-grid span,
html.seo-landing--solution .payment-mode-switch span,
html.seo-landing--solution .priority-rail,
html.seo-landing--solution .rail-matrix,
html.seo-landing--solution .event-feed div,
html.seo-landing--solution .payload-snippet,
html.seo-landing--solution .vertical-signal,
html.seo-landing--solution .qr-mini {
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 6px !important;
  background: #101619 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html.seo-landing--solution .checkout-meta-grid span,
html.seo-landing--solution .payment-mode-switch span,
html.seo-landing--solution .rail-matrix-row,
html.seo-landing--solution .event-feed span,
html.seo-landing--solution .side-api-card span {
  font-size: 12px !important;
}

html.seo-landing--solution .checkout-meta-grid b,
html.seo-landing--solution .rail-matrix-head,
html.seo-landing--solution .event-panel-header b {
  font-size: 10px !important;
}

html.seo-landing--solution .payment-mode-switch {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

html.seo-landing--solution .priority-rail {
  min-height: 58px;
}

html.seo-landing--solution .priority-crypto i,
html.seo-landing--solution .crypto-row i {
  color: var(--pv-amber) !important;
}

html.seo-landing--solution .event-panel-header b,
html.seo-landing--solution .rail-matrix-row b {
  border-radius: 4px !important;
  background: rgba(92, 230, 111, 0.12) !important;
  color: var(--pv-green) !important;
}

html.seo-landing--solution .payload-snippet code {
  font-size: 12px !important;
}

html.seo-landing--solution .checkout-status-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--pv-line) !important;
}

html.seo-landing--solution .checkout-action {
  min-height: 34px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(92, 230, 111, 0.22);
  border-radius: 6px;
  background: rgba(92, 230, 111, 0.08);
  color: #bcefc5;
  font-size: 12px;
  font-weight: 750;
}

html.seo-landing--solution .vertical-signal,
html.seo-landing--solution .qr-mini {
  padding: 12px !important;
}

html.seo-landing--solution .qr-mini {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--pv-text) !important;
}

html.seo-landing--solution .qr-mini img {
  width: 70px;
  height: 70px;
  padding: 5px;
  border-radius: 5px;
  background: #ffffff;
}

html.seo-landing--solution .qr-mini p {
  color: var(--pv-muted) !important;
  font-size: 11px;
  line-height: 1.35;
}

/* Proof strip and section hierarchy */

html.seo-landing--solution .proofbar {
  width: min(calc(100% - 48px), var(--pv-content));
  min-height: 72px;
  margin: 0 auto !important;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--pv-line);
  border-bottom: 1px solid var(--pv-line);
}

html.seo-landing--solution .proof-item {
  min-height: 72px;
  padding: 0 24px;
  border: 0 !important;
  border-right: 1px solid var(--pv-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  color: #c5cfcb;
  font-size: 13px;
}

html.seo-landing--solution .proof-item:last-child {
  border-right: 0 !important;
}

html.seo-landing--solution .proof-item i {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(103, 213, 230, 0.09);
  color: var(--pv-cyan);
}

html.seo-landing .section {
  width: min(100%, var(--pv-content));
  max-width: var(--pv-content) !important;
  margin: 0 auto;
  padding: 76px 32px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

html.seo-landing .section-kicker {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

html.seo-landing .section-title,
html.seo-landing .section-title-left {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 760;
}

html.seo-landing .section-subtitle {
  max-width: 720px;
  margin-bottom: 38px;
  font-size: 17px;
  line-height: 1.6;
}

/* Onboarding is a compact process, not a card wall. */

html.seo-landing--solution .activation-layout {
  gap: 48px;
  align-items: start;
}

html.seo-landing--solution .activation-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

html.seo-landing--solution .activation-pills span {
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--pv-line) !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: #c2ccc8 !important;
  font-size: 12px;
}

html.seo-landing--solution .activation-step {
  min-height: 0;
  padding: 18px 0 !important;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  border: 0 !important;
  border-bottom: 1px solid var(--pv-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html.seo-landing--solution .activation-step:last-child {
  border-bottom: 0 !important;
}

html.seo-landing--solution .activation-step > b {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px !important;
  background: var(--pv-green) !important;
  color: #041006 !important;
  box-shadow: none !important;
}

html.seo-landing--solution .activation-step h3,
html.seo-landing--solution .activation-step p {
  grid-column: 2;
}

html.seo-landing--solution .activation-step p {
  color: var(--pv-muted) !important;
}

/* Flow and support modules use restrained neutral surfaces. */

html.seo-landing--solution .flow-board,
html.seo-landing--solution .ops-lane,
html.seo-landing--solution .support-showcase-card {
  border: 1px solid var(--pv-line) !important;
  border-radius: 8px !important;
  background: var(--pv-bg-soft) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html.seo-landing--solution .flow-board {
  padding: 20px !important;
}

html.seo-landing--solution .flow-node {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html.seo-landing--solution .flow-node i,
html.seo-landing--solution .support-card-top i {
  color: var(--pv-cyan) !important;
}

html.seo-landing--solution .flow-connector {
  background: rgba(103, 213, 230, 0.42) !important;
  animation: none !important;
}

html.seo-landing--solution .support-showcase-grid {
  gap: 12px !important;
}

html.seo-landing--solution .support-showcase-card {
  padding: 20px !important;
  transition: border-color 160ms var(--pv-ease), transform 160ms var(--pv-ease);
}

html.seo-landing--solution .support-showcase-card:hover,
html.seo-landing--solution .ops-lane:hover,
html.seo-landing--solution .activation-step:hover,
html.seo-landing--solution .flow-node:hover {
  transform: none !important;
  border-color: rgba(103, 213, 230, 0.35) !important;
  box-shadow: none !important;
}

html.seo-landing--solution .ops-lane {
  overflow: hidden;
}

html.seo-landing--solution .ops-index {
  border-radius: 6px !important;
  background: var(--pv-cyan) !important;
  color: #041013 !important;
  box-shadow: none !important;
}

html.seo-landing--solution .ops-strip,
html.seo-landing--solution .ops-metrics {
  border: 1px solid var(--pv-line) !important;
  border-radius: 6px !important;
  background: #0a0e10 !important;
}

/* Accordions read as a list, not stacked glass cards. */

html.seo-landing .faq-section {
  max-width: 900px !important;
}

html.seo-landing .faq-item {
  border: 0 !important;
  border-bottom: 1px solid var(--pv-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html.seo-landing .faq-item[open],
html.seo-landing .faq-item:hover {
  border-color: var(--pv-line-strong) !important;
  background: transparent !important;
}

html.seo-landing .faq-item summary {
  min-height: 64px;
  color: var(--pv-text) !important;
  font-size: 17px;
}

html.seo-landing .faq-item[open] summary,
html.seo-landing .faq-item summary:hover {
  color: var(--pv-cyan) !important;
}

/* Guide family: editorial content with anchored navigation. */

html.seo-landing--guide .hero,
html.seo-landing--legal .hero {
  width: min(calc(100% - 48px), 980px);
  max-width: 980px !important;
  min-height: 430px;
  padding: 132px 0 64px !important;
  text-align: left !important;
}

html.seo-landing--guide .hero h1,
html.seo-landing--legal .hero h1 {
  margin-bottom: 18px;
  font-size: 52px !important;
  line-height: 1.06;
}

html.seo-landing--guide .hero p,
html.seo-landing--legal .hero p {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: 18px !important;
}

html.seo-landing--guide .hero .btn-group,
html.seo-landing--legal .hero .btn-group {
  justify-content: flex-start;
}

html.seo-landing--guide .guide-layout {
  align-items: start;
  gap: 48px;
}

html.seo-landing--guide .guide-toc {
  position: sticky;
  top: calc(var(--pv-nav-height) + 24px);
  padding: 0 0 0 18px !important;
  border: 0 !important;
  border-left: 2px solid var(--pv-line-strong) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html.seo-landing--guide .guide-toc a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--pv-muted);
  font-size: 13px;
}

html.seo-landing--guide .guide-toc a:hover {
  color: var(--pv-cyan);
}

html.seo-landing--guide .guide-section h2 {
  color: var(--pv-text);
  font-size: 30px;
  line-height: 1.2;
}

html.seo-landing--guide .guide-section h2::after {
  background: var(--pv-cyan) !important;
}

html.seo-landing--guide .guide-callout,
html.seo-landing--guide .readiness-panel,
html.seo-landing--guide .readiness-grid > * {
  border: 1px solid var(--pv-line) !important;
  border-left: 3px solid var(--pv-cyan) !important;
  border-radius: 7px !important;
  background: #0c1113 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html.seo-landing--guide .guide-callout.warn {
  border-left-color: var(--pv-amber) !important;
}

html.seo-landing--guide .guide-table {
  border: 1px solid var(--pv-line) !important;
  border-radius: 7px !important;
  box-shadow: none !important;
}

html.seo-landing--guide .guide-table th {
  background: #11181b !important;
}

html.seo-landing--guide .code-block,
html.seo-landing--guide pre.code-block {
  border: 1px solid rgba(103, 213, 230, 0.22) !important;
  border-radius: 7px !important;
  background: #080c0e !important;
}

/* Contact utility page */

html.seo-landing--utility .utility-main {
  min-height: 100vh;
}

html.seo-landing--utility .contact-hero {
  width: min(calc(100% - 48px), var(--pv-content));
  max-width: var(--pv-content) !important;
  min-height: 690px;
  margin: 0 auto;
  padding: 124px 0 54px !important;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 64px;
  text-align: left !important;
}

html.seo-landing--utility .contact-hero-copy h1 {
  margin: 0 0 20px;
  font-size: 52px !important;
  line-height: 1.06;
}

html.seo-landing--utility .contact-hero-copy > p {
  margin: 0 0 28px !important;
  font-size: 18px !important;
}

html.seo-landing--utility .contact-hero-copy .btn-group {
  justify-content: flex-start;
}

html.seo-landing--utility .contact-brief {
  border: 1px solid var(--pv-line-strong);
  border-radius: 8px;
  background: var(--pv-panel);
  overflow: hidden;
}

html.seo-landing--utility .contact-brief-head {
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--pv-line);
  background: var(--pv-panel-strong);
  color: var(--pv-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

html.seo-landing--utility .contact-brief-head b {
  color: var(--pv-green);
}

html.seo-landing--utility .contact-brief ol {
  margin: 0;
  padding: 6px 18px;
  list-style: none;
}

html.seo-landing--utility .contact-brief li {
  min-height: 74px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
  border-bottom: 1px solid var(--pv-line);
}

html.seo-landing--utility .contact-brief li:last-child {
  border-bottom: 0;
}

html.seo-landing--utility .contact-brief li > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(103, 213, 230, 0.1);
  color: var(--pv-cyan);
  font-weight: 800;
}

html.seo-landing--utility .contact-brief strong,
html.seo-landing--utility .contact-brief small {
  display: block;
}

html.seo-landing--utility .contact-brief strong {
  color: var(--pv-text);
  font-size: 15px;
}

html.seo-landing--utility .contact-brief small {
  margin-top: 3px;
  color: var(--pv-muted);
  font-size: 13px;
  line-height: 1.45;
}

html.seo-landing--utility .features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--pv-line);
  border-bottom: 1px solid var(--pv-line);
}

html.seo-landing--utility .feature-card {
  padding: 28px !important;
  border: 0 !important;
  border-right: 1px solid var(--pv-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  transform: none !important;
}

html.seo-landing--utility .feature-card:last-child {
  border-right: 0 !important;
}

html.seo-landing--utility .feature-icon {
  border-radius: 6px;
  background: rgba(103, 213, 230, 0.1);
  color: var(--pv-cyan);
}

/* Plugin marketplace */

html.seo-landing--marketplace .hero {
  width: min(calc(100% - 48px), 980px);
  max-width: 980px !important;
  min-height: 440px;
  margin: 0 auto;
  padding: 126px 0 44px !important;
}

html.seo-landing--marketplace .hero h1 {
  margin-bottom: 18px;
  font-size: 52px !important;
}

html.seo-landing--marketplace .hero p {
  margin-bottom: 20px;
  font-size: 18px !important;
}

html.seo-landing--marketplace .mkt-stats {
  width: max-content;
  max-width: 100%;
  margin-inline: auto;
  gap: 0;
  border: 1px solid var(--pv-line);
  border-radius: 7px;
  overflow: hidden;
}

html.seo-landing--marketplace .mkt-stat {
  border: 0 !important;
  border-right: 1px solid var(--pv-line) !important;
  border-radius: 0 !important;
  background: var(--pv-bg-soft) !important;
}

html.seo-landing--marketplace .mkt-stat:last-child {
  border-right: 0 !important;
}

html.seo-landing--marketplace .mkt-featured {
  width: min(calc(100% - 48px), var(--pv-content));
  min-height: 390px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--pv-line-strong);
  border-radius: 8px;
  background: var(--pv-panel);
}

html.seo-landing--marketplace .mkt-featured-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

html.seo-landing--marketplace .mkt-featured-copy span {
  margin-bottom: 12px;
  color: var(--pv-cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

html.seo-landing--marketplace .mkt-featured-copy h2 {
  margin: 0 0 14px;
  color: var(--pv-text);
  font-size: 30px;
  line-height: 1.15;
}

html.seo-landing--marketplace .mkt-featured-copy p {
  margin: 0 0 24px;
  color: var(--pv-muted);
}

html.seo-landing--marketplace .mkt-featured-copy a {
  color: var(--pv-green);
  font-weight: 800;
  text-decoration: none;
}

html.seo-landing--marketplace .mkt-featured-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--pv-line);
  background: #eef3f4;
}

html.seo-landing--marketplace .mkt-featured-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left top;
}

html.seo-landing--marketplace .mkt-toolbar {
  top: var(--pv-nav-height) !important;
  width: min(100%, var(--pv-content));
  padding: 14px 24px 0 !important;
  border: 1px solid var(--pv-line) !important;
  border-radius: 0 !important;
  background: rgba(7, 9, 11, 0.96) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

html.seo-landing--marketplace .mkt-search {
  border: 1px solid var(--pv-line-strong) !important;
  border-radius: 7px !important;
  background: #0e1316 !important;
}

html.seo-landing--marketplace .mkt-tabs {
  scrollbar-width: thin;
  scrollbar-color: var(--pv-line-strong) transparent;
}

html.seo-landing--marketplace .mkt-tab {
  min-height: 44px;
  flex: 0 0 auto;
  color: var(--pv-muted) !important;
}

html.seo-landing--marketplace .mkt-tab[aria-selected="true"] {
  color: var(--pv-green) !important;
}

html.seo-landing--marketplace .mkt-card {
  border: 1px solid var(--pv-line) !important;
  border-radius: 8px !important;
  background: var(--pv-bg-soft) !important;
  box-shadow: none !important;
}

html.seo-landing--marketplace .mkt-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(103, 213, 230, 0.35) !important;
  box-shadow: none !important;
}

html.seo-landing--marketplace .mkt-icon {
  border-radius: 7px !important;
  background: rgba(103, 213, 230, 0.1) !important;
  color: var(--pv-cyan) !important;
}

/* WordPress integration: real product image beside the offer. */

html.seo-landing--integration .wp-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(7, 9, 11, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

html.seo-landing--integration .wp-hero {
  min-height: 690px !important;
  margin-top: 0;
  background-image: none !important;
  background-color: var(--pv-bg) !important;
}

html.seo-landing--integration .wp-hero::before {
  display: none !important;
}

html.seo-landing--integration .wp-hero-inner {
  width: min(calc(100% - 48px), 1320px);
  padding: 132px 0 60px !important;
  display: grid;
  grid-template-columns: minmax(410px, 0.88fr) minmax(560px, 1.12fr);
  grid-template-rows: auto auto auto auto auto;
  align-content: center;
  align-items: center;
  gap: 0 56px;
}

html.seo-landing--integration .wp-hero-inner > * {
  grid-column: 1;
}

html.seo-landing--integration .wp-hero-inner::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / 6;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--pv-line-strong);
  border-radius: 8px;
  background: #eef3f4 url("/assets/images/wordpress-plugin/dashboard-1.2.4.webp") left top / cover no-repeat;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

html.seo-landing--integration .wp-plugin-page h1 {
  font-size: 50px;
  line-height: 1.08;
}

html.seo-landing--integration .wp-hero-lead {
  font-size: 18px;
}

html.seo-landing--integration .wp-hero-note {
  color: var(--pv-muted);
}

html.seo-landing--integration .wp-section {
  padding-block: 82px;
}

html.seo-landing--integration .wp-dashboard-visual,
html.seo-landing--integration .wp-checkout-visual {
  border-radius: 8px;
  overflow: hidden;
}

/* CTA and footer are full-width bands, not floating cards. */

html.seo-landing .cta-section {
  width: 100%;
  max-width: none !important;
  min-height: 300px;
  margin: 0;
  padding: 66px 24px !important;
  border-top: 1px solid var(--pv-line);
  border-bottom: 1px solid var(--pv-line);
  background: #0c1113 !important;
}

html.seo-landing .cta-section h2 {
  font-size: 34px;
  line-height: 1.15;
}

html.seo-landing .footer {
  position: relative;
  padding: 56px 24px 30px !important;
  border-top: 0 !important;
  background: #050708 !important;
}

html.seo-landing .footer::before {
  display: none !important;
}

html.seo-landing .footer-related {
  border: 0 !important;
  border-top: 1px solid var(--pv-line) !important;
  border-bottom: 1px solid var(--pv-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html.seo-landing .footer-related-title {
  color: var(--pv-cyan) !important;
}

html.seo-landing .footer a:hover {
  color: var(--pv-green) !important;
}

/* Tablet */

@media (max-width: 1120px) {
  html.seo-landing .nav-links {
    gap: 18px;
  }

  html.seo-landing--solution .hero {
    grid-template-columns: minmax(310px, 0.72fr) minmax(600px, 1.28fr);
    column-gap: 34px;
  }

  html.seo-landing--solution .hero > h1 {
    font-size: 44px !important;
  }

  html.seo-landing--solution .solution-hero-copy h1 {
    font-size: 44px !important;
  }

  html.seo-landing--solution .platform-console {
    grid-template-columns: 1fr !important;
  }

  html.seo-landing--solution .platform-side {
    display: none !important;
  }
}

@media (max-width: 900px) {
  :root {
    --pv-nav-height: 64px;
  }

  html.seo-landing .nav {
    padding: 0 16px;
  }

  html.seo-landing .nav-container {
    min-height: var(--pv-nav-height);
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  html.seo-landing .nav-links,
  html.seo-landing .nav-actions {
    display: none;
  }

  html.seo-landing .nav-menu {
    display: block;
  }

  html.seo-landing--solution .hero {
    width: min(calc(100% - 32px), 680px);
    min-height: 0;
    padding: 90px 0 18px !important;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "lead"
      "actions"
      "visual";
    grid-template-rows: auto;
    row-gap: 14px;
  }

  html.seo-landing--solution .hero:has(> .solution-hero-copy) {
    grid-template-areas:
      "copy"
      "visual";
    row-gap: 14px;
  }

  html.seo-landing--solution .solution-hero-copy {
    gap: 14px;
  }

  html.seo-landing--solution .hero > h1 {
    font-size: 38px !important;
    line-height: 1.06;
  }

  html.seo-landing--solution .solution-hero-copy h1 {
    font-size: 38px !important;
    line-height: 1.06;
  }

  html.seo-landing--solution .hero > p {
    max-width: none;
    font-size: 16px !important;
    line-height: 1.5;
  }

  html.seo-landing--solution .solution-hero-copy > p {
    max-width: none;
    font-size: 16px !important;
    line-height: 1.5;
  }

  html.seo-landing--solution .hero > .btn-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  html.seo-landing--solution .solution-hero-copy .btn-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  html.seo-landing--solution .hero .btn-primary,
  html.seo-landing--solution .hero .btn-secondary {
    width: 100%;
    min-width: 0;
    padding: 0 10px !important;
    font-size: 13px;
    text-align: center;
  }

  html.seo-landing--solution .hero > .platform-console {
    max-height: 300px;
    margin-top: 4px !important;
  }

  html.seo-landing--solution .platform-console,
  html.seo-landing--solution .platform-grid,
  html.route-cash-app-api .platform-grid,
  html.route-cash-app-payment-api .platform-grid {
    grid-template-columns: 1fr !important;
  }

  html.seo-landing--solution .platform-side {
    display: none !important;
  }

  html.route-cash-app-api .platform-checkout-card,
  html.route-cash-app-payment-api .platform-checkout-card {
    display: none !important;
  }

  html.route-cash-app-api .api-event-panel,
  html.route-cash-app-payment-api .api-event-panel {
    display: grid !important;
  }

  html.seo-landing--solution .platform-checkout-card .checkout-status-row,
  html.seo-landing--solution .platform-checkout-card .checkout-action,
  html.seo-landing--solution .platform-checkout-card .platform-rail-stack,
  html.seo-landing--solution .payload-snippet {
    display: none !important;
  }

  html.seo-landing--solution .proofbar {
    width: 100%;
    min-height: 66px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  html.seo-landing--solution .proofbar::-webkit-scrollbar {
    display: none;
  }

  html.seo-landing--solution .proof-item {
    min-width: min(82vw, 310px);
    min-height: 66px;
    padding: 0 18px;
    scroll-snap-align: start;
  }

  html.seo-landing .section {
    padding: 58px 22px !important;
  }

  html.seo-landing--solution .activation-layout {
    gap: 28px;
  }

  html.seo-landing--solution .activation-steps,
  html.seo-landing--solution .support-showcase-grid {
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--pv-line-strong) transparent;
    padding-bottom: 10px;
  }

  html.seo-landing--solution .activation-step,
  html.seo-landing--solution .support-showcase-card {
    min-width: min(82vw, 330px);
    scroll-snap-align: start;
  }

  html.seo-landing--guide .hero,
  html.seo-landing--legal .hero,
  html.seo-landing--marketplace .hero {
    width: min(calc(100% - 32px), 720px);
    min-height: 0;
    padding: 106px 0 46px !important;
  }

  html.seo-landing--guide .hero h1,
  html.seo-landing--legal .hero h1,
  html.seo-landing--marketplace .hero h1 {
    font-size: 42px !important;
  }

  html.seo-landing--guide .guide-layout {
    grid-template-columns: 1fr !important;
  }

  html.seo-landing--guide .guide-toc {
    position: static;
    padding: 0 0 10px !important;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    border: 0 !important;
    border-bottom: 1px solid var(--pv-line) !important;
  }

  html.seo-landing--guide .guide-toc a {
    flex: 0 0 auto;
  }

  html.seo-landing--utility .contact-hero {
    width: min(calc(100% - 32px), 720px);
    min-height: 0;
    padding: 106px 0 46px !important;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  html.seo-landing--utility .features-grid {
    grid-template-columns: 1fr;
  }

  html.seo-landing--utility .feature-card {
    border-right: 0 !important;
    border-bottom: 1px solid var(--pv-line) !important;
  }

  html.seo-landing--utility .feature-card:last-child {
    border-bottom: 0 !important;
  }

  html.seo-landing--marketplace .mkt-featured {
    width: min(calc(100% - 32px), 720px);
    grid-template-columns: 1fr;
  }

  html.seo-landing--marketplace .mkt-featured-media {
    min-height: 310px;
    border-left: 0;
    border-top: 1px solid var(--pv-line);
  }

  html.seo-landing--integration .wp-hero {
    min-height: 0 !important;
  }

  html.seo-landing--integration .wp-hero-inner {
    width: min(calc(100% - 36px), 720px);
    padding: 102px 0 42px !important;
    grid-template-columns: 1fr;
    gap: 0;
  }

  html.seo-landing--integration .wp-hero-inner::after {
    grid-column: 1;
    grid-row: auto;
    margin-top: 26px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  html.seo-landing .nav-product {
    font-size: 16px;
  }

  html.seo-landing .nav-byline {
    font-size: 8px;
  }

  html.seo-landing--solution .hero > h1,
  html.seo-landing--solution .solution-hero-copy h1,
  html.seo-landing--guide .hero h1,
  html.seo-landing--legal .hero h1,
  html.seo-landing--marketplace .hero h1,
  html.seo-landing--utility .contact-hero-copy h1 {
    font-size: 34px !important;
  }

  html.seo-landing--solution .hero > .btn-group {
    grid-template-columns: 1fr 1fr;
  }

  html.seo-landing--solution .platform-topbar .console-env {
    font-size: 11px;
  }

  html.seo-landing--solution .platform-topbar strong,
  html.seo-landing--solution .platform-url-row b {
    display: none;
  }

  html.seo-landing--solution .platform-grid {
    padding: 9px !important;
  }

  html.seo-landing--solution .platform-checkout-card {
    padding: 11px !important;
  }

  html.seo-landing--solution .platform-checkout-card h3 {
    font-size: 18px;
  }

  html.seo-landing--solution .checkout-meta-grid span,
  html.seo-landing--solution .payment-mode-switch span,
  html.seo-landing--solution .rail-matrix-row,
  html.seo-landing--solution .event-feed span {
    font-size: 11px !important;
  }

  html.seo-landing .section-title,
  html.seo-landing .section-title-left,
  html.seo-landing .cta-section h2 {
    font-size: 29px;
  }

  html.seo-landing .section-subtitle {
    font-size: 16px;
  }

  html.seo-landing--utility .contact-hero-copy .btn-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  html.seo-landing--utility .contact-hero {
    padding: 90px 0 18px !important;
    gap: 24px;
  }

  html.seo-landing--utility .contact-brief li {
    min-height: 68px;
    padding: 10px 0;
  }

  html.seo-landing--marketplace .mkt-featured-copy {
    padding: 28px 22px;
  }

  html.seo-landing--marketplace .mkt-featured-media {
    min-height: 240px;
  }

  html.seo-landing--marketplace .mkt-toolbar {
    padding-inline: 14px !important;
  }

  html.seo-landing--integration .wp-plugin-page h1 {
    font-size: 36px;
  }

  html.seo-landing--integration .wp-hero-inner {
    padding: 88px 0 18px !important;
  }

  html.seo-landing--integration .wp-hero-lead {
    font-size: 16px;
    margin-bottom: 20px;
  }

  html.seo-landing--integration .wp-hero-inner::after {
    aspect-ratio: 16 / 9;
    margin-top: 18px;
    background-size: contain;
  }

  html.seo-landing--integration .wp-section {
    padding-block: 64px;
  }

  html.seo-landing .cta-section {
    min-height: 270px;
    padding: 54px 20px !important;
  }
}

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

/* Small-device path: solid navigation, compact controls, and cheaper product surfaces. */
@media (max-width: 600px) {
  html.seo-landing,
  html.seo-landing body {
    min-width: 0;
    scroll-behavior: auto;
  }

  html.seo-landing .nav,
  html.seo-landing--integration .wp-site-header,
  html.seo-landing--marketplace .mkt-toolbar {
    background: #07090b !important;
    box-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  html.seo-landing .nav-logo-icon {
    box-shadow: none !important;
  }

  html.seo-landing .nav-byline {
    font-size: 9px;
  }

  html.seo-landing .nav-menu[open] summary,
  html.seo-landing--integration .wp-mobile-menu[open] summary {
    border-color: rgba(92, 230, 111, 0.48);
    background: #121a16;
    color: var(--pv-green);
  }

  html.seo-landing .nav-menu-panel,
  html.seo-landing--integration .wp-mobile-menu-panel {
    position: fixed;
    top: calc(var(--pv-nav-height) + 8px);
    right: 12px;
    left: 12px;
    z-index: 1001;
    width: auto;
    max-height: calc(100dvh - var(--pv-nav-height) - 20px);
    padding: 6px;
    overflow-y: auto;
    border-radius: 7px;
    background: #0d1215 !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
    overscroll-behavior: contain;
  }

  html.seo-landing .nav-menu-panel a,
  html.seo-landing--integration .wp-mobile-menu-panel a {
    min-height: 46px;
    padding: 0 11px;
    font-size: 14px;
    line-height: 1.25;
  }

  html.seo-landing--solution .platform-console {
    background: #101619 !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  html.seo-landing--solution .activation-steps,
  html.seo-landing--solution .support-showcase-grid {
    scrollbar-width: none;
  }

  html.seo-landing--solution .activation-steps::-webkit-scrollbar,
  html.seo-landing--solution .support-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  html.seo-landing--marketplace .mkt-grid {
    width: calc(100vw - 32px);
    max-width: none;
    min-width: 0;
    margin-right: calc(50% - 50vw + 16px);
    margin-left: calc(50% - 50vw + 16px);
    padding-inline: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  html.seo-landing--marketplace .mkt-card {
    min-width: 0;
    padding: 18px;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html.seo-landing--integration .wp-dashboard-visual {
    width: 100%;
    overflow: hidden;
  }

  html.seo-landing--integration .wp-dashboard-visual img {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  html.seo-landing--solution .hero > .btn-group,
  html.seo-landing--solution .solution-hero-copy .btn-group {
    grid-template-columns: 1fr;
  }

  html.seo-landing--solution .hero .btn-primary,
  html.seo-landing--solution .hero .btn-secondary {
    min-height: 48px;
    white-space: normal;
  }
}

@media (max-width: 360px) {
  html.seo-landing .nav {
    padding-inline: 12px;
  }

  html.seo-landing--solution .hero,
  html.seo-landing--guide .hero,
  html.seo-landing--marketplace .hero,
  html.seo-landing--utility .contact-hero,
  html.seo-landing--integration .wp-hero-inner {
    width: min(calc(100% - 28px), 680px);
  }

  html.seo-landing--solution .hero > h1,
  html.seo-landing--solution .solution-hero-copy h1,
  html.seo-landing--guide .hero h1,
  html.seo-landing--marketplace .hero h1,
  html.seo-landing--utility .contact-hero-copy h1 {
    font-size: 32px !important;
  }

  html.route-features .hero h1 {
    white-space: nowrap;
    font-size: 29px !important;
  }

  html.seo-landing--integration .wp-plugin-page h1 {
    font-size: 32px !important;
  }

  html.seo-landing--solution .platform-url-row span,
  html.seo-landing--solution .platform-url-row small {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}
