:root {
  --bg: #05070d;
  --bg-2: #091225;
  --panel: rgba(7, 12, 24, 0.72);
  --panel-strong: rgba(7, 11, 22, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 214, 93, 0.18);
  --text: #f6f7fb;
  --muted: rgba(246, 247, 251, 0.67);
  --soft: rgba(246, 247, 251, 0.82);
  --gold: #f0bf49;
  --gold-2: #ffc95b;
  --blue: #183765;
  --blue-2: #0e1f3e;
  --cyan: #6be8d9;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 10% 18%, rgba(240, 191, 73, 0.11), transparent 25%),
    radial-gradient(circle at 86% 8%, rgba(66, 131, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #05070d 0%, #060a14 45%, #05070d 100%);
}

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

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.35) 0.7px, transparent 0.8px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,.28) 0.7px, transparent 0.8px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.22) 0.7px, transparent 0.8px);
  background-size: 160px 160px;
  z-index: 0;
}

.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.blob-a {
  width: 360px;
  height: 360px;
  left: -80px;
  top: 160px;
  background: rgba(240, 191, 73, 0.12);
}

.blob-b {
  width: 430px;
  height: 430px;
  right: -110px;
  top: 60px;
  background: rgba(66, 131, 255, 0.18);
}

.blob-c {
  width: 360px;
  height: 360px;
  right: 12%;
  bottom: 8%;
  background: rgba(107, 232, 217, 0.09);
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.glass {
  background: linear-gradient(180deg, rgba(10, 17, 31, 0.9), rgba(7, 11, 22, 0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 100;
  padding-top: 22px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 26px;
}

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

.main-nav,
.nav-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-nav {
  gap: 28px;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color .2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 18px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #111;
  border-color: rgba(255, 206, 92, 0.5);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 18px 40px rgba(240, 191, 73, 0.18);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.btn-ghost {
  color: var(--muted);
}

.btn-lg {
  padding: 16px 22px;
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 74px 0 42px;
}

.pill,
.section-tag,
.kicker,
.badge-positive,
.badge-lock {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 700;
}

.pill,
.section-tag {
  padding: 10px 14px;
  border: 1px solid rgba(255, 206, 92, 0.18);
  background: rgba(255, 206, 92, 0.08);
  color: #fde9b2;
  font-size: .82rem;
  letter-spacing: .05em;
}

.hero h1,
.section-head h2,
.workflow-copy h2,
.cta-panel h2 {
  margin: 18px 0 0;
  letter-spacing: -0.06em;
  line-height: .94;
}

.hero h1 {
  font-size: clamp(3.3rem, 7vw, 6.5rem);
}

.hero-text,
.section-head p,
.workflow-copy p,
.feature-card p,
.workflow-card p,
.faq-item p,
.cta-panel p {
  color: var(--soft);
  line-height: 1.72;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 760px;
  margin: 24px 0 0;
}

.hero-actions {
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat-card {
  border-radius: 22px;
  padding: 18px;
}

.stat-card span,
.mini-box span,
.proof-card span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .06em;
}

.stat-card strong,
.proof-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.hero-stage {
  position: relative;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 8% auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 191, 73, .16), transparent 70%);
  filter: blur(20px);
}

.hero-card {
  position: relative;
  border-radius: 34px;
  padding: 22px;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.05), transparent 35%, transparent 65%, rgba(240, 191, 73, .05));
  pointer-events: none;
}

.tilt-card {
  transform: perspective(1600px) rotateY(-6deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.hero-card-head,
.card-brand,
.mini-metrics,
.preview-banner,
.pick-row,
.chart-head,
.price-top,
.site-footer,
.footer-left {
  display: flex;
  align-items: center;
}

.hero-card-head,
.preview-banner,
.site-footer {
  justify-content: space-between;
}

.card-brand {
  gap: 12px;
}

.card-brand img,
.footer-left img {
  width: 42px;
  height: 42px;
}

.card-brand strong,
.footer-left strong {
  display: block;
  letter-spacing: .08em;
}

.card-brand span,
.footer-left span,
.card-live {
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .12em;
}

.card-live {
  font-weight: 700;
}

.mini-metrics {
  gap: 14px;
  margin-top: 18px;
}

.mini-box {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 16px;
}

.mini-box strong {
  display: block;
  margin-top: 10px;
  font-size: 1.45rem;
}

.preview-banner {
  gap: 16px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(255, 206, 92, 0.1), rgba(255,255,255,.02));
  border: 1px solid rgba(255, 206, 92, 0.14);
}

.kicker {
  color: #f8e0a0;
  font-size: .72rem;
  letter-spacing: .08em;
}

.preview-banner p {
  margin: 8px 0 0;
  color: var(--text);
  max-width: 370px;
  font-weight: 700;
  line-height: 1.35;
}

.mini-cta {
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 206, 92, 0.2);
  background: rgba(255, 206, 92, 0.12);
  color: #f8e0a0;
  font-weight: 700;
  white-space: nowrap;
}

.pick-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.pick-row {
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.pick-row.featured {
  border-color: rgba(255, 206, 92, 0.18);
  background: linear-gradient(135deg, rgba(255, 206, 92, 0.08), rgba(255,255,255,0.02));
}

.pick-meta strong,
.pick-side strong {
  display: block;
  font-size: 1.05rem;
}

.pick-meta span,
.pick-side span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .95rem;
}

.pick-side {
  text-align: right;
}

.locked {
  position: relative;
}

.blur-text {
  filter: blur(4px);
  opacity: .72;
}

.badge-lock,
.badge-positive {
  padding: 8px 12px;
  background: rgba(255, 206, 92, 0.12);
  color: #f8e0a0;
  border: 1px solid rgba(255, 206, 92, 0.16);
  font-size: .78rem;
}

.books {
  padding: 18px 0 10px;
}

.books > p {
  color: var(--muted);
  text-align: center;
  margin: 0 0 20px;
}

.book-row,
.feature-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.book-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.book-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 102px;
  padding: 18px;
  border-radius: 24px;
}

.book-logo img {
  max-height: 34px;
  object-fit: contain;
  opacity: .9;
}

.section {
  padding: 92px 0 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-head.narrow {
  max-width: 640px;
}

.section-head h2,
.workflow-copy h2,
.cta-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
}

.section-head p {
  margin-top: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.feature-card,
.workflow-card,
.proof-card,
.price-card,
.faq-item {
  border-radius: 28px;
  padding: 24px;
}

.feature-card h3,
.workflow-card h3,
.faq-item h3,
.price-card h3,
.chart-head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.feature-card p,
.workflow-card p,
.faq-item p {
  margin: 14px 0 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(240, 191, 73, .18), rgba(37, 90, 183, .2));
  border: 1px solid rgba(255,255,255,.06);
}

.section-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.workflow-copy {
  position: sticky;
  top: 120px;
}

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

.workflow-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 206, 92, 0.12);
  color: #f8e0a0;
  font-weight: 800;
  margin-bottom: 18px;
}

.performance-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.chart-panel {
  border-radius: 30px;
  padding: 24px;
}

.chart-head {
  justify-content: space-between;
  gap: 12px;
}

.micro {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .1em;
}

.bars {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 14px;
  height: 280px;
  margin-top: 26px;
}

.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  height: 100%;
}

.bar-col span {
  color: var(--muted);
  font-size: .85rem;
}

.bar {
  width: 100%;
  border-radius: 16px 16px 8px 8px;
  min-height: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.bar.teal {
  background: linear-gradient(180deg, #6be8d9, #2d8f89);
}

.bar.gold {
  background: linear-gradient(180deg, #ffd27d, #c38c1a);
}

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

.proof-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 170px;
}

.proof-card strong {
  font-size: 2rem;
}

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

.price-card {
  position: relative;
}

.price-top {
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.06em;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  display: grid;
  gap: 14px;
  color: var(--soft);
}

.price-card li {
  position: relative;
  padding-left: 26px;
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--gold);
}

.featured-price {
  border-color: rgba(255, 206, 92, 0.22);
  box-shadow: 0 24px 70px rgba(240, 191, 73, 0.12);
}

.price-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.cta-panel {
  border-radius: 34px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}

.site-footer {
  padding: 0 0 40px;
  gap: 20px;
  justify-content: space-between;
}

.footer-left {
  gap: 14px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero,
  .section-split,
  .performance-grid {
    grid-template-columns: 1fr;
  }

  .workflow-copy {
    position: static;
  }

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

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

  .hero-card,
  .tilt-card {
    transform: none;
  }
}

@media (max-width: 860px) {
  .main-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap.open {
    flex-wrap: wrap;
  }

  .nav-wrap.open .main-nav,
  .nav-wrap.open .nav-actions {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-wrap.open .main-nav {
    padding-top: 10px;
    gap: 14px;
  }

  .nav-wrap.open .nav-actions {
    padding-top: 10px;
  }

  .hero-stats,
  .mini-metrics,
  .workflow-steps,
  .proof-cards,
  .faq-grid,
  .book-row,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .preview-banner,
  .pick-row,
  .cta-panel,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pick-side {
    text-align: left;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1240px, calc(100% - 24px));
  }

  .nav-wrap,
  .hero-card,
  .feature-card,
  .workflow-card,
  .chart-panel,
  .proof-card,
  .price-card,
  .faq-item,
  .cta-panel {
    border-radius: 22px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .price {
    font-size: 2.4rem;
  }
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(107, 232, 217, 0.85);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(107, 232, 217, 0.85); }
  70% { box-shadow: 0 0 0 12px rgba(107, 232, 217, 0); }
  100% { box-shadow: 0 0 0 0 rgba(107, 232, 217, 0); }
}

.book-marquee {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 18px;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.book-marquee .book-row {
  min-width: max-content;
  flex-wrap: nowrap;
  animation: marquee 28s linear infinite;
}

.book-marquee:hover .book-row {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 18px)); }
}

.tilt-card {
  animation: floatCard 7s ease-in-out infinite;
}

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

.pick-row,
.feature-card,
.workflow-card,
.proof-card,
.price-card,
.faq-item,
.book-logo {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.pick-row:hover,
.feature-card:hover,
.workflow-card:hover,
.proof-card:hover,
.price-card:hover,
.faq-item:hover,
.book-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 206, 92, 0.22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 206, 92, 0.06) inset;
}

.micro-sub {
  margin: 8px 0 0;
  font-size: .92rem;
  color: var(--muted);
}


/* === BOOKS MARQUEE FIX === */
.books {
  overflow: hidden;
}

.books-marquee {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
}

.books-marquee__viewport {
  width: 100%;
  overflow: hidden;
}

.books-marquee__track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  flex-wrap: nowrap;
  animation: books-marquee-scroll 30s linear infinite;
  will-change: transform;
}

.books-marquee:hover .books-marquee__track {
  animation-play-state: paused;
}

.books-marquee__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 84px;
  z-index: 2;
  pointer-events: none;
}

.books-marquee__fade--left {
  left: 0;
  background: linear-gradient(to right, rgba(7, 12, 28, 1), rgba(7, 12, 28, 0));
}

.books-marquee__fade--right {
  right: 0;
  background: linear-gradient(to left, rgba(7, 12, 28, 1), rgba(7, 12, 28, 0));
}

.book-logo {
  flex: 0 0 auto;
  width: 172px;
  height: 92px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-logo img {
  max-width: 110px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: saturate(1.02) brightness(1.02);
}

@keyframes books-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .book-logo {
    width: 146px;
    height: 84px;
  }

  .book-logo img {
    max-width: 96px;
    max-height: 30px;
  }
}


/* PREMIUM PAGE */
.premium-shell {
  padding: 34px 0 80px;
}

.premium-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 24px;
}

.premium-copy,
.premium-gate,
.premium-panel,
.metric-card,
.filter-chip,
.board-card,
.perf-card,
.member-note {
  position: relative;
  z-index: 1;
}

.premium-copy {
  padding: 34px;
  border-radius: 28px;
}

.premium-copy h1 {
  margin: 16px 0 12px;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: .96;
  letter-spacing: -0.06em;
}

.premium-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}

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

.metric-card {
  padding: 18px;
  border-radius: 22px;
}

.metric-card span {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.metric-card strong {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.metric-card em {
  display: block;
  margin-top: 6px;
  color: var(--soft);
  font-style: normal;
  font-size: .92rem;
}

.premium-gate {
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
}

.premium-gate::after {
  content: '';
  position: absolute;
  inset: auto -60px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,191,73,.18), transparent 70%);
  pointer-events: none;
}

.gate-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #f5df9f;
  margin-bottom: 14px;
}

.gate-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(240,191,73,.08);
}

.premium-gate h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.premium-gate p {
  color: var(--muted);
  line-height: 1.65;
}

.gate-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.input-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 14px 16px;
}

.input-shell input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.input-shell input::placeholder {
  color: rgba(246,247,251,.35);
}

.helper-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: .88rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
}

.status-pill.ok { color: #8df0cb; }
.status-pill.err { color: #ff9292; }

.member-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(107, 232, 217, 0.06);
  border: 1px solid rgba(107, 232, 217, 0.14);
  color: var(--soft);
  font-size: .92rem;
  line-height: 1.55;
}

.premium-sections {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.premium-panel {
  padding: 28px;
  border-radius: 28px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 20px;
}

.panel-head h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.panel-head p {
  margin: 0;
  color: var(--muted);
}

.filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-chip {
  border-radius: 999px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--soft);
  cursor: pointer;
  transition: all .18s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #111;
  border-color: rgba(255,206,92,.45);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.search-box {
  min-width: min(320px, 100%);
  flex: 1;
}

.search-box input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 14px 16px;
  outline: 0;
  font: inherit;
}

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

.board-card {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(9,16,31,.92), rgba(8,12,22,.78));
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.board-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,206,92,.2);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
}

.board-card__top,
.board-card__bottom,
.perf-row-pro {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.board-card__top {
  align-items: flex-start;
  margin-bottom: 14px;
}

.board-card__match {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.board-card__meta,
.board-card__explain,
.perf-row-pro span:last-child {
  color: var(--muted);
}

.board-card__meta {
  margin-top: 6px;
  line-height: 1.55;
  font-size: .94rem;
}

.pick-chip,
.conf-chip,
.surface-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: .82rem;
  font-weight: 800;
}

.pick-chip {
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.conf-chip {
  color: #8df0cb;
  background: rgba(107,232,217,.09);
  border: 1px solid rgba(107,232,217,.16);
}

.surface-chip {
  color: #d7e2ff;
  background: rgba(66,131,255,.09);
  border: 1px solid rgba(66,131,255,.15);
}

.board-card__bottom {
  align-items: flex-end;
  margin-top: 16px;
}

.board-card__kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.board-kpi {
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.05);
  color: var(--soft);
  font-size: .83rem;
}

.board-card__explain {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .9rem;
  line-height: 1.55;
}

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

.perf-card {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.perf-row-pro {
  align-items: center;
}

.perf-row-pro strong {
  font-size: 1rem;
}

.empty-state {
  padding: 26px;
  border-radius: 22px;
  border: 1px dashed rgba(255,255,255,.12);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .premium-hero,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .premium-copy-grid {
    grid-template-columns: 1fr;
  }
}
