  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  body {
    font-family: 'Heebo', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: #FFF7FB;
    color: #1E293B;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  button { font-family: inherit; cursor: pointer; }
  .wrap { max-width: 1120px; margin: 0 auto; padding-inline: 18px; }

  @keyframes marquee { from { transform: translateX(0) } to { transform: translateX(50%) } }
  @keyframes hologramIn {
    0% { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* ============ NAV ============ */
  .nav {
    position: sticky; top: 0; z-index: 30;
    background: rgba(255,247,251,0.9);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(236,72,153,0.12);
  }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-block: 11px; }
  .nav-logo { height: 34px; width: auto; display: block; }
  .nav-tabs { display: flex; align-items: center; gap: 18px; overflow-x: auto; scrollbar-width: none; }
  .nav-tabs::-webkit-scrollbar { display: none; }
  .nav-tab {
    border: none; background: transparent; font-weight: 700; font-size: 14px;
    padding: 6px 2px; color: #64748B; border-bottom: 2px solid transparent;
    white-space: nowrap; transition: color .15s;
  }
  .nav-tab.active { color: #BE185D; border-bottom-color: #EC4899; }
  .cta-solid {
    border: none; font-weight: 700; font-size: 14px; color: #fff;
    background: linear-gradient(135deg, #EC4899, #BE185D);
    padding: 10px 18px; border-radius: 999px;
    box-shadow: 0 8px 20px rgba(236,72,153,0.3); white-space: nowrap;
  }

  /* ============ HERO ============ */
  .hero { position: relative; overflow: hidden; }
  .hero-bg {
    position: absolute; inset: 0;
    background-color: #f3d9e6;
    background-image: url('/design-reference/assets/hero.jpg');
    background-image: -webkit-image-set(
      url('/design-reference/assets/hero.webp') type('image/webp'),
      url('/design-reference/assets/hero.jpg') type('image/jpeg')
    );
    background-image: image-set(
      url('/design-reference/assets/hero.webp') type('image/webp'),
      url('/design-reference/assets/hero.jpg') type('image/jpeg')
    );
    background-size: cover;
    background-position: center;
  }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(270deg, rgba(255,247,251,0.05) 0%, rgba(255,247,251,0.55) 45%, rgba(255,247,251,0.94) 100%); }
  .hero-inner { position: relative; padding-block: 56px 60px; display: flex; }
  .hero-content { max-width: 540px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 7px; background: #fff;
    border: 1px solid rgba(236,72,153,0.18); color: #BE185D; font-weight: 700;
    font-size: 13px; padding: 7px 13px; border-radius: 999px;
    box-shadow: 0 4px 14px rgba(236,72,153,0.12);
  }
  .hero h1 { font-weight: 900; font-size: 52px; line-height: 1.12; letter-spacing: -1px; margin-top: 20px; color: #1E293B; }
  .grad-text { background: linear-gradient(135deg, #EC4899, #BE185D); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .hero p { font-size: 16.5px; line-height: 1.6; color: #334155; margin-top: 16px; max-width: 440px; font-weight: 500; }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
  .cta-big {
    border: none; font-weight: 700; font-size: 16px; color: #fff;
    background: linear-gradient(135deg, #EC4899, #BE185D);
    padding: 15px 26px; border-radius: 999px; box-shadow: 0 12px 26px rgba(236,72,153,0.34);
  }
  .cta-video {
    font-weight: 700; font-size: 16px; color: #BE185D; background: #fff;
    border: 1px solid rgba(236,72,153,0.22); padding: 15px 22px; border-radius: 999px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .hero-social { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
  .avatars { display: flex; }
  .avatar {
    width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
  }
  .avatar + .avatar { margin-right: -10px; }
  .hero-social-text { font-size: 13.5px; color: #334155; line-height: 1.4; font-weight: 600; }

  /* ============ EVENT KINDS ============ */
  .kinds { padding-block: 34px 20px; }
  .kinds-note { text-align: center; font-size: 13px; color: #94A3B8; font-weight: 600; margin-bottom: 12px; }
  .kinds-note b { color: #BE185D; }
  .kinds-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .kind-btn {
    display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px;
    border-radius: 999px; border: 1px solid #F0DCE6; background: #fff; color: #64748B;
    font-weight: 600; font-size: 14px; transition: all .15s;
  }
  .kind-btn .emoji { font-size: 16px; }
  .kind-btn.active {
    border-color: #BE185D; background: linear-gradient(135deg, #EC4899, #BE185D);
    color: #fff; box-shadow: 0 8px 18px rgba(236,72,153,0.28);
  }
  .kinds-subtitle {
    margin-top: 18px;
    text-align: center;
    max-width: 560px;
    margin-inline: auto;
    padding-inline: 16px;
  }
  .kinds-subtitle-label {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
  }
  .kinds-subtitle-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #64748B;
    font-weight: 500;
    margin: 0;
  }

  /* ============ MARKET INDEX ============ */
  .market { padding-block: 40px 8px; }
  .market-panel { background: #FDF4FA; border: 1px solid #F0E4EE; border-radius: 24px; padding: 24px 22px; }
  .market-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
  .market-icon {
    width: 44px; height: 44px; border-radius: 13px; background: #fff;
    border: 1px solid #EEE3EC; display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex: none;
  }
  .market-head h2 { font-weight: 800; font-size: 24px; letter-spacing: -0.5px; color: #1E293B; }
  .market-head p { color: #94A3B8; font-size: 13.5px; margin-top: 6px; line-height: 1.5; }
  .market-head .up-note { color: #D97706; font-weight: 700; }
  .ticker-mask {
    margin-top: 14px; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  /* Legacy text ticker only — market cards use JS marquee on .market-marquee-track */
  .ticker:not(.market-marquee-track) {
    display: inline-flex; white-space: nowrap; animation: marquee 26s linear infinite; will-change: transform;
  }
  .ticker span { display: inline-block; padding: 0 14px; font-size: 13px; font-weight: 700; }
  .ticker .up { color: #D97706; }
  .ticker .down { color: #0369A1; }
  .market-cards { display: flex; gap: 12px; overflow-x: auto; padding: 4px 2px 6px; margin-top: 12px; scrollbar-width: none; }
  .market-cards::-webkit-scrollbar { display: none; }
  .m-card {
    flex: none; width: 182px; background: #fff; border: 1px solid #EEE3EC;
    border-radius: 16px; padding: 14px 15px 12px; box-shadow: 0 4px 14px rgba(190,24,93,0.04);
  }
  .m-card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
  .m-change { font-size: 13px; font-weight: 800; }
  .m-change.up { color: #D97706; } .m-change.down { color: #0369A1; }
  .m-label { font-size: 13px; color: #64748B; font-weight: 600; white-space: nowrap; }
  .m-price { font-weight: 900; font-size: 20px; color: #1E293B; text-align: right; margin-top: 6px; }
  .m-spark { margin-top: 12px; }
  .m-spark svg { width: 100%; height: 40px; display: block; }

  /* ============ FEATURES ============ */
  .feats { padding-block: 48px 8px; }
  .sec-head { text-align: center; margin-bottom: 28px; }
  .sec-eyebrow { display: inline-block; font-weight: 700; font-size: 13px; color: #BE185D; background: #FCE7F3; padding: 6px 14px; border-radius: 999px; }
  .sec-head h2 { font-weight: 800; font-size: 30px; margin-top: 14px; letter-spacing: -0.5px; }
  .feats-row {
    display: flex; gap: 16px; overflow-x: auto; padding: 4px 2px 12px; justify-content: flex-start;
    scrollbar-width: none;
  }
  .feats-row::-webkit-scrollbar { display: none; }
  .feat-card {
    flex: none; width: 262px; background: #fff; border-radius: 22px; padding: 24px;
    box-shadow: 0 16px 40px rgba(190,24,93,0.07); border: 1px solid rgba(236,72,153,0.08);
    text-align: center;
  }
  .feat-card h3 { font-weight: 800; font-size: 22px; margin: 0 0 10px; text-align: center; line-height: 1.25; }
  .feat-card p { color: #64748B; font-size: 14px; line-height: 1.55; margin-bottom: 12px; text-align: center; }
  .feat-proof {
    display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700;
    color: #BE185D; background: #FCE7F3; padding: 5px 11px; border-radius: 999px;
  }

  /* ============ VIDEO ============ */
  .tour { max-width: 920px; margin: 0 auto; padding: 48px 18px 8px; }
  .tour .sec-head { margin-bottom: 22px; }
  .tour .sec-head h2 { font-size: 28px; }
  .player {
    position: relative; border-radius: 18px; overflow: hidden;
    box-shadow: 0 26px 60px rgba(190,24,93,0.16); aspect-ratio: 16/9;
    background: #0f172a;
    display: flex; align-items: center; justify-content: center;
  }
  .player-poster {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block; pointer-events: none;
  }
  .play-btn {
    position: relative; z-index: 2;
    width: 72px; height: 72px; border-radius: 50%; background: #fff; border: none;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px rgba(190,24,93,0.28);
    cursor: pointer;
  }
  .play-tri { width: 0; height: 0; border-top: 13px solid transparent; border-bottom: 13px solid transparent; border-right: 20px solid #BE185D; margin-left: -4px; }
  .player-chrome {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px;
    background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
    display: flex; align-items: center; gap: 10px; color: #fff;
  }
  .player-track { flex: 1; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.35); position: relative; }
  .player-progress { position: absolute; right: 0; top: 0; bottom: 0; width: 0%; background: #fff; border-radius: 999px; transition: width .4s; }
  .player-time { font-family: ui-monospace, monospace; font-size: 12px; font-weight: 600; }

  /* ============ PRICING ============ */
  .pricing { max-width: 1160px; margin: 0 auto; padding: 52px 18px 8px; }
  .pricing .sec-head { margin-bottom: 14px; }
  .pricing .sec-sub { color: #64748B; font-size: 15px; margin: 10px auto 0; max-width: 480px; line-height: 1.6; }
  .plans { display: flex; gap: 18px; justify-content: center; align-items: stretch; margin-top: 24px; overflow-x: auto; overflow-y: visible; padding: 30px 2px 10px; scrollbar-width: none; }
  .plans::-webkit-scrollbar { display: none; }
  .plan {
    position: relative; flex: none; width: 320px; background: #fff; color: #1E293B;
    border-radius: 24px; padding: 28px 26px;
    box-shadow: 0 14px 34px rgba(190,24,93,0.06); border: 1px solid rgba(236,72,153,0.10);
    display: flex; flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }
  .plan.popular {
    background: linear-gradient(135deg, #EC4899, #BE185D); color: #fff;
    padding: 34px 26px 26px; box-shadow: 0 26px 54px rgba(236,72,153,0.32);
    border: none; transform: translateY(-8px);
  }
  @media (hover: hover) and (pointer: fine) {
    .plan:hover {
      transform: translateY(-6px);
      border-color: rgba(236,72,153,0.32);
      box-shadow: 0 22px 48px rgba(190,24,93,0.14);
    }
    .plan.popular:hover {
      transform: translateY(-14px) scale(1.015);
      box-shadow: 0 34px 64px rgba(236,72,153,0.42);
    }
    .plan:hover .plan-cta {
      background: #F9A8D4;
      border-color: rgba(190,24,93,0.28);
      color: #9D174D;
    }
    .plan.popular:hover .plan-cta {
      background: #FDF2F8;
      color: #9D174D;
      box-shadow: 0 8px 20px rgba(30,41,59,0.12);
      transform: translateY(-1px);
    }
  }
  .plan:focus-visible {
    outline: 2px solid #EC4899;
    outline-offset: 3px;
  }
  @media (prefers-reduced-motion: reduce) {
    .plan { transition: none; }
    .plan:hover, .plan.popular:hover { transform: none; }
  }
  .plan-flag {
    position: absolute; top: -13px; right: 50%; transform: translateX(50%);
    background: #1E293B; color: #fff; font-weight: 700; font-size: 12px;
    padding: 5px 14px; border-radius: 999px; white-space: nowrap;
  }
  .plan-name { font-weight: 800; font-size: 20px; color: #BE185D; }
  .plan.popular .plan-name { color: #fff; }
  .plan-for { font-size: 13px; font-weight: 600; color: #94A3B8; margin-top: 3px; }
  .plan.popular .plan-for { color: rgba(255,255,255,0.85); }
  .plan-price-row { display: flex; align-items: baseline; gap: 5px; margin: 14px 0 2px; }
  .plan-price { font-weight: 900; font-size: 42px; letter-spacing: -1px; }
  .plan-price-row--promo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin: 14px 0 2px;
  }
  .plan-price--struck {
    position: relative;
    display: inline-block;
    color: #94A3B8;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1.1;
    opacity: 0.75;
  }
  .plan-price--struck::before,
  .plan-price--struck::after {
    content: "";
    position: absolute;
    left: -6%;
    right: -6%;
    top: 50%;
    height: 2.5px;
    background: #E11D48;
    border-radius: 2px;
    pointer-events: none;
  }
  .plan-price--struck::before { transform: rotate(18deg); }
  .plan-price--struck::after { transform: rotate(-18deg); }
  .plan.popular .plan-price--struck { color: rgba(255,255,255,0.55); }
  .plan.popular .plan-price--struck::before,
  .plan.popular .plan-price--struck::after { background: #fff; }
  .plan-free-now {
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -0.4px;
    color: #BE185D;
    line-height: 1.15;
  }
  .plan.popular .plan-free-now { color: #fff; }
  .plan-price-row--promo .plan-sub { margin-top: 2px; }
  .plan-sub { font-size: 13.5px; font-weight: 600; color: #94A3B8; }
  .plan.popular .plan-sub { color: rgba(255,255,255,0.8); }
  .plan-divider { height: 1px; background: rgba(0,0,0,0.07); margin: 16px 0 14px; }
  .plan.popular .plan-divider { background: rgba(255,255,255,0.22); }
  .plan-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
  .plan-feat { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; font-weight: 500; color: #334155; line-height: 1.4; }
  .plan.popular .plan-feat { color: rgba(255,255,255,0.96); }
  .plan-check {
    width: 19px; height: 19px; border-radius: 50%; display: inline-flex; align-items: center;
    justify-content: center; font-size: 11px; font-weight: 800;
    background: #FCE7F3; color: #BE185D; flex: none; margin-top: 1px;
  }
  .plan.popular .plan-check { background: rgba(255,255,255,0.22); color: #fff; }
  .plan-credit { display: flex; align-items: center; font-size: 13px; font-weight: 700; color: #BE185D; margin-bottom: 14px; }
  .plan.popular .plan-credit { color: rgba(255,255,255,0.92); }
  .tip-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; border-radius: 50%; border: none;
    background: #FCE7F3; color: #BE185D; font-size: 12px; font-weight: 800; margin-right: 5px;
  }
  .plan.popular .tip-btn { background: rgba(255,255,255,0.25); color: #fff; }
  .tip-box {
    font-size: 12.5px; line-height: 1.5; color: #475569; background: #FFF7FB;
    border: 1px solid #F5D6E5; border-radius: 12px; padding: 11px 13px; margin-bottom: 16px;
    display: none; animation: hologramIn .3s ease;
  }
  .plan.popular .tip-box { color: #fff; background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); }
  .tip-box.open { display: block; }
  .plan-cta {
    width: 100%; font-weight: 800; font-size: 15px; padding: 14px; border-radius: 999px;
    border: 1px solid rgba(236,72,153,0.22); background: #FCE7F3; color: #BE185D; margin-top: auto;
    display: block; text-align: center;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  }
  .plan.popular .plan-cta { border: none; background: #fff; color: #BE185D; }
  .pricing-note { text-align: center; margin-top: 20px; font-size: 13px; color: #94A3B8; }

  /* ============ FAQ ============ */
  .faq { max-width: 760px; margin: 0 auto; padding: 52px 18px 16px; }
  .faq .sec-head { margin-bottom: 24px; }
  .faq .sec-head h2 { font-size: 28px; margin-top: 0; }
  .faq-item {
    background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px;
    padding: 16px 18px; margin-bottom: 10px; transition: all .15s; cursor: pointer;
  }
  .faq-item.open { border-color: rgba(236,72,153,0.24); box-shadow: 0 8px 22px rgba(236,72,153,0.08); }
  .faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .faq-q span:first-child { font-weight: 700; font-size: 16px; color: #1E293B; }
  .faq-chev { font-size: 20px; color: #BE185D; transition: transform .2s; flex: none; }
  .faq-item.open .faq-chev,
  .faq details.faq-item[open] .faq-chev { transform: rotate(180deg); }
  .faq-a { display: none; margin-top: 12px; color: #475569; font-size: 14.5px; line-height: 1.65; animation: hologramIn .3s ease; }
  .faq-item.open .faq-a,
  .faq details.faq-item[open] .faq-a { display: block; }

  /* ============ FOOTER ============ */
  .footer { margin-top: 40px; background: linear-gradient(135deg, #3B1526, #241019); color: #fff; }
  .footer-inner { padding-block: 44px 28px; }
  .footer-top { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; }
  .footer-brand { max-width: 280px; }
  .footer-brand img { height: 30px; width: auto; display: block; filter: brightness(0) invert(1); }
  .footer-brand p { color: #C9B7C1; font-size: 13.5px; line-height: 1.6; margin-top: 14px; }
  .footer-cols { display: flex; gap: 40px; flex-wrap: wrap; }
  .footer-col-title { font-weight: 700; font-size: 14px; margin-bottom: 12px; }
  .footer-col-links { display: flex; flex-direction: column; gap: 8px; color: #C9B7C1; font-size: 13.5px; }
  .footer-col-links a { color: inherit; text-decoration: none; }
  .footer-col-links a:hover { color: #fff; }
  .footer-bottom {
    margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12);
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
    color: #9C8794; font-size: 13px;
  }
  .footer-bottom .links { display: flex; gap: 16px; }

  /* ============ MOBILE ============ */
  @media (max-width: 760px) {
    .nav-tabs { display: none; }
    .hero h1 { font-size: 33px; line-height: 1.14; letter-spacing: -0.5px; margin-top: 18px; }
    .hero-inner { padding-block: 40px 44px; }
    .hero p { font-size: 15.5px; }
    .cta-big, .cta-video { font-size: 15px; padding: 13px 22px; }
    .market-panel { padding: 18px 14px; }
    .market-head h2 { font-size: 20px; }
    .m-card { width: 158px; }
    .sec-head h2 { font-size: 24px !important; }
    .plans {
      display: grid;
      grid-template-columns: 1fr;
      justify-content: stretch;
      gap: 12px;
      overflow: visible;
      padding: 8px 0 0;
    }
    .plan { width: 100%; }
    .plan.popular { transform: none; }
    @media (hover: hover) and (pointer: fine) {
      .plan:hover { transform: translateY(-3px); }
      .plan.popular:hover { transform: translateY(-3px) scale(1.01); }
    }
    .footer-top { flex-direction: column; }
    .kinds-subtitle { margin-top: 14px; padding-inline: 12px; }
    .kinds-subtitle-label { font-size: 14px; }
    .kinds-subtitle-desc { font-size: 13px; line-height: 1.6; }
  }

/* ===== merged from pmg-landing-bridge.css ===== */
/* Bridge: live index.html hooks + market-index.js + mobile menu */
.nav-mobile-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid #FBCFE8; background: #FDF2F8; color: #BE185D;
  cursor: pointer; font-size: 1.1rem;
  -webkit-tap-highlight-color: transparent;
  position: relative; z-index: 40; pointer-events: auto;
}
.nav-mobile-btn svg { width: 22px; height: 22px; display: block; pointer-events: none; }
.whatsapp-widget-link svg { width: 28px; height: 28px; display: block; }
.nav-logo { height: 34px; width: auto; display: block; }
.nav-actions { display: flex; align-items: center; gap: 8px; flex: none; }
@media (min-width: 768px) { .nav-mobile-btn { display: none !important; } }
.mobile-menu {
  display: none;
  max-height: 0; overflow: hidden; visibility: hidden;
  transition: max-height .35s ease, visibility 0s linear .35s;
  padding: 0;
}
.mobile-menu.open {
  display: block;
  max-height: 520px; visibility: visible;
  transition: max-height .35s ease, visibility 0s linear 0s;
  padding-bottom: 12px;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu.open:not([hidden]) { display: block; }
.mobile-menu .nav-tab { display: block; padding: 10px 0; text-decoration: none; color: #64748B; font-weight: 700; }
.nav-tabs a.nav-tab { text-decoration: none; color: #64748B; }
.nav-tabs a.nav-tab:hover { color: #BE185D; }
.cta-solid { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
a.cta-big, a.cta-video { text-decoration: none; }

.nav-login-btn {
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #FBCFE8; background: #fff; color: #BE185D;
  font-weight: 700; font-size: 14px; border-radius: 999px; padding: 10px 16px;
}
.nav-login-btn:hover { background: #FDF2F8; }
/* Market index.js containers → MVP panel look */
#market-index.market { padding-block: 40px 8px; }
.market-index-widget {
  background: #FDF4FA !important; border: 1px solid #F0E4EE !important;
  border-radius: 24px !important; padding: 24px 22px !important;
}
.market-widget-header { display: flex; align-items: flex-start; gap: 14px; }
.market-widget-icon {
  width: 44px; height: 44px; border-radius: 13px; background: #fff;
  border: 1px solid #EEE3EC; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex: none; color: #BE185D;
}
.market-widget-title { font-weight: 800 !important; font-size: 24px !important; letter-spacing: -0.5px; color: #1E293B; margin: 0; }
.market-widget-sub { color: #94A3B8 !important; font-size: 13.5px !important; margin-top: 6px; line-height: 1.5; }
.market-marquee-viewport {
  margin-top: 14px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
/* Prevent legacy .ticker CSS animation from fighting JS marquee transforms */
.market-marquee-track.ticker,
.market-marquee-track {
  animation: none !important;
}
.market-card { flex: none; width: 182px; background: #fff; border: 1px solid #EEE3EC;
  border-radius: 16px; padding: 14px 15px 12px; box-shadow: 0 4px 14px rgba(190,24,93,0.04); }
.market-index-status { font-size: 13px; font-weight: 700; color: #D97706; margin: 8px 0; }

/* FAQ: native details */
.faq details.faq-item { cursor: pointer; list-style: none; }
.faq details.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  outline: none !important;
  border: none;
  border-radius: 0;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}
.faq details.faq-item summary::-webkit-details-marker { display: none; }
.faq details.faq-item summary:focus,
.faq details.faq-item summary:focus-visible,
.faq details.faq-item summary:active {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  border: none;
}
.faq details.faq-item[open] { border-color: rgba(236,72,153,0.24); box-shadow: 0 8px 22px rgba(236,72,153,0.08); }
.faq details.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq details.faq-item[open] .faq-a {
  display: block;
  margin-top: 12px;
  color: #475569;
  font-size: 14.5px;
  line-height: 1.65;
}
.faq-panel { margin-top: 12px; color: #475569; font-size: 14.5px; line-height: 1.65; }

/* Pricing links as cards */
a.plan { text-decoration: none; color: inherit; }
a.plan .plan-cta { display: block; width: 100%; text-align: center; cursor: pointer; }

/* Product tour video */
.product-tour-player.is-playing .play-btn,
.product-tour-player.is-playing .player-poster { display: none; }
.product-tour-player video { width: 100%; height: 100%; object-fit: contain; background: #0f172a; display: block; }
.product-tour-player video.hidden { display: none; }

/* Marketplace compact */
.marketplace-band {
  background: #fff; border: 1px solid rgba(236,72,153,0.08); border-radius: 22px;
  padding: 28px 24px; box-shadow: 0 16px 40px rgba(190,24,93,0.07);
  text-align: center; max-width: 1120px; margin: 0 auto;
}
.marketplace-band h2 { font-weight: 800; font-size: 28px; margin-bottom: 10px; }
.marketplace-band p { color: #64748B; line-height: 1.6; margin-bottom: 18px; }
.marketplace-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.marketplace-actions a {
  font-weight: 700; font-size: 14px; padding: 12px 20px; border-radius: 999px;
  border: 1px solid rgba(236,72,153,0.22); background: #fff; color: #BE185D; text-decoration: none;
}

/* Sticky mobile CTA + WhatsApp */
.sticky-mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border-top: 1px solid #F4E3EE;
}
.sticky-mobile-cta-content { display: flex; gap: 8px; max-width: 1120px; margin: 0 auto; }
.sticky-mobile-cta .cta-solid { flex: 1; }
.sticky-mobile-cta-link {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; border-radius: 999px; border: 1px solid #F4E3EE;
  color: #BE185D; font-weight: 700; text-decoration: none; background: #fff;
}
@media (max-width: 760px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 74px; }
}
.whatsapp-widget-link {
  position: fixed; left: 14px; bottom: 88px; z-index: 35;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 12px 24px rgba(0,0,0,.22); font-size: 1.75rem;
}
@media (min-width: 761px) {
  .whatsapp-widget-link { bottom: calc(20px + 44px + 14px); left: 20px; }
  .sticky-mobile-cta { display: none !important; }
  body { padding-bottom: 0; }
}

/* Extra mobile hard-fit safeguards */
html, body { max-width: 100%; overflow-x: hidden; }

@media (max-width: 760px) {
  .wrap { padding-inline: 12px; }
  .nav-inner { gap: 8px; }
  .nav-login-btn { display: inline-flex !important; font-size: 13px; padding: 8px 12px; }
  .nav-actions .cta-solid { padding: 8px 14px; font-size: 13px; }
  .market-index-widget { border-radius: 18px !important; padding: 16px 14px !important; }
  .market-widget-title { font-size: 20px !important; }
  .market-card { width: 156px; }
  .marketplace-band { border-radius: 16px; padding: 18px 14px; }
  .marketplace-band h2 { font-size: 22px; }
}

/* Pricing comparison table (keep feature) */
.pricing-table-wrap {
  margin-top: 24px; border-radius: 20px; overflow: hidden;
  border: 1px solid #F0E4EE; background: #fff;
}
.pricing-table { width: 100%; table-layout: fixed; border-collapse: collapse; font-size: 14px; }
.pricing-table th, .pricing-table td { width: 25%; padding: 12px 14px; border-bottom: 1px solid #F4E3EE; text-align: center; }
.pricing-table th:first-child, .pricing-table td.feature-name { text-align: right; font-weight: 700; }
.pricing-table .full-head, .pricing-table .full-col { background: #FDF2F8; color: #BE185D; }

/* The cards use three columns; visually center only their heading text below them. */
.pricing-table thead th { overflow: visible; }
.pricing-table thead th:nth-child(2) .plan-column-title { transform: translateX(75%); }
.pricing-table thead th:nth-child(3) .plan-column-title { transform: translateX(50%); }
.pricing-table thead th:nth-child(4) .plan-column-title { transform: translateX(25%); }
.plan-column-title { display: inline-block; white-space: nowrap; }

@media (max-width: 760px) { .pricing-table-wrap { display: none; } }

/* ===== MVP parity mobile lock ===== */
@media (max-width: 760px) {
  .wrap { padding-inline: 14px !important; }

  .nav-inner {
    min-height: 56px !important;
    padding-block: 9px !important;
  }

  .nav-logo { height: 30px !important; }

  .hero-inner {
    padding-block: 36px 40px !important;
  }

  .hero h1 {
    font-size: 33px !important;
    line-height: 1.14 !important;
  }

  .hero p {
    font-size: 15.5px !important;
  }

  .hero-ctas {
    gap: 10px !important;
  }

  .market-index-widget {
    border-radius: 20px !important;
    padding: 18px 14px !important;
  }

  .market-card {
    width: 160px !important;
  }

  .feat-card {
    border-radius: 16px !important;
  }

  .pricing-plans {
    gap: 10px !important;
  }

  .faq-item {
    border-radius: 14px !important;
  }
}

