/* Pro showcase page - feature deep-dives, paired with the membership comparison. */

.pro-body {
  font-family: 'Inter', sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #141414;
  color: #d8d8d8;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
}

.pro-main {
  padding: 3.5rem 1.25rem 5rem;
  max-width: 1120px;
  margin: 0 auto;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */

.pro-hero {
  position: relative;
  max-width: 760px;
  margin: 0 auto 5rem;
  text-align: center;
  padding: 1rem 0;
}

.pro-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 130%;
  background: radial-gradient(ellipse, rgba(200, 169, 110, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.pro-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.pro-hero-inner .capabilities-label {
  color: #c8a96e;
  margin-bottom: 0.1rem;
}

/* Pro badge in hero — mirrors the dev-log Supporter badge in scale & animation,
   uses the magenta Pro brand palette (same as .tier-badge.tier-pro in catalog.css). */
@keyframes pro-hero-badge-shine {
  0%, 15% { transform: translateX(-160%) skewX(-12deg); }
  65%, 100% { transform: translateX(320%) skewX(-12deg); }
}

@keyframes pro-hero-badge-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.5) inset,
      0 2px 8px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(205, 75, 185, 0.22),
      0 0 80px rgba(180, 30, 175, 0.1),
      0 0 2px rgba(255, 180, 245, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.5) inset,
      0 2px 8px rgba(0, 0, 0, 0.5),
      0 0 55px rgba(210, 90, 195, 0.38),
      0 0 110px rgba(180, 30, 175, 0.18),
      0 0 2px rgba(255, 200, 245, 0.62);
  }
}

.pro-hero-badge {
  position: relative;
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-radius: 8px;
  background:
    linear-gradient(165deg,
      rgba(255, 255, 255, 0.13) 0%,
      rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg,
      #3c1640 0%,
      #62205a 28%,
      #4a1746 55%,
      #310d30 100%);
  border: 1px solid rgba(210, 90, 195, 0.5);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(205, 75, 185, 0.22),
    0 0 80px rgba(180, 30, 175, 0.1),
    0 0 2px rgba(255, 180, 245, 0.4);
  overflow: hidden;
  vertical-align: middle;
  margin-bottom: 0.3rem;
}

.pro-hero-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.13) 50%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-12deg);
  pointer-events: none;
}

.pro-hero-badge::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  z-index: 0;
  background: linear-gradient(to top, rgba(225, 145, 210, 0.14), transparent);
  border-radius: 0 0 7px 7px;
  pointer-events: none;
}

.pro-hero-badge-label {
  position: relative;
  z-index: 1;
  display: block;
  font-family: 'Russo One', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f2cae8;
  text-shadow:
    0 0 20px rgba(210, 90, 195, 0.6),
    0 1px 0 rgba(20, 4, 18, 0.85);
  line-height: 1;
  white-space: nowrap;
}

@media (prefers-reduced-motion: no-preference) {
  .pro-hero-badge {
    animation: pro-hero-badge-glow 3.5s ease-in-out infinite;
  }
  .pro-hero-badge::before {
    animation: pro-hero-badge-shine 5.5s ease-in-out 1.5s infinite;
  }
}

@media (max-width: 640px) {
  .pro-hero-badge {
    padding: 0.6rem 1.4rem;
  }
  .pro-hero-badge-label {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }
}

.pro-hero-title {
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0;
  color: #ebebeb;
  text-wrap: balance;
}

.pro-hero-title .hero-accent {
  color: #c8a96e;
}

.pro-hero-lead {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #9a9a9a;
  max-width: 580px;
  margin: 0;
}

.pro-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(200, 169, 110, 0.32);
  background: rgba(200, 169, 110, 0.06);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  color: #d6c8b0;
  letter-spacing: 0.01em;
}

.pro-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8a96e;
  box-shadow: 0 0 8px rgba(200, 169, 110, 0.7);
  animation: pro-pulse 2.4s ease-in-out infinite;
}

@keyframes pro-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.pro-hero-cta {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero CTAs live in the same magenta palette as the PRO badge above them,
   but at a lower intensity than the closing CTA — this is the whisper, the
   close is the shout. Gold stays reserved for analytical accents. */
.pro-hero-cta .pro-cta--filled {
  background:
    linear-gradient(165deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg,
      #3c1640 0%,
      #5a1f54 50%,
      #310d30 100%);
  color: #f8e0f0;
  border: 1px solid rgba(210, 90, 195, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 2px 10px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(180, 30, 175, 0.12);
}

.pro-hero-cta .pro-cta--filled:hover {
  background:
    linear-gradient(165deg,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg,
      #4a1c50 0%,
      #6e2666 50%,
      #3d113b 100%);
  border-color: rgba(225, 110, 210, 0.7);
  color: #fff3fb;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 2px 12px rgba(0, 0, 0, 0.4),
    0 0 26px rgba(190, 40, 180, 0.22);
  transform: translateY(-1px);
}

.pro-hero-cta .pro-cta--ghost:hover {
  border-color: rgba(210, 90, 195, 0.6);
  color: #f2cae8;
}

.pro-hero-trust {
  font-size: 0.78rem;
  color: #6f6f6f;
  margin: 0.9rem 0 0;
  letter-spacing: 0.01em;
}

/* ── Built for (identity strip) ───────────────────────────────────────────── */

.pro-built-for {
  max-width: 880px;
  margin: 0 auto 4.5rem;
  padding: 2.2rem 1.8rem;
  background: linear-gradient(180deg, rgba(200, 169, 110, 0.04) 0%, transparent 100%);
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
}

.pro-built-for .capabilities-label {
  color: #c8a96e;
}

.pro-built-for-title {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #ebebeb;
  margin: 0 0 0.6rem;
  text-wrap: balance;
}

.pro-built-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
  max-width: 720px;
  width: 100%;
}

.pro-built-for-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  text-align: left;
}

.pro-built-for-glyph {
  flex-shrink: 0;
  color: #c8a96e;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

.pro-built-for-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #c8c8c8;
}

.pro-built-for-text em {
  color: #c8a96e;
  font-style: normal;
  font-weight: 600;
}

/* ── CTA buttons (shared) ─────────────────────────────────────────────────── */

.pro-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.pro-cta--filled {
  background: #c8a96e;
  color: #141414;
}
.pro-cta--filled:hover {
  background: #d4b87e;
  transform: translateY(-1px);
}

.pro-cta--ghost {
  background: transparent;
  color: #d8d8d8;
  border-color: #2a2a2a;
}
.pro-cta--ghost:hover {
  border-color: #c8a96e;
  color: #ebebeb;
}

.pro-cta--lg {
  padding: 0.9rem 1.8rem;
  font-size: 0.92rem;
}

/* ── Section intros ───────────────────────────────────────────────────────── */

.pro-features-intro,
.pro-roadmap-intro,
.pro-pricing-cta {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.pro-features-intro .capabilities-label,
.pro-roadmap-intro .capabilities-label {
  color: #c8a96e;
}

.pro-section-title {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #ebebeb;
  margin: 0;
}

.pro-section-sub {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #8a8a8a;
  max-width: 540px;
  margin: 0;
}

/* ── Feature rows (alternating) ───────────────────────────────────────────── */

.pro-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-top: 1px solid #1d1d1d;
}

.pro-feature:first-of-type {
  border-top: none;
}

.pro-feature--reverse .pro-feature-copy {
  order: 2;
}
.pro-feature--reverse .pro-feature-visual {
  order: 1;
}

/* Stacked variant: copy on top (centered, constrained width), visual full-row below.
   Used on the headliner feature to give the demo more breathing room. */
.pro-feature--stacked {
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.pro-feature--stacked .pro-feature-copy {
  max-width: 760px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.pro-feature--stacked .pro-feature-eyebrow {
  justify-content: center;
}

.pro-feature--stacked .pro-feature-points {
  max-width: 640px;
  text-align: left;
  align-self: center;
}

.pro-feature--stacked .pro-feature-footnote {
  max-width: 640px;
}

.pro-feature--stacked .pro-feature-visual {
  width: 100%;
  min-width: 0;
}

.pro-feature--stacked .pro-demo--compare,
.pro-feature--stacked .pro-demo-grid {
  max-width: 1100px;
  min-width: 0;
  margin: 0 auto;
}

/* Side-by-side demo grid for stacked features that need to show two states.
   Middle column is the connector (arrow + label) that ties the two demos
   together. On mobile the grid collapses to one column and the connector
   sits between as a vertical arrow. */
.pro-demo-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.pro-demo-grid-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  user-select: none;
}

.pro-demo-grid-connector-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  background:
    linear-gradient(180deg, rgba(210, 90, 195, 0.10) 0%, rgba(210, 90, 195, 0.04) 100%),
    #1a1014;
  border: 1px solid rgba(210, 90, 195, 0.35);
  border-radius: 999px;
  color: #d4a8c4;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 2px 6px rgba(0, 0, 0, 0.28);
}

.pro-demo-grid-connector-text {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.pro-demo-grid-connector-icon {
  display: block;
  color: rgba(217, 156, 192, 0.9);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .pro-demo-grid {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .pro-demo-grid > .pro-demo {
    justify-self: center;
  }
  .pro-demo-grid-connector {
    width: 100%;
    padding: 0.25rem 0;
  }
  .pro-demo-grid-connector-icon {
    transform: rotate(90deg);
  }
}

.pro-feature-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pro-feature-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.pro-feature-num {
  color: #c8a96e;
  font-variant-numeric: tabular-nums;
}

.pro-feature-tag {
  color: #6a6a6a;
  padding: 0.15rem 0.55rem;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.pro-feature-title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #ebebeb;
  margin: 0;
  line-height: 1.2;
  text-wrap: balance;
}

.pro-feature-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #b4b4b4;
  margin: 0;
}

.pro-feature-lead em {
  color: #c8a96e;
  font-style: normal;
  font-weight: 600;
}

.pro-feature-points {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pro-feature-points li {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding-left: 1rem;
  position: relative;
}

.pro-feature-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  background: #c8a96e;
  border-radius: 50%;
}

.pro-feature-point-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: #e0e0e0;
}

.pro-feature-point-sub {
  font-size: 0.84rem;
  line-height: 1.55;
  color: #888;
}

.pro-feature-footnote {
  font-size: 0.78rem;
  color: #6a6a6a;
  margin: 0.4rem 0 0;
  letter-spacing: 0.01em;
}

/* ── Mini-demo (Dynamic sort) ─────────────────────────────────────────────── */

.pro-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro-demo {
  width: 100%;
  max-width: 480px;
  position: relative;
}

/* When the shared .psup-preview is used inside the pro page demo wrapper, let it
   fill the wider container instead of its default 22rem cap (used in modals). */
.pro-demo .psup-preview {
  max-width: 100%;
}

.pro-demo::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.08) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.pro-demo-frame {
  background: linear-gradient(180deg, #1a1a1a 0%, #161616 100%);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.pro-demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border-bottom: 1px solid #232323;
  background: #181818;
}

.pro-demo-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #cfcfcf;
  letter-spacing: 0.01em;
}

.pro-demo-close {
  color: #555;
  font-size: 1rem;
  line-height: 1;
}

.pro-demo-toolbar {
  padding: 0.7rem 0.95rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid #1f1f1f;
}

.pro-demo-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(200, 169, 110, 0.35);
  background: rgba(200, 169, 110, 0.08);
  border-radius: 6px;
  color: #d6c8b0;
  font-size: 0.74rem;
}

.pro-demo-sort-badge {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  color: #fff2cb;
  background: linear-gradient(145deg, #3a2812 0%, #7a5a1f 100%);
  border: 1px solid rgba(225, 185, 70, 0.5);
  text-shadow: 0 1px 0 rgba(20, 4, 12, 0.85);
  padding: 0.18rem 0.35rem;
  border-radius: 3px;
}

.pro-demo-sort-glyph {
  color: #888;
}

.pro-demo-sort-label {
  font-weight: 600;
  color: #f2cae8;
}

.pro-demo-sort-dir {
  color: #e6b3cf;
  font-size: 0.85rem;
  margin-left: 0.15rem;
}

.pro-demo-context {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: #888;
}

.pro-demo-context-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5a8a5a;
  box-shadow: 0 0 6px rgba(90, 138, 90, 0.5);
}

.pro-demo-context-text {
  letter-spacing: 0.01em;
}

.pro-demo-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.65rem;
  background: #1c1c1c;
  border: 1px solid #262626;
  border-radius: 6px;
  transition: border-color 200ms ease;
}

.pro-demo-card--top {
  border-color: rgba(200, 169, 110, 0.55);
  background: linear-gradient(180deg, #1f1c16 0%, #1a1814 100%);
}

.pro-demo-card--dim {
  opacity: 0.7;
}

.pro-demo-card--locked {
  opacity: 0.45;
  filter: grayscale(0.4);
}

.pro-demo-card-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #2a2a26;
  border: 1px solid #2e2e2a;
}

.pro-demo-card--locked .pro-demo-card-icon {
  background: #1f1f1d;
  border-color: #262624;
}

.pro-demo-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.pro-demo-card-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e2e2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-demo-card-sub {
  font-size: 0.68rem;
  color: #777;
  letter-spacing: 0.01em;
}

.pro-demo-card-bubble {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 18px;
  padding: 0 5px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  border-radius: 3px;
  color: #f2cae8;
  background: linear-gradient(145deg, #3c1640 0%, #62205a 100%);
  border: 1px solid rgba(210, 90, 195, 0.55);
  text-shadow: 0 1px 0 rgba(20, 4, 12, 0.85);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.pro-demo-card-bubble--negative {
  background: linear-gradient(145deg, #2a1119 0%, #3d1726 100%);
  border-color: rgba(180, 90, 120, 0.4);
  color: #c89aaa;
}

.pro-demo-card-bubble--low,
.pro-demo-card-bubble--missing {
  background: rgba(210, 90, 195, 0.1);
  border-color: rgba(210, 90, 195, 0.28);
  color: #d8a8cc;
  text-shadow: none;
  box-shadow: none;
}

/* ── Library demo (feature 05) ───────────────────────────────────────────── */

.pro-demo--library::after {
  background: radial-gradient(ellipse at center, rgba(210, 90, 195, 0.10) 0%, transparent 60%);
}

.pro-demo-lib-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0.85rem;
}

.pro-demo-lib-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.pro-demo-lib-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.65rem 0.7rem;
  border-radius: 6px;
  border: 1px solid #2a2a2a;
  background: linear-gradient(180deg, #1a1a1a 0%, #161616 100%);
  text-align: center;
}

.pro-demo-lib-tier--free {
  border-color: rgba(212, 144, 10, 0.28);
  background: linear-gradient(180deg, rgba(40, 32, 20, 0.55) 0%, #161616 100%);
}

.pro-demo-lib-tier--pro {
  border-color: rgba(210, 90, 195, 0.38);
  background: linear-gradient(180deg, rgba(72, 16, 74, 0.55) 0%, #161616 100%);
  box-shadow: inset 0 0 0 1px rgba(210, 90, 195, 0.06);
}

.pro-demo-lib-tier-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.pro-demo-lib-tier--pro .pro-demo-lib-tier-label {
  color: #d8a8cc;
}

.pro-demo-lib-cap {
  display: flex;
  align-items: baseline;
  gap: 0.12rem;
  line-height: 1;
}

.pro-demo-lib-cap-val {
  font-size: 1.55rem;
  font-weight: 700;
  color: #f3c97a;
  font-variant-numeric: tabular-nums;
}

.pro-demo-lib-cap-sep,
.pro-demo-lib-cap-max {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(243, 201, 122, 0.55);
  font-variant-numeric: tabular-nums;
}

.pro-demo-lib-cap--unlimited {
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.pro-demo-lib-cap-infinity {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: #f2cae8;
}

.pro-demo-lib-cap-unlimited {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(216, 168, 204, 0.75);
}

.pro-demo-lib-meter {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 144, 10, 0.22);
  overflow: hidden;
}

.pro-demo-lib-meter-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(212, 144, 10, 0.55) 0%, #d4900a 100%);
}

.pro-demo-lib-tier-note {
  font-size: 0.64rem;
  color: #7a7a7a;
  line-height: 1.25;
}

.pro-demo-lib-tier-note--warn {
  color: #d4a04a;
}

.pro-demo-lib-types {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.65rem 0.7rem;
  border-radius: 6px;
  border: 1px solid #232323;
  background: #141414;
}

.pro-demo-lib-types-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6f6f6f;
}

.pro-demo-lib-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pro-demo-lib-type-chip {
  font-size: 0.68rem;
  color: #a8a8a8;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.pro-demo-lib-type-chip strong {
  font-weight: 700;
  color: #d8d8d8;
  font-variant-numeric: tabular-nums;
}

/* ── Efficiency View demo (feature 03) ───────────────────────────────────── */

/* Subtle gold glow to match the in-app Efficiency View bar. */
.pro-demo--efficiency::after {
  background: radial-gradient(ellipse at center, rgba(200, 169, 110, 0.08) 0%, transparent 60%);
}

/* Adjusted-stats bar — mirrors the real .stats-adjusted-bar at the top of the
   stats card. Gold gradient background, flush-left text tabs, gold underline +
   inline "· per X" hint on the active tab only. */
.pro-demo-sab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  margin-top: 0.5rem;
  background:
    linear-gradient(180deg, rgba(80, 66, 42, 0.22) 0%, rgba(80, 66, 42, 0.10) 100%),
    #1a1a1a;
  border-top: 1px solid rgba(139, 122, 90, 0.45);
  border-bottom: 1px solid rgba(200, 169, 110, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(200, 169, 110, 0.08),
    inset 0 -1px 0 rgba(200, 169, 110, 0.10);
  flex-wrap: wrap;
}

.pro-demo-sab-tabs {
  display: flex;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 0;
  align-items: baseline;
  flex-wrap: wrap;
}

.pro-demo-sab-tab {
  appearance: none;
  background: transparent;
  border: 0;
  margin: 0;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #888;
  padding: 2px 2px;
  transition: color 120ms ease;
}

.pro-demo-sab-tab:hover {
  color: #e0d3b8;
}

.pro-demo-sab-tab:focus-visible {
  outline: 1px solid rgba(200, 169, 110, 0.55);
  outline-offset: 2px;
  border-radius: 2px;
}

.pro-demo-sab-tab-label {
  line-height: 1.1;
}

.pro-demo-sab-tab-hint {
  display: none;
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #6f6f6f;
  line-height: 1;
}

.pro-demo-sab-tab-hint::before {
  content: '·';
  margin-right: 5px;
  color: rgba(139, 122, 90, 0.55);
}

.pro-demo-sab-tab--active {
  color: #c8a96e;
}

.pro-demo-sab-tab--active::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -3px;
  height: 2px;
  background: #c8a96e;
  box-shadow: 0 0 6px rgba(200, 169, 110, 0.5);
  border-radius: 1px;
}

.pro-demo-sab-tab--active .pro-demo-sab-tab-hint {
  display: inline;
}

/* Stat list — extensive rows show /IC; intensive rows dim. Mirrors the
   real stats panel's stat-row--adjusted / --unadjusted treatment. */
.pro-demo-stat-list {
  list-style: none;
  padding: 0.45rem 0.85rem 0.85rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pro-demo-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.32rem 0.5rem;
  border-radius: 3px;
  font-size: 0.78rem;
}

.pro-demo-stat-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.015);
}

.pro-demo-stat-label {
  color: #c8c8c8;
}

.pro-demo-stat-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 600;
  color: #ebebeb;
  font-size: 0.76rem;
}

.pro-demo-stat-unit {
  margin-left: 2px;
  color: #8b6f3f;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pro-demo-stat-row--unadjusted {
  opacity: 0.45;
}

.pro-demo-stat-row--unadjusted .pro-demo-stat-value {
  color: #888;
}

/* ── Indicators demo (feature 04) ─────────────────────────────────────────── */

/* Formula indicators keep the Pro accent while the frame mirrors the stats panel. */
.pro-demo--indicators::after {
  background: radial-gradient(ellipse at center, rgba(225, 185, 70, 0.08) 0%, transparent 60%);
}

/* The frame uses the parchment palette to mirror the real stats panel. */
.pro-demo--indicators .pro-demo-frame {
  background: linear-gradient(to bottom, #d4c5a0, #c4b590);
  border: 1px solid #8b7a5a;
}

.pro-demo--indicators .pro-demo-header {
  background: rgba(139, 122, 90, 0.18);
  border-bottom: 1px solid #8b7a5a;
}
.pro-demo--indicators .pro-demo-title {
  color: #2a2316;
}

.pro-demo-ind-section {
  padding: 0.85rem 0.85rem 0.7rem;
  border-bottom: 1px solid #8b7a5a;
}

.pro-demo-ind-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.pro-demo-ind-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e1e1e;
}

.pro-demo-ind-scroll {
  display: flex;
  gap: 0.62rem;
  align-items: flex-start;
  overflow: hidden;
  justify-content: center;
}

.pro-demo-ind {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  text-align: center;
  flex-shrink: 0;
}

.pro-demo-ind-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 2.35rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: linear-gradient(165deg, rgba(34, 31, 26, 0.97) 0%, rgba(18, 17, 15, 0.98) 100%);
  border: 1px solid rgba(200, 169, 110, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 2px 6px rgba(0, 0, 0, 0.3);
}

.pro-demo-ind-value {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f2eee6;
  font-variant-numeric: tabular-nums;
}

.pro-demo-ind-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f5238;
  white-space: nowrap;
}

/* Custom indicator badges - gold accent (Pro custom, not just-added). */
.pro-demo-ind--custom .pro-demo-ind-circle {
  border-color: rgba(225, 185, 70, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 2px 6px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(225, 185, 70, 0.12);
}

/* Just-built indicator - muted purple accent, ties to the Pro badge palette */
.pro-demo-ind--new .pro-demo-ind-circle {
  border-color: #62205a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 2px 6px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(122, 29, 112, 0.18);
}

.pro-demo-ind--new .pro-demo-ind-label {
  color: #62205a;
}

.pro-demo-ind-circle--pulse {
  animation: proDemoIndicatorPulse 3.2s ease-out infinite;
}

.pro-demo-ind-circle--pulse-new {
}

@keyframes proDemoIndicatorPulse {
  0%, 28% {
    border-color: rgba(92, 184, 122, 0.95);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.09),
      0 2px 6px rgba(0, 0, 0, 0.3),
      0 0 0 2px rgba(92, 184, 122, 0.24),
      0 0 12px rgba(92, 184, 122, 0.36);
  }
  100% {
    border-color: rgba(225, 185, 70, 0.55);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 2px 6px rgba(0, 0, 0, 0.3),
      0 0 0 1px rgba(225, 185, 70, 0.12);
  }
}


.pro-demo-ind-delta {
  font-size: 0.58rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.pro-demo-ind-delta--pos { color: #2d7a2d; }
.pro-demo-ind-delta--neg { color: #9e3333; }

.pro-demo-ind-add {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 4.1rem;
  height: 2.35rem;
  padding: 0 0.5rem;
  background: transparent;
  border: 1px dashed rgba(80, 66, 42, 0.5);
  border-radius: 999px;
  color: #6b5d42;
  flex-shrink: 0;
  margin-top: 0;
  cursor: default;
}

.pro-demo-ind-add-pro {
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #7a3e62;
  background: rgba(225, 185, 70, 0.14);
  border: 1px solid rgba(225, 185, 70, 0.4);
  border-radius: 2px;
  padding: 0 3px;
  line-height: 1.3;
}

.pro-demo-ind-add-plus {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.pro-demo-ind-add-label {
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.pro-demo-ind-stat-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0.85rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.pro-demo-ind-stat-list .pro-demo-stat-row {
  background: rgba(255, 255, 255, 0.04);
  color: #1c1c1c;
}
.pro-demo-ind-stat-list .pro-demo-stat-label {
  color: #2a2316;
}
.pro-demo-ind-stat-list .pro-demo-stat-value {
  color: #1c1c1c;
}

/* ── Indicator builder demo — mirrors the live .ind-builder modal ─────────
   Dark surface + magenta accent (Pro brand). Distinct from the parchment
   stats panel demo it sits next to, because the real builder is a floating
   modal, not part of the stats card. */

.pro-demo--builder::after {
  background: radial-gradient(ellipse at center, rgba(210, 90, 195, 0.10) 0%, transparent 60%);
}

.pro-demo-builder-frame {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  color: #d8d8d8;
}

.pro-demo-builder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid #262626;
  background: linear-gradient(180deg, rgba(210, 90, 195, 0.08) 0%, transparent 100%);
}

.pro-demo-builder-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ebebeb;
}

.pro-demo-builder-close {
  color: #888;
  font-size: 1.15rem;
  line-height: 1;
}

.pro-demo-builder-body {
  padding: 0.85rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pro-demo-builder-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.pro-demo-builder-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}

.pro-demo-builder-input {
  padding: 0.45rem 0.55rem;
  background: #131313;
  border: 1px solid #2e2e2e;
  border-radius: 5px;
  color: #ebebeb;
  font-size: 0.78rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pro-demo-builder-input--mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: -0.005em;
  border-color: rgba(210, 90, 195, 0.45);
  box-shadow: 0 0 0 2px rgba(210, 90, 195, 0.08);
}

.pro-demo-builder-preview {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.6rem;
  background: #131313;
  border: 1px solid #242424;
  border-radius: 5px;
}

.pro-demo-builder-preview-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
}

.pro-demo-builder-preview-value {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e6b3cf;
  margin-left: auto;
}

.pro-demo-builder-ops {
  display: flex;
  gap: 0.32rem;
}

.pro-demo-builder-op {
  flex: 1;
  text-align: center;
  background: #1d1d1d;
  border: 1px solid #2e2e2e;
  border-radius: 5px;
  color: #d0d0d0;
  font-size: 0.85rem;
  padding: 0.32rem 0;
}

.pro-demo-builder-stats {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pro-demo-builder-stats-group {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8a96e;
  margin-top: 0.15rem;
}

.pro-demo-builder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.pro-demo-builder-chip {
  background: #1d1d1d;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  color: #c0c0c0;
  font-size: 0.65rem;
  padding: 0.18rem 0.5rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: -0.005em;
}

.pro-demo-builder-foot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem;
  border-top: 1px solid #262626;
}

.pro-demo-builder-cancel,
.pro-demo-builder-save {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.pro-demo-builder-cancel {
  background: transparent;
  border-color: #2e2e2e;
  color: #c0c0c0;
}

.pro-demo-builder-save {
  background: #62205a;
  color: #fff;
}

/* ── Roadmap ──────────────────────────────────────────────────────────────── */

.pro-roadmap {
  margin: 4rem auto 0;
  max-width: 880px;
}

.pro-roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.pro-roadmap-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  background: #181818;
  border: 1px solid #232323;
  border-radius: 8px;
  border-left: 2px solid rgba(200, 169, 110, 0.35);
}

.pro-roadmap-item-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e2e2;
}

.pro-roadmap-item-sub {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #888;
}

.pro-roadmap-note {
  margin: 1.6rem auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #b4b4b4;
  padding: 0.9rem 1.2rem;
  background: linear-gradient(180deg, rgba(200, 169, 110, 0.05) 0%, transparent 100%);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 10px;
}

/* ── Pricing CTA ──────────────────────────────────────────────────────────── */

.pro-pricing-cta {
  margin-top: 5rem;
  padding: 3rem 1.5rem;
  border-top: 1px solid #1d1d1d;
}

.pro-pricing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.pro-pricing-inner .pro-cta {
  margin-top: 0.6rem;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 820px) {
  .pro-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
  }
  .pro-feature--reverse .pro-feature-copy,
  .pro-feature--reverse .pro-feature-visual {
    order: initial;
  }
  .pro-roadmap-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pro-built-for-list {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}

@media (max-width: 520px) {
  .pro-main {
    padding: 2.5rem 1rem 4rem;
  }
  .pro-demo-grid {
    grid-template-columns: 1fr;
  }
  .pro-demo-card-bubble {
    top: -6px;
    right: -6px;
    font-size: 0.66rem;
  }
  .pro-demo-lib-split {
    grid-template-columns: 1fr;
  }
}

/* Compare grid mockup - three build cards for the same template, each
   showing a different (doctrine x research x tank) combination. The chip
   that varies vs the baseline is gold; the winning combo gets a gold-glow
   border and a "Best combo" tag. Up/down deltas use teal/brick. */
.pro-demo--compare .pro-demo-frame {
  padding-bottom: 0.5rem;
}

/* Header: icon + title, matching the actual in-app "Compare Grid" button
   from the designer (2x2 grid glyph). Gold-tinted icon with a faint drop
   shadow ties it to the gold dimension swap chips on the cards below. */
.pro-demo-header--compare {
  padding: 0.7rem 0.95rem;
  background: linear-gradient(180deg, #1c1c1a 0%, #181816 100%);
  border-bottom-color: #262624;
  justify-content: flex-start;
}

.pro-demo-header-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.pro-demo-header-icon {
  flex-shrink: 0;
  display: block;
  color: #c8a96e;
  filter: drop-shadow(0 0 4px rgba(200, 169, 110, 0.25));
}

.pro-demo-header--compare .pro-demo-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e6dcc8;
  letter-spacing: -0.005em;
}

.pro-demo-cmp-cards {
  padding: 0.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 160px;
  gap: 0.55rem;
}

.pro-demo-cmp-card {
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #161616 100%);
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 0.55rem 0.5rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  overflow: hidden;
}

/* Single neutral top-edge accent. The variant signal lives in the small
   gold dot inside the pill — that, plus the gold .pro-demo-cmp-dim--swap
   chips below, carry the "this is a variant" story without flooding the
   card in gold. One signal per role: dot = card status, swap chip = which
   dimension changed. */
.pro-demo-cmp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #2c2c2c;
  z-index: 1;
}

.pro-demo-cmp-card--add::before {
  display: none;
}

.pro-demo-cmp-card--add {
  background: #141414;
  border: 1px dashed #2f2f2f;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.55rem;
  cursor: default;
}

.pro-demo-cmp-add-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px dashed #5e5e5e;
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
  color: #a0a0a0;
}

.pro-demo-cmp-add-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.pro-demo-cmp-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  padding-top: 0.1rem;
}

.pro-demo-cmp-unit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #2e2e2e;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.25);
  object-fit: contain;
  padding: 4px;
  flex-shrink: 0;
}

.pro-demo-cmp-name {
  color: #e6dcc8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}

/* Tag pill: status-led indicator at the top of every card head. Neutral
   for the baseline, gold-tinted for variants (same palette as
   .pro-demo-cmp-dim--swap below). The leading dot picks up the same
   accent so the pill reads as a real status chip, not a caption. */
.pro-demo-cmp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem 0.22rem 0.45rem;
  border-radius: 999px;
  border: 1px solid #2e2e2e;
  background: #141414;
  color: #9c9c9c;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-demo-cmp-tag-dot {
  flex-shrink: 0;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5a5a5a;
}

/* Variant pill stays neutral — only the dot carries the gold accent. The
   dim swap chips below are where the gold story is told in full. */
.pro-demo-cmp-card--variant .pro-demo-cmp-tag-dot {
  background: #c8a96e;
  box-shadow: 0 0 4px rgba(200, 169, 110, 0.7);
}

.pro-demo-cmp-dims {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}

.pro-demo-cmp-dim {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.22rem;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 0.35rem 0.2rem 0.3rem;
  min-width: 0;
}

.pro-demo-cmp-dim-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
}

.pro-demo-cmp-dim-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9c9c9c;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pro-demo-cmp-dim--swap {
  background: rgba(200, 169, 110, 0.08);
  border-color: rgba(200, 169, 110, 0.45);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 110, 0.12);
}

.pro-demo-cmp-dim--swap .pro-demo-cmp-dim-label {
  color: #d9c08a;
}

.pro-demo-cmp-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  border-top: 1px solid #232323;
  padding-top: 0.4rem;
}

.pro-demo-cmp-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.7rem;
  min-width: 0;
  padding: 0.22rem 0.4rem;
  border-radius: 3px;
  background: transparent;
  border: 1px solid transparent;
}

.pro-demo-cmp-stat-label {
  color: #999;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pro-demo-cmp-stat-val {
  font-family: 'Roboto Mono', 'Courier New', monospace;
  font-weight: 700;
  color: #d7d7d7;
  white-space: nowrap;
}

.pro-demo-cmp-stat--good {
  background: rgba(84, 132, 117, 0.22);
  border-color: rgba(84, 132, 117, 0.35);
}

.pro-demo-cmp-stat--good .pro-demo-cmp-stat-label {
  color: #b6cfc2;
}

.pro-demo-cmp-stat--good .pro-demo-cmp-stat-val {
  color: #bcd9cc;
}

.pro-demo-cmp-stat--bad {
  background: rgba(180, 78, 95, 0.22);
  border-color: rgba(180, 78, 95, 0.32);
}

.pro-demo-cmp-stat--bad .pro-demo-cmp-stat-label {
  color: #d2b3b3;
}

.pro-demo-cmp-stat--bad .pro-demo-cmp-stat-val {
  color: #dca8a8;
}

@media (max-width: 720px) {
  /* Keep the multi-column layout on mobile; let the user swipe horizontally
     to see additional builds. Mirrors the live comparison grid's behavior.
     min-width: 0 keeps the grid's fixed-track min-content from forcing the
     ancestor chain wider than the viewport. */
  .pro-demo-cmp-cards {
    grid-template-columns: 220px 220px 220px 150px;
    gap: 0.5rem;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 169, 110, 0.35) transparent;
  }
  .pro-demo-cmp-cards::-webkit-scrollbar {
    height: 6px;
  }
  .pro-demo-cmp-cards::-webkit-scrollbar-track {
    background: rgba(200, 169, 110, 0.08);
    border-radius: 3px;
  }
  .pro-demo-cmp-cards::-webkit-scrollbar-thumb {
    background: rgba(200, 169, 110, 0.35);
    border-radius: 3px;
  }
  .pro-demo-cmp-name {
    font-size: 0.74rem;
  }
  .pro-demo-cmp-dim-icon {
    width: 28px;
    height: 28px;
  }
  .pro-demo-cmp-dim-label {
    font-size: 0.58rem;
  }
}

/* ── Community badge demo ─────────────────────────────────────────────────── */

.pro-demo--badge::after {
  background: radial-gradient(ellipse at center, rgba(210, 90, 195, 0.08) 0%, transparent 60%);
}

.pro-demo-badge-body {
  display: flex;
  flex-direction: column;
  background: #131313;
}

.pro-demo-cat-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.7rem 0.7rem 0.55rem;
}

.pro-demo-cat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.7rem;
  background: #1a1a1a;
  border: 1px solid #272727;
  border-radius: 6px;
}

.pro-demo-cat-avatar {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 1px solid #333;
}

.pro-demo-cat-avatar--pro {
  border: 1px solid rgba(210, 90, 195, 0.55);
  background: linear-gradient(160deg, #310d30 0%, #1c0a1a 100%);
  box-shadow:
    0 0 0 1px rgba(40, 8, 22, 0.78) inset,
    0 0 18px rgba(205, 75, 185, 0.22),
    0 0 1px rgba(255, 180, 245, 0.35);
}

.pro-demo-cat-avatar--profile {
  width: 36px;
  height: 36px;
}

.pro-demo-cat-info {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  flex: 1;
  min-width: 0;
}

.pro-demo-cat-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pro-demo-cat-author {
  font-size: 0.7rem;
  font-weight: 600;
  color: #a0a0a0;
}

.pro-demo-profile-strip {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.65rem 0.7rem 0.75rem;
  border-top: 1px solid #1e1e1e;
  background: linear-gradient(180deg, rgba(58, 10, 54, 0.12) 0%, #141414 100%);
}

.pro-demo-profile-strip-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f6f6f;
}

.pro-demo-profile-strip-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pro-demo-profile-avatar-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.pro-demo-profile-badge {
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f2cae8;
  background: linear-gradient(145deg, #3c1640 0%, #62205a 28%, #4a1746 55%, #310d30 100%);
  border: 1px solid rgba(210, 90, 195, 0.5);
  border-radius: 3px;
  padding: 0.07rem 0.3rem;
  text-shadow: 0 0 8px rgba(210, 90, 195, 0.45);
}

.pro-demo-profile-username {
  font-size: 0.82rem;
  font-weight: 700;
  color: #d8d8d8;
}

.pro-demo-cat-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e2e2e2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro-demo-cat-stats {
  display: flex;
  gap: 0.55rem;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.64rem;
  font-weight: 600;
  color: #888;
}

/* ── Saves note (compact, post-features) ─────────────────────────────────── */

.pro-saves-note {
  max-width: 880px;
  margin: 0 auto 4rem;
  padding: 0.85rem 1.4rem;
  background: linear-gradient(180deg, rgba(200, 169, 110, 0.05) 0%, rgba(200, 169, 110, 0.01) 100%);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #b8b8b8;
  text-align: center;
}

.pro-saves-note-text strong {
  color: #ebebeb;
  font-weight: 600;
}

@media (max-width: 560px) {
  .pro-saves-note {
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
  }
}

/* ── Price anchor strip ───────────────────────────────────────────────────── */

.pro-anchor-strip {
  max-width: 880px;
  margin: -2.5rem auto 4rem;
  padding: 0.95rem 1.6rem;
  background: linear-gradient(180deg, rgba(200, 169, 110, 0.06) 0%, rgba(200, 169, 110, 0.02) 100%);
  border: 1px solid rgba(200, 169, 110, 0.22);
  border-radius: 10px;
}

.pro-anchor-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  font-size: 0.92rem;
  color: #c8c8c8;
  text-align: center;
}

.pro-anchor-price {
  color: #d8d8d8;
}

.pro-anchor-price strong {
  color: #ebebeb;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.pro-anchor-save {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  background: rgba(200, 169, 110, 0.14);
  border-radius: 4px;
  color: #c8a96e;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pro-anchor-sep {
  color: #5a5a5a;
  font-size: 0.85rem;
}

.pro-anchor-free {
  color: #8a8a8a;
}

/* ── Closing CTA ───────────────────────────────────────────────────────────
   This is the brand moment. Gold accents lead the analytical narrative
   above; the close shifts to the magenta Pro palette (mirrors .pro-hero-badge
   and the catalog avatar glow) so clicking literally feels like claiming the
   badge. Annual is the magenta-filled, recommended option; Monthly is the
   ghost. The "save 50%" pill keeps one gold note for tonal continuity. */

.pro-close {
  position: relative;
  max-width: 760px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background:
    radial-gradient(ellipse at top, rgba(122, 29, 112, 0.16) 0%, transparent 65%),
    linear-gradient(180deg, #181016 0%, #14111a 100%);
  border: 1px solid rgba(180, 80, 160, 0.32);
  border-radius: 14px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(122, 29, 112, 0.08);
  overflow: hidden;
}

.pro-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(210, 90, 195, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pro-close-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.pro-close .capabilities-label {
  color: #d8a8cc;
}

.pro-close-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f2eae8;
  margin: 0;
  text-wrap: balance;
}

.pro-close-sub {
  font-size: 0.95rem;
  color: #a8a0a4;
  margin: 0 0 0.5rem;
  max-width: 480px;
  line-height: 1.55;
}

.pro-close-cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
}

.pro-close .pro-cta--lg {
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 1.6rem;
  min-width: 200px;
}

/* Monthly — ghost magenta. Sits as the secondary option. */
.pro-close .pro-cta--filled {
  background: transparent;
  color: #f2cae8;
  border: 1px solid rgba(210, 90, 195, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.pro-close .pro-cta--filled:hover {
  background: rgba(210, 90, 195, 0.10);
  border-color: rgba(210, 90, 195, 0.72);
  color: #ffe1f3;
  transform: translateY(-1px);
}

.pro-cta-line {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.pro-cta-price {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

/* Annual — filled magenta, the visually recommended option. Mirrors the
   PRO badge gradient so the CTA reads as "become Pro." */
.pro-close .pro-cta--annual {
  position: relative;
  background:
    linear-gradient(165deg,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg,
      #3c1640 0%,
      #62205a 28%,
      #4a1746 55%,
      #310d30 100%);
  color: #f8e0f0;
  border: 1px solid rgba(210, 90, 195, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 2px 14px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(180, 30, 175, 0.18);
}

.pro-close .pro-cta--annual:hover {
  background:
    linear-gradient(165deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg,
      #4a1c50 0%,
      #762a6e 28%,
      #5a1f58 55%,
      #3d113b 100%);
  border-color: rgba(225, 110, 210, 0.78);
  color: #fff3fb;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 2px 16px rgba(0, 0, 0, 0.5),
    0 0 38px rgba(190, 40, 180, 0.3);
}

/* Save 50% pill — gold on dark, the one tonal callback to the rest of the
   page. Reads as a positive accent against the magenta button. */
.pro-cta-save {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.1rem 0.42rem;
  background: rgba(200, 169, 110, 0.18);
  border-radius: 3px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e6c98a;
  border: 1px solid rgba(200, 169, 110, 0.45);
}

.pro-close-trust {
  font-size: 0.78rem;
  color: #7a6d75;
  margin: 0.9rem 0 0;
  letter-spacing: 0.01em;
}

.pro-close-error {
  min-height: 1.2em;
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: #d68a8a;
}

.pro-close-error:empty {
  display: none;
}

@media (max-width: 560px) {
  .pro-close {
    padding: 2.2rem 1.2rem;
  }
  .pro-close-cta-row {
    flex-direction: column;
    width: 100%;
  }
  .pro-close .pro-cta--lg {
    width: 100%;
  }
  .pro-anchor-strip {
    margin: -1.5rem auto 3rem;
    padding: 0.85rem 1rem;
  }
  .pro-anchor-strip-inner {
    font-size: 0.85rem;
  }
}

/* ── /pro/welcome ─────────────────────────────────────────────────────────── */

.prowelcome-body {
  background: #141414;
  color: #d8d8d8;
}

/* Slow vignette darkens the edges when Pro activates - "lights dim, focus
   pulls to centre". Inert until JS adds .is-on. */
.prowelcome-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(
      ellipse at center,
      transparent 30%,
      rgba(0, 0, 0, 0.55) 78%,
      rgba(0, 0, 0, 0.82) 100%
    );
  transition: opacity 1.4s ease-out;
}

.prowelcome-vignette.is-on {
  opacity: 1;
}

.prowelcome-main {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.prowelcome-inner {
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  animation: prowelcome-fadein 0.55s ease 0.05s forwards;
  transition: opacity 320ms ease, transform 320ms ease;
}

/* Fade-out beat between activating and ready, so the swap doesn't snap.
   Only the activating content lives in these elements at this moment - the
   ready content takes over via the .is-ready animations below. */
.prowelcome-inner.is-transitioning .prowelcome-status,
.prowelcome-inner.is-transitioning .prowelcome-title,
.prowelcome-inner.is-transitioning .prowelcome-sub {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.prowelcome-badge-wrap {
  position: relative;
  padding-bottom: 0.4rem;
  animation: prowelcome-badge-enter 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

/* Magenta bloom behind the badge. Hidden until the inner gets .has-bloom. */
.prowelcome-bloom {
  position: absolute;
  inset: -120% -180%;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(225, 185, 70, 0.32) 0%,
    rgba(170, 130, 40, 0.18) 22%,
    rgba(180, 30, 100, 0.05) 48%,
    transparent 72%
  );
  filter: blur(8px);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 1.6s ease, transform 2.4s ease;
  z-index: -1;
}

.prowelcome-inner.has-bloom .prowelcome-bloom {
  opacity: 1;
  transform: scale(1);
  animation: prowelcome-bloom-breath 4.2s ease-in-out 1.6s infinite;
}

@keyframes prowelcome-bloom-breath {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.04); }
}

.prowelcome-badge {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 2px 14px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(225, 185, 70, 0.32),
    0 0 110px rgba(170, 130, 40, 0.18),
    0 0 2px rgba(255, 230, 160, 0.5);
  transition: box-shadow 1.6s ease;
}

.has-bloom .prowelcome-badge {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    0 2px 16px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(225, 185, 70, 0.5),
    0 0 160px rgba(170, 130, 40, 0.28),
    0 0 2px rgba(255, 240, 195, 0.7);
}

@keyframes prowelcome-badge-enter {
  0%   { opacity: 0; transform: scale(0.82) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.prowelcome-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(225, 185, 70, 0.28);
  background: rgba(225, 185, 70, 0.06);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff2cb;
  letter-spacing: 0.01em;
  /* opacity/transform are owned by the .is-transitioning and .is-ready
     rules below - don't add transitions for them here or they'll fight
     the animation's `both` fill-mode. */
  transition: background 0.45s ease, border-color 0.45s ease, color 0.45s ease;
}

.prowelcome-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d680c4;
  box-shadow: 0 0 8px rgba(225, 185, 70, 0.7);
  animation: prowelcome-pulse 1.4s ease-in-out infinite;
}

.prowelcome-status-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: #fff2cb;
}

.prowelcome-status--ok {
  background: rgba(225, 185, 70, 0.08);
  border-color: rgba(225, 185, 70, 0.45);
  color: #fff2cb;
}

.prowelcome-status--waiting {
  background: rgba(200, 169, 110, 0.06);
  border-color: rgba(200, 169, 110, 0.32);
  color: #d6c8b0;
}

@keyframes prowelcome-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

.prowelcome-copy {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 460px;
  width: 100%;
}

.prowelcome-title {
  font-size: clamp(2rem, 5.5vw, 2.85rem);
  font-weight: 700;
  color: #ebebeb;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  /* Reserve two lines of headline so the long "Activating your Pro access"
     and short "You're Pro." both occupy the same vertical space - prevents a
     reflow jiggle when the text swaps. */
  min-height: calc(2 * 1.1 * clamp(2rem, 5.5vw, 2.85rem));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.6s ease;
}

.is-activating .prowelcome-title {
  color: #c9c9c9;
}

.prowelcome-sub {
  font-size: 0.92rem;
  color: #8e8e8e;
  line-height: 1.65;
  margin: 0;
  text-wrap: balance;
  /* Same idea on the sub copy - reserve three lines so the two states don't
     reflow the column. */
  min-height: calc(3 * 1.65 * 0.92rem);
  transition: color 0.6s ease;
}

.prowelcome-actions-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  /* Reserve the row so the actions appearing don't push the footnote down. */
  min-height: 2.7rem;
}

.prowelcome-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}

.prowelcome-plan-line {
  font-size: 0.75rem;
  color: #6f6f6f;
  margin: 0.4rem 0 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prowelcome-footnote {
  font-size: 0.78rem;
  color: #5a5a5a;
  margin: 0.4rem 0 0;
  line-height: 1.55;
  max-width: 420px;
}

/* Reveal once the ready state lands. The status, title and sub all share the
   same timing so they read as one resolved beat instead of a waterfall; only
   the actions and footnote (which weren't present before) come in after. */
.is-ready .prowelcome-status,
.is-ready .prowelcome-title,
.is-ready .prowelcome-sub {
  animation: prowelcome-rise 0.55s ease 0.05s both;
}
.is-ready .prowelcome-actions-wrap {
  animation: prowelcome-rise 0.55s ease 0.35s both;
}
.is-ready .prowelcome-footnote {
  animation: prowelcome-rise 0.55s ease 0.55s both;
}

@keyframes prowelcome-fadein {
  0%   { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes prowelcome-rise {
  0%   { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .prowelcome-inner,
  .prowelcome-inner * {
    animation: none !important;
    transition: none !important;
  }
  .prowelcome-vignette {
    transition: none !important;
  }
}

@media (max-width: 560px) {
  .prowelcome-main {
    padding: 2rem 1rem;
  }
  .prowelcome-inner {
    gap: 1.3rem;
  }
  .prowelcome-actions {
    flex-direction: column;
    width: 100%;
  }
  .prowelcome-actions .pro-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ── Hero CTA with price ─────────────────────────────────────────────────── */

.pro-cta--stacked {
  flex-direction: column;
  gap: 0.15rem;
}

.pro-cta-from {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.72;
  letter-spacing: 0.02em;
}

/* ── Supporter column: hidden on /pro, shown on /supporter ───────────────── */

.pro-body .mem-grid {
  grid-template-columns: 1.5fr 1fr 1fr;
}

/* 3rd col-head = Supporter header */
.pro-body .mem-grid > .mem-col-head:nth-child(3) {
  display: none;
}

/* 3rd cell inside each row = Supporter data cell */
.pro-body .mem-grid .mem-row .mem-cell:nth-child(3) {
  display: none;
}

@media (max-width: 700px) {
  .pro-body .mem-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

/* ── Supporter nudge link below plans grid ───────────────────────────────── */

.pro-supporter-nudge {
  text-align: center;
  font-size: 0.78rem;
  color: #555;
  margin: 1.5rem 0 0;
  letter-spacing: 0.01em;
}

.pro-supporter-nudge-link {
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid #3a3a3a;
  transition: color 120ms ease, border-color 120ms ease;
}

.pro-supporter-nudge-link:hover {
  color: #c8a96e;
  border-color: #c8a96e;
}

/* ── Plan grid: annual save callout on Pro header ────────────────────────── */

.mem-tier-save-line {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e6b3cf;
  margin-top: 6px;
}
