:root {
  --gold: #efc648;
  --gold-strong: #f5b800;
  --green: #20b86a;
  --purple: #8b5cf6;
  --orange: #ff8a1f;
  --blue: #2979ff;
  --background: #fffaf0;
  --surface: #fff;
  --surface-soft: #fffaf0;
  --surface-strong: #f7e9bd;
  --heading: #11182d;
  --text: #252536;
  --muted: #6e7180;
  --border: rgba(17, 24, 39, 0.1);
  --border-gold: rgba(239, 198, 72, 0.4);
  --shadow: 0 24px 70px rgba(28, 32, 44, 0.1);
  --page-width: 1180px;
  --font: Inter, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(255, 205, 62, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 94% 28%,
      rgba(255, 169, 92, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 48% 72%,
      rgba(255, 230, 145, 0.2),
      transparent 36%
    ),
    linear-gradient(180deg, #fffdf7 0%, #fff7e7 48%, #fffdf8 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.5;
}
img,
svg {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button {
  color: inherit;
}
.site-shell {
  width: min(var(--page-width), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  min-height: 96px;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.pluginpulse-brand {
  display: flex;
  align-items: center;
  justify-self: start;
}
.pluginpulse-brand-svg {
  width: clamp(240px, 22vw, 290px);
  height: auto;
  overflow: visible;
}
.main-nav {
  position: static;
  transform: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.header-actions {
  margin-left: 0;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-login-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}
.header-login-link:hover {
  color: #a66f00;
}
.primary-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffd34e, var(--gold-strong));
  color: #111;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 15px 35px rgba(239, 198, 72, 0.22);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  animation: header-button-glow 6.5s ease-in-out infinite;
}
.primary-button::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: -60%;
  left: -55%;
  width: 34%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  transform: translateX(0) rotate(18deg);
  will-change: transform, opacity;
  animation: header-button-shimmer 7.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 19px 42px rgba(239, 198, 72, 0.34);
}
.primary-button:focus-visible {
  outline: 3px solid rgba(41, 121, 255, 0.35);
  outline-offset: 4px;
}

/* Hero */
.pp-hero {
  padding: 34px 0 18px;
}
.pp-hero-inner {
  width: min(var(--page-width), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(620px, 0.9fr) minmax(720px, 1.1fr);
  gap: clamp(42px, 3.5vw, 58px);
  align-items: start;
}
.pp-hero-copy {
  min-width: 0;
  padding-top: 28px;
}
.pp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid #000;
  border-radius: 999px;
  color: #000;
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pp-eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-strong);
}
.pp-hero-copy h1 {
  max-width: 720px;
  margin: 34px 0 22px;
  color: var(--heading);
  font-size: clamp(54px, 4.7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
.pp-hero-copy h1 span {
  color: var(--gold-strong);
}
.pp-hero-intro {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.6;
}
.pp-search {
  min-height: 76px;
  margin-top: 32px;
  padding: 7px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-gold);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.pp-search svg {
  width: 22px;
  height: 22px;
  margin-left: 12px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 2;
  stroke-linecap: round;
}
.pp-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--heading);
}
.pp-search button {
  min-height: 50px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd75a, var(--gold-strong));
  color: #071227;
  font-weight: 850;
  cursor: pointer;
}
.pp-examples {
  margin-top: 17px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}
.pp-examples button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}
.pp-analysis-message {
  max-width: 650px;
  margin-top: 18px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(32, 184, 106, 0.25);
  border-radius: 17px;
  background: rgba(32, 184, 106, 0.07);
  color: #13834a;
}
.pp-analysis-check {
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.pp-analysis-message div {
  display: grid;
  gap: 2px;
}
.pp-analysis-message strong,
.pp-analysis-message span {
  font-size: 13px;
}
.pp-benefits {
  max-width: 680px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pp-benefit {
  padding: 18px 10px;
  display: grid;
  justify-items: center;
  text-align: center;
}
.pp-benefit + .pp-benefit {
  border-left: 1px solid var(--border);
}
.pp-benefit-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 9px;
  display: grid;
  place-items: center;
}
.pp-benefit-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pp-wordpress-small {
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
}
.pp-benefit strong {
  color: var(--heading);
  font-size: 13px;
}
.pp-benefit > span:last-child {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

/* Hero result cards */
.pp-hero-results {
  min-width: 0;
  display: grid;
  gap: 14px;
}
.pp-preview-card {
  padding: 20px 22px 21px;
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}
.pp-preview-top {
  min-height: 90px;
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.pp-preview-top .analysis-feedback {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 760px;
  margin-top: 0;
}
.pp-preview-top .pp-score-ring {
  margin-left: auto;
}
.pp-analysis-complete {
  min-height: 44px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(32, 184, 106, 0.2);
  border-radius: 14px;
  background: rgba(32, 184, 106, 0.08);
  color: #13834a;
}
.pp-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}
.pp-analysis-complete div {
  display: grid;
}
.pp-analysis-complete strong {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pp-analysis-complete span {
  font-size: 10px;
}
.pp-score-ring {
  --score: 71;
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  padding: 9px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--gold-strong) calc(var(--score) * 1%),
    #eceef2 0
  );
}
.pp-score-ring::before {
  content: "";
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
}
.pp-score-ring div {
  position: relative;
  grid-area: 1/1;
  display: grid;
  justify-items: center;
}
.pp-score-ring strong {
  color: var(--heading);
  font-size: 26px;
  line-height: 1;
}
.pp-score-ring span {
  margin-top: 6px;
  color: #13834a;
  font-size: 10px;
  font-weight: 800;
}
.pp-plugin-title {
  margin-top: -34px;
  padding-right: 112px;
}
.pp-plugin-title h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(28px, 2.2vw, 38px);
  letter-spacing: -0.04em;
}
.pp-plugin-title > span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
}
.pp-preview-stats {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pp-preview-stats > div {
  min-height: 68px;
  padding: 13px 16px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface-soft);
}
.pp-preview-stats strong {
  color: var(--heading);
  font-size: 17px;
}
.pp-preview-stats span {
  color: var(--muted);
  font-size: 10px;
}
.pp-opportunities {
  margin-top: 13px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface-soft);
}
.pp-opportunities-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.pp-opportunities-header > div {
  display: grid;
  gap: 5px;
}
.pp-opportunities-header span {
  color: var(--gold-strong);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pp-opportunities-header strong {
  color: var(--heading);
  font-size: 15px;
}
.pp-opportunities-header small {
  color: var(--muted);
  font-size: 10px;
}
.pp-opportunities-explainer {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.pp-opportunity-list {
  margin-top: 11px;
  display: grid;
  gap: 7px;
}
.pp-opportunity {
  min-height: 38px;
  padding: 5px 12px 5px 7px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.pp-opportunity > span:nth-child(2) {
  color: var(--heading);
  font-size: 12px;
  font-weight: 600;
}
.pp-opportunity > strong {
  color: #13834a;
  font-size: 12px;
}
.pp-opportunity-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-weight: 900;
}
.pp-opportunity-icon.purple {
  color: #6941c6;
  background: #f2edff;
}
.pp-opportunity-icon.orange {
  color: #f97316;
  background: #fff1e7;
}
.pp-opportunity-icon.green {
  color: #079447;
  background: #e9f9f0;
}

/* Unlock card */
.pp-unlock-card {
  position: relative;
  min-height: 350px;
  padding: 25px 28px 20px;
  overflow: hidden;
  border: 1px solid rgba(239, 198, 72, 0.7);
  border-radius: 29px;
  background:
    radial-gradient(
      circle at 80% 24%,
      rgba(239, 198, 72, 0.16),
      transparent 30%
    ),
    linear-gradient(145deg, #041426, #03101e);
  color: #fff;
  box-shadow: 0 24px 55px rgba(3, 16, 30, 0.24);
}
.pp-unlock-content {
  position: relative;
  z-index: 2;
}
.pp-unlock-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 12px;
  border: 1px solid rgba(239, 198, 72, 0.7);
  border-radius: 999px;
  background: rgba(239, 198, 72, 0.08);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}
.pp-unlock-card h2 {
  max-width: 520px;
  margin: 13px 0 8px;
  font-size: clamp(26px, 2.2vw, 35px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.pp-unlock-card h2 span {
  color: var(--gold);
}
.pp-unlock-card p {
  max-width: 540px;
  margin: 0;
  color: #d0d5dd;
  font-size: 12px;
  line-height: 1.6;
}
.pp-unlock-tags {
  max-width: 790px;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.pp-unlock-tags span {
  min-height: 30px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(239, 198, 72, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 9px;
  font-weight: 700;
}
.pp-download-button {
  position: relative;
  z-index: 3;
  min-height: 74px;
  margin-top: 17px;
  padding: 9px 14px 9px 17px;
  display: grid;
  grid-template-columns: 49px 1fr 45px;
  align-items: center;
  gap: 15px;
  border-radius: 16px;
  background: linear-gradient(100deg, #ffe36d, #ffbe00 55%, #ffb000);
  color: #071227;
}
.pp-wordpress-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid #071227;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}
.pp-download-copy {
  display: grid;
  gap: 4px;
}
.pp-download-copy strong {
  font-size: 15px;
}
.pp-download-copy small {
  font-size: 11px;
  opacity: 0.72;
}
.pp-download-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #071227;
  color: #fff;
  font-size: 22px;
}
.pp-unlock-footer {
  margin-top: 13px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px 22px;
  color: #d0d5dd;
  font-size: 9px;
}
.pp-unlock-visual {
  position: absolute;
  z-index: 1;
  width: 300px;
  height: 225px;
  right: 18px;
  top: 8px;
  pointer-events: none;
}
.pp-wordpress-orbit {
  position: absolute;
  top: 12px;
  right: 50px;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #ffe17a, #ffb800 60%, #7f5500);
  box-shadow: 0 0 35px rgba(255, 184, 0, 0.45);
}
.pp-wordpress-orbit span {
  color: #071227;
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 700;
}
.pp-mini-report {
  position: absolute;
  right: 22px;
  bottom: 4px;
  width: 230px;
  min-height: 110px;
  padding: 16px;
  border: 1px solid rgba(239, 198, 72, 0.25);
  border-radius: 15px;
  background: linear-gradient(145deg, #1f2b39, #091420);
  transform: rotate(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}
.pp-mini-report-top {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}
.pp-mini-report-top strong {
  font-size: 25px;
}
.pp-mini-report-top small {
  font-size: 9px;
  opacity: 0.65;
}
.pp-mini-bars {
  margin-top: 15px;
  display: grid;
  gap: 8px;
}
.pp-mini-bars span {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--gold) var(--bar),
    rgba(255, 255, 255, 0.12) var(--bar)
  );
}
.pp-unlock-glow {
  display: none;
}
.features-heading {
  width: min(1170px, calc(100% - 40px));
  margin: 0 auto 18px;
}
.features-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.82);
  color: #d69600;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.features-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: #efc648;
}
.pp-demo-feature-strip {
  max-width: 980px;
  margin: 25px auto 0;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-gold);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(28, 32, 44, 0.08);
}
.pp-demo-feature-strip > .features-label {
  grid-column: 1 / -1;
  margin-bottom: 14px;
}

/* Trust */
.trust-strip {
  width: 980px;
  margin: 18px auto;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.trust-item {
  min-height: 58px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid var(--border);
}
.trust-item:first-child {
  border-left: 0;
  padding-left: 0;
}
.trust-item svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 1.8;
}
.trust-item strong,
.trust-item span {
  display: block;
}
.trust-item strong {
  color: var(--heading);
  font-size: 15px;
}
.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

/* Shared section headings */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-bottom: 12px;
  padding: 0 15px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  color: #e39d00;
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-strong);
}
.trending-section,
.top100-section {
  margin: 18px 0;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #fffdf8);
  box-shadow: 0 22px 65px rgba(25, 29, 42, 0.08);
}
.trending-heading {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.trending-heading h2,
.top100-hero h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(42px, 5vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.trending-heading p,
.top100-hero p {
  max-width: 720px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.ranking-link {
  flex: 0 0 auto;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

/* Spotlight ranking */
.ranking-console,
.leaderboard-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(27, 31, 43, 0.09);
}
.ranking-toolbar {
  min-height: 76px;
  padding: 14px 18px 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}
.ranking-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
}
.ranking-tab {
  min-height: 39px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.ranking-tab.active {
  background: var(--heading);
  color: #fff;
}
.ranking-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32, 184, 106, 0.11);
}
.ranking-labels,
.ranking-row {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) 120px 110px 130px 150px 44px;
  align-items: center;
  gap: 18px;
}
.ranking-labels {
  min-height: 48px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.ranking-row {
  min-height: 96px;
  padding: 15px 24px;
  border-bottom: 1px solid var(--border);
}
.ranking-row:last-child {
  border-bottom: 0;
}
.ranking-plugin {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px 58px 1fr;
  align-items: center;
  gap: 14px;
}
.ranking-position {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.ranking-icon {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--surface-soft);
}
.ranking-icon-placeholder {
  display: grid;
  place-items: center;
  color: var(--heading);
  font-weight: 900;
}
.ranking-name {
  min-width: 0;
}
.ranking-name strong,
.ranking-name span,
.metric-stack strong,
.metric-stack span {
  display: block;
}
.ranking-name strong {
  overflow: hidden;
  color: var(--heading);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ranking-name span {
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pulse-score {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 57%, transparent 59%),
    conic-gradient(var(--gold) calc(var(--score) * 1%), var(--border) 0);
  color: var(--heading);
  font-size: 14px;
  font-weight: 900;
}
.metric-stack strong {
  color: var(--heading);
  font-size: 13px;
}
.metric-stack span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.metric-bar {
  width: 78px;
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--border);
}
.metric-bar i {
  display: block;
  width: calc(var(--metric) * 1%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #ffdd68);
}
.ranking-action {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  font-size: 17px;
}
.ranking-loading,
.table-loading {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.ranking-loader,
.loader {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.ranking-disclaimer {
  margin: 16px 4px 0;
  color: var(--muted);
  font-size: 11px;
}

/* Plugin discovery */
.discovery-section {
  margin: 18px 0;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #fffdf8);
  box-shadow: 0 22px 65px rgba(25, 29, 42, 0.08);
}
.discovery-heading {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.discovery-heading h2 {
  margin: 0;
  color: var(--heading);
  font-size: 42px;
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.discovery-heading p {
  max-width: 720px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.discovery-console {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(27, 31, 43, 0.09);
}
.discovery-toolbar {
  min-height: 76px;
  padding: 14px 18px 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}
.discovery-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-soft);
}
.discovery-tabs button {
  min-height: 41px;
  padding: 0 17px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.discovery-toolbar .ranking-status {
  font-size: 13px;
}
.discovery-tabs button.is-active {
  background: var(--heading);
  color: #fff;
  box-shadow: 0 7px 18px rgba(17, 24, 45, 0.14);
}
.discovery-grid {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: #fffdf8;
}
.discovery-grid > .ranking-loading,
.discovery-grid > .discovery-error {
  grid-column: 1 / -1;
}
.discovery-card {
  min-width: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(218, 172, 40, 0.3);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(28, 32, 44, 0.055);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.discovery-card:hover {
  transform: translateY(-3px);
  border-color: rgba(205, 149, 0, 0.5);
  box-shadow: 0 18px 42px rgba(28, 32, 44, 0.1);
}
.discovery-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.discovery-card-head img,
.discovery-card-placeholder {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff8e5;
  object-fit: cover;
}
.discovery-card-placeholder {
  display: grid;
  place-items: center;
  color: #a77200;
  font-size: 20px;
  font-weight: 900;
}
.discovery-badge {
  padding: 7px 10px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: #fff9e8;
  color: #9a6900;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}
.discovery-card h3 {
  margin: 18px 0 0;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.discovery-card > p {
  min-height: 68px;
  margin: 10px 0 0;
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.discovery-card-metrics {
  margin-top: 18px;
  padding-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid var(--border);
}
.discovery-card-metrics span,
.discovery-card-metrics small,
.discovery-card-metrics strong {
  display: block;
  min-width: 0;
}
.discovery-card-metrics small {
  min-height: 31px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
#discovery-disclaimer {
  font-size: 14px;
  line-height: 1.65;
}
.discovery-card-metrics strong {
  margin-top: 5px;
  overflow: hidden;
  color: var(--heading);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.discovery-card-link {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #996800;
  font-size: 14px;
  font-weight: 850;
}
.discovery-error {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--muted);
  text-align: center;
}
.discovery-error strong {
  color: var(--heading);
  font-size: 18px;
}
.discovery-error span {
  margin-top: 7px;
  font-size: 14px;
}
.demo-report-page .report-container {
  width: min(var(--page-width), calc(100% - 40px));
  margin-inline: auto;
}
.demo-report-hero {
  padding-bottom: 34px;
}
.demo-track-strip {
  margin-top: 22px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(239, 198, 72, 0.55);
  border-radius: 20px;
  background: #fffaf0;
}
.demo-track-strip > div {
  display: grid;
  gap: 5px;
}
.demo-track-strip strong {
  color: var(--heading);
  font-size: 17px;
}
.demo-track-strip > div span {
  color: var(--muted);
  font-size: 13px;
}
.demo-track-strip .pricing-page-cta {
  min-width: 190px;
  margin: 0;
}
.demo-public-summary {
  padding: 28px;
  background: linear-gradient(145deg, #0c1b2d, #071321);
  color: #fff;
}
.demo-public-summary > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.demo-public-summary h2 {
  margin: 12px 0 10px;
  font-size: 26px;
  line-height: 1.05;
}
.demo-public-summary p {
  margin: 0;
  color: #cfd6df;
  font-size: 13px;
  line-height: 1.7;
}
.demo-locked-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.demo-locked-content {
  filter: blur(5px);
  opacity: 0.42;
  pointer-events: none;
}
.demo-chart-placeholder {
  height: 210px;
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: 30px;
  border-radius: 18px;
  background: #fffaf0;
}
.demo-chart-placeholder i {
  flex: 1;
  height: var(--h, 45%);
  border-radius: 12px 12px 3px 3px;
  background: linear-gradient(180deg, #efc648, #f5b800);
}
.demo-chart-placeholder i:nth-child(1) {
  --h: 28%;
}
.demo-chart-placeholder i:nth-child(2) {
  --h: 46%;
}
.demo-chart-placeholder i:nth-child(3) {
  --h: 40%;
}
.demo-chart-placeholder i:nth-child(4) {
  --h: 68%;
}
.demo-chart-placeholder i:nth-child(5) {
  --h: 82%;
}
.demo-lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 30px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0.94)
  );
}
.demo-lock-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--heading);
  color: #fff;
  font-size: 22px;
}
.demo-lock-overlay strong {
  margin-top: 15px;
  color: var(--heading);
  font-size: 24px;
}
.demo-lock-overlay p {
  max-width: 510px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.demo-lock-overlay a {
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd857, #f0b600);
  color: #11182f;
  font-size: 13px;
  font-weight: 850;
}
.demo-bottom-cta {
  margin: 18px 0 70px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 26px;
  background: #0b1929;
  color: #fff;
}
.demo-bottom-cta > div > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.demo-bottom-cta h2 {
  margin: 8px 0 7px;
  font-size: 29px;
  line-height: 1.05;
}
.demo-bottom-cta p {
  margin: 0;
  color: #cbd3dc;
  font-size: 13px;
}
.demo-bottom-cta .pricing-page-cta {
  min-width: 190px;
  margin: 0;
}
.demo-recommendation {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: start;
  gap: 14px;
  border-top: 1px solid var(--border);
}
.demo-recommendation:first-child {
  border-top: 0;
}
.demo-recommendation-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff5d5;
  color: #9c6b00;
  font-weight: 900;
}
.demo-recommendation h3 {
  margin: 0;
  color: var(--heading);
  font-size: 15px;
}
.demo-recommendation p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.demo-recommendation strong {
  color: #13834a;
  font-size: 12px;
  white-space: nowrap;
}

/* Top 100 */
.top100-hero {
  max-width: 850px;
  margin-bottom: 32px;
}
.top-controls {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
}
.top-search {
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
}
.top-search svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 2;
}
.top-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--heading);
}
.top-controls select {
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  color: var(--heading);
}
.leaderboard-head,
.leaderboard-row {
  display: grid;
  grid-template-columns: 70px minmax(300px, 2fr) 150px 100px 150px 76px;
  align-items: center;
  gap: 18px;
}
.leaderboard-head {
  min-height: 52px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.leaderboard-row {
  min-height: 88px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}
.leaderboard-row:last-child {
  border-bottom: 0;
}
.leaderboard-rank {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.leaderboard-plugin {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.leaderboard-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface-soft);
}
.leaderboard-icon-placeholder {
  display: grid;
  place-items: center;
  font-weight: 900;
}
.leaderboard-name {
  min-width: 0;
}
.leaderboard-name strong,
.leaderboard-name span,
.leaderboard-value strong,
.leaderboard-value span {
  display: block;
}
.leaderboard-name strong {
  overflow: hidden;
  color: var(--heading);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.leaderboard-name span {
  overflow: hidden;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.leaderboard-value strong {
  color: var(--heading);
  font-size: 13px;
}
.leaderboard-value span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}
.leaderboard-score {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 57%, transparent 59%),
    conic-gradient(var(--gold) calc(var(--score) * 1%), var(--border) 0);
  color: var(--heading);
  font-size: 13px;
  font-weight: 900;
}
.leaderboard-pagination {
  padding: 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.pagination-button {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--heading);
  font-weight: 750;
  cursor: pointer;
}
.pagination-button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}
.pagination-button:disabled {
  opacity: 0.35;
  cursor: default;
}

/* Pricing */
.pricing-section > .site-shell {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #fffdf8);
  box-shadow: 0 22px 65px rgba(25, 29, 42, 0.08);
}
.pricing-section {
  padding: 18px 0 72px;
}
.pricing-heading {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}
.pricing-heading h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(38px, 4.5vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.pricing-heading-highlight {
  color: var(--gold-strong);
}
.pricing-heading p {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.pricing-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pricing-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.pricing-card-featured {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, #fff, #fffaf0);
}
.pricing-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.pricing-tag {
  color: var(--gold-strong);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-audience {
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: #fffaf0;
  color: #9d6d00;
  font-size: 12px;
  font-weight: 750;
}
.pricing-card h3 {
  margin: 20px 0 8px;
  color: var(--heading);
  font-size: 25px;
}
.pricing-price {
  margin: 0;
  color: #efc648;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.pricing-price span {
  margin-left: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.pricing-desc {
  min-height: 52px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.pricing-list {
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}
.pricing-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 13px;
}
.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.pricing-button {
  min-height: 54px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 850;
}
.pricing-button-secondary {
  border: 1px solid var(--border);
  background: #fff;
}
.pricing-button-primary {
  background: linear-gradient(135deg, #ffd34e, var(--gold-strong));
  color: #111;
}

/* Dedicated pricing page */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.pricing-page {
  background:
    radial-gradient(
      circle at 78% 7%,
      rgba(255, 211, 78, 0.22),
      transparent 25%
    ),
    linear-gradient(180deg, #fffdf8 0, #fff 35%, #fffaf0 100%);
}
.pricing-page-header {
  position: sticky;
  z-index: 60;
  top: 0;
  border-bottom: 1px solid rgba(232, 184, 38, 0.22);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}
.pricing-page-header-inner {
  width: min(980px, calc(100% - 40px));
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}
.pricing-page-header .auth-brand {
  color: var(--heading);
}
.pricing-page-header nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.pricing-page-header nav a,
.pricing-page-header-actions > a:first-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.pricing-page-header nav a:hover,
.pricing-page-header nav a.is-current,
.pricing-page-header-actions > a:first-child:hover {
  color: var(--heading);
}
.pricing-page-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pricing-page-header-actions .primary-button {
  min-height: 43px;
  padding: 0 20px;
}
.pricing-hero {
  padding: 82px 0 185px;
  text-align: center;
}
.pricing-hero h1 {
  max-width: 950px;
  margin: 22px auto 0;
  color: var(--heading);
  font-size: clamp(52px, 7.4vw, 60px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.pricing-hero > div > p {
  max-width: 670px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.pricing-trust-line {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pricing-trust-line span {
  padding: 10px 14px;
  border: 1px solid rgba(211, 161, 18, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #765700;
  font-size: 11px;
  font-weight: 750;
}
.pricing-plans {
  margin-top: -120px;
  padding-bottom: 86px;
}
.pricing-plans > .site-shell,
.pricing-comparison-section > .site-shell {
  width: min(var(--page-width), calc(100% - 40px));
}
.pricing-page-grid {
  max-width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}
.pricing-plan {
  position: relative;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 25px 70px rgba(19, 25, 39, 0.11);
}
.pricing-plan-pro {
  border-color: #e7b72e;
  background: linear-gradient(150deg, #fff 10%, #fff9e8 100%);
  box-shadow: 0 28px 80px rgba(190, 139, 0, 0.16);
}
.pricing-plan-plus {
  border-color: rgba(17, 24, 45, 0.24);
  background: linear-gradient(150deg, #fff 10%, #fff8e3 100%);
}
.pricing-pro-label {
  position: absolute;
  top: -15px;
  right: 28px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--heading);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.pricing-plan-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px 20px;
}
.pricing-plan-head > div {
  display: contents;
}
.pricing-plan-head .pricing-tag {
  grid-column: 1;
  grid-row: 1;
}
.pricing-plan-head .pricing-audience {
  grid-column: 2;
  grid-row: 1;
}
.pricing-plan-head h2 {
  margin: 9px 0 0;
  color: var(--heading);
  font-size: 27px;
  letter-spacing: -0.04em;
}
.pricing-plan-head h2 {
  grid-column: 1/-1;
  grid-row: 2;
}
.pricing-page-price {
  margin-top: 29px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.pricing-page-price strong {
  color: var(--heading);
  font-size: 73px;
  line-height: 0.82;
  letter-spacing: -0.07em;
}
.pricing-page-price span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}
.pricing-plan-intro {
  min-height: 72px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}
.pricing-page-cta {
  min-height: 58px;
  padding: 0 20px;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 850;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.pricing-page-cta:hover {
  transform: translateY(-2px);
}
.pricing-page-cta-secondary {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--heading);
}
.pricing-page-cta-primary {
  background: linear-gradient(135deg, #ffd857, #f0b600);
  color: #11182f;
  box-shadow: 0 15px 35px rgba(218, 162, 0, 0.22);
}
.pricing-page-list {
  margin: 30px 0 0;
  padding: 26px 0 0;
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--border);
  list-style: none;
}
.pricing-page-list li {
  position: relative;
  padding-left: 27px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}
.pricing-page-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f8ef;
  color: #159257;
  font-size: 10px;
  font-weight: 900;
}
.pricing-page-list strong {
  color: var(--heading);
}
.pricing-custom-strip {
  max-width: var(--page-width);
  margin: 24px auto 0;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr 1.55fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(213, 167, 35, 0.38);
  border-radius: 22px;
  background: #fffaf0;
}
.pricing-custom-strip div {
  display: grid;
  gap: 4px;
}
.pricing-custom-strip div span {
  color: #a36f00;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-custom-strip div strong {
  color: var(--heading);
  font-size: 18px;
}
.pricing-custom-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.pricing-custom-strip > a {
  padding: 12px 16px;
  border: 1px solid rgba(213, 167, 35, 0.4);
  border-radius: 999px;
  background: #fff;
  color: #8a6000;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}
.pricing-cancel-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}
.pricing-value-section,
.pricing-comparison-section,
.pricing-faq-section {
  padding: 85px 0;
}
.pricing-value-section {
  border-top: 1px solid rgba(213, 167, 35, 0.2);
  border-bottom: 1px solid rgba(213, 167, 35, 0.2);
  background: rgba(255, 255, 255, 0.68);
}
.pricing-section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}
.pricing-section-heading h2 {
  margin: 13px 0 0;
  color: var(--heading);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.pricing-section-heading > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.pricing-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pricing-value-grid article {
  padding: 25px;
  border: 1px solid rgba(218, 172, 40, 0.3);
  border-radius: 21px;
  background: #fffdf7;
}
.pricing-value-grid article > span {
  color: #c38900;
  font-size: 10px;
  font-weight: 900;
}
.pricing-value-grid h3 {
  margin: 26px 0 8px;
  color: var(--heading);
  font-size: 17px;
}
.pricing-value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
.pricing-comparison {
  overflow: hidden;
  border: 1px solid rgba(213, 167, 35, 0.35);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(19, 25, 39, 0.06);
}
.pricing-comparison-row {
  min-height: 64px;
  padding: 0 27px;
  display: grid;
  grid-template-columns: 1.45fr 0.52fr 0.62fr 0.72fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}
.pricing-comparison-row:first-child {
  border-top: 0;
}
.pricing-comparison-row strong {
  color: var(--heading);
  font-size: 13px;
}
.pricing-comparison-row strong:last-child {
  color: #9a6b00;
}
.pricing-comparison-head {
  background: #0d1a2b;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-comparison-head strong,
.pricing-comparison-head strong:last-child {
  color: #f3c641;
}
.pricing-faq-section {
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.4), #fff9e9);
}
.pricing-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.pricing-faq-grid details {
  padding: 22px 24px;
  border: 1px solid rgba(213, 167, 35, 0.3);
  border-radius: 18px;
  background: #fff;
}
.pricing-faq-grid summary {
  position: relative;
  padding-right: 30px;
  color: var(--heading);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.pricing-faq-grid summary::-webkit-details-marker {
  display: none;
}
.pricing-faq-grid summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: -3px;
  color: #bd8500;
  font-size: 20px;
}
.pricing-faq-grid details[open] summary:after {
  content: "–";
}
.pricing-faq-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}
.pricing-final-cta {
  padding: 0 0 80px;
  background: #fff9e9;
}
.pricing-final-cta > .site-shell {
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgba(236, 190, 55, 0.45);
  border-radius: 27px;
  background:
    radial-gradient(circle at 75% 0, rgba(255, 202, 39, 0.22), transparent 28%),
    #0b1929;
  color: #fff;
}
.pricing-final-cta span {
  color: #f3c641;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-final-cta h2 {
  max-width: 670px;
  margin: 9px 0 0;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.pricing-final-cta .pricing-page-cta {
  min-width: 250px;
  margin: 0;
}

/* Footer */
.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: #fff;
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
}
.footer-wordmark {
  color: var(--heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.footer-wordmark span {
  color: var(--gold-strong);
}
.site-footer-brand p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.footer-nav {
  display: flex;
  gap: 22px;
}
.footer-nav a,
.site-footer small {
  color: var(--muted);
  font-size: 11px;
}

/* Premium global directory rankings */
.rankings-main {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 100px;
}
.rankings-hero {
  max-width: 900px;
}
.rankings-hero h1 {
  margin: 24px 0 0;
  color: var(--heading);
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.rankings-hero > p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.rankings-index-status {
  display: inline-flex;
  margin-top: 24px;
  padding: 11px 15px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: #fff;
  color: #986800;
  font-size: 14px;
  font-weight: 800;
}
.rankings-access {
  margin-top: 42px;
  padding: 40px;
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.rankings-access h2 {
  margin: 14px 0 0;
  color: var(--heading);
  font-size: 36px;
  letter-spacing: -0.04em;
}
.rankings-access p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.rankings-access .primary-button {
  margin-top: 12px;
}
.rankings-board {
  margin-top: 46px;
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.rankings-search {
  padding: 25px 28px;
  border-bottom: 1px solid var(--border);
}
.rankings-search label {
  display: block;
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 850;
}
.rankings-search > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}
.rankings-search input {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  font-size: 16px;
}
.rankings-search button {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd34e, var(--gold-strong));
  color: var(--heading);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}
.rankings-table-wrap {
  overflow-x: auto;
}
.rankings-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}
.rankings-table th,
.rankings-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 15px;
}
.rankings-table th {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rankings-position {
  color: #a56f00;
  font-size: 18px;
}
.rankings-plugin-name {
  display: grid;
  gap: 3px;
}
.rankings-plugin-name strong {
  color: var(--heading);
  font-size: 16px;
}
.rankings-plugin-name span {
  color: var(--muted);
  font-size: 13px;
}
.rankings-pagination {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.rankings-pagination button {
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}
.rankings-pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.rankings-pagination span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

/* =========================================================
   Fix dynamic analysis content
   ========================================================= */

/* Green analysis confirmation */
.analysis-feedback {
  width: 100%;
  max-width: 680px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(32, 184, 106, 0.24);
  border-radius: 16px;
  background: rgba(32, 184, 106, 0.07);
  color: #13834a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}
.analysis-feedback[hidden] {
  display: none;
}
.analysis-feedback.is-success {
  display: flex;
  align-items: center;
  gap: 12px;
}
.analysis-feedback.is-success::before {
  content: "✓";
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #159451;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}
.analysis-feedback.is-error {
  border-color: rgba(220, 56, 56, 0.28);
  background: rgba(220, 56, 56, 0.07);
  color: #b52d2d;
}

/* Dynamic opportunity rows */
#dashboard-opportunities {
  margin-top: 14px;
  display: grid;
  gap: 9px;
}
#dashboard-opportunities .opportunity-row {
  position: relative;
  min-height: 44px;
  padding: 8px 14px 8px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #e3e6eb;
  border-radius: 11px;
  background: #ffffff;
  color: #192033;
  font-size: 13px;
  font-weight: 600;
}
#dashboard-opportunities .opportunity-row::before {
  position: absolute;
  left: 8px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 900;
}
#dashboard-opportunities .opportunity-row:nth-child(1)::before {
  content: "▧";
  background: #f0ebff;
  color: #7857e6;
}
#dashboard-opportunities .opportunity-row:nth-child(2)::before {
  content: "□";
  background: #fff0e6;
  color: #ff7a22;
}
#dashboard-opportunities .opportunity-row:nth-child(3)::before {
  content: "◎";
  background: #e7f8ef;
  color: #20a567;
}
#dashboard-opportunities .opportunity-row strong {
  flex: 0 0 auto;
  color: #079447;
  font-size: 13px;
}
.dashboard-window.has-results #dashboard-opportunities .opportunity-row strong {
  color: #b67b00;
}

/* Keep unlock illustration away from the feature tags */
.pp-unlock-card {
  min-height: 360px;
}
.pp-unlock-content {
  position: relative;
  z-index: 3;
}
.pp-unlock-tags {
  position: relative;
  z-index: 4;
  max-width: calc(100% - 215px);
}
.pp-unlock-visual {
  right: 8px;
  top: 18px;
  width: 245px;
}
.pp-wordpress-orbit {
  right: 30px;
  width: 88px;
  height: 88px;
}
.pp-mini-report {
  right: 0;
  bottom: 18px;
  width: 205px;
}

/* Desktop composition matching the reference */
.pp-hero-copy h1 {
  white-space: nowrap;
}
.pp-hero-copy h1 br {
  display: block;
}

/* Only two responsive sizes */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes header-button-glow {
  0%,
  100% {
    box-shadow: 0 15px 35px rgba(239, 198, 72, 0.22);
  }
  50% {
    box-shadow: 0 17px 42px rgba(239, 198, 72, 0.38);
  }
}
@keyframes header-button-shimmer {
  0% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }
  10% {
    transform: translateX(35%) rotate(18deg);
    opacity: 1;
  }
  86% {
    transform: translateX(615%) rotate(18deg);
    opacity: 1;
  }
  100% {
    transform: translateX(650%) rotate(18deg);
    opacity: 0;
  }
}
@keyframes brand-logo-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(239, 198, 72, 0)) brightness(1);
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 2px 11px rgba(239, 198, 72, 0.72)) brightness(1.12);
  }
}
@keyframes headline-word-pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(239, 198, 72, 0));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 14px rgba(239, 198, 72, 0.24));
  }
}

/* WordPress mark correction */
.pp-wordpress-logo,
.pp-wordpress-orbit {
  background: none;
  border: 0;
  box-shadow: none;
}
.pp-wordpress-logo img,
.pp-wordpress-orbit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pp-wordpress-logo {
  width: 46px;
  height: 46px;
}
.pp-wordpress-orbit {
  width: 106px;
  height: 106px;
  filter: drop-shadow(0 0 22px rgba(239, 198, 72, 0.42));
}
.pp-mini-report {
  right: 12px;
  bottom: 6px;
  width: 225px;
  transform: perspective(700px) rotateY(-10deg) rotateZ(4deg);
}

/* Focused analyzer layout */
.pp-hero {
  padding: 52px 0 18px;
}
.pp-hero-inner {
  width: 100%;
  display: block;
}
.pp-hero-heading {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}
.pp-hero-heading .pp-eyebrow,
.pp-analyzer-panel .pp-eyebrow,
.pp-report-heading .pp-eyebrow {
  min-height: 32px;
  padding: 0 13px;
  background: #fffaf0;
  margin-bottom: 20px;
}
.pp-hero-heading h1 {
  margin: 22px 0 18px;
  color: var(--heading);
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.06em;
}
.pp-hero-heading h1 span {
  color: var(--gold-strong);
}
.pp-hero-heading h1 .pp-pulse-word {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-inline: 0.025em;
  transform-origin: center 70%;
  will-change: transform, filter;
  animation: headline-word-pulse 1.4s cubic-bezier(0.45, 0, 0.2, 1) 1;
}
.pp-hero-heading h1 .pp-pulse-word:nth-of-type(1) {
  animation-delay: 0.6s;
}
.pp-hero-heading h1 .pp-pulse-word:nth-of-type(2) {
  animation-delay: 2.05s;
}
.pp-hero-heading h1 .pp-pulse-word:nth-of-type(3) {
  animation-delay: 3.5s;
}
.pp-hero-heading .pp-hero-intro {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(17px, 1.7vw, 18px);
  line-height: 1.65;
}
.pp-platform-statement {
  max-width: 760px;
  margin: 17px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.pp-platform-statement strong {
  color: var(--heading);
  font-weight: 850;
}
.pp-demo-feature {
  min-width: 0;
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
}
.pp-demo-feature:nth-child(n/**/+5) {
  margin-top: 16px;
  padding-top: 16px;
}
.pp-demo-feature svg {
  flex: 0 0 29px;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pp-demo-feature strong,
.pp-demo-feature span {
  display: block;
}
.pp-demo-feature strong {
  color: var(--heading);
  font-size: 14px;
  line-height: 1.25;
}
.pp-demo-feature span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.pp-analysis-workspace {
  position: relative;
  z-index: 10;
  max-width: 980px;
  grid-template-columns: minmax(0, 1fr);
  display: grid;
  border: 1px solid var(--border-gold);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(28, 32, 44, 0.08);
  backdrop-filter: blur(14px);
  margin: 25px auto 0;
}
.pp-analyzer-panel {
  padding: clamp(28px, 3.4vw, 26px);
}
.pp-step-label {
  color: #b67b00;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.pp-analyzer-panel .pp-step-label,
.pp-report-heading .pp-step-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pp-analyzer-panel .pp-eyebrow-dot,
.pp-report-heading .pp-eyebrow-dot {
  background: currentColor;
}
.pp-analyzer-panel h2 {
  margin: 12px 0 10px;
  color: var(--heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.pp-analyzer-panel > p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.pp-search-combobox {
  position: relative;
  z-index: 100;
}
.pp-analyzer-panel .pp-search {
  max-width: none;
  min-height: 70px;
  margin-top: 27px;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  gap: 9px;
  padding: 6px;
  border-color: rgba(17, 24, 45, 0.13);
  border-radius: 16px;
  box-shadow: 0 15px 38px rgba(28, 32, 44, 0.09);
}
.pp-analyzer-panel .pp-search svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}
.pp-analyzer-panel .pp-search input {
  font-size: 14px;
}
.pp-search-suggestions {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(205, 157, 36, 0.32);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 55px rgba(17, 24, 45, 0.16);
  backdrop-filter: blur(18px);
}
.pp-search-suggestions[hidden] {
  display: none;
}
.pp-search-suggestion {
  width: 100%;
  min-height: 64px;
  padding: 9px 12px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--heading);
  text-align: left;
  cursor: pointer;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}
.pp-search-suggestion:hover,
.pp-search-suggestion.is-active {
  background: #fff8e7;
}
.pp-search-suggestion:focus-visible {
  outline: 2px solid var(--gold-strong);
  outline-offset: -2px;
}
.pp-search-suggestion img,
.pp-search-suggestion-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  background: #fff4ce;
}
.pp-search-suggestion-icon {
  display: grid;
  place-items: center;
  color: #a36d00;
  font-size: 17px;
  font-weight: 900;
}
.pp-search-suggestion-copy {
  min-width: 0;
}
.pp-search-suggestion-copy strong,
.pp-search-suggestion-copy span {
  display: block;
}
.pp-search-suggestion-copy strong {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pp-search-suggestion-copy span,
.pp-search-suggestion-meta {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}
.pp-search-suggestion-meta {
  margin: 0;
  white-space: nowrap;
}
.pp-search-suggestions-status {
  padding: 15px 16px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.pp-analyzer-panel .pp-search button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 56px;
  padding: 0 20px;
  gap: 14px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(239, 198, 72, 0.22);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  animation: header-button-glow 6.5s ease-in-out infinite;
}
.pp-analyzer-panel .analyze-button::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: -60%;
  left: -55%;
  width: 34%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  transform: translateX(0) rotate(18deg);
  will-change: transform, opacity;
  animation: header-button-shimmer 7.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.pp-analyzer-panel .analyze-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 19px 42px rgba(239, 198, 72, 0.34);
}
.pp-analyzer-panel .analyze-button:focus-visible {
  outline: 3px solid rgba(41, 121, 255, 0.35);
  outline-offset: 4px;
}
.pp-analyzer-panel .analyze-button:disabled::after {
  opacity: 0;
  animation: none;
}
.pp-analyzer-panel .pp-examples {
  margin-top: 15px;
}
.pp-analyzer-panel .pp-examples > span {
  width: 100%;
  color: #9093a0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pp-analyzer-panel .pp-examples button {
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
}
.pp-analyzer-panel .pp-analysis-message {
  max-width: none;
  margin-top: 16px;
}
.pp-hero-results {
  gap: 18px;
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid var(--border-gold);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(239, 198, 72, 0.09),
      transparent 32%
    ),
    #fffdf8;
}
.pp-report-heading {
  padding: 0;
}
.pp-report-heading h2 {
  margin: 8px 0 0;
  color: var(--heading);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.pp-report-empty-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.pp-report-empty-hint[hidden] {
  display: none;
}
.pp-analysis-workspace .pp-preview-card {
  height: 100%;
  min-height: 470px;
  padding: clamp(24px, 3vw, 36px);
  border-color: rgba(17, 24, 45, 0.11);
  border-radius: 22px;
  box-shadow: none;
}
.dashboard-window .pp-score-ring,
.dashboard-window .pp-plugin-title,
.dashboard-window .pp-preview-stats,
.dashboard-window .pp-opportunities {
  transition: opacity 0.28s ease;
}
.dashboard-window:not(.has-results) .pp-score-ring {
  background: #f6edcf;
}
.dashboard-window:not(.has-results) .pp-plugin-title,
.dashboard-window:not(.has-results) .pp-preview-stats,
.dashboard-window:not(.has-results) .pp-opportunities {
  opacity: 0.58;
}
.dashboard-window:not(.has-results) .opportunity-row-placeholder strong {
  color: var(--muted);
}
.pp-analysis-workspace .pp-plugin-title {
  margin-top: 0;
}
.pp-analysis-workspace .pp-preview-stats {
  margin-top: 26px;
}
.pp-analysis-workspace .pp-preview-stats > div,
.pp-analysis-workspace .pp-opportunities {
  border-color: rgba(205, 157, 36, 0.28);
  background: #fffaf2;
}
.pp-track-action {
  margin-top: 18px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(205, 157, 36, 0.3);
  border-radius: 17px;
  background: #fff8e6;
}
.pp-track-action[hidden] {
  display: none;
}
.pp-track-action strong,
.pp-track-action span {
  display: block;
}
.pp-track-action strong {
  color: var(--heading);
  font-size: 13px;
}
.pp-track-action div > span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.pp-track-action a {
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 11px;
  background: var(--heading);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}
.pp-track-action a span {
  color: var(--gold);
}
.pp-analysis-workspace .pp-opportunities {
  margin-top: 18px;
  padding: 17px;
}
.pp-analysis-workspace .pp-opportunity {
  border-color: rgba(205, 157, 36, 0.22);
}
.pp-download-card {
  max-width: 980px;
  margin: 38px auto 0;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 64px minmax(290px, 1fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(239, 198, 72, 0.45);
  border-radius: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 55px rgba(7, 21, 36, 0.16);
}
#download-title {
  color: #000;
}
.pp-download-icon {
  width: 58px;
  height: 58px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.06);
}
.pp-download-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pp-download-content h2 {
  margin: 5px 0 4px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.pp-download-content .pp-step-label {
  color: #ffc928;
  font-size: 13px;
  letter-spacing: 0.09em;
}
.pp-download-content p {
  max-width: 570px;
  margin: 0;
  color: #9093a0;
  font-size: 14px;
  line-height: 1.55;
}
.pp-download-card .pp-download-button {
  min-width: 210px;
  min-height: 64px;
  margin: 0;
  padding: 8px 10px 8px 18px;
  grid-template-columns: 1fr 42px;
  gap: 12px;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(255, 190, 0, 0.19);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.pp-download-card .pp-download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 190, 0, 0.28);
}
.pp-download-card .pp-download-copy strong {
  font-size: 14px;
}
.pp-download-card .pp-download-copy small {
  font-size: 9px;
}
.pp-download-card .pp-download-arrow {
  width: 40px;
  height: 40px;
}

/* Authentication and account */
.auth-page,
.account-page {
  min-height: 100vh;
}
.auth-page {
  background-color: #fffdf8;
  background-image:
    radial-gradient(
      circle at 50% -10%,
      rgba(255, 205, 53, 0.22),
      transparent 35%
    ),
    radial-gradient(rgba(19, 27, 45, 0.035) 1px, transparent 1px);
  background-size:
    auto,
    22px 22px;
  color: var(--text);
}
.auth-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 253, 248, 0.78),
    transparent 24%,
    transparent 76%,
    rgba(255, 253, 248, 0.78)
  );
}
.auth-shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  text-align: center;
}
.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.auth-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.auth-brand strong {
  color: var(--gold-strong);
}
.auth-page-brand {
  color: var(--heading);
  margin-bottom: 30px;
}
.auth-layout {
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  align-items: left;
  gap: clamp(48px, 7vw, 92px);
  text-align: center;
}
.auth-info {
  padding: 20px 0;
}
.auth-info h2 {
  max-width: 570px;
  margin: 20px 0 18px;
  color: var(--heading);
  font-size: clamp(48px, 5.7vw, 60px);
  line-height: 0.96;
  letter-spacing: -0.062em;
}
.auth-info h2 span {
  color: var(--gold-strong);
}
.auth-info > p {
  max-width: 535px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.auth-info-benefits {
  margin-top: 33px;
  display: grid;
  gap: 12px;
}
.auth-info-benefits article {
  position: relative;
  max-width: 535px;
  padding: 17px 18px 17px 55px;
  border: 1px solid rgba(217, 169, 37, 0.28);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.7);
}
.auth-info-benefits article::before {
  content: "✓";
  position: absolute;
  left: 17px;
  top: 17px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff3cb;
  color: #a77100;
  font-size: 11px;
  font-weight: 900;
}
.auth-info-benefits strong,
.auth-info-benefits span {
  display: block;
}
.auth-info-benefits strong {
  color: var(--heading);
  font-size: 15px;
  line-height: 1.35;
}
.auth-info-benefits span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}
.auth-info-plan {
  max-width: 535px;
  margin-top: 13px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3px 13px;
  border-radius: 17px;
  background: #0d1b2c;
  color: #fff;
}
.auth-info-plan > span {
  grid-row: 1/3;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f1c33e;
  color: #10182a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auth-info-plan strong {
  font-size: 15px;
}
.auth-info-plan small {
  color: #c5cdd6;
  font-size: 12px;
  line-height: 1.45;
}
.auth-card {
  padding: clamp(32px, 6vw, 52px);
  border: 1px solid rgba(218, 172, 40, 0.3);
  border-radius: 29px;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 211, 78, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.97);
  box-shadow: 0 30px 85px rgba(25, 29, 42, 0.12);
  text-align: left;
}
.auth-card-kicker {
  display: block;
  color: #a97000;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}
.auth-card h1 {
  margin: 12px 0 12px;
  color: var(--heading);
  font-size: clamp(36px, 5.2vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-align: center;
}
.auth-card > p {
  max-width: 470px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
}
.auth-provider-grid {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}
.auth-provider {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--heading);
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.auth-provider:hover {
  border-color: #d9a925;
  background: #fffdf7;
  transform: translateY(-1px);
}
.auth-provider-mark {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}
.auth-google-mark {
  background: #fff;
  color: #4285f4;
  font-size: 14px;
}
.auth-divider {
  margin: 27px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9297a4;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--border);
}
.auth-form,
.auth-field {
  display: grid;
}
.auth-field[hidden] {
  display: none;
}
.auth-form {
  gap: 17px;
}
.auth-field {
  gap: 7px;
}
.auth-field label {
  color: var(--heading);
  font-size: 13px;
  font-weight: 750;
}
.auth-field input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(17, 24, 45, 0.16);
  border-radius: 12px;
  background: #fff;
  color: var(--heading);
  font-size: 14px;
  outline: 0;
}
.auth-field input::placeholder {
  color: #9a9eaa;
}
.auth-field input:focus {
  border-color: #e2b53a;
  box-shadow: 0 0 0 4px rgba(239, 198, 72, 0.11);
}
.auth-password-control {
  position: relative;
}
.auth-password-control input {
  padding-right: 66px;
}
.auth-password-toggle {
  position: absolute;
  right: 13px;
  top: 50%;
  padding: 5px;
  border: 0;
  background: transparent;
  color: #7f8491;
  font-size: 11px;
  font-weight: 800;
  transform: translateY(-50%);
  cursor: pointer;
}
.auth-field-helper {
  color: #8b8f9b;
  font-size: 11px;
}
.auth-label-row,
.auth-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.auth-text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #a46f00;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.auth-submit {
  min-height: 60px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #ffd65a, var(--gold-strong));
  color: #11182d;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(213, 158, 0, 0.22);
}
.auth-submit:disabled,
.auth-provider:disabled {
  cursor: wait;
  opacity: 0.68;
}
.auth-feedback {
  padding: 11px 13px;
  border-radius: 11px;
  font-size: 11px;
  line-height: 1.5;
}
.auth-feedback.is-error {
  border: 1px solid rgba(197, 60, 47, 0.18);
  background: #fff0ef;
  color: #a72820;
}
.auth-feedback.is-success {
  border: 1px solid rgba(38, 150, 91, 0.18);
  background: #eaf8ef;
  color: #176a3d;
}
.auth-switch-row {
  margin-top: 25px;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
}
.auth-privacy {
  max-width: 650px;
  margin: 24px auto 0 !important;
  color: #818693 !important;
  text-align: center;
  font-size: 9px !important;
  line-height: 1.6 !important;
}
.auth-legal {
  margin: 9px auto 0;
  color: #818693;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}
.auth-legal a {
  color: #9a6900;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(154, 105, 0, 0.35);
  text-underline-offset: 3px;
}
.auth-legal a:hover {
  color: var(--heading);
}
.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 0, rgba(255, 211, 78, 0.17), transparent 25%),
    #fffdf8;
  color: var(--text);
}
.legal-shell {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
}
.legal-header {
  border-bottom: 1px solid var(--border-gold);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
}
.legal-header > .legal-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.legal-header > .legal-shell > a:last-child {
  color: #996900;
  font-size: 11px;
  font-weight: 800;
}
.legal-content {
  padding: 78px 0 100px;
}
.legal-content > h1 {
  margin: 17px 0 8px;
  color: var(--heading);
  font-size: clamp(46px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.legal-updated {
  margin: 0 0 46px;
  color: var(--muted);
  font-size: 11px;
}
.legal-content section {
  padding: 25px;
  border-top: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom:10px;
}
.legal-content section h2 {
  margin: 0;
  color: var(--heading);
  font-size: 17px;
  letter-spacing: -0.025em;
}
.legal-content section p {
  margin: 10px 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.legal-content section a {
  color: #996900;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.account-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 28px rgba(129, 93, 0, 0.055);
  backdrop-filter: blur(18px);
}
.account-header .site-header-shell {
  min-height: 96px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 26px;
}
.account-header .pluginpulse-brand {
  flex: 0 0 290px;
}
.account-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  white-space: nowrap;
}
.account-header-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 14px;
  color: #5f6472;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.account-header-nav a:hover {
  background: #f5f3ec;
  color: #11182f;
}
.account-header-nav a.is-active {
  background: #fff7d6;
  color: #11182f;
}
.account-header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  margin-left: 8px;
}
#header-plan-button {
  min-height: 46px;
  padding: 0 21px;
  border-radius: 15px;
  white-space: nowrap;
}
.account-menu {
  position: relative;
  flex: 0 0 auto;
}
.account-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid #e7e1cf;
  border-radius: 14px;
  appearance: none;
  background: #fff;
  color: #11182f;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}
.account-menu-button:hover,
.account-menu-button[aria-expanded="true"] {
  border-color: #efc648;
  background: #fffaf0;
}
.account-menu-chevron {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.account-menu-button[aria-expanded="true"] .account-menu-chevron {
  transform: rotate(180deg);
}
.account-menu-dropdown {
  position: absolute;
  z-index: 50;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  padding: 10px;
  border: 1px solid #ece6d8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 24, 47, 0.14);
}
.account-menu-dropdown[hidden] {
  display: none !important;
}
.account-menu-plan {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 8px;
  padding: 12px;
  border-radius: 12px;
  background: #fff8dc;
}
.account-menu-plan span {
  color: #777b87;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.account-menu-plan strong {
  color: #11182f;
  font-size: 15px;
}
.account-menu-dropdown a,
.account-menu-dropdown button {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #343947;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.account-menu-dropdown a:hover,
.account-menu-dropdown button:hover {
  background: #f6f4ee;
  color: #11182f;
}
#account-menu-signout {
  margin-top: 5px;
  border-top: 1px solid #eee9dd;
  border-radius: 0 0 11px 11px;
  color: #9d3535;
}
#account-header-add-plugin[hidden],
#header-plan-button[hidden] {
  display: none !important;
}
.account-signout,
.account-verification button {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.account-main {
  padding: 54px 0 80px;
}
.account-loading {
  padding: 80px 0;
  color: var(--muted);
  text-align: center;
}
.account-welcome {
  padding: clamp(30px, 5vw, 54px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}
.account-welcome h1 {
  margin: 14px 0 9px;
  color: var(--heading);
  font-size: clamp(34px, 3.7vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}
.account-welcome p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.account-plan {
  padding: 10px 15px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: #fff8e6;
  color: #996800;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.account-verification,
.account-pending-plugin {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 20px;
}
.account-verification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #f0d076;
  background: #fff7dd;
}
.account-verification strong,
.account-verification span {
  display: block;
}
.account-verification strong {
  color: var(--heading);
  font-size: 16px;
}
.account-verification span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}
.account-verification[hidden] {
  display: none !important;
}
.account-pending-plugin {
  border: 1px solid #d9ddea;
  background: #fff;
}
.account-pending-plugin > span {
  color: #9a6900;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.account-pending-plugin strong {
  display: block;
  margin-top: 8px;
  color: var(--heading);
  font-size: 24px;
}
.account-pending-plugin p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.account-first-step {
  margin-top: 18px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(239, 198, 72, 0.14),
      transparent 35%
    ),
    #071524;
  color: #fff;
}
.account-first-step h2 {
  margin: 13px 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.account-first-step p {
  max-width: 660px;
  margin: 0 0 24px;
  color: #c2cad3;
  font-size: 13px;
  line-height: 1.65;
}
.account-first-step .pp-eyebrow {
  color: #ffc928;
}
.account-dashboard {
  margin-top: 20px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--border-gold);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}
.account-dashboard-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}
.account-dashboard-heading h2 {
  margin: 12px 0 9px;
  color: var(--heading);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.account-dashboard-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.account-usage {
  flex: 0 0 auto;
  min-width: 165px;
  padding: 18px 20px;
  border: 1px solid rgba(218, 172, 40, 0.34);
  border-radius: 19px;
  background: #fff9e9;
}
.account-usage strong,
.account-usage span {
  display: block;
}
.account-usage strong {
  color: var(--heading);
  font-size: 24px;
}
.account-usage span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}
.account-track-form {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fffdf8;
}
.account-track-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 800;
}
.account-track-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}
.account-track-form input {
  min-height: 58px;
  padding: 0 17px;
  border: 1px solid rgba(17, 24, 45, 0.17);
  border-radius: 14px;
  background: #fff;
  color: var(--heading);
  font-size: 16px;
  outline: 0;
}
.account-track-form input:focus {
  border-color: #d5a51f;
  box-shadow: 0 0 0 4px rgba(231, 183, 46, 0.13);
}
.account-track-form > div > button[type="submit"] {
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #ffd65a, #efb600);
  color: #11182d;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}
.account-plugin-input-wrap {
  position: relative;
  width: 100%;
}
.account-track-form small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.account-track-form > p {
  margin: 12px 0 0;
  padding: 11px 13px;
  border-radius: 12px;
  background: #fff1ee;
  color: #a13325;
  font-size: 14px;
  line-height: 1.45;
}
.account-track-form > p.is-success {
  background: #eaf8ef;
  color: #176a3d;
}
.account-plugin-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.account-plugin-card {
  padding: 22px;
  border: 1px solid rgba(218, 172, 40, 0.3);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(31, 35, 45, 0.06);
}
.account-plugin-card-head {
  display: flex;
  align-items: center;
  gap: 15px;
}
.account-plugin-card-head img,
.account-plugin-placeholder {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff8e7;
  object-fit: cover;
}
.account-plugin-placeholder {
  display: grid;
  place-items: center;
  color: #a97400;
  font-size: 22px;
  font-weight: 900;
}
.account-plugin-card-head div {
  min-width: 0;
}
.account-plugin-card-head strong {
  display: block;
  overflow: hidden;
  color: var(--heading);
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-plugin-card-head span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}
.account-plugin-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.account-plugin-metrics div {
  padding: 13px;
  border-radius: 14px;
  background: #fff9ea;
}
.account-plugin-metrics span,
.account-plugin-metrics strong {
  display: block;
}
.account-plugin-metrics span {
  color: var(--muted);
  font-size: 12px;
}
.account-plugin-metrics strong {
  margin-top: 6px;
  color: var(--heading);
  font-size: 18px;
}
.account-plugin-card footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.account-plugin-card footer a {
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--heading);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.account-plugin-card footer button {
  padding: 8px;
  border: 0;
  background: transparent;
  color: #8b6258;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.account-empty {
  margin-top: 22px;
  padding: 36px;
  border: 1px solid rgba(218, 172, 40, 0.34);
  border-radius: 23px;
  background: linear-gradient(145deg, #fffdf8, #fff7df);
  text-align: left;
}
.account-empty > span {
  color: #a97400;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.account-empty h3 {
  margin: 10px 0 8px;
  color: var(--heading);
  font-size: 30px;
}
.account-empty > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.account-empty-steps {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.account-empty-steps article {
  padding: 20px;
  border: 1px solid rgba(218, 172, 40, 0.28);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
}
.account-empty-steps b,
.account-empty-steps strong,
.account-empty-steps span {
  display: block;
}
.account-empty-steps b {
  color: #bd8300;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.account-empty-steps strong {
  margin-top: 12px;
  color: var(--heading);
  font-size: 17px;
}
.account-empty-steps span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.account-empty > a {
  margin-top: 24px;
  display: inline-flex;
  gap: 18px;
  color: #9b6900;
  font-size: 15px;
  font-weight: 850;
}
.account-upgrade {
  margin-top: 22px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff7d8, #ffefb7);
}
.account-upgrade span,
.account-upgrade strong {
  display: block;
}
.account-upgrade span {
  color: #946500;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.account-upgrade strong {
  margin-top: 5px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.4;
}
.account-upgrade-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.account-upgrade a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #8e6100;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}
.account-upgrade[hidden] {
  display: none;
}

.account-upgrade-notice{
    display:flex;
    align-items:center;
    gap:20px;
    margin:22px 0 26px;
    padding:22px 26px;
    background:linear-gradient(135deg,#fff9e9 0%,#fff3c7 100%);
    border:1px solid rgba(239,198,72,.45);
    border-radius:22px;
    box-shadow:0 12px 30px rgba(239,198,72,.12);
}

.account-upgrade-notice-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:28px;
    background:#efc648;
}

.account-upgrade-notice-content{
    flex:1;
}

.account-upgrade-notice-content strong{
    display:block;
    margin-bottom:6px;
    font-size:22px;
    font-weight:800;
    color:#11182f;
}

.account-upgrade-notice-content p{
    margin:0;
    color:#5f6577;
    line-height:1.6;
}

.account-upgrade-notice-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 26px;
    border-radius:999px;
    background:#efc648;
    color:#11182f;
    font-weight:800;
    text-decoration:none;
    white-space:nowrap;
    transition:.2s ease;
}

.account-upgrade-notice-button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(239,198,72,.35);
}

/* Signed-in report */
.report-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 4%, rgba(255, 211, 78, 0.2), transparent 24%),
    linear-gradient(180deg, #fffdf8 0, #fff9ea 48%, #fffdf8 100%);
  color: var(--text);
}
.report-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.report-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 248, 0.96);
  color: var(--heading);
  box-shadow: 0 8px 28px rgba(129, 93, 0, 0.055);
  backdrop-filter: blur(18px);
}
.report-header-signout {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header-saved-link {
  padding: 10px 13px;
  border: 1px solid rgba(218, 172, 40, 0.32);
  border-radius: 999px;
  background: #fffaf0;
  color: #8f6200;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.header-saved-link:hover,
.header-saved-link.is-active {
  border-color: rgba(196, 139, 0, 0.52);
  background: #fff1bd;
  color: var(--heading);
}
.report-loading,
.report-error {
  padding: 120px 0;
  text-align: center;
}
.report-loading strong,
.report-loading p {
  display: block;
}
.report-loading strong {
  margin-top: 18px;
  color: var(--heading);
  font-size: 20px;
}
.report-loading p,
.report-error p {
  color: var(--muted);
}
.report-loader {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  display: block;
  border: 4px solid #f2df9e;
  border-top-color: #c89000;
  border-radius: 50%;
  animation: report-spin 0.8s linear infinite;
}
@keyframes report-spin {
  to {
    transform: rotate(360deg);
  }
}
.report-error h1 {
  color: var(--heading);
}
.report-error .primary-button {
  margin-top: 18px;
}
.report-hero {
  position: relative;
  padding: 28px 0 34px;
  overflow: hidden;
  border-bottom: 1px solid rgba(218, 172, 40, 0.3);
  background: linear-gradient(180deg, #efe7d2 0 390px, #fff8e5 390px);
  color: var(--heading);
  isolation: isolate;
}
.report-banner-art {
  position: absolute;
  z-index: -2;
  inset: 0 0 auto;
  height: 390px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.report-hero.has-plugin-banner .report-banner-art {
  background-image: var(--report-banner);
  opacity: 1;
}
.report-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 390px;
  background: linear-gradient(
    180deg,
    rgba(8, 17, 31, 0.52) 0%,
    rgba(8, 17, 31, 0.62) 42%,
    rgba(8, 17, 31, 0.92) 100%
  );
}
.report-account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: margin-bottom 0.25s ease;
}
.report-hero.has-plugin-banner .report-account-row {
  margin-bottom: 154px;
}
.report-account-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(8, 17, 31, 0.56);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}
.report-account-row span:first-child {
  color: #ffd755;
}
.report-plugin-head {
  padding: 25px;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 27px;
  background: rgba(9, 20, 35, 0.91);
  color: #fff;
  box-shadow: 0 20px 55px rgba(7, 15, 28, 0.26);
  backdrop-filter: blur(15px);
}
.report-plugin-head > img {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(218, 172, 40, 0.42);
  border-radius: 27px;
  object-fit: cover;
  background: #fff;
  padding: 5px;
  box-shadow: 0 18px 45px rgba(142, 100, 0, 0.14);
}
.report-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.report-title-row h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.report-title-row > span {
  padding: 8px 12px;
  border: 1px solid rgba(218, 172, 40, 0.4);
  border-radius: 999px;
  background: #fff8e2;
  color: #a46f00;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.report-title-row > .report-rank-badge {
  border-color: rgba(255, 213, 85, 0.5);
  background: rgba(255, 201, 39, 0.14);
  color: #ffd755;
}
.report-plugin-copy > p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #e0e5eb;
  font-size: 17px;
  line-height: 1.55;
}
.report-plugin-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #c4ccd5;
  font-size: 14px;
}
.report-plugin-meta a {
  color: #ffd755;
  font-weight: 700;
}
.report-score {
  --report-score: 0;
  width: 142px;
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, #fffdf8 79%, transparent 80% 99%),
    conic-gradient(#efb800 calc(var(--report-score) * 1%), #eadfbd 0);
  filter: drop-shadow(0 13px 24px rgba(164, 111, 0, 0.13));
  text-align: center;
}
.report-score strong {
  color: var(--heading);
  font-size: 40px;
  line-height: 1;
}
.report-score span {
  max-width: 96px;
  margin-top: 7px;
  color: #716b60;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}
.report-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.report-metrics article {
  padding: 19px 20px;
  border: 1px solid rgba(218, 172, 40, 0.32);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 25px rgba(142, 100, 0, 0.07);
}
.report-metrics span,
.report-metrics small {
  display: block;
  color: #6c6965;
  font-size: 13px;
}
.report-metrics strong {
  display: block;
  margin: 9px 0 6px;
  font-size: 28px;
  line-height: 1;
}
.report-access-notice {
  margin-top: 14px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(207, 153, 0, 0.38);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 25px rgba(142, 100, 0, 0.06);
}
.report-access-notice[hidden] {
  display: none;
}
.report-access-notice div {
  display: grid;
  gap: 4px;
}
.report-access-notice strong {
  color: var(--heading);
  font-size: 16px;
}
.report-access-notice span {
  color: #67635d;
  font-size: 14px;
  line-height: 1.45;
}
.report-access-notice > a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd659, #efb600);
  color: #11182d;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(190, 137, 0, 0.16);
}
.report-body {
  padding: 30px 0 70px;
}
.report-summary-grid,
.report-detail-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 18px;
}
.report-panel {
  margin-bottom: 18px;
  padding: 27px;
  border: 1px solid rgba(204, 160, 45, 0.3);
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: 0 15px 40px rgba(18, 25, 38, 0.055);
}
.report-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.report-section-heading span,
.report-history > span {
  color: #9f6c00;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.report-section-heading h2,
.report-history h2 {
  margin: 9px 0 0;
  color: var(--heading);
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.report-section-heading > strong {
  color: #b27b00;
  font-size: 42px;
  line-height: 1;
}
.report-section-heading > small {
  color: var(--muted);
  font-size: 13px;
}
.report-section-intro {
  max-width: 760px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.report-performance-heading {
  align-items: center;
}
.report-chart-tabs {
  padding: 5px;
  display: flex;
  gap: 4px;
  border: 1px solid #e5dcc5;
  border-radius: 999px;
  background: #fff9e9;
}
.report-chart-tabs button {
  min-height: 38px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.report-chart-tabs button.is-active {
  background: var(--heading);
  color: #fff;
  box-shadow: 0 7px 18px rgba(17, 24, 45, 0.16);
}
.report-performance-summary {
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}
.report-performance-summary article {
  padding: 16px 18px;
  border: 1px solid rgba(218, 172, 40, 0.28);
  border-radius: 16px;
  background: #fffaf0;
}
.report-performance-summary span,
.report-performance-summary strong {
  display: block;
}
.report-performance-summary span {
  color: var(--muted);
  font-size: 13px;
}
.report-performance-summary strong {
  margin-top: 7px;
  color: var(--heading);
  font-size: 22px;
}
.report-chart-shell {
  position: relative;
  min-height: 270px;
  margin-top: 18px;
  padding: 13px 10px 0;
  border: 1px solid #ece3cf;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fffaf0);
}
.report-chart-shell svg {
  width: 100%;
  height: 250px;
  overflow: visible;
}
.report-chart-shell svg[hidden] {
  display: none;
}
.report-chart-grid line {
  stroke: #eee6d5;
  stroke-width: 1;
}
.report-chart-area {
  fill: url(#report-chart-fill);
}
.report-chart-line {
  fill: none;
  stroke: #e4aa00;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.report-chart-shell circle {
  fill: #fff;
  stroke: #e4aa00;
  stroke-width: 3;
}
.report-chart-shell circle.is-latest {
  fill: #ffc31a;
  stroke: #fff;
  stroke-width: 4;
  filter: drop-shadow(0 3px 5px rgba(155, 103, 0, 0.3));
}
.report-chart-empty {
  min-height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.report-chart-empty[hidden] {
  display: none;
}
.report-chart-empty strong {
  color: var(--heading);
  font-size: 20px;
}
.report-chart-empty span {
  max-width: 480px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.report-chart-axis {
  margin-top: 9px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.report-conversion-note {
  max-width: 880px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.report-chart-release line {
  stroke: rgba(183, 126, 0, 0.48);
  stroke-width: 2;
  stroke-dasharray: 5 6;
}
.report-chart-shell .report-chart-release circle {
  fill: #ffc31a;
  stroke: #fff;
  stroke-width: 4;
  filter: drop-shadow(0 3px 5px rgba(155, 103, 0, 0.32));
}
.report-release-impact {
  margin-top: 22px;
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.2fr);
  align-items: center;
  gap: 18px 24px;
  border: 1px solid rgba(218, 172, 40, 0.3);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #fff8e7);
}
.report-release-impact > div > span {
  color: #9f6c00;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.report-release-impact h3 {
  margin: 7px 0 0;
  color: var(--heading);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
.report-release-impact p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.report-release-impact dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.report-release-impact dl div {
  padding: 12px;
  border: 1px solid rgba(218, 172, 40, 0.24);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
}
.report-release-impact dt {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.report-release-impact dd {
  margin: 7px 0 0;
  color: var(--heading);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
}
.report-release-impact > small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.report-health-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 11px;
}
.report-health-grid article {
  padding: 19px;
  border: 1px solid rgba(218, 172, 40, 0.29);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #fff9e8);
}
.report-health-grid span,
.report-health-grid strong,
.report-health-grid small {
  display: block;
}
.report-health-grid span {
  color: #8f6506;
  font-size: 13px;
  font-weight: 800;
}
.report-health-grid strong {
  margin-top: 12px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.2;
}
.report-health-grid small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.report-seo-categories {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.report-seo-category {
  padding: 18px;
  border: 1px solid #e6dfcf;
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, #fffaf0);
}
.report-seo-category > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.report-seo-category span {
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}
.report-seo-category strong {
  color: #a87500;
  font-size: 25px;
  line-height: 1;
}
.report-seo-category p {
  min-height: 42px;
  margin: 11px 0 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.report-seo-category > i {
  height: 7px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #eee5cf;
}
.report-seo-category > i b {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #e9b517;
}
.report-seo-category.is-good strong {
  color: #16845a;
}
.report-seo-category.is-good > i b {
  background: #22ad76;
}
.report-seo-category.is-low strong {
  color: #bd5b38;
}
.report-seo-category.is-low > i b {
  background: #e17a55;
}
.report-subheading {
  margin-top: 30px;
  padding-top: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #ebe2cc;
}
.report-subheading span {
  color: #9f6c00;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.report-subheading h3 {
  margin: 7px 0 0;
  color: var(--heading);
  font-size: 23px;
  letter-spacing: -0.035em;
}
.report-subheading small {
  color: var(--muted);
  font-size: 12px;
}
.report-overview > p,
.report-history p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.report-progress {
  height: 9px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee5cd;
}
.report-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e8ac00, #ffd34f);
}
.report-overview-labels {
  margin-top: 9px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.report-history-line {
  height: 72px;
  margin-top: 17px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #e4dcc6;
}
.report-history-line i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5c9a7;
}
.report-history-line i.is-today {
  width: 13px;
  height: 13px;
  background: #efb800;
  box-shadow: 0 0 0 6px rgba(239, 184, 0, 0.14);
}
.report-check-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.report-check {
  padding: 16px;
  border: 1px solid #e6dfcf;
  border-radius: 16px;
  background: #fff;
}
.report-check > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.report-check span {
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  text-transform: capitalize;
}
.report-check strong {
  font-size: 24px;
}
.report-check.is-good strong {
  color: #168657;
}
.report-check.is-fair strong {
  color: #ae7900;
}
.report-check.is-low strong {
  color: #c34731;
}
.report-check p {
  min-height: 40px;
  margin: 8px 0 13px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.report-check i {
  height: 5px;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #ede8dc;
}
.report-check i b {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #e9b517;
}
.report-check.is-good i b {
  background: #20a96b;
}
.report-check.is-low i b {
  background: #e0715d;
}
.report-recommendations > div:last-child {
  margin-top: 17px;
}
.report-recommendation {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #e7e0d0;
}
.report-recommendation > span {
  color: #b27c00;
  font-size: 14px;
  font-weight: 900;
}
.report-recommendation strong {
  color: var(--heading);
  font-size: 16px;
}
.report-recommendation p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.report-recommendation > b {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff3ce;
  color: #986700;
  font-size: 12px;
  text-transform: uppercase;
}
.report-detail-list {
  margin: 18px 0 0;
}
.report-detail-list > div {
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e7e0d0;
}
.report-detail-list dt {
  color: var(--muted);
  font-size: 14px;
}
.report-detail-list dd {
  margin: 0;
  color: var(--heading);
  font-size: 16px;
  font-weight: 850;
}
.report-content-inventory {
  grid-column: 1 / -1;
}

.report-upgrade-card {
  margin-top: 8px;
  padding: 30px 32px 24px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--theme-border-strong);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 30%, rgba(255, 196, 41, 0.16), transparent 20%),
    var(--theme-surface);
  box-shadow: var(--theme-shadow);
}

.report-upgrade-card[hidden] {
  display: none !important;
}

.report-upgrade-star {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--theme-border-strong);
  border-radius: 50%;
  background: rgba(255, 194, 28, 0.08);
  color: var(--theme-gold);
  box-shadow: 0 0 30px rgba(244, 180, 0, 0.14);
  font-size: 36px;
}

.report-upgrade-copy > span {
  display: block;
  color: var(--theme-gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.report-upgrade-copy h2 {
  margin: 8px 0 0;
  color: var(--theme-text);
  font-size: 24px;
  letter-spacing: -0.035em;
}

.report-upgrade-copy p {
  max-width: 670px;
  margin: 7px 0 0;
  color: var(--theme-muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.report-upgrade-actions a {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-border-strong);
  border-radius: 12px;
  color: var(--theme-text);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.report-upgrade-actions a:first-child {
  gap: 18px;
  background: linear-gradient(135deg, var(--theme-gold-soft), var(--theme-gold));
  color: #07111e;
  box-shadow: 0 14px 30px rgba(244, 180, 0, 0.16);
}

.report-upgrade-actions a:last-child {
  background: var(--theme-surface-soft);
  color: var(--theme-gold);
}

.report-upgrade-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.report-upgrade-features span {
  color: var(--theme-muted);
  font-size: 12px;
  font-weight: 700;
}

.report-upgrade-features span::before {
  content: "✓";
  width: 22px;
  height: 22px;
  margin-right: 8px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--theme-gold);
  border-radius: 50%;
  color: var(--theme-gold);
}

/* PulseMetrics checkout and plan upgrade flow */
.checkout-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 78% 8%,
      rgba(255, 211, 78, 0.22),
      transparent 27%
    ),
    linear-gradient(180deg, #fffdf8, #fff 45%, #fffaf0);
}
.checkout-brand-image {
  width: 235px;
  height: auto;
  display: block;
}
.checkout-main {
  padding: 76px 20px 100px;
}
.checkout-shell {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 480px);
  align-items: center;
  gap: 72px;
}
.checkout-copy h1 {
  max-width: 600px;
  margin: 18px 0;
  color: var(--heading);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.checkout-copy > p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.checkout-benefits {
  margin-top: 31px;
  display: grid;
  gap: 13px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
}
.checkout-card {
  padding: 38px;
  border: 1px solid rgba(218, 172, 40, 0.3);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(25, 29, 42, 0.12);
}
.checkout-plan-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--border);
}
.checkout-plan-heading span,
.checkout-account span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.checkout-plan-heading h2 {
  margin: 7px 0 0;
  color: var(--heading);
  font-size: 34px;
}
.checkout-price {
  text-align: right;
}
.checkout-price strong {
  display: block;
  color: var(--heading);
  font-size: 44px;
  line-height: 1;
}
.checkout-price span {
  margin-top: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.checkout-account {
  margin: 25px 0;
  padding: 17px 18px;
  border-radius: 15px;
  background: #f8f5eb;
}
.checkout-account strong {
  display: block;
  margin-top: 6px;
  color: var(--heading);
  font-size: 14px;
  word-break: break-word;
}
.checkout-payment {
  margin-top: 25px;
  padding-top: 23px;
  border-top: 1px solid var(--theme-border);
}
.checkout-payment-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkout-payment-heading strong,
.checkout-payment-heading small {
  display: block;
}
.checkout-payment-heading strong {
  color: var(--theme-text);
  font-size: 14px;
}
.checkout-payment-heading small {
  margin-top: 4px;
  color: var(--theme-muted);
  font-size: 11px;
  line-height: 1.45;
}
.checkout-payment-lock {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--theme-border-strong);
  border-radius: 50%;
  background: rgba(255, 194, 28, 0.08);
  color: var(--theme-gold);
  font-size: 15px;
  font-weight: 900;
}
.checkout-paypal-surface {
  margin-top: 15px;
  padding: 10px 10px 4px;
  overflow: hidden;
  border: 1px solid rgba(18, 35, 55, 0.12);
  border-radius: 17px;
  background: #fff;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}
#paypal-button-container {
  min-height: 48px;
  line-height: 0;
}
#paypal-button-container iframe {
  border-radius: 12px;
}
.checkout-payment-note {
  margin: 11px 3px 0;
  color: var(--theme-muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}
.checkout-feedback {
  margin: 18px 0 0;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
}
.checkout-feedback.is-error {
  background: #fff0ef;
  color: #a72820;
}
.checkout-feedback.is-success {
  background: #eaf8ef;
  color: #176a3d;
}
.checkout-feedback.is-notice {
  background: #fff7da;
  color: #785500;
}
.checkout-switch-plan {
  margin-top: 23px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}
.checkout-switch-plan span {
  color: var(--muted);
}
.checkout-switch-plan a {
  color: #9a6900;
  font-weight: 800;
}
.account-upgrade-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.account-upgrade-actions a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.account-upgrade-actions a + a {
  background: transparent;
  border: 1px solid rgba(142, 97, 0, 0.25);
}
.pricing-plans-section {
  padding: 0 0 90px;
}
.pricing-plan {
  padding: 34px 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: #fff;
}
.pricing-plan-featured {
  border-color: rgba(226, 177, 36, 0.55);
  box-shadow: 0 26px 70px rgba(188, 139, 0, 0.13);
}
.pricing-plan h2 {
  margin: 13px 0 0;
  color: var(--heading);
  font-size: 34px;
}
.pricing-plan > p {
  min-height: 66px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   PulseMetrics account header and dropdown
   ========================================================= */

.account-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-top: 8px solid #292929;
  border-bottom: 1px solid rgba(218, 172, 40, 0.18);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 28px rgba(129, 93, 0, 0.055);
  backdrop-filter: blur(18px);
}

.account-header .site-header-shell {
  width: min(1240px, calc(100% - 40px));
  min-height: 108px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.account-header .pluginpulse-brand {
  width: 310px;
  min-width: 0;
}

.account-header .pluginpulse-brand-svg {
  width: 100%;
  height: auto;
}

.account-header-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  white-space: nowrap;
}

.account-header-nav a {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #4f5361;
  font-size: 14px;
  font-weight: 750;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.account-header-nav a:hover {
  background: #fff6d8;
  color: #11182f;
}

.account-header-nav a.is-active {
  background: #fff1b8;
  color: #11182f;
}

.account-header-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
}

#header-plan-button {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 850;
}

#account-header-add-plugin[hidden],
#header-plan-button[hidden] {
  display: none !important;
}

.account-menu {
  position: relative;
  flex: 0 0 auto;
}

.account-menu-button {
  min-width: 104px;
  min-height: 50px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(199, 159, 42, 0.38);
  border-radius: 16px;
  appearance: none;
  background: #fff;
  color: #11182f;
  box-shadow: 0 7px 20px rgba(17, 24, 47, 0.06);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.account-menu-button:hover {
  border-color: #d9aa1c;
  background: #fffaf0;
  box-shadow: 0 10px 26px rgba(156, 111, 0, 0.12);
  transform: translateY(-1px);
}

.account-menu-button[aria-expanded="true"] {
  border-color: #d9aa1c;
  background: #fff6d8;
  box-shadow: 0 10px 28px rgba(156, 111, 0, 0.14);
}

.account-menu-button:focus-visible {
  outline: 3px solid rgba(239, 198, 72, 0.34);
  outline-offset: 3px;
}

.account-menu-chevron {
  display: inline-block;
  color: #8b6410;
  font-size: 18px;
  line-height: 1;
  transform-origin: center;
  transition: transform 0.2s ease;
}

.account-menu-button[aria-expanded="true"] .account-menu-chevron {
  transform: rotate(180deg);
}

.account-menu-dropdown {
  position: absolute;
  z-index: 200;
  top: calc(100% + 12px);
  right: 0;
  width: 290px;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(209, 173, 66, 0.32);
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 28px 70px rgba(17, 24, 47, 0.18),
    0 5px 16px rgba(17, 24, 47, 0.07);
  transform-origin: top right;
  animation: account-menu-open 0.16s ease-out;
}

.account-menu-dropdown[hidden] {
  display: none !important;
}

.account-menu-profile {
  padding: 14px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fffaf0, #fff4cf);
}

.account-menu-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd85a, #efb600);
  color: #11182f;
  box-shadow: 0 8px 20px rgba(214, 158, 0, 0.22);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-menu-profile > div {
  min-width: 0;
}

.account-menu-profile strong {
  display: block;
  overflow: hidden;
  color: #11182f;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu-profile > div > span {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #747987;
  font-size: 11px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu-plan {
  margin: 8px 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(218, 172, 40, 0.2);
  border-radius: 13px;
  background: #fffdf7;
}

.account-menu-plan span {
  color: #777b87;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.account-menu-plan strong {
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff0b7;
  color: #805900;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.account-menu-dropdown > a,
.account-menu-dropdown > button {
  width: 100%;
  min-height: 43px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #343947;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background-color 0.18s ease,
    padding-left 0.18s ease;
}

.account-menu-dropdown > a:hover,
.account-menu-dropdown > button:hover {
  padding-left: 16px;
  background: #fff7dd;
  color: #11182f;
}

#account-menu-signout {
  margin-top: 7px;
  padding-top: 3px;
  border-top: 1px solid #eee9dd;
  border-radius: 0 0 11px 11px;
  color: #a43d3d;
}

#account-menu-signout:hover {
  background: #fff1f0;
  color: #8d2929;
}

#account-menu-signout:disabled {
  opacity: 0.6;
  cursor: wait;
}

@keyframes account-menu-open {
  from {
    opacity: 0;
    transform: translateY(-7px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .discovery-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .discovery-heading h2 {
    font-size: 36px;
  }
  .discovery-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .discovery-tabs {
    width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
  }
  .discovery-grid {
    padding: 12px;
    grid-template-columns: 1fr;
  }
  .pricing-page-header-inner {
    grid-template-columns: 1fr auto;
  }
  .pricing-page-header nav {
    display: none;
  }
  .pricing-page-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
  .pricing-custom-strip {
    max-width: 720px;
    grid-template-columns: 1fr;
  }
  .pricing-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .main-nav {
    display: none;
  }
  .pp-hero-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .pp-hero-copy {
    padding-top: 10px;
  }
  .pp-hero-results {
    width: 100%;
  }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .trust-item:nth-child(n/**/+3) {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 20px;
  }
  .ranking-console,
  .leaderboard-card {
    overflow-x: auto;
  }
  .ranking-toolbar,
  .ranking-labels,
  .ranking-list,
  .leaderboard-head,
  .leaderboard-body,
  .leaderboard-pagination {
    min-width: 920px;
  }
  .pricing-grid {
    max-width: 640px;
    grid-template-columns: 1fr;
  }
  .pp-hero-heading {
    margin-bottom: 34px;
  }
  .pp-analysis-workspace {
    grid-template-columns: 1fr;
  }
  .pp-analysis-workspace .pp-preview-card {
    height: auto;
  }
  .pp-download-card {
    grid-template-columns: 58px 1fr auto;
  }
  .auth-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .auth-info {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }
  .auth-info h2,
  .auth-info > p,
  .auth-info-benefits article,
  .auth-info-plan {
    margin-left: auto;
    margin-right: auto;
  }
  .auth-info h2 {
    font-size: clamp(44px, 9vw, 62px);
  }
  .account-dashboard-heading,
  .account-upgrade {
    align-items: flex-start;
    flex-direction: column;
  }
  .account-usage {
    width: 100%;
    box-sizing: border-box;
  }
  .account-plugin-grid,
  .account-empty-steps {
    grid-template-columns: 1fr;
  }
  .account-upgrade {
    align-items: flex-start;
    flex-direction: column;
  }
  .account-upgrade-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .report-health-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .report-upgrade-card {
    grid-template-columns: 74px minmax(0, 1fr);
  }
  .report-upgrade-actions,
  .report-upgrade-features {
    grid-column: 1 / -1;
  }
  .report-upgrade-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .report-hero.has-plugin-banner .report-account-row {
    margin-bottom: 110px;
  }
  .report-plugin-head {
    grid-template-columns: 82px 1fr;
  }
  .report-plugin-head > img {
    width: 82px;
    height: 82px;
    border-radius: 21px;
  }
  .report-score {
    grid-column: 1/-1;
    width: 100%;
    height: auto;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff, #fff5d3);
    border: 1px solid rgba(218, 172, 40, 0.35);
  }
  .report-score strong {
    font-size: 32px;
  }
  .report-metrics,
  .report-seo-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .report-summary-grid,
  .report-detail-grid {
    grid-template-columns: 1fr;
  }
  .report-check-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .report-performance-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .report-chart-tabs {
    margin-top: 17px;
  }
  .account-header .header-actions,
  .report-nav .header-actions {
    display: flex;
  }
  .account-header .header-actions .primary-button,
  .report-nav .header-actions .primary-button {
    display: none;
  }
  .demo-track-strip,
  .demo-bottom-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .demo-track-strip .pricing-page-cta,
  .demo-bottom-cta .pricing-page-cta {
    width: 100%;
    min-width: 0;
  }
  .demo-recommendation {
    grid-template-columns: 36px 1fr;
  }
  .demo-recommendation > strong {
    grid-column: 2;
  }
  .demo-bottom-cta {
    padding: 28px 24px;
  }
  .checkout-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .checkout-copy {
    text-align: center;
  }
  .checkout-copy h1,
  .checkout-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .checkout-benefits {
    justify-items: center;
  }
  .account-header .site-header-shell {
    flex-wrap: wrap;
    gap: 16px;
  }
  .account-header-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
  }
  .account-header-actions {
    margin-left: auto;
  }
  .account-header .site-header-shell {
    grid-template-columns: 255px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .account-header .pluginpulse-brand {
    width: 255px;
  }

  .account-header-nav a {
    padding: 0 10px;
    font-size: 13px;
  }

  #header-plan-button {
    padding: 0 18px;
  }
  .account-header .site-header-shell {
    padding: 14px 0;
    grid-template-columns: minmax(210px, 1fr) auto;
    gap: 14px;
  }

  .account-header .pluginpulse-brand {
    width: min(270px, 100%);
  }

  .account-header-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .account-header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  #header-plan-button {
    display: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .pricing-page-header-inner {
    width: min(100% - 24px, 620px);
    min-height: 68px;
  }
  .pricing-page-header-actions > a:first-child {
    display: none;
  }
  .pricing-page-header-actions .primary-button {
    min-height: 39px;
    padding: 0 15px;
  }
  .pricing-hero {
    padding: 60px 0 165px;
  }
  .pricing-hero h1 {
    font-size: clamp(44px, 13vw, 66px);
  }
  .pricing-hero > div > p {
    font-size: 15px;
  }
  .pricing-plan {
    padding: 28px 22px;
  }
  .pricing-value-grid,
  .pricing-faq-grid {
    grid-template-columns: 1fr;
  }
  .pricing-value-section,
  .pricing-comparison-section,
  .pricing-faq-section {
    padding: 65px 0;
  }
  .pricing-comparison {
    overflow-x: auto;
  }
  .pricing-comparison-row {
    min-width: 720px;
    padding: 0 16px;
    grid-template-columns: 1.35fr 0.55fr 0.65fr 0.75fr;
    gap: 9px;
  }
  .pricing-comparison-row strong {
    font-size: 11px;
  }
  .pricing-final-cta > .site-shell {
    padding: 31px 25px;
    align-items: flex-start;
    flex-direction: column;
  }
  .pricing-final-cta .pricing-page-cta {
    width: 100%;
    min-width: 0;
  }
  .rankings-main {
    width: min(100% - 24px, 620px);
    padding-top: 42px;
  }
  .rankings-hero h1 {
    font-size: 48px;
  }
  .rankings-hero > p {
    font-size: 16px;
  }
  .rankings-search > div {
    grid-template-columns: 1fr;
  }
  .rankings-access {
    padding: 28px 22px;
  }
  .rankings-pagination {
    gap: 8px;
  }
  .rankings-pagination span {
    font-size: 12px;
  }
  .site-shell {
    width: min(100% - 24px, 620px);
  }
  .trust-strip {
    width: 100%;
  }
  .pp-hero-inner {
    width: 100%;
  }
  .site-header {
    min-height: 76px;
  }
  .pluginpulse-brand-svg {
    width: 210px;
  }
  .header-actions {
    display: none;
  }
  .pp-hero {
    padding-top: 20px;
  }
  .pp-hero-copy h1 {
    font-size: clamp(46px, 14vw, 68px);
  }
  .pp-search {
    grid-template-columns: 28px 1fr;
    padding: 10px;
  }
  .pp-search svg {
    margin-left: 4px;
  }
  .pp-search button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .pp-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .pp-benefit:nth-child(3) {
    border-left: 0;
  }
  .pp-benefit:nth-child(n/**/+3) {
    border-top: 1px solid var(--border);
  }
  .pp-preview-card {
    padding: 19px;
    border-radius: 23px;
  }
  .pp-analysis-complete {
    min-width: 0;
    flex: 1;
  }
  .pp-score-ring {
    flex-basis: 82px;
    width: 82px;
    height: 82px;
  }
  .pp-plugin-title {
    margin-top: 16px;
    padding-right: 0;
  }
  .pp-preview-stats {
    grid-template-columns: 1fr;
  }
  .pp-unlock-card {
    min-height: auto;
    padding: 22px 18px 18px;
    border-radius: 23px;
  }
  .pp-unlock-visual {
    display: none;
  }
  .pp-download-button {
    grid-template-columns: 42px 1fr 40px;
    padding-left: 12px;
  }
  .pp-unlock-footer {
    justify-content: flex-start;
  }
  .trust-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .trust-item {
    border-left: 0;
    padding: 16px 0;
  }
  .trust-item + .trust-item {
    border-top: 1px solid var(--border);
  }
  .trust-item:nth-child(n/**/+3) {
    margin-top: 0;
  }
  .trending-heading {
    display: block;
  }
  .ranking-link {
    margin-top: 20px;
  }
  .ranking-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .ranking-tabs {
    max-width: 100%;
    overflow-x: auto;
  }
  .top-controls {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 26px;
  }
  .pricing-card-top {
    display: block;
  }
  .pricing-audience {
    display: inline-flex;
    margin-top: 8px;
  }
  .site-footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    flex-wrap: wrap;
  }
  .analysis-feedback {
    font-size: 13px;
  }
  .pp-unlock-tags {
    max-width: 100%;
  }
  .pp-hero {
    padding: 28px 0 18px;
  }
  .pp-hero-heading {
    margin-bottom: 28px;
  }
  .pp-hero-heading h1 {
    margin-top: 18px;
    font-size: clamp(38px, 10.5vw, 48px);
  }
  .pp-demo-feature-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
  }
  .pp-demo-feature {
    margin-top: 0;
    padding: 12px;
    border-top: 0;
    border-left: 1px solid var(--border);
  }
  .pp-demo-feature:nth-child(3n/**/+1) {
    border-left: 1px solid var(--border);
  }
  .pp-demo-feature:nth-child(odd) {
    border-left: 0;
  }
  .pp-demo-feature:nth-child(n/**/+3) {
    border-top: 1px solid var(--border);
  }
  .pp-analysis-workspace {
    gap: 12px;
    padding: 10px;
    border-radius: 24px;
  }
  .pp-analyzer-panel {
    padding: 26px 20px;
    border-radius: 17px;
  }
  .pp-analyzer-panel .pp-search {
    grid-template-columns: 26px 1fr;
  }
  .pp-analyzer-panel .pp-search button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .pp-search-suggestion {
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .pp-search-suggestion img,
  .pp-search-suggestion-icon {
    width: 38px;
    height: 38px;
  }
  .pp-search-suggestion-meta {
    display: none;
  }
  .pp-analysis-workspace .pp-preview-card {
    min-height: 0;
    padding: 20px;
    border-radius: 17px;
  }
  .pp-analysis-workspace .pp-preview-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .pp-hero-results {
    padding: 26px 20px;
    border-radius: 17px;
  }
  .pp-analysis-workspace .pp-plugin-title {
    margin-top: 16px;
  }
  .pp-download-card {
    padding: 22px 18px;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    border-radius: 19px;
  }
  .pp-download-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }
  .pp-download-card .pp-download-button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .pp-demo-feature-strip {
    grid-template-columns: 1fr;
  }
  .pp-analysis-workspace .pp-preview-stats {
    grid-template-columns: 1fr;
  }
  .pp-demo-feature {
    border-left: 0;
  }
  .pp-demo-feature + .pp-demo-feature {
    border-top: 1px solid var(--border);
  }
  .auth-shell {
    width: min(100% - 26px, 640px);
    padding-top: 22px;
  }
  .auth-page-brand {
    margin-bottom: 22px;
  }
  .auth-layout {
    gap: 25px;
  }
  .auth-info {
    padding: 8px 0;
  }
  .auth-info h2 {
    margin-top: 15px;
    font-size: 42px;
  }
  .auth-info > p {
    font-size: 13px;
  }
  .auth-info-benefits {
    margin-top: 23px;
  }
  .auth-info-benefits article {
    padding: 14px 14px 14px 49px;
    text-align: left;
  }
  .auth-info-benefits article::before {
    left: 14px;
    top: 14px;
  }
  .auth-info-plan {
    text-align: left;
  }
  .auth-card {
    padding: 30px 20px;
    border-radius: 23px;
  }
  .auth-card h1 {
    font-size: 40px;
  }
  .auth-card > p {
    font-size: 15px;
  }
  .account-welcome,
  .account-verification {
    align-items: flex-start;
    flex-direction: column;
  }
  .account-track-form > div {
    grid-template-columns: 1fr;
  }
  .account-plugin-metrics {
    grid-template-columns: 1fr;
  }
  .account-plugin-card footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .report-container {
    width: min(100% - 26px, 1160px);
  }
  .report-nav nav a {
    display: none;
  }
  .report-plugin-head {
    grid-template-columns: 64px 1fr;
    gap: 15px;
  }
  .report-plugin-head > img {
    width: 64px;
    height: 64px;
    border-radius: 17px;
  }
  .report-title-row h1 {
    font-size: 30px;
  }
  .report-plugin-copy > p {
    font-size: 16px;
  }
  .report-metrics,
  .report-check-grid,
  .report-seo-categories,
  .report-performance-summary,
  .report-health-grid {
    grid-template-columns: 1fr;
  }
  .report-access-notice {
    align-items: flex-start;
    flex-direction: column;
  }
  .report-panel {
    padding: 21px;
    border-radius: 19px;
  }
  .report-recommendation {
    grid-template-columns: 26px 1fr;
  }
  .report-recommendation > b {
    display: none;
  }
  .report-chart-tabs {
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    border-radius: 22px;
  }
  .report-chart-tabs button {
    flex: 1;
    padding: 0 8px;
  }
  .report-chart-shell {
    min-height: 230px;
  }
  .report-chart-empty {
    min-height: 215px;
  }
  .report-release-impact {
    grid-template-columns: 1fr;
  }
  .report-release-impact dl {
    grid-template-columns: 1fr;
  }
  .report-upgrade-card {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .report-upgrade-star {
    margin: 0 auto;
  }
  .report-upgrade-actions,
  .report-upgrade-features {
    grid-column: 1;
  }
  .report-upgrade-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
  .report-upgrade-actions a {
    width: 100%;
    box-sizing: border-box;
  }
  .report-upgrade-features {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .checkout-main {
    padding: 50px 13px 70px;
  }
  .checkout-card {
    padding: 27px 20px;
  }
  .checkout-plan-heading {
    flex-direction: column;
  }
  .checkout-price {
    text-align: left;
  }
  .checkout-switch-plan,
  .account-upgrade-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .checkout-brand-image {
    width: 190px;
  }
  .account-header-nav {
    gap: 2px;
  }
  .account-header-nav a {
    padding: 0 10px;
    font-size: 13px;
  }
  .account-header-plan-button {
    display: none;
  }
  .account-menu-dropdown {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    width: auto;
  }
  .account-header {
    border-top-width: 6px;
  }

  .account-header .site-header-shell {
    width: min(100% - 24px, 620px);
    min-height: 76px;
    grid-template-columns: minmax(165px, 1fr) auto;
    gap: 10px;
  }

  .account-header .pluginpulse-brand {
    width: min(220px, 100%);
  }

  .account-header-nav {
    gap: 2px;
  }

  .account-header-nav a {
    min-height: 39px;
    padding: 0 10px;
    font-size: 12px;
  }

  .account-menu-button {
    min-width: 86px;
    min-height: 43px;
    padding: 0 12px;
    border-radius: 13px;
    font-size: 13px;
  }

  .account-menu-dropdown {
    position: fixed;
    top: 86px;
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
  }
   .account-upgrade-notice{
        flex-direction:column;
        align-items:flex-start;
    }

    .account-upgrade-notice-button{
        width:100%;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Shared PulseMetrics header navigation */
.report-nav .main-nav a,
.account-header-nav a,
.compare-nav a,
.rankings-nav a,
.legal-header > .legal-shell > a:last-child {
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.report-nav .main-nav a:hover,
.report-nav .main-nav a.is-active,
.account-header-nav a:hover,
.account-header-nav a.is-active,
.compare-nav a:hover,
.compare-nav a.is-active,
.rankings-nav a:hover,
.rankings-nav a.is-active,
.legal-header > .legal-shell > a:last-child:hover {
  background: transparent;
  box-shadow: none;
  color: #a66f00;
  transform: none;
}

.legal-header .pluginpulse-brand {
  width: min(290px, 54vw);
}

/* Match the home page header on non-home report-style pages */
.report-page .site-header-shell,
.checkout-page .site-header-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 96px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 300px;
  align-items: center;
  gap: 20px;
}

.report-page .main-nav,
.checkout-page .main-nav {
  justify-content: center;
}

.report-page .header-actions,
.checkout-page .header-actions {
  width: 300px;
  justify-content: flex-end;
  gap: 16px;
}
