/* FantasyHQ Pro marketing page — light default, dark theme variant */

.pro-page {
  --page-bg: var(--ff-surface-raised, #ffffff);
  --section-bg: #f9fbfe;
  --hero-bg: #f8fbff;

  --card-bg: var(--ff-surface-raised, #ffffff);
  --card-soft: #f7faff;
  --card-hover: #f2f7ff;
  --card-nested: #f7faff;

  --text-main: #071a3a;
  --text-strong: #061633;
  --text-secondary: #41516b;
  --text-muted: #6b7890;

  --primary: #0668f6;
  --primary-hover: #005be0;
  --primary-light: #eaf3ff;
  --primary-border: #1976ff;
  --cyan: #0ca7ff;

  --success: #16b85c;
  --success-soft: #eaf9f0;
  --danger: #f43f5e;
  --warning: #f7c600;
  --orange: #ff7a21;
  --purple: #754cff;

  --border: #d8e3ef;
  --border-soft: #e7edf5;
  --divider: #dbe5f0;

  --shadow-card:
    0 2px 4px rgba(6, 33, 71, 0.03),
    0 10px 30px rgba(19, 54, 99, 0.07);
  --shadow-highlight:
    0 0 0 1px rgba(6, 104, 246, 0.08),
    0 14px 36px rgba(6, 104, 246, 0.13);

  --plus-gold: #f4c542;
  --plus-gold-bright: #ffd85a;
  --plus-gold-dark: #b88412;
  --plus-gold-soft: #fff7da;
  --plus-navy: #06172f;
  --plus-gold-gradient: linear-gradient(
    135deg,
    #fff0a8 0%,
    #f5c84b 34%,
    #d79b18 68%,
    #fff1a0 100%
  );

  --header-bg: var(--ff-surface-raised, #ffffff);
  --focus-ring: 0 0 0 3px rgba(6, 104, 246, 0.35);

  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--page-bg);
  color: var(--text-main);
  font-family: "Sora", "Sora Fallback", system-ui, sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: normal;
}

.pro-page *,
.pro-page *::before,
.pro-page *::after {
  box-sizing: border-box;
  min-width: 0;
}

@media (prefers-color-scheme: dark) {
  .pro-page:not([data-pro-theme="light"]) {
    --page-bg: #031321;
    --section-bg: #041827;
    --hero-bg: #031321;
    --card-bg: #071c2e;
    --card-soft: #0a2033;
    --card-hover: #0c263c;
    --card-nested: #091f33;
    --text-main: #f4f8fc;
    --text-strong: #ffffff;
    --text-secondary: #b8c8d8;
    --text-muted: #91a6ba;
    --primary: #0984ff;
    --primary-hover: #1891ff;
    --primary-light: rgba(9, 132, 255, 0.12);
    --primary-border: #168eff;
    --cyan: #1cb4ff;
    --success: #24d978;
    --success-soft: rgba(36, 217, 120, 0.11);
    --danger: #ff4c6a;
    --warning: #ffd52a;
    --orange: #ff8743;
    --purple: #916fff;
    --border: rgba(112, 159, 196, 0.28);
    --border-soft: rgba(109, 151, 185, 0.17);
    --divider: rgba(116, 160, 195, 0.18);
    --shadow-card: 0 10px 35px rgba(0, 0, 0, 0.25);
    --shadow-highlight:
      0 0 0 1px rgba(9, 132, 255, 0.35),
      0 16px 42px rgba(0, 91, 181, 0.25);
    --header-bg: #020e1a;
    --focus-ring: 0 0 0 3px rgba(9, 132, 255, 0.45);
  }
}

html[data-theme="dark"] .pro-page,
.pro-page[data-pro-theme="dark"] {
  --page-bg: #031321;
  --section-bg: #041827;
  --hero-bg: #031321;
  --card-bg: #071c2e;
  --card-soft: #0a2033;
  --card-hover: #0c263c;
  --card-nested: #091f33;
  --text-main: #f4f8fc;
  --text-strong: #ffffff;
  --text-secondary: #b8c8d8;
  --text-muted: #91a6ba;
  --primary: #0984ff;
  --primary-hover: #1891ff;
  --primary-light: rgba(9, 132, 255, 0.12);
  --primary-border: #168eff;
  --cyan: #1cb4ff;
  --success: #24d978;
  --success-soft: rgba(36, 217, 120, 0.11);
  --danger: #ff4c6a;
  --warning: #ffd52a;
  --orange: #ff8743;
  --purple: #916fff;
  --border: rgba(112, 159, 196, 0.28);
  --border-soft: rgba(109, 151, 185, 0.17);
  --divider: rgba(116, 160, 195, 0.18);
  --shadow-card: 0 10px 35px rgba(0, 0, 0, 0.25);
  --shadow-highlight:
    0 0 0 1px rgba(9, 132, 255, 0.35),
    0 16px 42px rgba(0, 91, 181, 0.25);
  --header-bg: #020e1a;
  --focus-ring: 0 0 0 3px rgba(9, 132, 255, 0.45);
}

.pro-page p,
.pro-page h1,
.pro-page h2,
.pro-page h3,
.pro-page span,
.pro-page li,
.pro-page td,
.pro-page th {
  word-break: normal;
  overflow-wrap: break-word;
}

.pro-page a:focus-visible,
.pro-page button:focus-visible,
.pro-page summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.pro-container {
  width: min(1340px, calc(100% - 64px));
  margin-inline: auto;
}

.pro-container--narrow {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
}

.pro-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex: 0 0 auto;
}

.pro-icon--small {
  width: 14px;
  height: 14px;
}

.pro-icon--large {
  width: 22px;
  height: 22px;
}

/* —— Buttons —— */
.pro-button {
  height: 48px;
  min-height: 44px;
  border-radius: 8px;
  padding-inline: 24px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: -0.1px;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.pro-page a.pro-button,
.pro-page a.pro-button:link,
.pro-page a.pro-button:visited,
.pro-page a.pro-button:hover,
.pro-page a.pro-button:focus,
.pro-page a.pro-button:active,
.pro-page a.workflow-card__cta,
.pro-page a.workflow-card__cta:link,
.pro-page a.workflow-card__cta:visited,
.pro-page a.workflow-card__cta:hover,
.pro-page a.workflow-card__cta:focus,
.pro-page a.workflow-card__cta:active,
.pro-page a.pricing-card__trial,
.pro-page a.pricing-card__trial:link,
.pro-page a.pricing-card__trial:visited,
.pro-page a.pricing-card__trial:hover,
.pro-page a.pricing-card__trial:focus,
.pro-page a.pricing-card__trial:active {
  text-decoration: none;
}

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

.pro-button:active {
  transform: translateY(0);
}

.pro-button--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #087cff 0%, #0566ed 100%);
  box-shadow: 0 8px 20px rgba(6, 104, 246, 0.2);
}

.pro-button--primary:hover {
  background: linear-gradient(180deg, #1891ff 0%, #0668f6 100%);
}

.pro-button--gold {
  color: var(--plus-navy);
  background: var(--plus-gold-gradient);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(184, 132, 18, 0.22);
}

.pro-button--gold:hover {
  filter: brightness(1.04);
}

.pro-button--outline-gold {
  color: var(--plus-gold-dark);
  background: transparent;
  border-color: var(--plus-gold);
}

.pro-button--outline-gold:hover {
  background: var(--plus-gold-soft);
}

.pro-button--secondary {
  color: var(--text-main);
  background: transparent;
  border-color: var(--primary-border);
}

.pro-button--secondary:hover {
  background: var(--primary-light);
}

.pro-button--outline {
  color: var(--primary);
  background: transparent;
  border-color: var(--primary-border);
}

.pro-button--ghost {
  color: var(--text-secondary);
  background: transparent;
  border-color: var(--border);
}

.pro-button--ghost-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
}

.pro-button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.pro-button--block {
  width: 100%;
}

.pro-button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

/* —— Hero —— */
.pro-hero {
  min-height: 490px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(
      circle at 74% 45%,
      rgba(40, 142, 255, 0.095) 0%,
      rgba(40, 142, 255, 0.045) 26%,
      transparent 55%
    ),
    linear-gradient(90deg, var(--ff-surface-raised, #fff) 0%, var(--ff-surface, #fbfdff) 48%, var(--ff-surface-raised, #f6faff) 100%);
  padding: 48px 0 56px;
}

.pro-top-shell .pro-hero {
  border-bottom: none;
}

@media (prefers-color-scheme: dark) {
  .pro-page:not([data-pro-theme="light"]) .pro-hero {
    background:
      radial-gradient(
        circle at 70% 45%,
        rgba(0, 121, 224, 0.17) 0%,
        rgba(0, 75, 143, 0.07) 35%,
        transparent 65%
      ),
      #031321;
  }
}

html[data-theme="dark"] .pro-page .pro-hero,
.pro-page[data-pro-theme="dark"] .pro-hero {
  background:
    radial-gradient(
      circle at 70% 45%,
      rgba(0, 121, 224, 0.17) 0%,
      rgba(0, 75, 143, 0.07) 35%,
      transparent 65%
    ),
    #031321;
}

.pro-hero__inner {
  width: min(1220px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 510px) minmax(0, 630px);
  justify-content: space-between;
  align-items: center;
  column-gap: 80px;
}

.pro-hero--plus .pro-hero__inner {
  grid-template-columns: minmax(240px, 32%) minmax(0, 1fr);
  column-gap: 36px;
  align-items: center;
}

.pro-hero__visual {
  margin: 0;
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.pro-hero__visual-frame {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(244, 197, 66, 0.45);
  background: #010e1f;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(244, 197, 66, 0.12);
  animation: proHeroGlow 3.6s ease-in-out infinite;
}

.pro-hero__visual-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 232, 150, 0.14) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: proHeroShine 5.5s ease-in-out infinite;
}

.pro-hero__visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(244, 197, 66, 0.22);
}

.pro-hero__visual-img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center center;
  animation: proHeroFloat 6s ease-in-out infinite;
}

.pro-hero--plus .pro-hero__copy-col {
  animation: proHeroCopyIn 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pro-hero__visual {
  animation: proHeroVisualIn 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

@keyframes proHeroGlow {
  0%,
  100% {
    border-color: rgba(244, 197, 66, 0.35);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.04),
      0 18px 48px rgba(0, 0, 0, 0.45),
      0 0 18px rgba(244, 197, 66, 0.1);
  }
  50% {
    border-color: rgba(255, 216, 90, 0.7);
    box-shadow:
      0 0 0 1px rgba(244, 197, 66, 0.4),
      0 24px 60px rgba(0, 0, 0, 0.55),
      0 0 42px rgba(244, 197, 66, 0.28);
  }
}

@keyframes proHeroFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.012);
  }
}

@keyframes proHeroShine {
  0%,
  35% {
    transform: translateX(-120%);
  }
  55%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes proHeroCopyIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes proHeroVisualIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pro-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pro-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.pro-onboard__step {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.pro-onboard__step:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 197, 66, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.proof-stats__item strong {
  transition: transform 200ms ease;
}

.proof-stats__item.is-counting strong {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .pro-hero__visual-frame,
  .pro-hero__visual-frame::before,
  .pro-hero__visual-img,
  .pro-hero--plus .pro-hero__copy-col,
  .pro-hero__visual {
    animation: none !important;
  }

  .pro-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.pro-hero__visual-caption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pro-hero__visual-hint {
  display: none;
  color: var(--plus-gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pro-hero__copy-col {
  max-width: 510px;
}

.pro-hero__eyebrow {
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pro-hero__eyebrow-sub {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.plus-mark {
  color: var(--text-strong);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.plus-mark--title1 {
  display: inline-block;
  font-size: clamp(42px, 7vw, 56px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -1.8px;
}

.plus-mark__hq {
  background: var(--plus-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.plus-inline .plus-mark__hq {
  font-weight: 800;
}

.pro-hero__brand {
  margin: 0 0 10px;
}

.pro-top-shell {
  background: #010e1f;
}

.pro-hero--plus {
  min-height: 560px;
  padding: 56px 0 40px;
  border-bottom: none;
  color: #ffffff;
  background: transparent;
}

.pro-hero--plus .plus-mark {
  color: #ffffff;
}

.pro-hero--plus .pro-hero__eyebrow-sub {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.pro-hero--plus .pro-hero__title {
  color: #ffffff;
  font-size: 52px;
  line-height: 58px;
  font-weight: 800;
  letter-spacing: -1.8px;
}

.pro-hero--plus .pro-hero__title span {
  color: var(--plus-gold-bright);
}

.pro-hero--plus .pro-hero__copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.pro-hero--plus .pro-hero__trust-item svg {
  color: var(--plus-gold-bright);
}

.pro-hero--plus .pro-hero__trust-item span {
  color: rgba(255, 255, 255, 0.72);
}

.pro-hero--plus .pro-hero__actions .pro-button {
  min-width: 200px;
  min-height: 48px;
  font-size: 16px;
  line-height: 20px;
}

@media (prefers-color-scheme: dark) {
  .pro-page:not([data-pro-theme="light"]) .pro-hero--plus {
    background: transparent;
  }
}

html[data-theme="dark"] .pro-page .pro-hero--plus,
.pro-page[data-pro-theme="dark"] .pro-hero--plus {
  background: transparent;
}

.pro-hero__title {
  margin: 0;
  color: var(--text-strong);
  font-size: 52px;
  line-height: 53px;
  font-weight: 800;
  letter-spacing: -2.2px;
}

.pro-hero__title span {
  color: var(--primary);
}

.pro-hero__copy {
  max-width: 500px;
  margin: 20px 0 0;
  color: var(--text-main);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.pro-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.pro-hero__actions .pro-button--primary {
  width: 214px;
}

.pro-hero__actions .pro-button--secondary {
  width: 222px;
}

.pro-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 38px;
  margin-top: 28px;
}

.pro-hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 140px;
}

.pro-hero__trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 1px;
}

.pro-hero__trust-item span {
  color: var(--text-secondary);
  font-size: 11px;
  line-height: 15px;
  font-weight: 600;
}

/* —— League preview —— */
.league-preview {
  width: 100%;
  max-width: 630px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
}

.league-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  min-height: 46px;
}

.league-preview__league {
  margin: 0;
  color: var(--text-strong);
  font-size: 17px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: -0.35px;
}

.league-preview__team {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.league-preview__updated {
  text-align: right;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 14px;
  font-weight: 500;
}

.league-preview__updated strong {
  display: block;
  color: var(--text-secondary);
  font-weight: 600;
}

.league-preview__metrics {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.league-preview__metric {
  min-height: 116px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--card-nested);
}

.league-preview__grade-letter {
  margin: 0;
  color: var(--success);
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -2px;
}

.league-preview__grade-score {
  margin: 2px 0 0;
  color: var(--text-strong);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.league-preview__grade-label,
.league-preview__metric-label {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 15px;
  font-weight: 600;
}

.league-preview__metric-pos {
  margin: 10px 0 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.league-preview__metric-pos--strong {
  color: var(--primary);
}

.league-preview__metric-pos--weak {
  color: var(--danger);
}

.league-preview__metric-rank {
  margin: 6px 0 0;
  color: var(--text-secondary);
  font-size: 11px;
  line-height: 15px;
  font-weight: 500;
}

.league-preview__week {
  margin-top: 14px;
  min-height: 230px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card-nested);
}

.league-preview__week-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.league-preview__week-title {
  margin: 0;
  color: var(--text-strong);
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
}

.league-preview__week-sub {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.league-preview__opportunity {
  text-align: right;
}

.league-preview__opportunity b {
  display: block;
  color: var(--success);
  font-size: 22px;
  line-height: 26px;
  font-weight: 800;
}

.league-preview__opportunity span {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
}

.league-preview__actions {
  display: grid;
  gap: 8px;
}

.league-preview__action {
  height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-soft);
  border-radius: 7px;
  background: var(--card-bg);
  color: var(--text-main);
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  text-decoration: none;
}

.league-preview__action-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.league-preview__action-ico--up {
  color: var(--success);
  background: var(--success-soft);
}

.league-preview__action-ico--trade {
  color: var(--primary);
  background: var(--primary-light);
}

.league-preview__action-ico--star {
  color: #b45309;
  background: rgba(247, 198, 0, 0.18);
}

.league-preview__action-text {
  flex: 1;
}

.league-preview__action svg.chevron {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

/* —— Sections —— */
.pro-section {
  padding: 72px 0 80px;
  background: var(--page-bg);
}

.pro-section--soft {
  background: var(--section-bg);
}

.pro-section-eyebrow {
  margin: 0 0 10px;
  text-align: center;
  color: var(--plus-gold-dark);
  font-size: 12px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pro-section-title {
  margin: 0;
  text-align: center;
  color: var(--text-strong);
  font-size: 28px;
  line-height: 36px;
  font-weight: 800;
  letter-spacing: -0.9px;
}

.pro-section-copy {
  margin: 8px auto 0;
  max-width: 640px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.15px;
}

/* FHQ Dynasty block on Plus pricing */
.pro-dynasty {
  background: linear-gradient(180deg, var(--ff-surface, #f4f7fb) 0%, var(--page-bg, var(--ff-surface)) 100%);
}
.pro-dynasty-tools {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}
.pro-dynasty-tool {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 128px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: var(--ff-surface-raised, #fff);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.12s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
a.pro-dynasty-tool:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 79, 138, 0.35);
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.08);
}
.pro-dynasty-tool.is-soon {
  opacity: 0.78;
  background: var(--ff-surface-sunken, #f8fafc);
}
.pro-dynasty-tool__badge {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--ff-text-muted, #64748b);
  background: var(--ff-surface, #eef2f7);
}
.pro-dynasty-tool__badge.is-live {
  color: #0b4f8a;
  background: #e8f4ff;
}
.pro-dynasty-tool strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.2px;
}
.pro-dynasty-tool span:last-child {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
}
.pro-dynasty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

@media (prefers-reduced-motion: reduce) {
  a.pro-dynasty-tool:hover { transform: none; }
}

.pro-section-title--left {
  text-align: left;
}

/* —— Pricing —— */
.pro-pricing {
  min-height: 549px;
  padding-top: 56px;
  padding-bottom: 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
  width: 100%;
  align-items: stretch;
}

.pricing-grid--tiers {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  gap: 20px;
}

.pricing-card {
  position: relative;
  min-height: 394px;
  height: 100%;
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 8px rgba(6, 33, 71, 0.04),
    0 16px 40px rgba(19, 54, 99, 0.1);
}

.pricing-card__description {
  min-height: 44px;
  margin: 12px 0 0;
  text-align: center;
  color: var(--text-main);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}

.pricing-card__features {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  flex: 1;
  min-height: 180px;
  align-content: start;
}

.pricing-card--featured {
  /* Legacy blue featured styles superseded by .pricing-card--plus */
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transform: none;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  height: 22px;
  min-width: 112px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 10px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.4px;
  white-space: nowrap;
  color: #ffffff;
  z-index: 2;
}

.pricing-card__badge--primary {
  background: var(--primary);
  min-width: 140px;
}

.pricing-card__badge--success {
  background: var(--success);
  min-width: 112px;
}

.pricing-card__name {
  margin: 0;
  text-align: center;
  color: var(--primary);
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
  letter-spacing: 0.25px;
}

.pricing-card__price {
  margin: 12px 0 0;
  text-align: center;
  color: var(--text-strong);
  font-size: 42px;
  line-height: 48px;
  font-weight: 800;
  letter-spacing: -1.6px;
}

.pricing-card__cadence {
  margin: 0;
  text-align: center;
  color: var(--text-main);
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
}

.pricing-card__features svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex: 0 0 auto;
}

.pricing-card__button {
  width: 100%;
  height: 48px;
  min-height: 48px;
  margin-top: auto;
  border-radius: 8px;
  font-size: 14px;
}

.pricing-card__cta-stack {
  margin-top: auto;
}

.pricing-card__cta-stack .pricing-card__button {
  margin-top: 0;
}

.pricing-card--featured .pricing-card__button,
.pricing-card--plus .pricing-card__button {
  color: var(--plus-navy);
  background: var(--plus-gold-gradient);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.pricing-card--featured .pricing-card__button:hover,
.pricing-card--plus .pricing-card__button:hover {
  filter: brightness(1.05);
}

.pricing-card__footer {
  margin-top: 12px;
  text-align: center;
  color: var(--text-muted);
  font-size: 10px;
  line-height: 15px;
  font-weight: 500;
}

.pricing-trust {
  min-height: 44px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 16px;
  font-weight: 500;
  text-align: center;
}

.pricing-trust__sep {
  opacity: 0.55;
}

.pricing-purchase-legal {
  margin: 16px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--text-muted, #64748b);
  font-size: 12px;
  line-height: 18px;
}

.pricing-purchase-legal a {
  color: var(--plus-navy, #0b1f3a);
  font-weight: 700;
  text-underline-offset: 2px;
}

.pricing-purchase-legal a:hover {
  color: var(--plus-gold-dark, #b8860b);
}

.pro-checkout-status {
  margin: 12px auto 0;
  max-width: 640px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 18px;
  min-height: 18px;
}

.pro-account-chip {
  margin: 14px auto 0;
  max-width: fit-content;
  padding: 8px 14px;
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card-soft);
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}

.pro-account-chip.is-visible {
  display: inline-flex;
}

.pro-account-chip strong {
  color: var(--text-strong);
  font-weight: 700;
}

/* Email prompt — only when account unknown */
.pro-email-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 19, 33, 0.55);
}

.pro-email-modal.is-open {
  display: flex;
}

.pro-email-modal__panel {
  width: min(420px, 100%);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
}

.pro-email-modal__panel h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
}

.pro-email-modal__panel p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 22px;
}

.pro-email-modal__panel input {
  width: 100%;
  height: 48px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--card-soft);
  color: var(--text-main);
  font: inherit;
  font-size: 15px;
}

.pro-email-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.pro-email-modal__actions .pro-button {
  flex: 1;
}

/* —— Workflow modules —— */
.pro-workflow {
  padding: 28px 0 40px;
}

.pro-workflow--plus {
  position: relative;
  padding: 76px 0 88px;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(244, 197, 66, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(8, 117, 245, 0.06), transparent 50%),
    linear-gradient(180deg, var(--ff-surface-raised, #f5f8fc) 0%, var(--ff-surface, #eef3f9) 48%, var(--ff-surface-raised, #f7f9fc) 100%);
  overflow: hidden;
}

.pro-workflow--plus::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 27, 54, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 27, 54, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 85%);
  pointer-events: none;
}

.pro-workflow--plus > .pro-container {
  position: relative;
  z-index: 1;
}

.pro-workflow__eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244, 197, 66, 0.35);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 14px rgba(8, 27, 54, 0.05);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}

.pro-workflow__eyebrow .plus-mark {
  font-size: 13px;
}

.pro-workflow--plus .pro-section-title {
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -1.2px;
}

.pro-workflow--plus .pro-section-copy {
  max-width: 560px;
  font-size: 17px;
  line-height: 26px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: 36px;
  position: relative;
}

.workflow-grid::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 132, 18, 0.35) 12%,
    rgba(184, 132, 18, 0.35) 88%,
    transparent
  );
  pointer-events: none;
  z-index: 0;
}

.workflow-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 460px;
  height: 100%;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(216, 227, 239, 0.95);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--ff-surface-raised, #fff) 0%, var(--ff-surface, #fbfdff) 100%);
  box-shadow:
    0 1px 2px rgba(8, 27, 54, 0.04),
    0 12px 28px rgba(8, 27, 54, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.workflow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--plus-gold-gradient);
  opacity: 0;
  transition: opacity 220ms ease;
}

.workflow-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 197, 66, 0.45);
  box-shadow:
    0 8px 16px rgba(8, 27, 54, 0.06),
    0 24px 48px rgba(8, 27, 54, 0.12);
}

.workflow-card:hover::before {
  opacity: 1;
}

.workflow-card--spotlight {
  border-color: rgba(244, 197, 66, 0.4);
  box-shadow:
    0 1px 2px rgba(8, 27, 54, 0.04),
    0 16px 36px rgba(8, 27, 54, 0.1),
    0 0 0 1px rgba(244, 197, 66, 0.12);
}

.workflow-card--spotlight::before {
  opacity: 1;
}

.workflow-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.workflow-card__step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--plus-navy);
  color: var(--plus-gold-bright);
  border: 1.5px solid rgba(244, 197, 66, 0.55);
  box-shadow: 0 6px 14px rgba(6, 23, 47, 0.18);
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.workflow-card__title {
  margin: 0;
  color: var(--text-strong);
  font-size: 17px;
  line-height: 22px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.workflow-card__desc {
  margin: 12px 0 14px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  min-height: 40px;
}

.workflow-card__panel {
  position: relative;
  flex: 1;
  padding: 12px;
  border: 1px solid rgba(216, 227, 239, 0.9);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--ff-surface-raised, #fff) 0%, var(--ff-surface, #f4f8fc) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.workflow-card__cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(184, 132, 18, 0.28);
  background: rgba(255, 247, 218, 0.45);
  color: var(--plus-navy);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.workflow-card__cta span {
  color: var(--plus-gold-dark);
  transition: transform 160ms ease;
}

.workflow-card__cta:hover {
  background: var(--plus-gold-soft);
  border-color: rgba(184, 132, 18, 0.5);
  transform: translateY(-1px);
}

.workflow-card__cta:hover span {
  transform: translateX(2px);
}

/* Module 1 — connect */
.wf-connect__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
}

.wf-connect__status b {
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
}

.wf-connect__status span {
  color: var(--text-muted);
  font-size: 11px;
}

.wf-connect__rows {
  display: grid;
  gap: 6px;
}

.wf-connect__row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 8px;
  font-size: 11px;
  line-height: 16px;
}

.wf-connect__row dt {
  margin: 0;
  color: var(--text-muted);
  font-weight: 600;
}

.wf-connect__row dd {
  margin: 0;
  color: var(--text-main);
  font-weight: 600;
}

.wf-connect__ok {
  margin-top: auto;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--success-soft);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* —— Heatmap color scale (ranks 1 best → 12 worst; scores high → low) —— */
.heat-cell,
.heat-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 18px;
  padding: 0 5px;
  border-radius: 4px;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.heat-pill {
  min-width: 28px;
  height: 18px;
  margin-left: auto;
}

.heat-elite {
  color: #0b6b3a;
  background: #c8f5d8;
}

.heat-good {
  color: #1a7a45;
  background: #e4f9ec;
}

.heat-mid {
  color: #9a6b00;
  background: #fff3c4;
}

.heat-weak {
  color: #b4233d;
  background: #ffe0e6;
}

@media (prefers-color-scheme: dark) {
  .pro-page:not([data-pro-theme="light"]) .heat-elite {
    color: #24d978;
    background: rgba(36, 217, 120, 0.22);
  }
  .pro-page:not([data-pro-theme="light"]) .heat-good {
    color: #7dffb3;
    background: rgba(36, 217, 120, 0.12);
  }
  .pro-page:not([data-pro-theme="light"]) .heat-mid {
    color: #ffd52a;
    background: rgba(255, 213, 42, 0.16);
  }
  .pro-page:not([data-pro-theme="light"]) .heat-weak {
    color: #ff7a90;
    background: rgba(255, 76, 106, 0.18);
  }
}

html[data-theme="dark"] .pro-page .heat-elite,
.pro-page[data-pro-theme="dark"] .heat-elite {
  color: #24d978;
  background: rgba(36, 217, 120, 0.22);
}
html[data-theme="dark"] .pro-page .heat-good,
.pro-page[data-pro-theme="dark"] .heat-good {
  color: #7dffb3;
  background: rgba(36, 217, 120, 0.12);
}
html[data-theme="dark"] .pro-page .heat-mid,
.pro-page[data-pro-theme="dark"] .heat-mid {
  color: #ffd52a;
  background: rgba(255, 213, 42, 0.16);
}
html[data-theme="dark"] .pro-page .heat-weak,
.pro-page[data-pro-theme="dark"] .heat-weak {
  color: #ff7a90;
  background: rgba(255, 76, 106, 0.18);
}

/* Module 2 — grades */
.wf-grades__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.wf-grades__overall {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(22, 184, 92, 0.1), rgba(22, 184, 92, 0.03));
}

.wf-grades__overall b {
  color: var(--success);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.wf-grades__overall span {
  color: var(--text-strong);
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.wf-grades__spark {
  color: var(--success);
  flex: 0 0 auto;
}

.wf-grades__meta {
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 2px;
}

.wf-grades__rows {
  display: grid;
  gap: 5px;
  margin-top: 8px;
}

.wf-grades__row {
  display: grid;
  grid-template-columns: 42px 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  font-size: 11px;
  line-height: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.wf-grades__letter {
  font-weight: 800;
}

.wf-grades__letter.heat-elite { color: #0b6b3a; }
.wf-grades__letter.heat-good { color: #1a7a45; }
.wf-grades__letter.heat-mid { color: #9a6b00; }
.wf-grades__letter.heat-weak { color: #b4233d; }

/* Module 3 — heatmap */
.wf-heat {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 3px;
  table-layout: fixed;
  font-size: 10px;
  line-height: 14px;
}

.wf-heat th,
.wf-heat td {
  padding: 2px 2px;
  text-align: center;
  font-weight: 500;
  color: var(--text-main);
  vertical-align: middle;
}

.wf-heat th {
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 9px;
  padding-bottom: 4px;
}

.wf-heat td:first-child,
.wf-heat th:first-child {
  text-align: left;
  font-weight: 700;
  width: 22%;
  padding-left: 4px;
}

.wf-heat tr.is-you td:first-child {
  color: var(--plus-navy);
  font-weight: 800;
}

.wf-heat tr.is-you td {
  background: linear-gradient(90deg, rgba(244, 197, 66, 0.16), rgba(244, 197, 66, 0.06));
}

.wf-heat tr.is-you td:first-child {
  border-radius: 6px 0 0 6px;
  box-shadow: inset 2px 0 0 var(--plus-gold);
}

.wf-heat tr.is-you td:last-child {
  border-radius: 0 6px 6px 0;
}

.wf-heat .heat-cell {
  width: 100%;
  min-width: 0;
  height: 20px;
  border-radius: 5px;
}

.wf-heat__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.wf-heat__legend .heat-cell {
  min-width: 28px;
  height: 16px;
  font-size: 9px;
  font-weight: 700;
}

.wf-heat__summary {
  margin-top: 8px;
  display: grid;
  gap: 4px;
  font-size: 10px;
  line-height: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.wf-heat__summary strong {
  color: var(--text-main);
  font-weight: 700;
}

/* Module 4 — actions */
.wf-actions {
  display: grid;
  gap: 8px;
}

.wf-actions__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  box-shadow: 0 1px 2px rgba(8, 27, 54, 0.03);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.workflow-card:hover .wf-actions__item {
  box-shadow: 0 2px 6px rgba(8, 27, 54, 0.06);
}

.wf-actions__item--green { border-color: rgba(22, 184, 92, 0.28); background: rgba(22, 184, 92, 0.06); }
.wf-actions__item--blue { border-color: rgba(6, 104, 246, 0.28); background: rgba(6, 104, 246, 0.06); }
.wf-actions__item--orange { border-color: rgba(255, 122, 33, 0.3); background: rgba(255, 122, 33, 0.07); }
.wf-actions__item--purple { border-color: rgba(117, 76, 255, 0.28); background: rgba(117, 76, 255, 0.07); }

.wf-actions__ico {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #ffffff;
}

.wf-actions__ico svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
  fill: none;
}

.wf-actions__ico--green { background: var(--success); }
.wf-actions__ico--blue { background: var(--primary); }
.wf-actions__ico--orange { background: var(--orange); }
.wf-actions__ico--purple { background: var(--purple); }

.wf-actions__item b {
  display: block;
  color: var(--text-strong);
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

.wf-actions__item span {
  color: var(--text-muted);
  font-size: 10px;
  line-height: 14px;
}

/* Module 5 — changes */
.wf-changes {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
  line-height: 16px;
}

.wf-changes th,
.wf-changes td {
  padding: 5px 0;
  text-align: right;
  font-weight: 500;
  vertical-align: middle;
}

.wf-changes th:first-child,
.wf-changes td:first-child {
  text-align: left;
  color: var(--text-muted);
  font-weight: 600;
}

.wf-changes th {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
}

.wf-changes td:last-child {
  white-space: nowrap;
}

.wf-delta {
  display: inline-block;
  margin-left: 2px;
  font-weight: 800;
  font-size: 11px;
}

.wf-delta.up {
  color: var(--success);
}

.wf-delta.flat {
  color: var(--text-muted);
}

.wf-changes__lists {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  line-height: 15px;
}

.wf-changes__lists b {
  display: block;
  margin-bottom: 2px;
  color: var(--text-strong);
  font-size: 11px;
}

.wf-changes__lists .done {
  color: var(--success);
}

.wf-changes__lists .open {
  color: var(--danger);
}

/* —— Free vs Pro —— */
.pro-compare {
  padding: 28px 0 36px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 16px;
  margin-top: 16px;
  width: 100%;
}

.comparison-panel,
.trust-panel {
  min-height: 270px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card-bg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table col.feature { width: 54%; }
.comparison-table col.free { width: 23%; }
.comparison-table col.pro { width: 23%; }

.comparison-table th,
.comparison-table td {
  padding: 0 16px;
  height: 24px;
  border-bottom: 1px solid var(--divider);
  font-size: 11px;
  line-height: 18px;
  font-weight: 500;
  color: var(--text-main);
  text-align: center;
  vertical-align: middle;
}

.comparison-table thead th {
  height: 30px;
  background: var(--card-soft);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  padding-left: 18px;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-check {
  color: var(--success);
  font-weight: 800;
  font-size: 15px;
}

.comparison-dash {
  color: var(--text-muted);
}

.comparison-limited {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 11px;
}

.trust-panel {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.trust-panel__logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.trust-panel__title {
  margin: 0;
  max-width: 330px;
  color: var(--text-strong);
  font-size: 20px;
  line-height: 26px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.trust-panel__title span {
  color: var(--primary);
}

.trust-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.trust-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
}

.trust-panel__list svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  margin-top: 1px;
  flex: 0 0 auto;
}

.pro-compare__footnote {
  margin: 14px 0 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
}

/* —— FAQ —— */
.pro-faq {
  padding: 24px 0 32px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 12px;
  margin: 22px auto 0;
  width: 100%;
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--card-bg);
  overflow: hidden;
}

.faq-item summary {
  min-height: 40px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  color: var(--text-main);
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform 160ms ease;
  margin-top: -4px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item__body {
  padding: 0 14px 14px;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

/* —— Final CTA —— */
.pro-final {
  padding: 16px 0 48px;
}

.pro-final-cta {
  min-height: 140px;
  padding: 36px 46px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 250px;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(
      90deg,
      rgba(6, 104, 246, 0.025),
      rgba(6, 104, 246, 0.075)
    ),
    var(--card-bg);
  box-shadow: var(--shadow-card);
}

.pro-final-cta__logo {
  width: 72px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

.pro-final-cta__title {
  margin: 0;
  color: var(--text-strong);
  font-size: 26px;
  line-height: 31px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.pro-final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pro-final-cta__actions .pro-button {
  width: 244px;
}

.pro-final-cta__caption {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 15px;
  font-weight: 500;
}

.pro-legal {
  margin: 18px auto 0;
  max-width: 920px;
  text-align: center;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 16px;
}

/* Hide fantasy shell leftovers when this page is nested */
body.pro-marketing .hq-sidebar,
body.pro-marketing .hq-sidebar-toggle,
body.pro-marketing .fantasy-hero-shell,
body.pro-marketing .fantasy-panel,
body.pro-marketing .pfn-tool-panel {
  display: none !important;
}

body.pro-marketing .pfn-main {
  padding: 0;
  max-width: none;
}

/* Keep FantasyHQ global header usable: dark navy bar + visible logo/nav.
   Do not force a white header — site nav text is white by default. */
body.pro-marketing .pfn-header {
  background: #010e1f;
  color: #fff;
  border-bottom: none;
  box-shadow: none;
}

body.pro-marketing .pfn-header.is-scrolled,
body.pro-marketing .pfn-header.is-scrolled .pfn-header-inner {
  background: #010e1f;
  box-shadow: none;
  border-bottom: none;
}

body.pro-marketing .ff-brand-icon--premium,
body.pro-marketing .ff-brand-icon--header.ff-brand-icon--premium {
  width: 44px;
  height: auto;
  max-height: 48px;
  border-radius: 0;
  object-fit: contain;
}

body.pro-marketing .ff-brand-wordmark-title .ff-brand-wordmark-hq {
  color: #f4c542;
}

body.pro-marketing .ff-brand-wordmark-title .ff-brand-wordmark-hq::after {
  content: "+";
  color: #f4c542;
}

/* Compact the wordmark so primary nav fits at desktop widths */
body.pro-marketing .ff-brand-wordmark-tag {
  display: none;
}

body.pro-marketing .pfn-header-actions {
  display: none !important;
}

body.pro-marketing .pfn-primary-nav {
  gap: 1rem;
  overflow: hidden;
}

/* —— Responsive —— */
@media (max-width: 1200px) {
  .pro-container,
  .pro-container--narrow,
  .pro-hero__inner {
    width: min(1340px, calc(100% - 48px));
  }

  .pro-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    column-gap: 40px;
  }

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

  .pricing-card--featured {
    transform: none;
  }

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

  .workflow-grid::before {
    display: none;
  }

  .workflow-card:last-child {
    grid-column: 1 / -1;
  }

  .pro-workflow--plus .pro-section-title {
    font-size: 32px;
    line-height: 40px;
  }

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

@media (max-width: 1100px) {
  .pro-hero--plus .pro-hero__inner {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    column-gap: 28px;
  }
}

@media (max-width: 900px) {
  .pro-hero {
    min-height: 0;
    padding: 36px 0 40px;
  }

  .pro-hero__inner,
  .pro-hero--plus .pro-hero__inner {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .pro-hero__copy-col,
  .pro-hero__copy {
    max-width: none;
  }

  .pro-hero__visual {
    order: 2;
    max-width: none;
  }

  .pro-hero__visual-frame {
    border-radius: 14px;
  }

  .league-preview {
    max-width: none;
  }

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

  .pro-final-cta {
    grid-template-columns: 64px 1fr;
    padding: 32px 24px;
  }

  .pro-final-cta__actions {
    grid-column: 1 / -1;
    align-items: stretch;
  }

  .pro-final-cta__actions .pro-button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .pro-container,
  .pro-container--narrow,
  .pro-hero__inner {
    width: calc(100% - 32px);
  }

  .pro-hero--plus {
    padding: 32px 0 36px;
  }

  .pro-hero__title {
    font-size: 42px;
    line-height: 44px;
    letter-spacing: -1.6px;
  }

  .pro-hero--plus .pro-hero__title {
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -1.4px;
  }

  .pro-hero--plus .pro-hero__copy {
    font-size: 17px;
    line-height: 26px;
  }

  .plus-mark--title1 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }

  .pro-hero__actions {
    flex-direction: column;
  }

  .pro-hero__actions .pro-button--primary,
  .pro-hero__actions .pro-button--secondary,
  .pro-hero--plus .pro-hero__actions .pro-button {
    width: 100%;
    min-width: 0;
  }

  .pro-hero__trust {
    gap: 16px;
  }

  .pro-hero__visual-frame {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 197, 66, 0.45) transparent;
  }

  .pro-hero__visual-img {
    width: auto;
    min-width: 640px;
    max-width: none;
    height: auto;
  }

  .pro-hero__visual-hint {
    display: inline;
  }

  .pro-hero__visual-caption {
    font-size: 11px;
  }

  .league-preview__metrics {
    grid-template-columns: 1fr;
  }

  .league-preview__metric {
    min-height: 0;
  }

  .pricing-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card:last-child {
    grid-column: auto;
  }

  .pricing-card {
    min-height: 0;
  }

  .pro-final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pro-final-cta__logo {
    margin-inline: auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0 10px;
    font-size: 10px;
  }
}

/* —— FantasyHQ+ billing toggle & tier cards —— */
.billing-toggle-wrap {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.billing-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-soft);
  gap: 4px;
}

.billing-toggle__btn {
  min-height: 48px;
  padding: 8px 20px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.billing-toggle__btn strong {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.billing-toggle__btn em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  color: var(--plus-gold-dark);
}

.billing-toggle__btn.is-active {
  background: var(--plus-navy);
  color: #fff;
  box-shadow: 0 6px 16px rgba(6, 23, 47, 0.18);
}

.billing-toggle__btn.is-active em {
  color: var(--plus-gold-bright);
}

.billing-toggle__hint {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}

.pricing-card--tier {
  min-height: 520px;
}

.pricing-card__product {
  margin: 0 0 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.pricing-card--tier .pricing-card__name {
  color: var(--text-strong);
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -0.8px;
}

.pricing-card__leagues {
  margin: 14px 0 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
}

.pricing-card__per {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 2px;
}

.pricing-card__price,
.pricing-card__savings,
.pricing-card__cadence {
  font-variant-numeric: tabular-nums;
}

.pricing-card__savings {
  margin: 6px 0 0;
  color: var(--plus-gold-dark);
  font-size: 13px;
  line-height: 19px;
  font-weight: 700;
  text-align: center;
}

.pricing-card__savings.is-empty {
  visibility: hidden;
}

.pricing-card__cta-stack {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.pricing-card__cta-stack .pricing-card__button {
  width: 100%;
}

.pricing-card__waitlist-note {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.pricing-upgrade-alt {
  margin: 22px 0 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.pricing-upgrade-alt a {
  color: var(--plus-navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-upgrade-alt a:hover {
  color: var(--plus-gold-dark);
}

.pricing-card__trial {
  display: none;
}

.pricing-card__trial:hover {
  background: var(--primary-light);
}

.pricing-card__badge--gold {
  background: var(--plus-gold-gradient);
  color: var(--plus-navy);
  min-width: 140px;
}

.pricing-card--plus {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 197, 66, 0.14), transparent 42%),
    var(--plus-navy);
  border: 2px solid var(--plus-gold);
  box-shadow:
    0 20px 50px rgba(6, 23, 47, 0.22),
    0 0 28px rgba(244, 197, 66, 0.12);
  transform: translateY(-10px);
}

.pricing-card--plus .pricing-card__name,
.pricing-card--plus .pricing-card__price,
.pricing-card--plus .pricing-card__description,
.pricing-card--plus .pricing-card__cadence,
.pricing-card--plus .pricing-card__leagues,
.pricing-card--plus .pricing-card__features li {
  color: #fff;
}

.pricing-card--plus .pricing-card__description,
.pricing-card--plus .pricing-card__cadence,
.pricing-card--plus .pricing-card__leagues {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card--plus .pricing-card__savings {
  color: var(--plus-gold-bright);
}

.pricing-card--plus .pricing-card__trial {
  color: var(--plus-gold-bright);
}

.pricing-card--plus .pricing-card__trial:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pricing-card--plus .pricing-card__product .plus-mark {
  color: #fff;
}

.pricing-card--plus .pricing-card__features svg {
  color: var(--plus-gold);
}

.pricing-card--plus .pro-button--gold {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.weekly-offer {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: var(--card-soft);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.weekly-offer h3 {
  margin: 0;
  color: var(--text-strong);
  font-size: 16px;
  font-weight: 800;
}

.weekly-offer p {
  margin: 6px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 20px;
}

.weekly-offer ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.weekly-offer li {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
}

.weekly-offer__action {
  text-align: center;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.weekly-offer__price {
  margin: 0;
  color: var(--text-strong);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
}

.plus-compare {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
  overflow: visible;
  box-shadow: var(--shadow-card);
}

.plus-compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.plus-compare__col--feature { width: 32%; }
.plus-compare__col--free { width: 14%; }
.plus-compare__col--plan { width: 18%; }

.plus-compare__table th,
.plus-compare__table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--divider);
  font-size: 13px;
  line-height: 20px;
  text-align: center;
  color: var(--text-main);
  vertical-align: middle;
}

.plus-compare__table .plus-compare__corner,
.plus-compare__table th[scope="row"] {
  text-align: left;
  padding-left: 24px;
  padding-right: 20px;
  font-weight: 600;
  color: var(--text-strong);
}

.plus-compare__corner-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.plus-compare__table thead th {
  position: sticky;
  top: 60px;
  z-index: 3;
  padding: 18px 14px 16px;
  background: #f4f7fb;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-muted);
  box-shadow: 0 1px 0 rgba(8, 27, 54, 0.04);
}

.plus-compare__plan-name {
  display: block;
  color: var(--text-strong);
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.plus-compare__head-price {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}

.plus-compare__head-price--muted {
  font-weight: 600;
  color: var(--text-muted);
}

.plus-compare__popular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--plus-gold-gradient);
  color: var(--plus-navy);
  font-size: 10px;
  line-height: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plus-compare__table thead th.is-featured {
  background:
    linear-gradient(180deg, #0a1f3d 0%, #06172f 100%);
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--plus-gold);
  z-index: 4;
}

.plus-compare__table thead th.is-featured .plus-compare__plan-name {
  color: #fff;
}

.plus-compare__table thead th.is-featured .plus-compare__head-price {
  color: var(--plus-gold-bright);
}

.plus-compare__table td.is-featured,
.plus-compare__table tfoot td.is-featured {
  background: rgba(244, 197, 66, 0.07);
  box-shadow: inset 1px 0 0 rgba(244, 197, 66, 0.18), inset -1px 0 0 rgba(244, 197, 66, 0.18);
}

.plus-compare__group th {
  background: linear-gradient(90deg, var(--ff-surface, #eef3f9) 0%, var(--ff-surface-raised, #f7f9fc) 100%);
  color: var(--plus-navy);
  text-align: left !important;
  font-size: 11px;
  line-height: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--plus-gold);
}

.plus-compare__table thead th:first-child {
  border-top-left-radius: 15px;
}

.plus-compare__table thead th:last-child {
  border-top-right-radius: 15px;
}

.plus-compare__checkout-row td:first-child {
  border-bottom-left-radius: 15px;
}

.plus-compare__checkout-row td:last-child {
  border-bottom-right-radius: 15px;
}

.plus-compare__row:hover td,
.plus-compare__row:hover th {
  background: rgba(8, 117, 245, 0.03);
}

.plus-compare__row:hover td.is-featured {
  background: rgba(244, 197, 66, 0.12);
}

.plus-compare__table .comparison-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(22, 184, 92, 0.12);
  color: #0f9f4d;
}

.plus-compare__table .comparison-check svg {
  width: 13px;
  height: 13px;
}

.plus-compare__table td.is-featured .comparison-check {
  background: rgba(244, 197, 66, 0.2);
  color: var(--plus-gold-dark);
}

.plus-compare__table .comparison-dash {
  color: #a8b3c4;
  font-weight: 500;
  font-size: 15px;
}

.plus-compare__table .comparison-limited {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--card-soft);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

.plus-compare__table td.is-featured .comparison-limited {
  background: rgba(244, 197, 66, 0.16);
  color: var(--plus-navy);
}

.plus-compare__checkout-row td {
  padding: 18px 14px 20px;
  border-bottom: none;
  background: #f4f7fb;
  vertical-align: middle;
}

.plus-compare__checkout-spacer {
  text-align: left !important;
  padding-left: 24px !important;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}

.plus-compare__checkout-btn {
  width: 100%;
  min-height: 44px;
  height: 44px;
  padding-inline: 10px;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

.plus-compare__ctas {
  display: none;
}

.platform-grid {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.platform-card {
  min-height: 88px;
  padding: 16px 14px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: var(--ff-surface-raised, #fff);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 2px rgba(8, 27, 54, 0.03);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.platform-card__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.platform-card__logo {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  object-fit: contain;
}

.platform-card__name {
  color: var(--text-strong);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.platform-card__status {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.platform-card--available {
  border-color: rgba(22, 184, 92, 0.4);
  background: rgba(22, 184, 92, 0.06);
}

.platform-card--available .platform-card__status {
  color: var(--success);
  font-weight: 700;
}

.platform-card--coming,
.platform-card--planned {
  pointer-events: none;
  cursor: default;
  user-select: none;
}

.platform-card--coming:hover,
.platform-card--planned:hover {
  transform: none;
  box-shadow: none;
}

.platform-card--coming .platform-card__logo,
.platform-card--planned .platform-card__logo {
  filter: none;
  opacity: 1;
}

.platform-card--coming .platform-card__name,
.platform-card--planned .platform-card__name,
.platform-card--coming .platform-card__status,
.platform-card--planned .platform-card__status {
  color: rgba(15, 23, 42, 0.4);
}

.section-cta-row {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

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

.proof-card {
  margin: 0;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
}

.proof-card figcaption {
  color: var(--plus-gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-card blockquote {
  margin: 10px 0 0;
  color: var(--text-strong);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.pro-final-cta--plus {
  border-color: rgba(244, 197, 66, 0.35);
  background:
    linear-gradient(90deg, rgba(244, 197, 66, 0.08), rgba(6, 104, 246, 0.06)),
    var(--card-bg);
}

@media (max-width: 1200px) {
  .pricing-grid--tiers {
    grid-template-columns: 1fr;
  }

  .pricing-card--plus {
    transform: none;
  }

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

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

  .plus-compare {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }

  .plus-compare__table {
    min-width: 760px;
  }

  .plus-compare__checkout-btn {
    font-size: 11px;
    padding-inline: 6px;
  }
}

@media (max-width: 720px) {
  .billing-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .billing-toggle__btn {
    padding: 8px 6px;
    font-size: 12px;
  }

  .weekly-offer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .weekly-offer ul {
    justify-content: center;
  }
}

/* —— Polish pass: motion, sticky bar, denser premium feel —— */
.pro-hero {
  position: relative;
}

.pro-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 197, 66, 0.35), transparent);
  pointer-events: none;
}

.pro-hero--plus::after {
  display: none;
}

.league-preview {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.league-preview:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 10px rgba(6, 33, 71, 0.05),
    0 18px 44px rgba(19, 54, 99, 0.12);
}

.league-preview__action {
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.league-preview__action:hover {
  background: var(--primary-light);
  border-color: rgba(6, 104, 246, 0.25);
  transform: translateX(2px);
}

.billing-toggle__btn {
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pricing-card--tier .pricing-card__features svg {
  color: var(--plus-gold-dark);
}

.pricing-card--plus {
  z-index: 1;
}

.pricing-card--plus:hover {
  transform: translateY(-12px);
}

.pricing-card__price-block {
  transition: opacity 160ms ease;
}

.weekly-offer {
  position: relative;
  overflow: hidden;
}

.weekly-offer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--plus-gold-gradient);
}

.platform-card:hover {
  border-color: rgba(8, 27, 54, 0.18);
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.08);
  transform: translateY(-1px);
}

.platform-card--available:hover {
  border-color: rgba(22, 184, 92, 0.55);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.proof-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.proof-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 10px rgba(6, 33, 71, 0.04),
    0 16px 36px rgba(19, 54, 99, 0.1);
}

.proof-card blockquote::before {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--plus-gold-gradient);
}

.faq-item {
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item[open] {
  border-color: rgba(244, 197, 66, 0.45);
  box-shadow: 0 8px 24px rgba(6, 23, 47, 0.06);
}

.faq-item__body {
  animation: plusFade 180ms ease;
}

@keyframes plusFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.pro-final-cta--plus {
  position: relative;
  overflow: hidden;
}

.pro-final-cta--plus::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--plus-gold-gradient);
}

/* Sticky compact pricing bar while comparing */
.plus-sticky {
  position: sticky;
  top: 60px;
  z-index: 40;
  display: none;
  padding: 10px 0;
  background: var(--ff-surface-raised, rgba(255, 255, 255, 0.92));
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.plus-sticky.is-visible {
  display: block;
}

.plus-sticky__inner {
  width: min(1340px, calc(100% - 64px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.plus-sticky__plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 6px 10px 6px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card-bg);
}

.plus-sticky__plan--featured {
  border-color: var(--plus-gold);
  background:
    radial-gradient(circle at 0% 50%, rgba(244, 197, 66, 0.12), transparent 55%),
    var(--plus-navy);
  color: #fff;
}

.plus-sticky__meta {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.plus-sticky__meta strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.plus-sticky__meta span {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.75;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plus-sticky__plan .pro-button {
  height: 36px;
  min-height: 36px;
  padding-inline: 12px;
  font-size: 12px;
  flex: 0 0 auto;
  width: auto;
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card,
  .league-preview,
  .league-preview__action,
  .platform-card,
  .proof-card,
  .workflow-card,
  .workflow-card__cta,
  .billing-toggle__btn,
  .faq-item__body {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .plus-sticky {
    display: none !important;
  }

  .plus-compare__table thead th {
    position: static;
  }

  .plus-compare__table .plus-compare__corner,
  .plus-compare__table th[scope="row"],
  .plus-compare__group th,
  .plus-compare__checkout-spacer {
    padding-left: 16px;
  }

  .plus-compare__checkout-row td {
    padding: 14px 10px 16px;
  }

  .pro-section {
    padding: 48px 0 56px;
  }
}

/* —— Conversion polish: onboard, pain, proof, platforms, nav —— */
body.pro-marketing .pfn-primary-nav,
body.pro-marketing .pfn-nav-toggle {
  display: none !important;
}

body.pro-marketing .pfn-header-inner {
  justify-content: space-between;
}

.pro-onboard {
  padding: 8px 0 40px;
  border-bottom: none;
  color: #ffffff;
  background: transparent;
}

.pro-onboard__title {
  margin: 0 0 22px;
  text-align: center;
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.pro-onboard__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: none;
}

.pro-onboard__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 16px 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 16px;
}

.pro-onboard__step strong {
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
}

.pro-onboard__num {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--plus-navy);
  border: 1px solid rgba(244, 197, 66, 0.55);
  color: var(--plus-gold-bright);
  font-size: 13px;
  font-weight: 800;
}

@media (min-width: 901px) {
  .pro-onboard__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -8px;
    width: 16px;
    height: 1px;
    background: linear-gradient(90deg, rgba(244, 197, 66, 0.55), transparent);
  }
}

.pro-pain {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(244, 197, 66, 0.08), transparent 55%),
    #f7f9fc;
  text-align: center;
}

.pro-pain__header {
  max-width: 640px;
  margin: 0 auto 28px;
}

.pro-pain__header .pro-section-title,
.pro-pain__header .pro-section-copy {
  margin-inline: auto;
}

.pro-pain__board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(440px, 100%);
  margin: 0 auto;
  transition:
    width 700ms cubic-bezier(0.22, 1, 0.36, 1),
    gap 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pro-pain.is-split .pro-pain__board {
  width: min(980px, 100%);
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pro-pain__col {
  min-width: 0;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pro-pain.is-split .pro-pain__col--bad {
  transform: translateX(-12px);
}

.pro-pain.is-split .pro-pain__col--good {
  transform: translateX(12px);
}

.pro-pain__col-title {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-strong);
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pro-pain__col-title .pro-pain__float-ico {
  width: 24px;
  height: 24px;
  font-size: 12px;
}

.pro-pain__cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pro-pain__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--ff-surface-raised, #fff);
  text-align: left;
  box-shadow:
    0 4px 12px rgba(8, 27, 54, 0.05),
    0 12px 28px rgba(8, 27, 54, 0.06);
  opacity: 0;
  transform: translateY(10px);
  animation: proPainCardIn 480ms ease forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}

.pro-pain__card--bad {
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.pro-pain__card--good {
  border: 1px solid rgba(22, 184, 92, 0.22);
}

.pro-pain.is-split .pro-pain__card--bad,
.pro-pain.is-split .pro-pain__card--good {
  opacity: 1;
}

.pro-pain.is-split .pro-pain__card--bad {
  animation: proPainFloatLeft 5.2s ease-in-out calc(var(--i, 0) * 90ms) infinite;
}

.pro-pain.is-split .pro-pain__card--good {
  animation: proPainFloatRight 5.2s ease-in-out calc(var(--i, 0) * 90ms) infinite;
}

.pro-pain__float-ico {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.pro-pain__float-ico--bad {
  color: #e11d48;
  background: rgba(244, 63, 94, 0.12);
}

.pro-pain__float-ico--good {
  color: #0f9f4d;
  background: rgba(22, 184, 92, 0.14);
}

.pro-pain__float-title {
  margin: 0;
  color: var(--text-strong);
  font-size: 14px;
  line-height: 18px;
  font-weight: 800;
}

.pro-pain__float-sub {
  margin: 2px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.pro-pain__close {
  max-width: 560px;
  margin: 28px auto 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 26px;
}

.pro-pain__close em {
  font-style: normal;
  font-weight: 800;
  color: var(--text-strong);
}

@keyframes proPainCardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes proPainFloatLeft {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-6px) translateY(-3px);
  }
  50% {
    transform: translateX(-10px) translateY(0);
  }
  75% {
    transform: translateX(-6px) translateY(3px);
  }
}

@keyframes proPainFloatRight {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(6px) translateY(-3px);
  }
  50% {
    transform: translateX(10px) translateY(0);
  }
  75% {
    transform: translateX(6px) translateY(3px);
  }
}

@media (max-width: 820px) {
  .pro-pain.is-split .pro-pain__board {
    width: min(440px, 100%);
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pro-pain.is-split .pro-pain__col--bad,
  .pro-pain.is-split .pro-pain__col--good {
    transform: none;
  }

  .pro-pain.is-split .pro-pain__card--bad,
  .pro-pain.is-split .pro-pain__card--good {
    animation: none;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pro-pain__board,
  .pro-pain__col,
  .pro-pain__card {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .pro-pain.is-split .pro-pain__board {
    width: min(980px, 100%);
    grid-template-columns: 1fr 1fr;
  }
}

.proof-stats {
  margin: 28px 0 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-stats__item {
  position: relative;
  padding: 20px 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(244, 197, 66, 0.28);
  background: linear-gradient(180deg, var(--ff-surface-raised, #fff) 0%, #fffaf0 100%);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.proof-stats__item strong {
  display: block;
  color: var(--plus-navy);
  font-size: 28px;
  line-height: 34px;
  font-weight: 800;
  letter-spacing: -0.8px;
  font-variant-numeric: tabular-nums;
}

.proof-stats__item span {
  display: block;
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.plus-compare__row.is-highlight th,
.plus-compare__row.is-highlight td {
  background: rgba(244, 197, 66, 0.12) !important;
}

.plus-compare__row.is-highlight td.is-featured {
  background: rgba(244, 197, 66, 0.18) !important;
}

.plus-compare__fire {
  display: inline-block;
  margin-right: 6px;
  color: var(--plus-gold-dark);
  font-size: 12px;
}

.platform-card--available .platform-card__status::before {
  content: "✓ ";
  font-weight: 800;
}

.platform-card--nfl .platform-card__name {
  white-space: normal;
  text-align: left;
  max-width: 7.5ch;
}

.faq-grid {
  gap: 14px;
  margin-top: 28px;
  max-width: 860px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item summary {
  padding: 16px 18px;
  font-size: 15px;
  line-height: 22px;
}

.faq-item__body {
  padding: 0 18px 18px;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 900px) {
  .pro-onboard__steps,
  .proof-stats {
    grid-template-columns: 1fr 1fr;
  }

  .pro-hero--plus .pro-hero__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .pro-onboard__steps,
  .proof-stats {
    grid-template-columns: 1fr;
  }
}

/* —— Paywall conversion footer —— */
.pro-paywall-footer {
  margin: 0;
  padding: 48px 20px 28px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244, 197, 66, 0.1), transparent 55%),
    #010e1f;
  color: #e8eef8;
  border-top: 1px solid rgba(244, 197, 66, 0.18);
}

.pro-paywall-footer__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pro-paywall-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pro-paywall-footer__logo {
  display: block;
  width: 72px;
  height: auto;
  border-radius: 0;
}

.pro-paywall-footer__wordmark {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #f4f7fc;
}

.pro-paywall-footer__hq {
  color: #f4c542;
}

.pro-paywall-footer__copy {
  margin-top: 22px;
}

.pro-paywall-footer__headline {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(22px, 3.2vw, 28px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #fff;
}

.pro-paywall-footer__sub {
  margin: 12px auto 0;
  max-width: 520px;
  color: rgba(232, 238, 248, 0.78);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.pro-paywall-footer__bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 18px;
}

.pro-paywall-footer__bottom p {
  margin: 0;
  color: rgba(232, 238, 248, 0.45);
  font-size: 12px;
}

.pro-paywall-footer__legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pro-paywall-footer__legal a {
  color: rgba(232, 238, 248, 0.55);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.pro-paywall-footer__legal a:hover {
  color: #f4c542;
}

body.pro-marketing .site-footer {
  display: none;
}
