/* ===========================
   HISTIQ LANDING — style.css
   =========================== */

   :root {
    --bg: #0a0a0f;
    --bg2: #12121a;
    --bg3: #1a1a26;
    --border: rgba(255,255,255,0.08);
    --text: #e8e8f0;
    --text-muted: #8888a8;
    --accent: #7c5af0;
    --accent-light: #9b7ff4;
    --accent-glow: rgba(124,90,240,0.25);
    --green: #22c55e;
    --radius: 14px;
    --radius-sm: 8px;
    --font: 'Inter', system-ui, sans-serif;
  }
  
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html { scroll-behavior: smooth; }
  
  /* Dark canvas on html only — body and all wrappers transparent so aurora shows */
  html { background: var(--bg) !important; }

  body,
  #page, .site,
  #content, .site-content,
  .ast-container, .ast-article-post, .ast-article-single,
  .hentry, .entry-content, .page-content, .post-page-content,
  .wp-block-post-content, .is-layout-constrained, .is-layout-flow,
  .wp-site-blocks, .wp-block-group {
    background: transparent !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }

  /* ── All sections fill the full viewport width ── */
  .aurora, .hero, .stats-bar, .problem, .features,
  .compare, .how, .privacy-section, .testimonials,
  .pricing, .faq, .footer-cta {
    width: 100vw !important;
    max-width: none !important;
    margin-left:  calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }

  body {
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  
  a { color: inherit; text-decoration: none; }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* ---- BUTTONS ---- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.18s ease;
    border: none;
    text-decoration: none;
  }
  
  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
  }
  .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--accent-glow);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 12px 24px;
  }
  .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-light);
  }
  
  .btn-sm { padding: 8px 18px; font-size: 14px; }
  .btn-lg { padding: 15px 32px; font-size: 16px; }
  .btn-full { width: 100%; margin-top: 24px; }
  
  /* ---- BADGE ---- */
  .badge {
    display: inline-block;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .badge-green { border-color: rgba(34,197,94,0.3); color: var(--green); background: rgba(34,197,94,0.07); }
  
  /* ---- SECTION TITLES ---- */
  .section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  /* ===========================
     NAV
     =========================== */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(10,10,15,0.85);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-logo {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
  }
  .nav-links {
    display: flex;
    gap: 24px;
    margin-left: auto;
  }
  .nav-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.15s;
  }
  .nav-links a:hover { color: var(--text); }
  
  /* ===========================
     HERO
     =========================== */
  .hero {
    padding: 70px 0 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }
  
  .gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, #c084fc 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
  }
  
  .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  
  .cta-note {
    font-size: 13px;
    color: var(--text-muted);
  }
  
  .hero-browsers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 60px;
  }
  .hero-browsers img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
  }
  
  /* MOCKUP */
  .mockup {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--border);
    text-align: left;
  }
  .mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
  }
  .dot {
    width: 11px; height: 11px;
    border-radius: 50%;
  }
  .dot.red    { background: #ff5f57; }
  .dot.yellow { background: #febc2e; }
  .dot.green  { background: #28c840; }
  .mockup-url {
    margin-left: 12px;
    font-size: 12px;
    color: var(--text-muted);
  }
  .mockup-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
  }
  /* ── Search mockup (replaces old chat mockup) ── */
  .mockup-search {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .mockup-search-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14.5px;
    font-family: 'JetBrains Mono', 'SF Mono', monospace;
    color: var(--text);
  }
  .mockup-search-icon { font-size: 16px; opacity: 0.7; }
  .mockup-search-text { flex: 1; }
  .mockup-search-cursor {
    width: 1.5px;
    height: 16px;
    background: var(--accent-light);
    animation: blink 1s infinite;
    flex-shrink: 0;
  }
  @keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
  }
  
  .mockup-search-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mockup-result {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    transition: all 0.2s;
  }
  .mockup-result:hover {
    background: rgba(124, 90, 240, 0.06);
    border-left-color: var(--accent-light);
    transform: translateX(2px);
  }
  .mockup-result-faded { opacity: 0.55; }
  .mockup-result-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.35;
  }
  .mockup-result-meta {
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
  }
  
  /* ===========================
     PROBLEM
     =========================== */
  .problem {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    content-visibility: auto;
    contain-intrinsic-size: 0 300px;
  }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .problem-item {
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-size: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .problem-item.bad { background: rgba(255,255,255,0.02); }
  .problem-item.good {
    background: rgba(124,90,240,0.08);
    border-color: rgba(124,90,240,0.3);
  }
  .problem-icon { font-size: 24px; }
  
  /* ===========================
     FEATURES
     =========================== */
  .features {
    padding: 50px 0;
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  .feature-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .feature-card:hover {
    border-color: rgba(124,90,240,0.4);
    transform: translateY(-3px);
  }
  .feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  /* ===========================
     HOW IT WORKS
     =========================== */
  .how {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
  }
  .steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 0 16px;
  }
  .step-num {
    width: 48px; height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 16px;
  }
  .step h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .step p {
    font-size: 14px;
    color: var(--text-muted);
  }
  .step-arrow {
    font-size: 24px;
    color: var(--text-muted);
    padding-top: 14px;
    flex-shrink: 0;
  }
  
  /* ===========================
     PRIVACY
     =========================== */
  .privacy-section {
    padding: 50px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
  }
  .privacy-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .privacy-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin: 16px 0 28px;
  }
  .privacy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .privacy-list li {
    font-size: 15px;
    color: var(--text-muted);
  }
  .privacy-list li::first-letter { color: var(--green); }
  .privacy-quote {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
  }
  .privacy-quote blockquote {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
  }
  .privacy-quote cite {
    font-size: 13px;
    color: var(--text-muted);
  }
  
  /* ===========================
     PRICING
     =========================== */
  .pricing {
    padding: 50px 0;
    content-visibility: auto;
    contain-intrinsic-size: 0 700px;
    scroll-margin-top: 60px;
  }
  .pricing-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.7;
  }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
  }
  .pricing-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
  }
  .pricing-featured {
    border-color: var(--accent);
    background: rgba(124,90,240,0.06);
    transform: scale(1.03);
    box-shadow: 0 0 40px var(--accent-glow);
  }
  .plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
  }
  .plan-badge-gold { background: linear-gradient(135deg, #b45309, #d97706); }
  .plan-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
  }
  .plan-price {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
  }
  .plan-period {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
  }
  .plan-billed {
    font-size: 13px;
    color: var(--green);
    margin-bottom: 12px;
  }
  .plan-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
  }
  .plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .plan-features li {
    font-size: 14px;
    color: var(--text-muted);
  }
  .pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 40px;
    line-height: 1.8;
  }
  
  /* =====================================================
     LEGAL PAGES (terms / privacy / refund)
     ===================================================== */
  .legal-page {
    padding: 32px 0 56px;
  }
  .legal-page .legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.15s;
  }
  .legal-page .legal-back:hover { color: var(--text); }
  .legal-page .legal-back::before { content: '←'; }
  
  .legal-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .legal-header .legal-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-light);
    background: rgba(124,90,240,0.12);
    border: 1px solid rgba(124,90,240,0.25);
    border-radius: 6px;
    padding: 3px 10px;
    margin-bottom: 12px;
  }
  .legal-header h1 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin: 0 0 8px;
  }
  .legal-header .legal-meta {
    font-size: 13px;
    color: var(--text-muted);
  }
  .legal-header .legal-meta strong {
    color: var(--text);
  }
  
  /* Content typography */
  .legal-content {
    max-width: 760px;
  }
  .legal-content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
  }
  .legal-content h2:first-child { margin-top: 0; }
  .legal-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 16px 0 6px;
  }
  .legal-content p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0 0 12px;
  }
  .legal-content ul, .legal-content ol {
    padding-left: 20px;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .legal-content li {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .legal-content a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .legal-content a:hover { color: var(--text); }
  .legal-content strong { color: var(--text); }
  .legal-content .legal-highlight {
    background: rgba(124,90,240,0.08);
    border: 1px solid rgba(124,90,240,0.2);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin: 0 0 24px;
  }
  .legal-content .legal-highlight p { margin: 0; }
  
  /* TOC sidebar (optional, hidden on mobile) */
  .legal-layout {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 48px;
    align-items: start;
  }
  .legal-toc {
    position: sticky;
    top: 88px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
  }
  .legal-toc h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin: 0 0 14px;
  }
  .legal-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .legal-toc ol a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    padding: 5px 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.15s;
    line-height: 1.4;
  }
  .legal-toc ol a:hover {
    background: var(--bg3);
    color: var(--text);
  }
  @media (max-width: 860px) {
    .legal-layout {
      grid-template-columns: 1fr;
    }
    .legal-toc { display: none; }
  }
  
  /* ===========================
     FAQ
     =========================== */
  .faq {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
  }
  .faq-list {
    max-width: 720px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .faq-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  .faq-item > summary.faq-q {
    list-style: none;
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font);
    text-align: left;
    padding: 18px 48px 18px 20px;
    cursor: pointer;
    position: relative;
    user-select: none;
  }
  .faq-item > summary.faq-q::-webkit-details-marker { display: none; }
  .faq-item > summary.faq-q::after {
    content: '+';
    font-size: 22px;
    line-height: 1;
    color: var(--text-muted);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s;
  }
  .faq-item[open] > summary.faq-q::after { transform: translateY(-50%) rotate(45deg); }
  .faq-item > .faq-a {
    display: block;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  /* ===========================
     FOOTER
     =========================== */
  .footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.6;
  }
  .footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.15s;
  }
  .footer-links a:hover { color: var(--text); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }
  .hq-pay-methods {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
  }
  .hq-pay-label {
    font-size: 11px;
    color: #3e3e5e;
    margin-right: 2px;
  }
  .hq-pay-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 0 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #5a5a78;
    white-space: nowrap;
  }
  .hq-pay-polar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    padding: 0 7px;
    background: rgba(124,90,240,0.1);
    border: 1px solid rgba(124,90,240,0.28);
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    color: #9b7ff4;
    white-space: nowrap;
  }
  
  /* ---- Pricing 3-column ---- */
  .pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    gap: 18px;
  }
  .pricing-grid-3 .pricing-card {
    padding: 28px 24px;
  }
  
  /* Lifetime card — gold accent */
  .pricing-lifetime {
    background: linear-gradient(180deg, rgba(217, 119, 6, 0.05), rgba(180, 83, 9, 0.02));
    border-color: rgba(217, 119, 6, 0.35);
  }
  .pricing-lifetime .plan-badge {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
  }
  .pricing-lifetime .plan-price {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .pricing-lifetime .btn.btn-outline:hover {
    border-color: #d97706;
    color: #fbbf24;
  }
  
  /* On smaller laptops keep 3 columns but compact */
  @media (max-width: 1100px) {
    .pricing-grid-3 .plan-price { font-size: 36px; }
    .pricing-grid-3 .pricing-card { padding: 24px 20px; }
  }
  .plan-under-btn {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
  }
  
  /* ---- Trial timeline ---- */
  .pricing-trial-note {
    max-width: 760px;
    margin: 48px auto 0;
  }
  .trial-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 24px;
  }
  .trial-point {
    flex: 1;
    text-align: center;
    padding: 0 12px;
  }
  .trial-point-cta .trial-day {
    background: var(--accent);
    color: #fff;
  }
  .trial-day {
    display: inline-block;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .trial-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .trial-line {
    flex-shrink: 0;
    width: 32px;
    height: 1px;
    background: var(--border);
    margin-top: 18px;
  }
  
  /* ===========================
     RESPONSIVE
     =========================== */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding: 50px 0 30px; }
    .privacy-inner { grid-template-columns: 1fr; gap: 32px; }
    .step-arrow { display: none; }
    .steps { gap: 24px; }
    .pricing-featured { transform: none; }
    .pricing-grid-2 { grid-template-columns: 1fr; }
    .pricing-grid-3 { grid-template-columns: 1fr; max-width: 420px; }
    .trial-timeline { flex-direction: column; align-items: center; gap: 16px; }
    .trial-line { width: 1px; height: 24px; margin: 0; }
    .footer-inner { flex-direction: column; }
  }
  
  @media (max-width: 480px) {
    .hero-title { letter-spacing: -0.5px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
  }
  
  /* =======================================================
     ─── 2026 UPGRADES ─────────────────────────────────────
     Aurora background, bento, stats, compare, testimonials
     ======================================================= */
  
  body { overflow-x: hidden; }
  
  /* ── AURORA BACKGROUND ──
     Blur moved to individual blobs so the browser doesn't need to composite
     a full-viewport filtered layer on every paint. Each blob is its own
     GPU layer (will-change:transform), blur applied locally. */
  .aurora {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.65;
  }
  .aurora-blob {
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    will-change: transform;
    filter: blur(60px);
    transform: translateZ(0);
  }
  .aurora-1 {
    background: radial-gradient(circle, rgba(124,90,240,0.7) 0%, transparent 65%);
    top: -160px;
    left: -160px;
    animation: aurora-float-1 22s ease-in-out infinite;
  }
  .aurora-2 {
    background: radial-gradient(circle, rgba(91,63,200,0.65) 0%, transparent 65%);
    top: 30%;
    right: -200px;
    animation: aurora-float-2 26s ease-in-out infinite;
  }
  .aurora-3 {
    background: radial-gradient(circle, rgba(168,136,255,0.6) 0%, transparent 65%);
    bottom: -200px;
    left: 30%;
    animation: aurora-float-3 30s ease-in-out infinite;
  }
  @keyframes aurora-float-1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(120px,80px) scale(1.15); }
  }
  @keyframes aurora-float-2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(-80px,120px) scale(1.1); }
  }
  @keyframes aurora-float-3 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(60px,-80px) scale(1.2); }
  }
  @media (prefers-reduced-motion: reduce) {
    .aurora-blob { animation: none !important; }
  }
  
  /* ── HERO PILL (replaces old badge) ── */
  .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 12px;
    background: rgba(124,90,240,0.08);
    border: 1px solid rgba(124,90,240,0.22);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.2s ease;
  }
  .hero-pill:hover {
    background: rgba(124,90,240,0.14);
    border-color: rgba(124,90,240,0.4);
    transform: translateY(-1px);
  }
  .hero-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.7);
    animation: pulse-dot 2s ease-in-out infinite;
  }
  .hero-pill-arrow {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
  }
  .hero-pill:hover .hero-pill-arrow {
    transform: translateX(3px);
    color: var(--accent-light);
  }
  @keyframes pulse-dot {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: 0.6; transform: scale(0.85); }
  }
  
  /* ── BTN GHOST ── */
  .btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 13px 28px;
  }
  .btn-ghost:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.03);
  }
  
  /* ── SECTION EYEBROWS ── */
  .section-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--accent-light);
    margin-bottom: 12px;
  }
  
  /* ── STATS BAR ── */
  .stats-bar {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(18,18,26,0.5);
    backdrop-filter: blur(8px);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
  }
  .stat-num {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 30%, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
  }
  .stat-suffix { font-weight: 800; }
  .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
  }
  @media (max-width: 720px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  }
  
  /* ── BENTO GRID ── */
  .bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
  }
  .bento-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .bento-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124,90,240,0.35);
    box-shadow: 0 20px 50px -20px rgba(124,90,240,0.4);
  }
  .bento-lg {
    grid-column: span 2;
  }
  .bento-full {
    grid-column: 1 / -1;
  }
  .bento-card .bento-icon {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .bento-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
  }
  .bento-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  
  .bento-accent {
    background: linear-gradient(135deg, rgba(124,90,240,0.12) 0%, rgba(124,90,240,0.03) 100%);
    border-color: rgba(124,90,240,0.3);
  }

  /* PDF card — blue accent */
  .bento-pdf {
    background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(37,99,235,0.02) 100%);
    border-color: rgba(59,130,246,0.25);
  }
  .bento-pdf:hover {
    border-color: rgba(59,130,246,0.45);
    box-shadow: 0 20px 50px -20px rgba(59,130,246,0.35);
  }

  /* Data Sovereignty Vault card — gold accent */
  .bento-gold {
    background: linear-gradient(135deg, rgba(217,119,6,0.08) 0%, rgba(180,83,9,0.02) 100%);
    border-color: rgba(217,119,6,0.3);
  }
  .bento-gold:hover {
    border-color: rgba(217,119,6,0.5);
    box-shadow: 0 20px 50px -20px rgba(217,119,6,0.35);
  }
  .bento-gold h3 {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .bento-gold code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    background: rgba(217,119,6,0.12);
    border: 1px solid rgba(217,119,6,0.2);
    border-radius: 4px;
    padding: 1px 6px;
    color: #fbbf24;
    -webkit-text-fill-color: #fbbf24;
  }
  .bento-vault-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 18px;
  }
  .bento-vault-chip {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    background: rgba(217,119,6,0.1);
    border: 1px solid rgba(217,119,6,0.25);
    border-radius: 100px;
    color: #fbbf24;
    letter-spacing: 0.02em;
  }

  .bento-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #22c55e;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 100px;
  }
  .bento-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,0.6);
  }
  /* Blue variant of bento-tag (PDF) */
  .bento-tag-blue {
    color: #60a5fa;
    background: rgba(59,130,246,0.1);
    border-color: rgba(59,130,246,0.25);
  }
  .bento-tag-blue::before {
    background: #60a5fa;
    box-shadow: 0 0 8px rgba(96,165,250,0.6);
  }
  
  /* Bento search demo */
  .bento-demo { margin-top: 20px; }
  .bento-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text);
  }
  .bento-search-icon { opacity: 0.6; }
  .bento-search-cursor {
    width: 1.5px;
    height: 14px;
    background: var(--accent-light);
    animation: blink 1s infinite;
  }
  @keyframes blink {
    0%,49% { opacity: 1; }
    50%,100% { opacity: 0; }
  }
  .bento-results {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    padding-left: 4px;
  }
  .bento-result {
    font-size: 12.5px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    padding: 4px 6px;
    border-radius: 6px;
    transition: all 0.2s;
  }
  .bento-result:hover {
    background: rgba(124,90,240,0.08);
    color: var(--text);
  }
  
  /* Bento full-width card — horizontal layout */
  .bento-full {
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .bento-full .bento-text {
    flex: 1;
    min-width: 0;
  }
  .bento-full .bento-chips {
    flex-shrink: 0;
  }
  
  /* Bento keys */
  .bento-keys {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
  }
  .bento-key-chip {
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
  }
  
  @media (max-width: 880px) {
    .bento { grid-template-columns: repeat(2, 1fr); }
    .bento-lg { grid-column: span 2; }
    .bento-full { grid-column: 1 / -1; }
    .bento-pdf { grid-column: span 1; }
  }
  @media (max-width: 560px) {
    .bento { grid-template-columns: 1fr; }
    .bento-lg { grid-column: span 1; }
    .bento-full { grid-column: span 1; flex-direction: column; gap: 20px; }
    .bento-pdf { grid-column: span 1; }
    .bento-gold .bento-vault-row { gap: 4px; }
  }
  
  /* ── COMPARISON TABLE ── */
  .compare {
    padding: 50px 0;
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
  }
  .compare-table-wrap {
    margin-top: 20px;
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--bg2);
  }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
  }
  .compare-table th, .compare-table td {
    padding: 18px 20px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
  }
  .compare-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 13px;
    background: rgba(255,255,255,0.02);
  }
  .compare-table tbody tr:hover {
    background: rgba(124,90,240,0.04);
  }
  .compare-table tbody tr:last-child td { border-bottom: none; }
  .compare-table td:first-child, .compare-table th:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text);
  }
  .compare-table .compare-self {
    background: rgba(124,90,240,0.08) !important;
    position: relative;
  }
  .compare-table th.compare-self {
    border-bottom: 2px solid var(--accent);
  }
  .compare-logo {
    font-weight: 800;
    font-size: 1rem;
    background: linear-gradient(135deg, #fff, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .compare-table .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(34,197,94,0.15);
    color: #22c55e;
    font-weight: 700;
    font-size: 14px;
  }
  .compare-table .cross {
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 16px;
  }
  .compare-table .check-good {
    color: #22c55e;
    font-weight: 600;
    font-size: 13px;
  }
  .compare-table .cross-bad {
    color: #ef4444;
    font-weight: 600;
    font-size: 13px;
  }
  
  /* ── TESTIMONIALS ── */
  .testimonials {
    padding: 50px 0;
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
  }
  .testimonials-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .testimonial {
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  }
  .testimonial:hover {
    transform: translateY(-3px);
    border-color: rgba(124,90,240,0.3);
    box-shadow: 0 20px 50px -20px rgba(124,90,240,0.3);
  }
  .testimonial-stars {
    color: #fbbf24;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .testimonial p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border: none;
    padding: 0;
  }
  .testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
  }
  .testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
  }
  .testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
  }
  @media (max-width: 720px) {
    .testimonials-grid { grid-template-columns: 1fr; }
  }
  
  /* ── FOOTER CTA + NEWSLETTER ── */
  .footer-cta {
    padding: 20px 0 28px;
    position: relative;
    text-align: center;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, var(--accent-glow), transparent 60%);
  }
  /* Simple CTA (e.g. footer.html without inner card) */
  .footer-cta > .container > h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.4px;
  }
  .footer-cta > .container > p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0 0 22px;
    line-height: 1.5;
  }
  .footer-cta-inner {
    position: relative;
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    background: linear-gradient(180deg, rgba(124,90,240,0.06), rgba(91,63,200,0.02));
    border: 1px solid rgba(124,90,240,0.2);
    border-radius: 22px;
    padding: 18px 22px 20px;
    overflow: hidden;
  }
  .footer-cta-glow {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(100%, 380px);
    height: 220px;
    background: radial-gradient(ellipse, rgba(124,90,240,0.2), transparent 68%);
    pointer-events: none;
    z-index: 0;
  }
  .footer-cta-inner > *:not(.footer-cta-glow) {
    position: relative;
    z-index: 1;
  }
  .footer-cta-inner h2 {
    font-size: clamp(1.45rem, 3.2vw, 2.1rem);
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.45px;
  }
  .footer-cta-inner p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin: 0 0 16px;
    line-height: 1.5;
  }
  .footer-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }
  /* Browser icons: force white so they're visible on any dark background */
  .footer-cta-buttons .btn img,
  .hero-browsers img {
    filter: brightness(0) invert(1);
  }

  /* Newsletter */
  .newsletter {
    max-width: 520px;
    margin: 0 auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .newsletter-label {
    font-size: 13px !important;
    color: var(--text-muted) !important;
    margin-bottom: 10px !important;
  }
  .newsletter-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }
  .newsletter-row input {
    flex: 1;
    padding: 13px 18px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
  }
  .newsletter-row input:focus {
    border-color: var(--accent);
  }
  .newsletter-row input::placeholder { color: var(--text-muted); }
  .newsletter-note {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
  }
  @media (max-width: 480px) {
    .footer-cta { padding: 18px 0 22px; }
    .footer-cta-inner { padding: 16px 14px 18px; border-radius: 18px; }
    .newsletter-row { flex-direction: column; }
    .footer-cta-buttons .btn { width: 100%; }
  }
  
  /* ── KBD KEYBOARD ── */
  kbd {
    display: inline-block;
    padding: 3px 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-bottom-width: 2px;
    border-radius: 5px;
    color: var(--text);
    box-shadow: 0 1px 0 rgba(0,0,0,0.3);
  }
  
  /* ── HERO MOCKUP IMPROVEMENTS ── */
  .mockup-url {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .ai-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  
  /* ── REDUCED MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* ── Theme header ticker (home bundle: align with style_home.css / histiq head) ── */
  @media (prefers-reduced-motion: no-preference) {
    @keyframes home-hq-announce-marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    #histiq-site-header .hq-announce-track,
    .hq-announce-track {
      animation-name: home-hq-announce-marquee !important;
      animation-duration: 30s !important;
      animation-timing-function: linear !important;
      animation-iteration-count: infinite !important;
    }
  }