    /* =========================
       Reset & Base
       ========================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; max-width: 100%; }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: #f4eefc;
      background: #0b0915;
      line-height: 1.6;
      overflow-x: clip;
      max-width: 100%;
      position: relative;
      -webkit-font-smoothing: antialiased;
      font-size: 16px;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

    :root {
      --bg-0:      #07060d;
      --bg-1:      #0b0915;
      --bg-2:      #11102a;
      --header-bg: linear-gradient(180deg, #1a0a36 0%, #0b0915 100%);
      --violet-800: #1f0e4c;
      --violet-700: #2b1055;
      --violet-600: #3d1a78;
      --teal-500:  #72F3E0;
      --teal-400:  #8af5e3;
      --teal-600:  #73F7CC;
      --rose-500:  #ff4d8d;
      --rose-400:  #ff77a8;
      --lavender:  #c8b6ff;
      --lavender-soft: #e6dcff;
      --navy-950:  #050410;
      --navy-900:  #0b0915;
      --navy-800:  #14112a;
      --text:      #f4eefc;
      --text-dim:  #9b95b8;
      --border:    rgba(200, 182, 255, 0.10);
      --card-bg:   rgba(255, 255, 255, 0.03);
      --gradient-warm: linear-gradient(180deg, #72F3E0 0%, #73F7CC 100%);
      --gradient-pink: linear-gradient(135deg, #ff4d8d 0%, #b65cff 50%, #6e4cff 100%);
      --gradient-hero: radial-gradient(900px 500px at 85% -10%, rgba(110, 76, 255, 0.35), transparent 60%),
                       radial-gradient(700px 420px at 0% 10%, rgba(114, 243, 224, 0.18), transparent 60%),
                       linear-gradient(180deg, #0b0915 0%, #110f24 100%);
      --shadow-glow: 0 18px 50px -10px rgba(115, 247, 204, 0.45), 0 8px 24px -8px rgba(114, 243, 224, 0.3);
    }

    /* =========================
       Typography
       ========================= */
    h1, h2, h3, h4 {
      font-family: inherit;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
      color: #fff;
    }
    h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4.25rem); }
    h2 { font-size: clamp(1.75rem, 2vw + 1rem, 2.75rem); }
    h3 { font-size: clamp(1.125rem, 0.4vw + 1rem, 1.35rem); }
    p { color: var(--text-dim); }
    .eyebrow {
      font-family: inherit;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--lavender);
      display: inline-block;
    }

    /* =========================
       Layout
       ========================= */
    .container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
    section { padding: 80px 0; position: relative; }
    @media (min-width: 768px) { section { padding: 110px 0; } }

    /* =========================
       Buttons
       ========================= */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 26px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--gradient-warm);
      color: #07211c;
      box-shadow: var(--shadow-glow);
      font-weight: 700;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px -10px rgba(115, 247, 204, 0.65), 0 10px 24px -10px rgba(114, 243, 224, 0.5); }
    .btn-white {
      background: #ffffff;
      color: #0b0915;
      font-weight: 700;
    }
    .btn-white:hover { transform: translateY(-2px); background: #f4eefc; }
    .btn-ghost {
      background: rgba(255,255,255,0.04);
      color: var(--text);
      border: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }
    .btn-ghost:hover { background: rgba(200, 182, 255, 0.12); border-color: rgba(200, 182, 255, 0.3); }
    .btn-arrow::after { content: "→"; transition: transform .25s ease; }
    .btn-arrow:hover::after { transform: translateX(4px); }

    /* =========================
       Header
       ========================= */
    .site-header {
      position: sticky; top: 0; z-index: 50;
      backdrop-filter: blur(18px);
      background: linear-gradient(180deg, rgba(26, 10, 54, 0.85) 0%, rgba(11, 9, 21, 0.85) 100%);
      border-bottom: 1px solid var(--border);
    }
    .nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
    .logo {
      display: inline-flex; align-items: center;
    }
    .logo img {
      height: 28px; width: auto; display: block;
    }
    @media (min-width: 768px) {
      .logo img { height: 32px; }
    }
    .nav-links { display: none; gap: 28px; align-items: center; }
    .nav-links a {
      color: var(--text-dim); font-size: 0.92rem; font-weight: 500;
      transition: color .2s ease;
    }
    .nav-links a:hover { color: #fff; }
    .header-cta { display: none; }
    .menu-toggle {
      display: inline-grid; place-items: center;
      width: 42px; height: 42px; border-radius: 12px;
      background: rgba(255,255,255,0.04); border: 1px solid var(--border);
      transition: background .2s ease;
    }
    .menu-toggle:hover { background: rgba(255,255,255,0.08); }
    .menu-toggle span { display: block; width: 18px; height: 2px; background: #fff; position: relative; transition: transform .25s ease, opacity .2s ease; }
    .menu-toggle span::before, .menu-toggle span::after {
      content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
      transition: transform .25s ease, top .25s ease;
    }
    .menu-toggle span::before { top: -6px; }
    .menu-toggle span::after  { top: 6px; }
    .menu-toggle[aria-expanded="true"] span { background: transparent; }
    .menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

    .mobile-menu {
      display: none;
      padding: 8px 0 22px;
      border-top: 1px solid var(--border);
      animation: fade-down .25s ease both;
    }
    @keyframes fade-down {
      from { opacity: 0; transform: translateY(-6px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a:not(.btn) {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 6px;
      color: #fff; font-size: 1.02rem; font-weight: 600;
      border-bottom: 1px solid var(--border);
      transition: color .2s ease, padding-left .2s ease;
    }
    .mobile-menu a:not(.btn):hover,
    .mobile-menu a:not(.btn):active { color: var(--teal-500); padding-left: 12px; }
    .mobile-menu a:not(.btn)::after {
      content: '›'; font-size: 1.5rem; line-height: 1; color: var(--text-dim);
      transform: translateY(-1px);
    }
    .mobile-menu .btn { width: 100%; margin-top: 22px; padding: 16px 24px; font-size: 1rem; }

    @media (min-width: 900px) {
      .nav-links { display: flex; }
      .header-cta { display: inline-flex; }
      .menu-toggle { display: none; }
    }

    /* =========================
       Hero
       ========================= */
    .hero {
      background: var(--gradient-hero);
      padding-top: 60px; padding-bottom: 80px;
      overflow: hidden;
    }
    .hero-grid {
      display: grid; gap: 56px; align-items: center;
    }
    @media (min-width: 960px) {
      .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; }
    }
    .hero h1 { margin-bottom: 22px; }
    .hero h1 .grad {
      background: var(--gradient-pink); -webkit-background-clip: text; background-clip: text; color: transparent;
      font-style: italic;
    }
    .hero p.lede { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 32px; max-width: 560px; }
    .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
    .trust-badges {
      display: flex; flex-wrap: wrap; gap: 10px 16px; margin-top: 36px;
    }
    .trust-badges span {
      font-size: 0.82rem; color: var(--lavender-soft);
      padding: 8px 14px; border-radius: 999px;
      border: 1px solid var(--border); background: rgba(255,255,255,0.03);
    }
    @media (max-width: 640px) {
      .trust-badges { gap: 8px 8px; margin-top: 24px; }
      .trust-badges span { font-size: 0.72rem; padding: 6px 11px; line-height: 1.2; }
    }

    /* Phone mockup */
    .phone {
      position: relative; width: 100%; max-width: 380px; margin: 0 auto;
      aspect-ratio: 9/18.5;
      border-radius: 44px;
      padding: 14px;
      background: linear-gradient(160deg, #2b1055, #0f0a2e);
      box-shadow: 0 40px 80px -20px rgba(110, 76, 255, 0.55), 0 20px 40px -10px rgba(255, 77, 141, 0.35);
      border: 1px solid rgba(200, 182, 255, 0.2);
    }
    .phone::before {
      content: ''; position: absolute; left: 50%; top: 18px; transform: translateX(-50%);
      width: 110px; height: 22px; border-radius: 999px; background: #0a0720;
    }
    .phone-screen {
      width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
      background: linear-gradient(180deg, #1a0e44, #0f0a2e);
      display: flex; flex-direction: column;
    }
    .phone-screen .chat-head {
      display: flex; align-items: center; gap: 10px;
      padding: 50px 16px 12px;
      background: rgba(11, 9, 21, 0.65);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(200, 182, 255, 0.12);
      position: relative; z-index: 2;
    }
    .chat-messages {
      flex: 1 1 auto; min-height: 0;
      overflow-y: auto; overflow-x: hidden;
      padding: 14px 14px 8px;
      display: flex; flex-direction: column; gap: 10px;
      scroll-behavior: smooth;
    }
    .chat-messages::-webkit-scrollbar { width: 4px; }
    .chat-messages::-webkit-scrollbar-thumb { background: rgba(200,182,255,0.18); border-radius: 999px; }
    .chat-input {
      flex: 0 0 auto;
      padding: 10px 12px 16px;
      display: flex; gap: 8px; align-items: center;
      background: rgba(11, 9, 21, 0.85);
      border-top: 1px solid rgba(200, 182, 255, 0.12);
    }
    .chat-input input {
      flex: 1 1 auto; min-width: 0;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(200,182,255,0.12);
      color: #fff; font-family: inherit; font-size: 0.85rem;
      padding: 10px 14px; border-radius: 999px;
      outline: none;
      transition: border-color .2s ease;
    }
    .chat-input input::placeholder { color: rgba(200, 182, 255, 0.45); }
    .chat-input input:focus { border-color: var(--teal-500); }
    .chat-input button {
      flex: 0 0 36px;
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--gradient-warm);
      display: grid; place-items: center;
      color: #07211c; font-weight: 700; cursor: pointer;
      transition: transform .2s ease;
    }
    .chat-input button:hover { transform: scale(1.06); }
    .chat-input button:disabled { opacity: 0.45; cursor: not-allowed; }
    .chat-input button svg { width: 16px; height: 16px; }
    .chat-head {
      display: flex; align-items: center; gap: 10px;
    }
    .avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background-image: url('https://images.unsplash.com/photo-1502323777036-f29e3972d82f?auto=format&fit=crop&w=200&q=70');
      background-size: cover; background-position: center;
      border: 2px solid var(--rose-400);
    }
    .chat-head-info h4 { font-family: system-ui; font-weight: 700; font-size: .92rem; color: #fff; }
    .chat-head-info p { font-size: .72rem; color: #8be38b; margin: 0; display: flex; align-items: center; gap: 6px; }
    .chat-head-info p::before { content:''; width:7px; height:7px; border-radius:50%; background:#8be38b; box-shadow:0 0 8px #8be38b; }
    .bubble {
      max-width: 80%; padding: 10px 14px; border-radius: 18px; font-size: .82rem; line-height: 1.4;
      animation: rise .6s ease both;
    }
    .bubble.them { background: rgba(200, 182, 255, 0.14); color: #f4eefc; border-bottom-left-radius: 6px; }
    .bubble.me { background: var(--gradient-pink); color: #fff; align-self: flex-end; border-bottom-right-radius: 6px; }
    .bubble:nth-child(2) { animation-delay: .1s; }
    .bubble:nth-child(3) { animation-delay: .25s; }
    .bubble:nth-child(4) { animation-delay: .4s; }
    .bubble:nth-child(5) { animation-delay: .55s; }
    @keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

    .floaty {
      position: absolute; border-radius: 24px; padding: 14px 16px;
      background: rgba(15, 10, 46, 0.7);
      backdrop-filter: blur(14px);
      border: 1px solid var(--border);
      font-size: .85rem; color: #fff;
      box-shadow: 0 20px 40px -20px rgba(0,0,0,.4);
    }
    .floaty-1 { top: 8%; left: -30px; }
    .floaty-2 { bottom: 12%; right: -10px; }
    .floaty strong { display: block; font-family: system-ui; font-weight: 600; color: var(--lavender); margin-bottom: 2px; font-size: .8rem; }
    @media (max-width: 720px) {
      .floaty-1 { left: 0; }
      .floaty-2 { right: 0; }
    }

    /* =========================
       Problem
       ========================= */
    .section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
    .section-head .eyebrow { margin-bottom: 14px; }
    .section-head p { margin-top: 14px; font-size: 1.05rem; }

    .problem-grid {
      display: grid; gap: 16px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .problem-card {
      padding: 22px; border-radius: 20px;
      background: var(--card-bg); border: 1px solid var(--border);
      transition: transform .3s ease, border-color .3s ease;
    }
    .problem-card:hover { transform: translateY(-4px); border-color: rgba(255, 77, 141, 0.4); }
    .problem-card .x {
      width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center;
      background: rgba(255, 77, 141, 0.14); color: var(--rose-400); margin-bottom: 14px; font-weight: 700;
    }
    .problem-card h3 { font-family: system-ui; font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; color:#fff; }
    .problem-card p { font-size: .9rem; }

    /* =========================
       Features
       ========================= */
    .features-grid {
      display: grid; gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    .feature {
      padding: 28px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
      border: 1px solid var(--border);
      transition: transform .35s ease, border-color .35s ease, background .35s ease;
      position: relative; overflow: hidden;
    }
    .feature::after {
      content: ''; position: absolute; inset: -1px;
      border-radius: 24px; padding: 1px;
      background: linear-gradient(135deg, rgba(255, 77, 141, 0.3), transparent 50%);
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude;
      opacity: 0; transition: opacity .35s ease;
      pointer-events: none;
    }
    .feature:hover { transform: translateY(-6px); }
    .feature:hover::after { opacity: 1; }
    .feature-icon {
      width: 52px; height: 52px; border-radius: 16px;
      background: rgba(200, 182, 255, 0.12);
      display: grid; place-items: center; color: var(--lavender);
      margin-bottom: 20px;
      font-family: system-ui; font-weight: 600; font-size: 1.5rem;
    }
    .feature h3 { margin-bottom: 8px; font-family: system-ui; font-weight: 600; }
    .feature p { font-size: .95rem; }

    /* =========================
       How it works
       ========================= */
    .steps {
      display: grid; gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      counter-reset: step;
    }
    .step {
      position: relative;
      padding: 28px;
      border-radius: 22px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      counter-increment: step;
    }
    .step::before {
      content: counter(step, decimal-leading-zero);
      font-family: system-ui; font-style: italic; font-weight: 600;
      font-size: 2.4rem;
      background: var(--gradient-pink);
      -webkit-background-clip: text; background-clip: text; color: transparent;
      display: block; margin-bottom: 10px;
    }
    .step h3 { font-family: system-ui; font-weight: 600; margin-bottom: 8px; }
    .step p { font-size: .95rem; }

    /* =========================
       Comparison
       ========================= */
    .compare-wrap { border: 1px solid var(--border); border-radius: 24px; overflow: hidden; background: var(--card-bg); }
    .compare-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
    .compare-table th, .compare-table td { padding: 18px 20px; text-align: left; vertical-align: top; }
    .compare-table thead th {
      background: rgba(255, 77, 141, 0.08);
      color: #fff; font-family: system-ui; font-weight: 600; font-size: 1.05rem;
      border-bottom: 1px solid var(--border);
    }
    .compare-table thead th:first-child { color: var(--text-dim); font-family: system-ui; font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; }
    .compare-table tbody tr + tr td { border-top: 1px solid var(--border); }
    .compare-table td.us { color: var(--lavender-soft); }
    .compare-table td.us::before { content: '◆ '; color: var(--rose-400); margin-right: 4px; }
    .compare-table td.them { color: var(--text-dim); }
    .compare-table td.label { font-family: system-ui; font-weight: 600; color: #fff; }
    @media (max-width: 640px) {
      .compare-table thead { display: none; }
      .compare-table, .compare-table tbody, .compare-table tr, .compare-table td { display: block; width: 100%; }
      .compare-table tr { padding: 18px 16px; border-top: 1px solid var(--border); }
      .compare-table tbody tr + tr td { border-top: none; }
      .compare-table td { padding: 4px 0; }
      .compare-table td.label { font-size: 1rem; margin-bottom: 8px; }
      .compare-table td.us::before { content: '✦ Ours: '; color: var(--rose-400); font-weight: 600; }
      .compare-table td.them::before { content: 'Typical: '; color: var(--text-dim); font-weight: 600; }
    }

    /* =========================
       Chat preview
       ========================= */
    .chat-preview {
      display: grid; gap: 40px; align-items: center;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) { .chat-preview { grid-template-columns: 1fr 1.05fr; } }
    .chat-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 24px;
      box-shadow: 0 30px 80px -30px rgba(110, 76, 255, 0.45);
    }
    .chat-card .chat-head { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(200, 182, 255, 0.12); }
    .chat-stream { display: flex; flex-direction: column; gap: 10px; }
    .chat-stream .bubble { max-width: 84%; font-size: .9rem; }
    .typing {
      align-self: flex-start;
      display: inline-flex; gap: 4px;
      padding: 10px 14px; background: rgba(200, 182, 255, 0.14);
      border-radius: 18px; border-bottom-left-radius: 6px;
    }
    .typing span {
      width: 6px; height: 6px; border-radius: 50%; background: var(--lavender);
      animation: blink 1.2s infinite ease;
    }
    .typing span:nth-child(2) { animation-delay: .2s; }
    .typing span:nth-child(3) { animation-delay: .4s; }
    @keyframes blink { 0%, 60%, 100% { opacity: .3; } 30% { opacity: 1; transform: translateY(-2px); } }

    /* =========================
       Companion gallery
       ========================= */
    .gallery {
      display: grid; gap: 18px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .companion {
      position: relative; border-radius: 22px; overflow: hidden;
      aspect-ratio: 3/4;
      border: 1px solid var(--border);
      transition: transform .4s ease;
    }
    .companion:hover { transform: translateY(-6px); }
    .companion img { width: 100%; height: 100%; object-fit: cover; }
    .companion .meta {
      position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
      background: linear-gradient(180deg, transparent, rgba(15,10,46,0.92));
      color: #fff;
    }
    .companion .meta h3 { font-family: system-ui; font-size: 1.05rem; margin-bottom: 2px; }
    .companion .meta p { font-size: .8rem; color: var(--lavender-soft); margin:0; }
    .companion .tag {
      position: absolute; top: 12px; left: 12px;
      padding: 6px 10px; border-radius: 999px;
      background: rgba(15, 10, 46, 0.7); backdrop-filter: blur(8px);
      font-size: .7rem; color: var(--lavender); border: 1px solid var(--border);
    }

    /* =========================
       Testimonials
       ========================= */
    .testimonials {
      display: grid; gap: 18px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .testimonial {
      padding: 26px; border-radius: 22px;
      background: var(--card-bg); border: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 16px;
    }
    .stars { color: #ffc857; letter-spacing: 2px; font-size: .9rem; }
    .testimonial p { color: var(--lavender-soft); font-size: .98rem; line-height: 1.6; }
    .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
    .who-pic { width: 42px; height: 42px; border-radius: 50%; background-size: cover; background-position: center; border: 1px solid var(--border); }
    .who-name { font-weight: 700; color: #fff; font-size: .92rem; }
    .who-meta { color: var(--text-dim); font-size: .78rem; }

    /* =========================
       SEO Article
       ========================= */
    .article {
      max-width: 820px; margin: 0 auto;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 40px 28px;
    }
    @media (min-width: 768px) { .article { padding: 56px 56px; } }
    .article h2 { margin-top: 36px; margin-bottom: 14px; }
    .article h2:first-of-type { margin-top: 0; }
    .article p { color: var(--lavender-soft); margin-bottom: 14px; }
    .article p:last-child { margin-bottom: 0; }

    /* =========================
       Final CTA
       ========================= */
    .final-cta {
      text-align: center;
      background: var(--gradient-hero);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .final-cta .container { position: relative; z-index: 2; max-width: 760px; }
    .final-cta h2 { margin-bottom: 16px; }
    .final-cta p { font-size: 1.05rem; margin-bottom: 30px; color: var(--lavender-soft); }

    /* =========================
       FAQ
       ========================= */
    .faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      border: 1px solid var(--border); border-radius: 18px;
      background: var(--card-bg); overflow: hidden;
      transition: border-color .25s ease;
    }
    .faq-item[open] { border-color: rgba(255, 77, 141, 0.4); }
    .faq-item summary {
      list-style: none; cursor: pointer;
      padding: 20px 22px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      font-family: system-ui; font-weight: 600; font-size: 1.05rem; color: #fff;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+'; font-family: system-ui; font-weight: 400; font-size: 1.6rem; color: var(--lavender);
      transition: transform .25s ease;
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-body { padding: 0 22px 22px; color: var(--lavender-soft); font-size: .98rem; }

    /* =========================
       Footer
       ========================= */
    footer {
      background: var(--navy-950);
      padding: 60px 0 30px;
      border-top: 1px solid var(--border);
    }
    .footer-grid {
      display: grid; gap: 36px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
    .footer-brand p { font-size: .92rem; max-width: 360px; margin-top: 14px; }
    .footer h4 { font-family: system-ui; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--lavender); margin-bottom: 16px; }
    .footer a { display: block; padding: 6px 0; color: var(--text-dim); font-size: .92rem; transition: color .2s ease; }
    .footer a:hover { color: #fff; }
    .legal {
      margin-top: 40px; padding-top: 24px;
      border-top: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 12px;
      justify-content: space-between; align-items: flex-start;
      color: var(--text-dim); font-size: .85rem;
    }
    @media (min-width: 640px) { .legal { flex-direction: row; align-items: center; } }

    /* =========================
       Characters strip (Lovescape-style)
       ========================= */
    .characters-strip {
      padding: 56px 0 40px;
      background: linear-gradient(180deg, rgba(110, 76, 255, 0.06), transparent);
      border-bottom: 1px solid var(--border);
    }
    .strip-title {
      font-family: system-ui; font-size: 1.15rem; font-weight: 700; color: #fff;
      margin-bottom: 22px; letter-spacing: -0.01em;
    }
    .characters-row {
      display: flex; gap: 22px; overflow-x: auto; padding: 4px 4px 14px;
      scrollbar-width: thin;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
    }
    .characters-row::-webkit-scrollbar { height: 6px; }
    .characters-row::-webkit-scrollbar-thumb { background: rgba(200, 182, 255, 0.18); border-radius: 999px; }
    .char-pill {
      flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px;
      text-decoration: none; scroll-snap-align: start;
    }
    .char-pic-wrap { position: relative; }
    .char-pic {
      display: block; width: 72px; height: 72px; border-radius: 50%;
      background-size: cover; background-position: center;
      border: 2px solid var(--border);
      transition: border-color .25s ease, transform .25s ease;
    }
    .char-pill:hover .char-pic { border-color: var(--teal-500); transform: scale(1.06); }
    .char-dot {
      position: absolute; bottom: 2px; right: 2px;
      width: 14px; height: 14px; border-radius: 50%;
      background: var(--teal-500);
      border: 2px solid var(--bg-1);
      box-shadow: 0 0 8px rgba(62, 236, 198, 0.8);
    }
    .char-name { font-size: 0.85rem; color: var(--text-dim); font-weight: 600; }

    /* Floating CTA (Lovescape-style) */
    .float-cta {
      position: fixed; bottom: 24px; right: 24px; z-index: 60;
      padding: 14px 24px; border-radius: 999px;
      background: var(--gradient-warm); color: #07211c;
      font-family: system-ui, -apple-system, sans-serif; font-weight: 700; font-size: 0.95rem;
      box-shadow: 0 18px 50px -10px rgba(115, 247, 204, 0.65), 0 0 0 4px rgba(114, 243, 224, 0.12);
      transition: transform .25s ease, box-shadow .25s ease;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none;
    }
    .float-cta:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 22px 60px -8px rgba(115, 247, 204, 0.85), 0 0 0 6px rgba(114, 243, 224, 0.18); }
    .float-cta .sparkle { display: inline-block; transform: translateY(-1px); }
    @media (max-width: 640px) {
      .float-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 0.88rem; }
    }

    /* Signup modal (after 3 messages) */
    .signup-modal {
      position: fixed; inset: 0; z-index: 100;
      display: none; align-items: center; justify-content: center;
      padding: 20px;
      background: rgba(7, 6, 13, 0.78);
      backdrop-filter: blur(10px);
      animation: sm-fade .25s ease both;
    }
    .signup-modal.open { display: flex; }
    @keyframes sm-fade { from { opacity: 0; } to { opacity: 1; } }
    .signup-modal-card {
      max-width: 440px; width: 100%;
      background: linear-gradient(180deg, #1a0e44 0%, #110a2c 100%);
      border: 1px solid rgba(200, 182, 255, 0.18);
      border-radius: 26px;
      padding: 38px 28px 32px;
      text-align: center;
      position: relative;
      box-shadow: 0 50px 100px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(115, 247, 204, 0.06);
      animation: sm-pop .35s cubic-bezier(.16,1,.3,1) both;
    }
    @keyframes sm-pop { from { opacity: 0; transform: translateY(14px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
    .signup-modal h3 {
      font-size: 1.55rem; font-weight: 700; margin-bottom: 12px;
      letter-spacing: -0.01em;
    }
    .signup-modal h3 .grad { background: var(--gradient-pink); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .signup-modal p { color: var(--lavender-soft); margin-bottom: 26px; font-size: 0.98rem; line-height: 1.55; }
    .signup-modal .btn { width: 100%; padding: 16px 24px; font-size: 1rem; }
    .signup-modal-close {
      position: absolute; top: 14px; right: 14px;
      width: 32px; height: 32px; border-radius: 50%;
      background: rgba(255,255,255,0.06); color: #fff;
      display: grid; place-items: center; cursor: pointer;
      font-size: 1.2rem; line-height: 1;
      border: 1px solid rgba(200,182,255,0.08);
      transition: background .2s ease;
    }
    .signup-modal-close:hover { background: rgba(255,255,255,0.12); }
    .signup-modal-emoji {
      font-size: 2.6rem; display: block; margin-bottom: 12px;
      filter: drop-shadow(0 6px 20px rgba(255, 77, 141, 0.5));
    }
    .signup-modal-perks {
      display: flex; flex-direction: column; gap: 8px;
      margin: 18px 0 22px; text-align: left;
    }
    .signup-modal-perks li {
      list-style: none; display: flex; align-items: center; gap: 10px;
      font-size: 0.9rem; color: var(--lavender-soft);
    }
    .signup-modal-perks li::before {
      content: '✓'; flex: 0 0 22px;
      width: 22px; height: 22px; border-radius: 50%;
      display: grid; place-items: center;
      background: rgba(115, 247, 204, 0.18); color: var(--teal-500);
      font-weight: 700; font-size: 0.8rem;
    }

    /* Character preview chat modal */
    .char-chat-modal {
      position: fixed; inset: 0; z-index: 110;
      display: none; align-items: center; justify-content: center;
      padding: 16px;
      background: rgba(7, 6, 13, 0.78);
      backdrop-filter: blur(10px);
      animation: sm-fade .25s ease both;
    }
    .char-chat-modal.open { display: flex; }
    .char-chat-card {
      width: 100%; max-width: 400px;
      height: min(620px, 90vh);
      background: linear-gradient(180deg, #1a0e44 0%, #0f0a2e 100%);
      border: 1px solid rgba(200, 182, 255, 0.18);
      border-radius: 26px;
      display: flex; flex-direction: column; overflow: hidden;
      box-shadow: 0 50px 100px -20px rgba(0,0,0,0.7);
      animation: sm-pop .35s cubic-bezier(.16,1,.3,1) both;
    }
    .char-chat-head {
      display: flex; align-items: center; gap: 12px;
      padding: 16px 18px;
      border-bottom: 1px solid rgba(200, 182, 255, 0.12);
      background: rgba(11, 9, 21, 0.6);
    }
    .char-chat-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background-size: cover; background-position: center;
      border: 2px solid var(--rose-400);
      flex: 0 0 auto;
    }
    .char-chat-info { flex: 1 1 auto; min-width: 0; }
    .char-chat-info h4 { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 2px; }
    .char-chat-info p {
      font-size: 0.76rem; color: #8be38b; margin: 0;
      display: flex; align-items: center; gap: 6px;
    }
    .char-chat-info p::before {
      content:''; width:7px; height:7px; border-radius:50%;
      background:#8be38b; box-shadow:0 0 8px #8be38b;
    }
    .char-chat-close {
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(255,255,255,0.06); color: #fff;
      display: grid; place-items: center; cursor: pointer;
      font-size: 1.25rem; line-height: 1; flex: 0 0 auto;
      border: 1px solid rgba(200,182,255,0.08);
      transition: background .2s ease;
    }
    .char-chat-close:hover { background: rgba(255,255,255,0.12); }
    .char-chat-messages {
      flex: 1 1 auto; min-height: 0;
      overflow-y: auto; overflow-x: hidden;
      padding: 16px 16px 8px;
      display: flex; flex-direction: column; gap: 10px;
      scroll-behavior: smooth;
    }
    .char-chat-messages::-webkit-scrollbar { width: 4px; }
    .char-chat-messages::-webkit-scrollbar-thumb { background: rgba(200,182,255,0.18); border-radius: 999px; }
    .char-chat-cta {
      padding: 18px 18px 20px;
      text-align: center;
      background: linear-gradient(180deg, transparent, rgba(255, 77, 141, 0.08));
      border-top: 1px solid rgba(200, 182, 255, 0.12);
      animation: sm-pop .35s ease both;
    }
    .char-chat-cta p {
      color: var(--lavender-soft); font-size: 0.93rem; margin-bottom: 14px;
      line-height: 1.45;
    }
    .char-chat-cta strong { color: #fff; }
    .char-chat-cta .btn { width: 100%; padding: 14px; font-size: 0.95rem; }
    .char-chat-input {
      padding: 12px 14px 14px;
      display: flex; gap: 8px; align-items: center;
      background: rgba(11, 9, 21, 0.85);
      border-top: 1px solid rgba(200, 182, 255, 0.12);
    }
    .char-chat-input input {
      flex: 1 1 auto; min-width: 0;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(200,182,255,0.12);
      color: #fff; font-family: inherit; font-size: 0.9rem;
      padding: 11px 14px; border-radius: 999px; outline: none;
      transition: border-color .2s ease;
    }
    .char-chat-input input:focus { border-color: var(--teal-500); }
    .char-chat-input input::placeholder { color: rgba(200, 182, 255, 0.45); }
    .char-chat-input button {
      flex: 0 0 38px; width: 38px; height: 38px; border-radius: 50%;
      background: var(--gradient-warm);
      display: grid; place-items: center;
      color: #07211c; cursor: pointer;
      transition: transform .2s ease;
    }
    .char-chat-input button:hover { transform: scale(1.06); }
    .char-chat-input button:disabled { opacity: .45; cursor: not-allowed; }
    .char-chat-input button svg { width: 16px; height: 16px; }
    .char-chat-input[hidden] { display: none !important; }
    @media (max-width: 480px) {
      .char-chat-modal { padding: 0; }
      .char-chat-card {
        max-width: none;
        height: 100dvh; height: 100vh;
        border-radius: 0;
        border: none;
      }
    }

    /* Background ornaments */
    .orb {
      position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; z-index: 0;
      pointer-events: none;
    }
    .orb-pink { width: 320px; height: 320px; background: #ff4d8d; }
    .orb-violet { width: 360px; height: 360px; background: #6e4cff; }

    /* Accessibility */
    :focus-visible { outline: 2px solid var(--rose-400); outline-offset: 3px; border-radius: 4px; }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
      html { scroll-behavior: auto; }
    }

    /* =========================
       Review-specific blocks
       ========================= */
    .score-card {
      width: 100%; max-width: 380px; margin: 0 auto;
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px;
      box-shadow: 0 30px 80px -30px rgba(110, 76, 255, 0.45);
    }
    .score-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
    .score-card-brand { font-weight: 700; font-size: 1.05rem; color: #fff; }
    .score-card-meta { font-size: 0.78rem; color: var(--text-dim); }
    .score-card-big {
      text-align: center; margin: 8px 0 18px;
    }
    .score-card-big strong {
      display: block; font-size: 3.4rem; font-weight: 800; line-height: 1;
      background: var(--gradient-pink); -webkit-background-clip: text; background-clip: text; color: transparent;
      letter-spacing: -0.02em;
    }
    .score-card-big span { color: var(--text-dim); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
    .score-card-stars { color: #ffc857; letter-spacing: 3px; font-size: 1.1rem; text-align: center; margin-bottom: 18px; }
    .score-rows { display: flex; flex-direction: column; gap: 12px; }
    .score-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; font-size: 0.88rem; }
    .score-row span:first-child { color: var(--lavender-soft); }
    .score-row .score-bar {
      grid-column: 1 / -1;
      height: 6px; background: rgba(200, 182, 255, 0.1);
      border-radius: 999px; overflow: hidden;
    }
    .score-row .score-bar::after {
      content: ''; display: block; height: 100%;
      background: var(--gradient-warm);
      width: var(--w, 50%);
      border-radius: 999px;
    }
    .score-row b { color: #fff; font-weight: 700; font-size: 0.9rem; }

    /* Verdict bar (3 cards) */
    .verdict-bar {
      display: grid; gap: 18px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    .verdict-card {
      padding: 26px; border-radius: 22px;
      background: var(--card-bg); border: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 12px;
    }
    .verdict-card.good { border-color: rgba(115, 247, 204, 0.35); }
    .verdict-card.bad { border-color: rgba(255, 77, 141, 0.35); }
    .verdict-card.alt { border-color: rgba(110, 76, 255, 0.4); background: linear-gradient(160deg, rgba(110, 76, 255, 0.08), rgba(255, 77, 141, 0.05)); }
    .verdict-card .tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
    }
    .verdict-card.good .tag { color: var(--teal-500); }
    .verdict-card.bad  .tag { color: var(--rose-400); }
    .verdict-card.alt  .tag { color: var(--lavender); }
    .verdict-card h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0; }
    .verdict-card p { font-size: 0.93rem; line-height: 1.55; margin: 0; }
    .verdict-card .btn { align-self: flex-start; margin-top: 6px; padding: 11px 20px; font-size: 0.9rem; }

    /* Pros / Cons */
    .proscons {
      display: grid; gap: 22px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 800px) { .proscons { grid-template-columns: 1fr 1fr; } }
    .proscons-col {
      padding: 28px; border-radius: 22px;
      background: var(--card-bg); border: 1px solid var(--border);
    }
    .proscons-col.pros { border-color: rgba(115, 247, 204, 0.25); }
    .proscons-col.cons { border-color: rgba(255, 77, 141, 0.25); }
    .proscons-col h3 {
      display: flex; align-items: center; gap: 10px;
      font-size: 1.15rem; font-weight: 700; margin-bottom: 18px;
    }
    .proscons-col.pros h3::before {
      content: '+'; width: 28px; height: 28px; border-radius: 50%;
      background: rgba(115, 247, 204, 0.18); color: var(--teal-500);
      display: grid; place-items: center; font-weight: 800;
    }
    .proscons-col.cons h3::before {
      content: '−'; width: 28px; height: 28px; border-radius: 50%;
      background: rgba(255, 77, 141, 0.18); color: var(--rose-400);
      display: grid; place-items: center; font-weight: 800;
    }
    .proscons-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .proscons-col li {
      font-size: 0.95rem; line-height: 1.5; color: var(--lavender-soft);
      padding-left: 24px; position: relative;
    }
    .proscons-col.pros li::before {
      content: '✓'; position: absolute; left: 0; top: 0;
      color: var(--teal-500); font-weight: 700;
    }
    .proscons-col.cons li::before {
      content: '✕'; position: absolute; left: 0; top: 0;
      color: var(--rose-400); font-weight: 700;
    }

    /* Feature card with rating */
    .feature-rating .rating {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 4px 10px; border-radius: 999px;
      background: rgba(115, 247, 204, 0.12); color: var(--teal-500);
      font-size: 0.78rem; font-weight: 700; margin-bottom: 12px;
    }
    .feature-rating .rating.mid { background: rgba(255, 200, 87, 0.12); color: #ffc857; }
    .feature-rating .rating.low { background: rgba(255, 77, 141, 0.14); color: var(--rose-400); }

    /* Pricing breakdown */
    .pricing {
      display: grid; gap: 20px;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
    .price-card {
      padding: 28px; border-radius: 22px;
      background: var(--card-bg); border: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 10px;
    }
    .price-card.flagged { border-color: rgba(255, 77, 141, 0.4); background: linear-gradient(180deg, rgba(255, 77, 141, 0.05), transparent); }
    .price-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; }
    .price-card .price {
      font-size: 2rem; font-weight: 800; color: #fff; line-height: 1;
      letter-spacing: -0.02em;
    }
    .price-card .price small { font-size: 0.85rem; color: var(--text-dim); font-weight: 500; }
    .price-card p { font-size: 0.92rem; line-height: 1.55; }
    .price-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
    .price-card li { font-size: 0.88rem; color: var(--lavender-soft); padding-left: 20px; position: relative; }
    .price-card li::before { content: '·'; position: absolute; left: 6px; top: -3px; font-size: 1.3rem; color: var(--text-dim); }
    .price-card .flag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--rose-400);
    }

    /* Final verdict box */
    .final-verdict {
      max-width: 820px; margin: 0 auto;
      padding: 36px 28px;
      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      border: 1px solid var(--border);
      border-radius: 26px;
      text-align: center;
    }
    @media (min-width: 768px) { .final-verdict { padding: 48px 48px; } }
    .final-verdict .score-row-center {
      display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 14px;
    }
    .final-verdict .score-row-center strong {
      font-size: 3rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1;
      background: var(--gradient-pink); -webkit-background-clip: text; background-clip: text; color: transparent;
    }
    .final-verdict .score-row-center span { font-size: 1.1rem; color: var(--text-dim); }
    .final-verdict h2 { margin-bottom: 14px; }
    .final-verdict p { font-size: 1.02rem; max-width: 600px; margin: 0 auto 26px; }
    .final-verdict .btn { padding: 16px 32px; font-size: 1.02rem; }

    /* =========================
       Multi-brand ranking table
       ========================= */
    .rank-table-wrap {
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      background: var(--card-bg);
    }
    .rank-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.92rem;
    }
    .rank-table th, .rank-table td {
      padding: 18px 16px;
      text-align: left;
      vertical-align: top;
      border-bottom: 1px solid var(--border);
    }
    .rank-table thead th {
      background: rgba(255,255,255,0.04);
      color: var(--text-dim);
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
    }
    .rank-table tbody tr:last-child td { border-bottom: none; }
    .rank-table .col-num { width: 56px; color: var(--text-dim); font-weight: 700; font-size: 1rem; }
    .rank-table .col-site { width: 170px; }
    .rank-table .col-vibe { width: 240px; }
    .rank-table .col-price { width: 150px; }
    .rank-table .site-name {
      font-weight: 800; color: #fff; font-size: 1.05rem;
    }
    .rank-table .site-name a {
      color: var(--teal-500);
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 6px;
      transition: color .2s ease;
    }
    .rank-table .site-name a::after { content: '↗'; font-size: 0.85rem; }
    .rank-table .site-name a:hover { color: var(--teal-400); }
    .rank-table ul { list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; }
    .rank-table li {
      font-size: 0.85rem; color: var(--lavender-soft);
      padding-left: 16px; position: relative; line-height: 1.45;
    }
    .rank-table .col-pros li::before {
      content: '+'; position: absolute; left: 2px; top: 0;
      color: var(--teal-500); font-weight: 700; font-size: 0.92rem;
    }
    .rank-table .col-cons li::before {
      content: '−'; position: absolute; left: 2px; top: 0;
      color: var(--rose-400); font-weight: 700; font-size: 0.92rem;
    }
    .rank-table .price { font-weight: 700; color: #fff; font-size: 0.92rem; }

    .rank-table tr.highlighted {
      background: linear-gradient(90deg, rgba(115, 247, 204, 0.10), rgba(110, 76, 255, 0.06));
      position: relative;
    }
    .rank-table tr.highlighted .col-num {
      color: var(--teal-500);
      position: relative;
    }
    .rank-table tr.highlighted .col-num::before {
      content: '★'; margin-right: 4px; color: var(--teal-500);
    }
    .rank-table tr.highlighted .site-name { color: #fff; }
    .rank-table tr.highlighted .price { color: var(--teal-500); }

    @media (max-width: 900px) {
      .rank-table, .rank-table thead, .rank-table tbody, .rank-table tr, .rank-table th, .rank-table td {
        display: block; width: 100%;
      }
      .rank-table thead { display: none; }
      .rank-table tbody tr {
        padding: 20px 18px;
        border-bottom: 1px solid var(--border);
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 10px 14px;
      }
      .rank-table tbody tr:last-child { border-bottom: none; }
      .rank-table td { border: none; padding: 0; }
      .rank-table .col-num {
        width: auto;
        grid-row: 1; grid-column: 1;
        font-size: 1.15rem;
      }
      .rank-table .col-site {
        width: auto;
        grid-row: 1; grid-column: 2;
        align-self: center;
      }
      .rank-table .col-vibe,
      .rank-table .col-pros,
      .rank-table .col-cons,
      .rank-table .col-price {
        grid-column: 1 / -1;
        width: auto;
        padding-top: 4px;
      }
      .rank-table .col-vibe::before {
        content: 'It might be for you if…';
        display: block; font-size: 0.7rem; color: var(--text-dim);
        text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; font-weight: 700;
      }
      .rank-table .col-pros::before {
        content: 'Pros';
        display: block; font-size: 0.7rem; color: var(--teal-500);
        text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; font-weight: 700;
      }
      .rank-table .col-cons::before {
        content: 'Cons';
        display: block; font-size: 0.7rem; color: var(--rose-400);
        text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; font-weight: 700;
      }
      .rank-table .col-price::before {
        content: 'Pricing';
        display: block; font-size: 0.7rem; color: var(--text-dim);
        text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; font-weight: 700;
      }
    }

    /* =========================
       Editorial verdict block
       ========================= */
    .verdict-editorial {
      display: grid;
      grid-template-columns: 1fr;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--card-bg);
      overflow: hidden;
    }
    @media (min-width: 860px) {
      .verdict-editorial { grid-template-columns: 360px 1fr; }
    }
    .ve-score {
      padding: 36px 36px 32px;
      border-bottom: 1px solid var(--border);
      background:
        radial-gradient(420px 220px at 20% 0%, rgba(115, 247, 204, 0.10), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
      display: flex; flex-direction: column; justify-content: space-between;
      gap: 28px; min-height: 280px;
    }
    @media (min-width: 860px) {
      .ve-score { border-bottom: none; border-right: 1px solid var(--border); }
    }
    .ve-score-label {
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--text-dim);
    }
    .ve-score-big {
      font-size: clamp(4.2rem, 9vw, 6.4rem);
      font-weight: 800; line-height: 0.95;
      letter-spacing: -0.045em; color: #fff;
      margin-top: 16px;
      font-variant-numeric: tabular-nums;
    }
    .ve-score-big small {
      font-size: 0.32em; font-weight: 600;
      color: var(--text-dim); letter-spacing: 0;
      margin-left: 6px;
    }
    .ve-score-stars {
      color: #ffc857; letter-spacing: 6px;
      font-size: 1.05rem; margin-top: 18px;
    }
    .ve-score-divider {
      height: 1px; background: var(--border);
      margin: 6px 0 4px;
    }
    .ve-score-foot {
      font-size: 0.78rem; color: var(--text-dim);
      display: flex; align-items: center; gap: 10px;
      letter-spacing: 0.02em;
    }
    .ve-score-foot::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--teal-500); box-shadow: 0 0 8px var(--teal-500);
    }

    .ve-rows { display: flex; flex-direction: column; }
    .ve-row {
      padding: 28px 32px;
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: 44px 1fr;
      column-gap: 20px;
      row-gap: 6px;
      position: relative;
    }
    .ve-row:last-child { border-bottom: none; }
    .ve-row-num {
      grid-row: 1; grid-column: 1;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--text-dim);
      font-variant-numeric: tabular-nums;
      padding-top: 2px;
    }
    .ve-row-label {
      grid-row: 1; grid-column: 2;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      display: inline-flex; align-items: center; gap: 10px;
    }
    .ve-row-label::before {
      content: ''; width: 8px; height: 8px; border-radius: 50%;
      flex: 0 0 8px;
    }
    .ve-row.good  .ve-row-label { color: var(--teal-500); }
    .ve-row.good  .ve-row-label::before { background: var(--teal-500); box-shadow: 0 0 8px rgba(115, 247, 204, 0.8); }
    .ve-row.bad   .ve-row-label { color: var(--rose-400); }
    .ve-row.bad   .ve-row-label::before { background: var(--rose-400); box-shadow: 0 0 8px rgba(255, 119, 168, 0.7); }
    .ve-row.alt   .ve-row-label { color: var(--lavender); }
    .ve-row.alt   .ve-row-label::before { background: var(--lavender); box-shadow: 0 0 8px rgba(200, 182, 255, 0.7); }
    .ve-row h3 {
      grid-row: 2; grid-column: 2;
      font-size: 1.3rem; font-weight: 700;
      letter-spacing: -0.015em; color: #fff;
      margin: 6px 0 6px;
      line-height: 1.25;
    }
    .ve-row p {
      grid-row: 3; grid-column: 2;
      font-size: 0.97rem; color: var(--lavender-soft);
      margin: 0; max-width: 560px; line-height: 1.55;
    }
    .ve-row .btn {
      grid-row: 4; grid-column: 2;
      margin-top: 16px; align-self: start;
      padding: 12px 24px; font-size: 0.92rem;
    }
    .ve-row.alt {
      background: linear-gradient(180deg, rgba(115, 247, 204, 0.04), transparent);
    }
    .ve-row.alt::before {
      content: ''; position: absolute;
      top: 28px; bottom: 28px; left: 0;
      width: 2px; background: var(--teal-500);
      border-radius: 2px;
    }

    /* Section head, editorial variant */
    .section-head.editorial {
      max-width: 720px;
      margin-left: 0; margin-right: auto;
      text-align: left;
    }
    .section-head.editorial p { margin-top: 14px; }
    .section-head.editorial h2 em {
      font-style: italic; font-weight: 600;
      color: var(--lavender-soft);
    }

    /* =========================
       "What is Joi AI" editorial block
       ========================= */
    .what-grid {
      display: grid; gap: 48px; align-items: center;
      grid-template-columns: 1fr;
    }
    @media (min-width: 980px) {
      .what-grid { grid-template-columns: 1fr 1.05fr; gap: 72px; }
    }
    .what-text .eyebrow { margin-bottom: 18px; }
    .what-text h2 {
      font-size: clamp(2.1rem, 3vw + 1rem, 3.2rem);
      margin-bottom: 22px; line-height: 1.1;
    }
    .what-text h2 em {
      font-style: italic; font-weight: 600;
      color: var(--lavender-soft);
    }
    .what-text .what-lede {
      font-size: 1.12rem; line-height: 1.55;
      color: var(--lavender-soft);
      margin-bottom: 18px; max-width: 560px;
    }
    .what-text p {
      font-size: 1rem; line-height: 1.6;
      margin-bottom: 18px; max-width: 560px;
      color: var(--text-dim);
    }
    .what-text strong { color: #fff; font-weight: 700; }
    .what-stats {
      display: grid; gap: 12px;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 30px; max-width: 560px;
    }
    .what-stats .stat {
      padding: 18px 16px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: var(--card-bg);
    }
    .what-stats .stat strong {
      display: block; color: #fff;
      font-size: 1.55rem; font-weight: 800;
      letter-spacing: -0.025em; line-height: 1;
      margin-bottom: 6px;
      font-variant-numeric: tabular-nums;
    }
    .what-stats .stat span {
      font-size: 0.76rem; color: var(--text-dim);
      letter-spacing: 0.02em; line-height: 1.35;
      display: block;
    }

    .what-visual { margin: 0; position: relative; }
    .browser-mock {
      background: linear-gradient(180deg, #14112a 0%, #0b0915 100%);
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow:
        0 40px 100px -30px rgba(110, 76, 255, 0.5),
        0 20px 50px -20px rgba(0,0,0,0.6);
      position: relative;
    }
    .browser-bar {
      display: flex; align-items: center; gap: 8px;
      padding: 11px 14px;
      background: rgba(255,255,255,0.03);
      border-bottom: 1px solid rgba(200, 182, 255, 0.08);
    }
    .browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; display: block; }
    .browser-bar .d1 { background: #ff5f57; }
    .browser-bar .d2 { background: #febc2e; }
    .browser-bar .d3 { background: #28c840; }
    .browser-bar .browser-url {
      margin-left: 14px;
      padding: 5px 14px;
      background: rgba(255,255,255,0.04);
      border-radius: 6px;
      font-size: 0.76rem;
      color: var(--text-dim);
      font-family: ui-monospace, "SF Mono", Menlo, monospace;
      flex: 1 1 auto; max-width: 320px;
    }
    .browser-mock img {
      display: block; width: 100%; height: auto;
    }
    .what-visual figcaption {
      margin-top: 14px;
      font-size: 0.8rem;
      color: var(--text-dim);
      text-align: right;
      letter-spacing: 0.02em;
    }
    .what-visual .chip {
      position: absolute; top: 18px; right: -10px;
      background: linear-gradient(180deg, #14112a, #0b0915);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--lavender-soft);
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
      display: inline-flex; align-items: center; gap: 8px;
    }
    .what-visual .chip::before {
      content: ''; width: 7px; height: 7px; border-radius: 50%;
      background: var(--teal-500);
      box-shadow: 0 0 8px var(--teal-500);
    }
    @media (max-width: 980px) {
      .what-visual .chip { right: 12px; top: -14px; }
    }

    /* =========================
       FAQ — editorial layout
       ========================= */
    .faq-editorial {
      display: grid; gap: 48px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 980px) {
      .faq-editorial { grid-template-columns: 340px 1fr; gap: 72px; }
    }
    .faq-side .eyebrow { margin-bottom: 16px; }
    .faq-side h2 {
      margin-bottom: 14px;
      font-size: clamp(1.9rem, 2vw + 1rem, 2.5rem);
      line-height: 1.12;
    }
    .faq-side h2 em { font-style: italic; font-weight: 600; color: var(--lavender-soft); }
    .faq-side > p { font-size: 0.98rem; max-width: 360px; margin-bottom: 4px; color: var(--lavender-soft); }
    .faq-side-meta {
      margin-top: 22px;
      display: flex; align-items: center; gap: 10px;
      font-size: 0.78rem; color: var(--text-dim);
      letter-spacing: 0.04em;
    }
    .faq-side-meta::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--teal-500); box-shadow: 0 0 8px var(--teal-500);
    }
    .faq-side-card {
      margin-top: 30px;
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background:
        radial-gradient(280px 160px at 20% 0%, rgba(115, 247, 204, 0.08), transparent 70%),
        linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    }
    .faq-side-card h4 {
      font-size: 1rem; font-weight: 700; color: #fff;
      margin-bottom: 8px;
    }
    .faq-side-card p { font-size: 0.9rem; margin-bottom: 16px; color: var(--lavender-soft); }
    .faq-side-card .btn { padding: 10px 18px; font-size: 0.86rem; }
    @media (min-width: 980px) {
      .faq-side { position: sticky; top: 100px; align-self: start; }
    }

    .faq-stack { display: flex; flex-direction: column; }
    .faq-row {
      border-bottom: 1px solid var(--border);
      transition: background .25s ease;
    }
    .faq-row:first-child { border-top: 1px solid var(--border); }
    .faq-row[open] {
      background: linear-gradient(180deg, rgba(115, 247, 204, 0.04), transparent);
    }
    .faq-row summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 4px;
      display: grid;
      grid-template-columns: 44px 1fr 44px;
      align-items: center;
      gap: 18px;
      transition: padding-left .25s ease;
    }
    .faq-row summary:hover { padding-left: 8px; }
    .faq-row summary::-webkit-details-marker { display: none; }
    .faq-row .num {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--text-dim);
      font-variant-numeric: tabular-nums;
      transition: color .25s ease;
    }
    .faq-row[open] .num { color: var(--teal-500); }
    .faq-row .q {
      font-size: 1.05rem;
      font-weight: 600;
      color: #fff;
      letter-spacing: -0.005em;
      line-height: 1.4;
    }
    .faq-row .icon {
      width: 34px; height: 34px; border-radius: 50%;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      display: grid; place-items: center;
      color: var(--lavender-soft);
      transition: transform .25s ease, background .2s ease, border-color .2s ease, color .25s ease;
      position: relative;
      justify-self: end;
    }
    .faq-row .icon::before, .faq-row .icon::after {
      content: ''; position: absolute;
      background: currentColor; border-radius: 1px;
    }
    .faq-row .icon::before { width: 12px; height: 1.5px; }
    .faq-row .icon::after  { width: 1.5px; height: 12px; transition: transform .25s ease; }
    .faq-row summary:hover .icon { background: rgba(200, 182, 255, 0.08); border-color: rgba(200, 182, 255, 0.2); }
    .faq-row[open] .icon {
      background: rgba(115, 247, 204, 0.12);
      border-color: rgba(115, 247, 204, 0.35);
      color: var(--teal-500);
    }
    .faq-row[open] .icon::after { transform: rotate(90deg); }
    .faq-row .answer {
      padding: 0 50px 26px 62px;
      font-size: 0.98rem; line-height: 1.6;
      color: var(--lavender-soft);
      max-width: 760px;
      position: relative;
      animation: faq-open .35s ease both;
    }
    @keyframes faq-open {
      from { opacity: 0; transform: translateY(-4px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .faq-row .answer::before {
      content: ''; position: absolute;
      left: 18px; top: 4px; bottom: 6px;
      width: 2px; border-radius: 2px;
      background: var(--teal-500);
    }
    @media (max-width: 640px) {
      .faq-row summary { grid-template-columns: 36px 1fr 32px; gap: 12px; }
      .faq-row .answer { padding: 0 4px 24px 48px; }
      .faq-row .answer::before { left: 14px; }
      .faq-row .icon { width: 30px; height: 30px; }
    }

    /* =========================
       Final Verdict — pro editorial card
       ========================= */
    .final-verdict-pro {
      max-width: 920px; margin: 0 auto;
      border: 1px solid var(--border);
      border-radius: 26px;
      background:
        radial-gradient(900px 300px at 50% 0%, rgba(115, 247, 204, 0.07), transparent 60%),
        var(--card-bg);
      overflow: hidden;
      box-shadow: 0 40px 100px -40px rgba(0,0,0,0.7);
    }
    .fvp-top {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 28px;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--text-dim);
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.02);
      flex-wrap: wrap;
      gap: 10px;
    }
    .fvp-top .left { display: inline-flex; align-items: center; gap: 10px; }
    .fvp-top .left::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--teal-500); box-shadow: 0 0 8px var(--teal-500);
    }

    .fvp-headline {
      padding: 40px 36px;
      display: grid; gap: 28px;
      grid-template-columns: 1fr;
      border-bottom: 1px solid var(--border);
    }
    @media (min-width: 760px) {
      .fvp-headline { grid-template-columns: 180px 1fr; gap: 40px; align-items: start; }
    }
    .fvp-score-num {
      font-size: clamp(3.6rem, 6vw, 4.6rem);
      font-weight: 800; line-height: 0.95;
      letter-spacing: -0.045em; color: #fff;
      font-variant-numeric: tabular-nums;
    }
    .fvp-score-num small {
      font-size: 0.3em; font-weight: 600;
      color: var(--text-dim); margin-left: 4px;
    }
    .fvp-score-stars {
      color: #ffc857; letter-spacing: 5px;
      font-size: 1rem; margin-top: 12px;
    }
    .fvp-score-label {
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--text-dim); margin-top: 14px;
    }
    .fvp-headline-text h2 {
      font-size: clamp(1.85rem, 2.4vw + 1rem, 2.6rem);
      line-height: 1.14; letter-spacing: -0.015em;
      margin-bottom: 18px;
      text-align: left;
    }
    .fvp-headline-text h2 em {
      font-style: italic; font-weight: 600; color: var(--lavender-soft);
    }
    .fvp-headline-text p {
      font-size: 1.02rem; line-height: 1.6;
      color: var(--lavender-soft); max-width: 640px;
      margin: 0;
    }
    .fvp-headline-text strong { color: #fff; font-weight: 700; }

    .fvp-row {
      padding: 26px 36px;
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    @media (min-width: 760px) {
      .fvp-row { grid-template-columns: 180px 1fr; gap: 40px; align-items: start; }
    }
    .fvp-row-label {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      display: inline-flex; align-items: center; gap: 10px;
      padding-top: 5px;
    }
    .fvp-row-label::before {
      content: ''; width: 8px; height: 8px; border-radius: 50%;
      flex: 0 0 8px;
    }
    .fvp-row.best .fvp-row-label { color: var(--teal-500); }
    .fvp-row.best .fvp-row-label::before { background: var(--teal-500); box-shadow: 0 0 8px rgba(115,247,204,.7); }
    .fvp-row.skip .fvp-row-label { color: var(--rose-400); }
    .fvp-row.skip .fvp-row-label::before { background: var(--rose-400); box-shadow: 0 0 8px rgba(255,119,168,.6); }
    .fvp-row.alt  .fvp-row-label { color: var(--lavender); }
    .fvp-row.alt  .fvp-row-label::before { background: var(--lavender); box-shadow: 0 0 8px rgba(200, 182, 255, 0.7); }
    .fvp-row p {
      font-size: 1rem; line-height: 1.6; color: var(--lavender-soft);
      max-width: 640px; margin: 0;
    }
    .fvp-row strong { color: #fff; font-weight: 700; }
    .fvp-row.alt .btn {
      margin-top: 18px;
      padding: 13px 26px; font-size: 0.92rem;
    }

    .fvp-foot {
      display: flex; align-items: center; gap: 16px;
      padding: 22px 36px;
      background: rgba(255,255,255,0.02);
      font-size: 0.88rem; color: var(--text-dim);
      line-height: 1.55;
    }
    .fvp-foot-avatar {
      flex: 0 0 40px;
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, #2b1055, #14112a);
      border: 1px solid var(--border);
      display: grid; place-items: center;
      font-weight: 800; color: #fff; font-size: 0.86rem;
      letter-spacing: 0.02em;
    }
    .fvp-foot strong { color: #fff; font-weight: 700; }

    /* =========================
       Pros & Cons — newspaper spread
       ========================= */
    .proscons-pro {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }
    @media (min-width: 880px) {
      .proscons-pro { grid-template-columns: 1fr 1px 1fr; }
    }
    .pcp-divider {
      display: none;
      background: var(--border);
    }
    @media (min-width: 880px) {
      .pcp-divider { display: block; }
    }
    .pcp-col { padding: 32px 0 36px; }
    @media (min-width: 880px) {
      .pcp-col { padding: 40px 40px; }
      .pcp-col:first-child { padding-left: 0; }
      .pcp-col:last-child  { padding-right: 0; }
    }
    .pcp-col + .pcp-col, .pcp-divider + .pcp-col {
      border-top: 1px solid var(--border);
    }
    @media (min-width: 880px) {
      .pcp-col + .pcp-col, .pcp-divider + .pcp-col { border-top: none; }
    }

    .pcp-col-head {
      display: flex; align-items: baseline; justify-content: space-between;
      margin-bottom: 26px; padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
      gap: 12px;
    }
    .pcp-col-head h3 {
      font-size: 0.74rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase;
      display: inline-flex; align-items: center; gap: 10px;
      margin: 0;
    }
    .pcp-col-head h3::before {
      content: ''; width: 8px; height: 8px; border-radius: 50%; flex: 0 0 8px;
    }
    .pcp-col.pros .pcp-col-head h3 { color: var(--teal-500); }
    .pcp-col.pros .pcp-col-head h3::before { background: var(--teal-500); box-shadow: 0 0 8px rgba(115, 247, 204, .7); }
    .pcp-col.cons .pcp-col-head h3 { color: var(--rose-400); }
    .pcp-col.cons .pcp-col-head h3::before { background: var(--rose-400); box-shadow: 0 0 8px rgba(255, 119, 168, .6); }
    .pcp-col-head .count {
      font-size: 0.7rem; color: var(--text-dim);
      letter-spacing: 0.14em; text-transform: uppercase;
      font-variant-numeric: tabular-nums;
    }

    .pcp-list { display: flex; flex-direction: column; gap: 20px; list-style: none; padding: 0; margin: 0; }
    .pcp-item {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 16px;
      align-items: start;
    }
    .pcp-weight {
      font-size: 0.62rem; font-weight: 800;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 5px 8px; border-radius: 4px;
      text-align: center;
      background: rgba(255,255,255,0.04);
      color: var(--text-dim);
      border: 1px solid var(--border);
      justify-self: start;
      white-space: nowrap;
      font-variant-numeric: tabular-nums;
    }
    .pcp-weight.edge   { background: rgba(115, 247, 204, 0.12); color: var(--teal-500); border-color: rgba(115, 247, 204, 0.3); }
    .pcp-weight.strong { background: rgba(115, 247, 204, 0.06); color: var(--teal-500); border-color: rgba(115, 247, 204, 0.18); }
    .pcp-weight.major  { background: rgba(255, 77, 141, 0.12); color: var(--rose-400); border-color: rgba(255, 77, 141, 0.3); }
    .pcp-weight.minor  { background: rgba(255, 77, 141, 0.04); color: var(--rose-400); border-color: rgba(255, 77, 141, 0.18); }

    .pcp-item-body strong {
      display: block; color: #fff; font-weight: 700;
      font-size: 1.02rem; line-height: 1.4; letter-spacing: -0.005em;
      margin-bottom: 4px;
    }
    .pcp-item-body p {
      font-size: 0.9rem; line-height: 1.55;
      color: var(--text-dim); margin: 0;
    }

    @media (max-width: 540px) {
      .pcp-item { grid-template-columns: 1fr; gap: 8px; }
      .pcp-weight { justify-self: start; }
    }

    /* =========================
       Character preview fan (staggered)
       ========================= */
    .char-fan-section {
      padding: 36px 0 56px;
      overflow: hidden;
      position: relative;
    }
    .char-fan-head {
      max-width: 720px; margin: 0 auto 32px;
      text-align: center; padding: 0 20px;
    }
    .char-fan-head h2 {
      font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
      margin-bottom: 8px;
    }
    .char-fan-head h2 em { font-style: italic; font-weight: 600; color: var(--lavender-soft); }
    .char-fan-head p { font-size: 0.95rem; color: var(--text-dim); }

    .char-fan {
      display: flex; justify-content: center; align-items: flex-end;
      gap: 14px; padding: 24px 16px 0;
      max-width: 1180px; margin: 0 auto;
    }
    .char-fan .card {
      flex: 1 1 0; min-width: 0; max-width: 220px;
      aspect-ratio: 3 / 7;
      border-radius: 22px;
      overflow: hidden;
      position: relative;
      background: var(--card-bg);
      border: 1px solid var(--border);
      box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
      transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
      cursor: pointer;
      text-decoration: none;
    }
    .char-fan .card img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      transition: transform .6s ease;
    }
    .char-fan .card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(11, 9, 21, 0.85) 100%);
      pointer-events: none;
    }
    .char-fan .card .label {
      position: absolute; left: 14px; right: 14px; bottom: 14px;
      z-index: 2;
      color: #fff;
      font-weight: 700; font-size: 0.92rem;
      letter-spacing: -0.005em;
      display: flex; align-items: center; justify-content: space-between; gap: 8px;
    }
    .char-fan .card .label small {
      font-size: 0.7rem; font-weight: 600;
      color: var(--lavender-soft); opacity: 0.85;
    }
    .char-fan .card:hover { transform: translateY(-10px); box-shadow: 0 40px 80px -30px rgba(115, 247, 204, 0.35), 0 30px 60px -30px rgba(0,0,0,0.8); }
    .char-fan .card:hover img { transform: scale(1.04); }

    /* Staggered offsets (center highest) */
    .char-fan .card:nth-child(1) { transform: translateY(40px) rotate(-2deg); }
    .char-fan .card:nth-child(2) { transform: translateY(20px) rotate(-1deg); }
    .char-fan .card:nth-child(3) { transform: translateY(0)    rotate(0); z-index: 2; }
    .char-fan .card:nth-child(4) { transform: translateY(20px) rotate(1deg); }
    .char-fan .card:nth-child(5) { transform: translateY(40px) rotate(2deg); }
    .char-fan .card:nth-child(1):hover { transform: translateY(30px) rotate(-2deg); }
    .char-fan .card:nth-child(2):hover { transform: translateY(10px) rotate(-1deg); }
    .char-fan .card:nth-child(3):hover { transform: translateY(-10px) rotate(0); }
    .char-fan .card:nth-child(4):hover { transform: translateY(10px) rotate(1deg); }
    .char-fan .card:nth-child(5):hover { transform: translateY(30px) rotate(2deg); }

    @media (max-width: 760px) {
      .char-fan { gap: 8px; padding: 16px 12px 0; }
      .char-fan .card { border-radius: 16px; }
      .char-fan .card .label { font-size: 0.78rem; left: 10px; right: 10px; bottom: 10px; }
      .char-fan .card .label small { display: none; }
      .char-fan .card:nth-child(1) { transform: translateY(28px) rotate(-2deg); }
      .char-fan .card:nth-child(2) { transform: translateY(14px) rotate(-1deg); }
      .char-fan .card:nth-child(3) { transform: translateY(0) rotate(0); }
      .char-fan .card:nth-child(4) { transform: translateY(14px) rotate(1deg); }
      .char-fan .card:nth-child(5) { transform: translateY(28px) rotate(2deg); }
    }

    /* =========================
       Scorecard (Feature breakdown — editorial)
       ========================= */
    .scorecard {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .sc-row {
      display: grid;
      grid-template-columns: 56px 140px 1fr 220px;
      gap: 28px;
      padding: 28px 4px;
      align-items: center;
      border-bottom: 1px solid var(--border);
      transition: background .25s ease, padding-left .25s ease;
    }
    .sc-row:last-child { border-bottom: none; }
    .sc-row:hover { background: rgba(255,255,255,0.02); padding-left: 14px; }
    .sc-num {
      font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--text-dim); font-weight: 700;
      font-variant-numeric: tabular-nums;
    }
    .sc-score {
      font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
      line-height: 1; letter-spacing: -0.045em;
      font-weight: 800; color: #fff;
      font-variant-numeric: tabular-nums;
    }
    .sc-score small {
      font-size: 0.3em; color: var(--text-dim); font-weight: 600;
      margin-left: 4px; letter-spacing: 0;
    }
    .sc-row.tier-high .sc-score { color: var(--teal-500); }
    .sc-row.tier-mid  .sc-score { color: var(--lavender); }
    .sc-row.tier-low  .sc-score { color: var(--rose-400); }
    .sc-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
    .sc-head {
      display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
    }
    .sc-head h3 {
      font-size: 1.18rem; font-weight: 700; color: #fff;
      margin: 0; letter-spacing: -0.005em;
    }
    .sc-tag {
      font-size: 0.66rem; font-weight: 800; letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 4px 9px; border-radius: 4px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.04);
      color: var(--text-dim);
      white-space: nowrap;
    }
    .sc-row.tier-high .sc-tag { color: var(--teal-500); border-color: rgba(115, 247, 204, 0.3); background: rgba(115, 247, 204, 0.08); }
    .sc-row.tier-mid  .sc-tag { color: var(--lavender); border-color: rgba(200, 182, 255, 0.3); background: rgba(200, 182, 255, 0.08); }
    .sc-row.tier-low  .sc-tag { color: var(--rose-400); border-color: rgba(255, 77, 141, 0.3); background: rgba(255, 77, 141, 0.08); }
    .sc-body p {
      font-size: 0.94rem; line-height: 1.55;
      color: var(--text-dim); max-width: 620px; margin: 0;
    }
    .sc-bar {
      height: 6px; background: rgba(200, 182, 255, 0.08);
      border-radius: 999px; overflow: hidden; position: relative;
      align-self: center;
    }
    .sc-bar span {
      display: block; height: 100%; width: var(--w, 50%);
      border-radius: 999px;
      background: var(--gradient-warm);
      transition: width .8s cubic-bezier(.16,1,.3,1);
    }
    .sc-row.tier-mid .sc-bar span { background: linear-gradient(90deg, #6e4cff, #c8b6ff); }
    .sc-row.tier-low .sc-bar span { background: linear-gradient(90deg, #ff4d8d, #ff77a8); }

    @media (max-width: 880px) {
      .sc-row {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        gap: 4px 18px;
        padding: 22px 4px;
      }
      .sc-row:hover { padding-left: 4px; }
      .sc-num { grid-column: 1; grid-row: 1; align-self: center; }
      .sc-score { grid-column: 2; grid-row: 1; font-size: 2rem; justify-self: end; }
      .sc-body { grid-column: 1 / -1; grid-row: 2; padding-top: 10px; }
      .sc-bar { grid-column: 1 / -1; grid-row: 3; margin-top: 10px; }
    }

    /* Plain pros/cons item variant — title + description, no chip */
    .pcp-item-plain {
      display: block;
      padding-left: 18px;
      position: relative;
    }
    .pcp-item-plain::before {
      content: '';
      position: absolute; left: 0; top: 8px;
      width: 8px; height: 8px; border-radius: 50%;
    }
    .pcp-col.pros .pcp-item-plain::before { background: var(--teal-500); box-shadow: 0 0 6px rgba(115, 247, 204, 0.6); }
    .pcp-col.cons .pcp-item-plain::before { background: var(--rose-400); box-shadow: 0 0 6px rgba(255, 119, 168, 0.55); }
    .pcp-item-plain strong {
      display: block; color: #fff; font-weight: 700;
      font-size: 1.02rem; line-height: 1.4; letter-spacing: -0.005em;
      margin-bottom: 4px;
    }
    .pcp-item-plain p {
      font-size: 0.9rem; line-height: 1.55;
      color: var(--text-dim); margin: 0;
    }

    /* =========================
       Brand catalog cards
       ========================= */
    .catalog-section { padding: 70px 0; border-top: 1px solid var(--border); overflow: hidden; }
    .catalog-section:first-of-type { border-top: none; }
    .catalog-section-head { max-width: 760px; margin: 0 0 36px; }
    .catalog-section-head .eyebrow { margin-bottom: 14px; }
    .catalog-section-head h2 {
      font-size: clamp(1.7rem, 1.8vw + 1rem, 2.2rem);
      margin-bottom: 14px; line-height: 1.15;
      letter-spacing: -0.015em;
    }
    .catalog-section-head p {
      font-size: 1rem; line-height: 1.6; color: var(--lavender-soft);
    }
    .brand-grid {
      display: grid; gap: 16px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .brand-card {
      padding: 22px;
      border-radius: 18px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 14px;
      transition: border-color .25s ease, transform .25s ease, background .25s ease;
      text-decoration: none; color: inherit;
    }
    .brand-card.clickable {
      cursor: pointer;
      background: linear-gradient(180deg, rgba(115, 247, 204, 0.04), transparent);
      border-color: rgba(115, 247, 204, 0.25);
    }
    .brand-card.clickable:hover {
      border-color: rgba(115, 247, 204, 0.5);
      transform: translateY(-3px);
      background: linear-gradient(180deg, rgba(115, 247, 204, 0.07), transparent);
    }
    .brand-card-head {
      display: flex; align-items: center; justify-content: space-between; gap: 10px;
    }
    .brand-card h3 {
      font-size: 1.05rem; font-weight: 700; color: #fff;
      margin: 0; letter-spacing: -0.005em;
    }
    .brand-card .featured {
      font-size: 0.6rem; font-weight: 800; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--teal-500);
      padding: 4px 8px; border-radius: 4px;
      background: rgba(115, 247, 204, 0.12);
      border: 1px solid rgba(115, 247, 204, 0.35);
      white-space: nowrap;
    }
    .brand-card p {
      font-size: 0.88rem; line-height: 1.5; color: var(--text-dim);
      margin: 0; flex: 1;
    }
    .brand-btn {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.74rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 8px 14px; border-radius: 999px;
      align-self: flex-start;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.04);
      color: var(--text-dim);
    }
    .brand-card.clickable .brand-btn {
      color: var(--teal-500);
      border-color: rgba(115, 247, 204, 0.35);
      background: rgba(115, 247, 204, 0.10);
    }
    .brand-card.clickable .brand-btn::after { content: '↗'; font-size: 0.85rem; }
    .brand-card.clickable:hover .brand-btn { background: rgba(115, 247, 204, 0.2); }
    .brand-card.coming .brand-btn { opacity: 0.7; }
    .brand-card.coming .brand-btn::after { content: '· soon'; opacity: 0.8; letter-spacing: 0; font-weight: 500; margin-left: 4px; }

    /* Catalog closing features list */
    .closing-features {
      max-width: 720px; margin: 0 auto 28px;
      display: grid; gap: 10px;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .closing-features li {
      list-style: none;
      padding: 12px 16px; border-radius: 12px;
      background: var(--card-bg); border: 1px solid var(--border);
      font-size: 0.88rem; color: var(--lavender-soft);
      display: flex; align-items: center; gap: 10px;
    }
    .closing-features li::before {
      content: '✓'; color: var(--teal-500); font-weight: 800;
    }

/* =========================
   home.html — pro editorial overrides
   ========================= */
.home-hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.home-hero-grid { display: grid; gap: 48px; grid-template-columns: 1fr; align-items: end; }
@media (min-width: 980px) { .home-hero-grid { grid-template-columns: 1.4fr 1fr; gap: 64px; } }
.home-hero h1 {
  font-size: clamp(2.2rem, 3.6vw + 1rem, 4.2rem) !important;
  line-height: 1.05 !important; letter-spacing: -0.035em !important;
  margin-bottom: 22px;
}
.home-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.home-hero .eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--teal-500);
}
.home-hero .lede { font-size: 1.05rem; max-width: 540px; }
.home-hero-stats {
  display: grid; gap: 12px; grid-template-columns: 1fr 1fr;
  padding: 26px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(115, 247, 204, 0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.home-hero-stats .stat {
  padding: 14px 6px; border-radius: 12px; background: transparent;
  border: none;
}
.home-hero-stats .stat strong {
  font-size: 1.9rem; font-weight: 800; color: #fff;
  letter-spacing: -0.025em; line-height: 1; display: block; margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.home-hero-stats .stat strong .grad-t {
  background: linear-gradient(135deg, var(--teal-500), var(--lavender));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.home-hero-stats .stat span { font-size: 0.74rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.home-hero-stats .stat-wide { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid var(--border); }
.home-hero-stats .stat-wide strong { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.005em; }
.home-hero-stats .stat-wide span { text-transform: none; letter-spacing: 0; font-size: 0.84rem; color: var(--lavender-soft); }

/* Catalog Overview redesign */
.home-overview { padding: 36px 0 70px; overflow: hidden; }
.home-overview-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 980px) { .home-overview-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; } }
.home-overview h2 { font-size: clamp(1.7rem, 1.8vw + 1rem, 2.4rem) !important; margin-bottom: 16px; }
.home-overview h2 em { font-style: italic; color: var(--lavender-soft); font-weight: 600; }
.home-overview p { font-size: 1rem; color: var(--lavender-soft); line-height: 1.6; max-width: 560px; }
.home-tiles { display: grid; gap: 12px; align-content: start; }
.home-tile {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px;
  align-items: start;
  padding: 20px; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--border);
  transition: border-color .25s ease, transform .25s ease;
}
.home-tile:hover { border-color: rgba(115, 247, 204, 0.3); transform: translateX(4px); }
.home-tile .num {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; color: var(--teal-500);
  padding-top: 4px;
}
.home-tile h4 { font-size: 1rem; color: #fff; font-weight: 700; margin: 0 0 4px; }
.home-tile p { font-size: 0.88rem; color: var(--text-dim); margin: 0; line-height: 1.5; }

/* Brand cards — pro v2 */
.brand-card {
  padding: 22px !important;
  min-height: 200px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)) !important;
  border-radius: 20px !important;
  position: relative; overflow: hidden;
}
.brand-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(220px 160px at 0% 0%, rgba(115, 247, 204, 0.08), transparent 60%);
  opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.brand-card:hover::before { opacity: 1; }
.brand-card.clickable { border: 1px solid rgba(115, 247, 204, 0.35) !important; }
.brand-card.clickable::before { opacity: 0.5; }
.brand-card-head {
  display: grid !important; grid-template-columns: 48px 1fr auto; gap: 14px;
  align-items: center; margin-bottom: 12px;
}
.brand-monogram {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem; color: #07211c;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--teal-500), var(--lavender));
  box-shadow: 0 8px 20px -8px rgba(115, 247, 204, 0.5);
}
.brand-logo {
  display: block;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: #0b0b0e;
  box-shadow: 0 8px 20px -8px rgba(115, 247, 204, 0.5);
}
.brand-card.coming .brand-monogram {
  background: linear-gradient(135deg, rgba(200, 182, 255, 0.25), rgba(110, 76, 255, 0.2));
  color: #fff;
  box-shadow: none;
}
.brand-card.coming .brand-logo {
  background: #fff;
  color: initial;
}
.brand-card h3 { font-size: 1.05rem !important; margin: 0 !important; }
.brand-card p {
  font-size: 0.88rem !important; line-height: 1.55;
  flex: 1; margin-bottom: 16px !important;
  /* clamp to 4 lines for visual rhythm */
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.brand-card .brand-btn { margin-top: auto; }

/* Mobile readability */
@media (max-width: 640px) {
  .home-hero { padding: 60px 0 40px; }
  .home-hero-stats { padding: 20px; grid-template-columns: 1fr 1fr; }
  .home-hero-stats .stat strong { font-size: 1.5rem; }
  .home-tile { grid-template-columns: 44px 1fr; gap: 14px; padding: 16px; }
  .brand-card { min-height: 0; padding: 18px !important; }
  .brand-card p { -webkit-line-clamp: 3; font-size: 0.85rem !important; }
  .brand-monogram { width: 42px; height: 42px; font-size: 1rem; border-radius: 12px; }
}

/* ---- Hero fixes: tighter, single-screen, better mobile ---- */
.home-hero { padding: 56px 0 56px !important; }
.home-hero h1 {
  font-size: clamp(1.85rem, 2vw + 1rem, 3.4rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 18px;
}
.home-hero .lede { font-size: 0.98rem !important; max-width: 520px; margin-bottom: 22px; }
.home-hero .trust-badges { margin-top: 22px !important; }
.home-hero-grid { gap: 36px !important; align-items: center !important; }
@media (min-width: 880px) {
  .home-hero-grid { grid-template-columns: 1.35fr 1fr !important; gap: 48px !important; }
}
.home-hero-stats {
  padding: 22px !important;
  align-self: center;
}
.home-hero-stats .stat { padding: 10px 4px !important; }
.home-hero-stats .stat strong { font-size: 1.6rem !important; margin-bottom: 4px !important; }
.home-hero-stats .stat span { font-size: 0.7rem !important; }
.home-hero-stats .stat-wide strong { font-size: 0.95rem !important; }
.home-hero-stats .stat-wide span { font-size: 0.78rem !important; }

@media (max-width: 879px) {
  .home-hero { padding: 40px 0 40px !important; }
  .home-hero h1 { font-size: clamp(1.75rem, 6.5vw, 2.4rem) !important; }
  .home-hero .lede { font-size: 0.95rem !important; }
  .home-hero-grid { gap: 28px !important; }
  .home-hero-stats { padding: 18px !important; }
  .home-hero-stats .stat strong { font-size: 1.4rem !important; }
}
@media (max-width: 520px) {
  .home-hero h1 { font-size: 1.7rem !important; line-height: 1.15 !important; }
  .home-hero-stats { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .home-hero .trust-badges { display: none; }
}

/* ---- Hero featured card (Lovescape product style) ---- */
.hero-featured {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(380px 220px at 10% 0%, rgba(115, 247, 204, 0.16), transparent 60%),
    radial-gradient(420px 240px at 100% 100%, rgba(255, 77, 141, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  box-shadow:
    0 30px 80px -30px rgba(115, 247, 204, 0.25),
    0 20px 50px -20px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.02);
  overflow: hidden;
  display: flex; flex-direction: column; gap: 20px;
}
.hero-featured::after {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 247, 204, 0.7), transparent);
  pointer-events: none;
}
.hf-badge {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(115, 247, 204, 0.12);
  border: 1px solid rgba(115, 247, 204, 0.35);
  font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-500);
}
.hf-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 8px var(--teal-500);
  animation: hf-pulse 2s ease-in-out infinite;
}
@keyframes hf-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.hf-brand { display: grid; grid-template-columns: 60px 1fr; gap: 16px; align-items: center; }
.hf-brand .mono {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-500), var(--lavender));
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.4rem; color: #07211c;
  letter-spacing: -0.02em;
  box-shadow: 0 12px 30px -8px rgba(115, 247, 204, 0.6);
}
.hf-brand .hf-logo {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  background: #0b0b0e;
  box-shadow: 0 12px 30px -8px rgba(115, 247, 204, 0.6);
}
.hf-brand h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0 0 2px; letter-spacing: -0.02em; }
.hf-brand p { font-size: 0.86rem; color: var(--text-dim); margin: 0; }

.hf-stats {
  display: grid; gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
.hf-stat {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 8px;
}
.hf-stat strong {
  font-size: 1rem; font-weight: 800; color: #fff;
  font-variant-numeric: tabular-nums;
}
.hf-stat strong.teal { color: var(--teal-500); }
.hf-stat span {
  font-size: 0.68rem; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
.hf-bar {
  height: 3px; border-radius: 999px; background: rgba(200, 182, 255, 0.08);
  overflow: hidden;
}
.hf-bar span {
  display: block; height: 100%;
  background: var(--gradient-warm); width: 72%;
  border-radius: 999px;
}
.hf-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--gradient-warm); color: #07211c;
  font-weight: 700; font-size: 0.88rem;
  align-self: stretch; justify-content: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 10px 28px -10px rgba(115, 247, 204, 0.55);
}
.hf-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -10px rgba(115, 247, 204, 0.8); }
.hf-cta::after { content: '→'; font-size: 1rem; transition: transform .2s ease; }
.hf-cta:hover::after { transform: translateX(3px); }
.hf-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem; color: var(--text-dim);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hf-foot strong { color: #fff; font-weight: 700; letter-spacing: 0.04em; text-transform: none; font-size: 0.8rem; }

@media (max-width: 520px) {
  .hero-featured { padding: 22px; gap: 16px; }
  .hf-brand .mono,
  .hf-brand .hf-logo { width: 52px; height: 52px; }
  .hf-brand h3 { font-size: 1.2rem; }
  .hf-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 12px;
  }
  .hf-stat strong { font-size: 1.05rem; }
  .hf-stat span { font-size: 0.62rem; letter-spacing: 0.08em; }
}
