    :root {
      --purple-primary: #8E24AA;
      --purple-dark: #6A1B9A;
      --pink-primary: #FF2D95;
      --pink-light: #FFC1E4;
      --bg-dark: #0E0720;
      --bg-darker: #0A0014;
      --bg-card: rgba(255,255,255,.04);
      --border-light: rgba(255,255,255,.12);
      --text-primary: #FFFFFF;
      --text-muted: #C4B5FD;
      --success: #10B981;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--text-primary);
      background: var(--bg-dark);
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== HEADER ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: linear-gradient(90deg, var(--purple-primary), var(--purple-dark));
      border-bottom: 1px solid rgba(255,255,255,.2);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 56px;
      padding: 0 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: white;
    }

    .brand-logo {
      width: 32px;
      height: 32px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .brand-name {
      font-size: 24px;
      font-weight: 700;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: 14px;
      opacity: .9;
      transition: opacity .2s;
    }

    nav a:hover {
      opacity: 1;
    }

    .btn-nav {
      padding: 8px 16px;
      border-radius: 12px;
      font-weight: 600;
    }

    .btn-violet {
      background: var(--purple-primary);
      color: #EDE9FE;
    }

    .btn-fuchsia {
      background: var(--pink-primary);
      color: white;
    }

    .burger-btn {
      display: none;
      background: transparent;
      border: 1px solid rgba(255,255,255,.3);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 24px;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu {
      display: none;
      background: rgba(142,36,170,.95);
      backdrop-filter: blur(10px);
      padding: 16px;
      border-top: 1px solid rgba(255,255,255,.2);
    }

    .mobile-menu.active {
      display: block;
    }

    .mobile-menu a {
      display: block;
      padding: 12px 16px;
      color: white;
      text-decoration: none;
      border-radius: 8px;
      margin-bottom: 4px;
    }

    .mobile-menu a:hover {
      background: rgba(255,255,255,.1);
    }

    /* ===== HERO ===== */
    .hero {
      background: 
        radial-gradient(1200px 600px at 0% 0%, rgba(255,45,149,.18), transparent),
        radial-gradient(1200px 600px at 100% 100%, rgba(142,36,170,.12), transparent),
        var(--bg-dark);
      padding: 80px 0 64px;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 60px;
      align-items: center;
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0;
    }

    .pill {
      background: linear-gradient(to right, #ec4899, #c026d3, #7e22ce);
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      color: white;
      box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    }

    .hero-description {
      color: var(--text-muted);
      font-size: 16px;
      margin: 16px 0 24px;
      max-width: 580px;
    }

    .hero-cta {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .btn {
      padding: 12px 24px;
      border-radius: 12px;
      font-weight: 700;
      text-decoration: none;
      display: inline-block;
      transition: all .2s;
    }

    .btn-primary {
      background: var(--pink-primary);
      color: white;
      box-shadow: 0 10px 30px rgba(255,45,149,.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(255,45,149,.4);
    }

    .btn-outline {
      background: transparent;
      color: white;
      border: 1px solid rgba(255,255,255,.3);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,.05);
      border-color: rgba(255,255,255,.5);
    }

    /* Status Card */
    .status-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 20px;
      padding: 20px;
      position: relative;
    }

    .status-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .status-dot {
      width: 48px;
      height: 48px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
    }

    .status-dot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .status-title {
      font-size: 12px;
      color: #999;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .status-value {
      font-size: 16px;
      font-weight: 600;
    }

    .status-value .muted {
      color: #bdbde8;
    }

    .status-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin: 16px 0;
    }

    .status-mini {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      padding: 12px;
      text-align: center;
    }

    .status-mini-label {
      font-size: 12px;
      color: var(--text-muted);
    }

    .status-mini-value {
      font-size: 20px;
      font-weight: 700;
      margin-top: 4px;
    }

    .status-mini-value .muted {
      color: #bdbde8;
    }

    .status-actions {
      display: flex;
      gap: 10px;
      margin-top: 16px;
    }

    .status-actions .btn {
      padding: 10px 16px;
      font-size: 13px;
      flex: 1;
      text-align: center;
    }

    /* ===== FEATURES ===== */
    .features {
      background: #1A0B2E;
      padding: 80px 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .section-subtitle {
      color: var(--text-muted);
      font-size: 16px;
    }

    .feature-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin: 80px 0;
    }

    .feature-row.reverse {
      grid-template-columns: 1fr 1fr;
    }

    .feature-row.reverse .feature-visual {
      order: 1;
    }

    .feature-row.reverse .feature-content {
      order: 2;
    }

    .feature-badge {
      display: inline-block;
      background: rgba(255,255,255,.1);
      border: 1px solid var(--border-light);
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .feature-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .feature-description {
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .feature-list {
      list-style: none;
      margin-top: 16px;
    }

    .feature-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 12px 0;
      font-size: 15px;
    }

    .check {
      color: var(--success);
      font-weight: 700;
    }

    .feature-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .profile-demo {
      width: 100%;
      max-width: 360px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      color: #1F2937;
    }

    .profile-demo-header {
      background: white;
      border-radius: 16px;
      margin-bottom: 16px;
    }

    .gradient-bg-1 {
      padding: 0px;
      height: 200px;
      background: linear-gradient(135deg, #8B5CF6 0%, #FB7185 100%);
      border-bottom-left-radius: 0px;
      border-bottom-right-radius: 0px;
    }

    .profile-demo-title {
      padding-left: 20px;
      padding-right: 20px;
      font-size: 20px;
      font-weight: 700;
      color: #1F2937;
      margin-bottom: 4px;
    }

    .profile-demo-location {
      padding-left: 20px;
      padding-right: 20px;
      font-size: 14px;
      color: #6B7280;
      margin-bottom: 12px;
    }

    .profile-demo-tags {
      padding-left: 20px;
      padding-right: 20px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .profile-demo-tag {
      padding-left: 20px;
      padding-right: 20px;
      background: #F3E8FF;
      color: #7C3AED;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
    }

    .profile-demo-description {
      padding-left: 20px;
      padding-right: 20px;
      padding-bottom: 20px;
      font-size: 14px;
      color: #4B5563;
      line-height: 1.5;
    }

    /* Matching Cards */
    .matching-demo {
      position: relative;
      height: 280px;
      width: 100%;
      max-width: 420px;
      margin: 0 auto;
    }

    .floating-card {
      position: absolute;
      width: 227px;
      background: white;
      border-radius: 20px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 20px 40px rgba(0,0,0,.25);
      animation: float 6s ease-in-out infinite;
    }

    .floating-card:nth-child(1) {
      top: 10%;
      left: 0;
      animation-delay: 0s;
    }

    .floating-card:nth-child(2) {
      top: 50%;
      left: 20px;
      animation-delay: 2s;
    }

    .floating-card:nth-child(3) {
      top: 25%;
      right: 10px;
      animation-delay: 4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--purple-primary), var(--pink-primary));
      flex-shrink: 0;
    }

    .profile-info {
      flex: 1;
    }

    .profile-name {
      font-size: 14px;
      font-weight: 700;
      color: #111;
    }

    .profile-match {
      font-size: 12px;
      color: var(--success);
      font-weight: 600;
      margin-top: 2px;
    }

    /* Chat Demo */
    .chat-demo {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 20px;
      padding: 20px;
      max-width: 400px;
      box-shadow: 0 20px 40px rgba(0,0,0,.3);
    }

    .chat-message {
      display: flex;
      margin: 12px 0;
    }

    .chat-message.sent {
      justify-content: flex-end;
    }

    .message-text {
      background: rgba(255,255,255,.08);
      border: 1px solid var(--border-light);
      padding: 12px 16px;
      border-radius: 14px;
      max-width: 75%;
    }
    .message-time {
      font-size: 12px;
      color: #9CA3AF;
    }
    .chat-message.sent .message-text {
      background: rgba(255,45,149,.2);
      border-color: rgba(255,45,149,.4);
    }

    /* ===== PRICING ===== */
    .pricing {
      background: var(--bg-darker);
      padding: 80px 0;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 900px;
      margin: 0 auto;
    }

    .pricing-card {
      background: rgba(42, 20, 64, 1);
      border: 1px solid var(--border-light);
      border-radius: 20px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .pricing-card.featured {
      border-color: var(--pink-primary);
      box-shadow: 0 20px 50px rgba(255,45,149,.25);
    }

    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--pink-primary);
      color: white;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 20px;
    }

    .pricing-name {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .pricing-price {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
    }

    .price-amount {
      font-size: 48px;
      font-weight: 800;
      color: var(--pink-primary);
    }

    .price-period {
      color: #999;
      font-size: 16px;
    }

    .pricing-divider {
      height: 1px;
      background: var(--border-light);
      margin: 20px 0;
    }

    .pricing-features {
      list-style: none;
      margin: 20px 0;
      flex-grow: 1;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 10px 0;
      font-size: 15px;
    }

    .pricing-features li.disabled {
      opacity: .4;
      text-decoration: line-through;
    }

    .btn-full {
      width: 100%;
      text-align: center;
    }

    /* ===== FAQ ===== */
    .faq {
      background: #1A0B2E;
      padding: 80px 0;
    }

    .accordion {
      max-width: 900px;
      margin: 0 auto;
    }

    .accordion-item {
      border-bottom: 1px solid var(--border-light);
    }

    .accordion-button {
      width: 100%;
      background: transparent;
      border: none;
      color: white;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      text-align: left;
    }

    .accordion-button:hover {
      color: var(--pink-primary);
    }

    .accordion-panel {
      display: none;
      padding: 0 0 20px 0;
      color: var(--text-muted);
    }

    .accordion-item.active .accordion-panel {
      display: block;
    }

    .accordion-item.active .accordion-button svg {
      transform: rotate(180deg);
    }

    /* ===== CTA ===== */
    .cta {
      background: linear-gradient(135deg, #FF1B8D, #A855F7);
      padding: 80px 0;
      text-align: center;
    }

    .cta-title {
      font-size: 40px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .cta-subtitle {
      font-size: 18px;
      opacity: .95;
      margin-bottom: 32px;
    }

    .btn-cta {
      background: white;
      color: var(--pink-primary);
      padding: 14px 28px;
      border-radius: 999px;
      font-weight: 800;
      text-decoration: none;
      display: inline-block;
      transition: transform .2s;
    }

    .btn-cta:hover {
      transform: translateY(-2px);
    }

    /* ===== FOOTER ===== */
    footer {
      background: #1a2332;
      border-top: 1px solid var(--border-light);
      padding: 60px 0 24px;
      color: #9CA3AF;
      font-size: 14px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .footer-brand-logo {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      overflow: hidden;
    }

    .footer-brand-logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .footer-brand-name {
      font-size: 20px;
      font-weight: 700;
      color: white;
    }

    .footer-description {
      color: #9CA3AF;
      line-height: 1.6;
      max-width: 320px;
    }

    .footer-section-title {
      font-size: 16px;
      font-weight: 700;
      color: white;
      margin-bottom: 16px;
    }

    .footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links-list li {
      margin-bottom: 12px;
    }

    .footer-links-list a {
      color: #9CA3AF;
      text-decoration: none;
      transition: color .2s;
    }

    .footer-links-list a:hover {
      color: white;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: rgba(255,255,255,.05);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #9CA3AF;
      transition: all .2s;
      text-decoration: none;
      font-size: 18px;
    }

    .social-icon:hover {
      background: rgba(255,255,255,.1);
      color: white;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 968px) {
      .hero-grid,
      .feature-row,
      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .feature-row.reverse .feature-visual {
        order: 2;
      }

      .feature-row.reverse .feature-content {
        order: 1;
      }

      .hero h1 {
        font-size: 36px;
      }

      nav {
        display: none;
      }

      .burger-btn {
        display: flex;
      }

      .matching-demo {
        margin-bottom: 40px;
      }

      .footer-content {
        flex-direction: column;
        text-align: center;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 16px;
      }
    }
  </style>
<style>/* --- pricing v2 tweaks (audience line & cc note) --- */
.pricing-audience{margin:.15rem 0 .2rem; font-size:.92rem; opacity:.85}
.note-cc{margin:.2rem 0 .4rem; font-size:.86rem; opacity:.9; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.12); border-radius:10px; padding:6px 10px; display:inline-block}
/* --- end pricing v2 tweaks --- */</style>
<style>

/* Store badges row below the status card */
.store-badge img{height: 55px;display:block}
@media (max-width:480px){.store-badge img{height:55px}}

</style>
<style>

/* Store badges aligned left under status card */
.store-badges-left{
  display:flex;gap:14px;margin-top:18px;align-items:center;justify-content: flex-end
}
.store-badges-left img{padding:6px;}
@media (max-width:480px){.store-badges-left img{height:55px}}

