/* ---- block ---- */

  /* (Nav rules moved to design.css so every page — landing, login, checkout,
     FAQ, legal — renders the topnav with the same horizontal layout.) */

  /* Big centered brand mark above the hero grid. Raw logo only (no text).
     Rendered as a background-image div so the asset can't be casually
     dragged out to the desktop or saved via the inline image menu. */
  .brand-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    margin-bottom: 36px;
    margin-top: -12px;
  }
  .brand-banner-mark {
    width: clamp(180px, 20vw, 240px);
    height: clamp(180px, 20vw, 240px);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    mix-blend-mode: screen;
    pointer-events: none;             /* blocks click + drag */
    -webkit-user-drag: none;          /* Safari/Chrome drag block */
    user-select: none;
    -webkit-user-select: none;
    animation: brandPulse 3.5s ease-in-out infinite;
  }
  @keyframes brandPulse {
    0%, 100% { filter:
      brightness(1.3)
      drop-shadow(0 0 22px rgba(44,193,255,.6))
      drop-shadow(0 0 42px rgba(44,193,255,.32)); }
    50%      { filter:
      brightness(1.5)
      drop-shadow(0 0 28px rgba(44,193,255,.8))
      drop-shadow(0 0 58px rgba(44,193,255,.5)); }
  }
  .brand-banner-tag {
    font-size: clamp(13px, 1.4vw, 16px);
    color: var(--text-mute);
    letter-spacing: .3px;
    text-align: center;
    max-width: 520px;
  }
  @media (max-width: 700px) {
    .brand-banner { gap: 10px; }
  }

  /* ============= HERO ============= */
  .hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  .hero > .container { min-width: 0; width: 100%; }
  .ticker-wrap { max-width: 100%; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  }
  .hero-title {
    font-size: clamp(44px, 6.5vw, 86px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -2px;
    margin: 18px 0 24px;
  }
  .hero-title .gradient-text { display: inline-block; }
  .hero-lead {
    font-size: clamp(18px, 1.55vw, 22px);
    color: var(--text-dim);
    max-width: 580px;
    line-height: 1.6;
  }
  /* CTAs on a single row — buttons may shrink on narrow viewports. Below
     720px (mobile) they wrap to full-width. */
  .hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    align-items: stretch;
    margin-top: 36px;
  }
  .hero-cta > .btn { flex: 0 1 auto; min-width: 0; }
  @media (max-width: 720px) {
    .hero-cta { flex-wrap: wrap; }
    .hero-cta > .btn { flex: 1 1 100%; }
  }
  /* Access-remaining note shown under the hero CTA for enrolled owners. */
  .hero-access-left {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 14px;
    color: var(--tl-cyan);
    font-size: 14px; font-weight: 600;
  }
  .hero-access-left svg { flex: none; opacity: .9; }
  /* Trust row — each checkmark in a pill, matching the 3DS badge so the
     row reads as a single contained set of tokens (minimalist). */
  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
    color: var(--text-dim);
    font-size: 13px;
  }
  .hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 100px;
    background: rgba(41,211,145,.06);
    border: 1px solid rgba(41,211,145,.22);
    line-height: 1;
    cursor: default;
    transition:
      transform .3s cubic-bezier(.2,.7,.3,1.2),
      background .35s ease,
      border-color .35s ease,
      box-shadow .35s ease,
      color .25s ease;
  }
  .hero-meta-item:hover {
    transform: translateY(-2px);
    background: rgba(41,211,145,.12);
    border-color: rgba(41,211,145,.45);
    color: var(--text);
    box-shadow: 0 12px 28px -14px rgba(41,211,145,.55), 0 0 20px rgba(41,211,145,.18);
  }
  .hero-meta-item:hover svg { transform: scale(1.15) rotate(-6deg); }
  .hero-meta-item svg {
    width: 14px; height: 14px; flex-shrink: 0; color: var(--ok);
    transition: transform .4s cubic-bezier(.2,.7,.3,1.4);
  }
  /* Inline Latin-text badge (e.g. "3DS / 3DS2") — direction isolated so
     bidi doesn't reorder it, and a small cyan chip so it reads as a token. */
  .hero-meta-item .meta-badge {
    display: inline-block;
    padding: 2px 8px;
    margin-right: 4px;
    border-radius: 100px;
    background: rgba(44,193,255,.12);
    border: 1px solid rgba(127,217,255,.35);
    color: var(--tl-cyan);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    direction: ltr;
    unicode-bidi: isolate;
  }

  /* Hero live counter card */
  .live-counter {
    padding: 32px 36px;
    position: relative;
  }
  .live-counter .row {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 18px;
  }
  .live-counter .label { font-size: 13px; color: var(--text-mute); letter-spacing: 2px; text-transform: uppercase; }
  /* LIVE indicator — cyan = "online/streaming" (red reads as offline/error). */
  .live-counter .live-dot {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 4px 10px 4px 8px;
    border-radius: 100px;
    background: rgba(44,193,255,.10);
    border: 1px solid rgba(127,217,255,.3);
    color: var(--tl-cyan);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .live-counter .live-dot::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--tl-cyan);
    box-shadow: 0 0 10px rgba(44,193,255,.8), 0 0 18px rgba(44,193,255,.5);
    animation: pulse 1.4s ease-in-out infinite;
  }
  .counter-value {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-variant-numeric: tabular-nums;
    letter-spacing: -2px;
    direction: ltr;
  }
  .counter-value .currency { font-size: 32px; opacity: .7; vertical-align: top; line-height: 1.5; }
  .counter-sub { color: var(--text-dim); margin-top: 8px; font-size: 15px; }
  .counter-divider { height: 1px; background: var(--border); margin: 22px 0; }
  .counter-mini-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
  .counter-mini { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .counter-mini .v { font-size: 24px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; direction: ltr; line-height: 1.1; }
  .counter-mini .l { font-size: 12px; color: var(--text-mute); line-height: 1.4; text-align: center; max-width: 14ch; }

  /* ============= FEAR / STATS ============= */
  /* Real-numbers section — soft red ambient that fades in & out behind the
     cards so the page feels alive and the red mood reinforces the warning. */
  #why { position: relative; isolation: isolate; }
  #why::before {
    content: '';
    position: absolute;
    inset: 10% 0;
    background:
      radial-gradient(800px 400px at 30% 40%, rgba(255,77,109,.10), transparent 60%),
      radial-gradient(700px 400px at 70% 60%, rgba(255,77,109,.08), transparent 60%);
    filter: blur(20px);
    pointer-events: none;
    z-index: -1;
    animation: statsAmbientFade 6s ease-in-out infinite;
  }
  @keyframes statsAmbientFade {
    0%, 100% { opacity: .55; }
    50%      { opacity: 1; }
  }
  @media (prefers-reduced-motion: reduce) {
    #why::before { animation: none; opacity: .65; }
  }

  .stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 56px;
  }
  @media (max-width: 900px) { .stat-grid { grid-template-columns: 1fr 1fr; } }
  /* hover/transition handled by the shared glass-card system in design.css */
  .stat-card { padding: 28px 28px; text-align: center; }
  .stat-card .v {
    font-size: 52px; font-weight: 900; line-height: 1.15;
    background: var(--grad-text);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-variant-numeric: tabular-nums;
    direction: ltr;
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    padding: 0 6px;
  }
  .stat-card.warn .v { background: var(--grad-warn); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .stat-card .v .pct {
    font-size: 34px;
    font-weight: 800;
    margin-left: 4px;
    background: inherit;
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    display: inline-block;
    line-height: 1.15;
  }
  .stat-card.warn .v .pct {
    background: var(--grad-warn);
    -webkit-background-clip: text; background-clip: text;
  }
  .stat-card .l   { color: var(--text-dim);  margin-top: 12px; font-size: 15px; line-height: 1.5; text-align: center; }
  .stat-card .src { color: var(--text-mute); margin-top: 14px; font-size: 11px; letter-spacing: 1px; text-align: center; }

  /* Red hover for the stats section. Overrides the shared cyan glass-card
     hover (design.css) — these are warn cards, so a red lift/glow reads more
     on-message than cyan. Loaded after design.css, so equal specificity wins;
     the :hover rule uses !important to beat design.css's !important. */
  .stat-card::after {
    background: radial-gradient(
      300px circle at var(--mx) var(--my),
      rgba(255,77,109,.55),
      transparent 45%
    );
  }
  .stat-card:hover {
    border-color: rgba(255,77,109,.4) !important;
    box-shadow:
      0 30px 60px -22px rgba(185,20,61,.6),
      0 1px 0 rgba(255,255,255,.06) inset,
      0 0 0 1px rgba(255,255,255,.04) inset !important;
  }

  /* ============= SMS DEMO ============= */
  .demo-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: stretch;
    margin-top: 56px;
  }
  @media (max-width: 900px) { .demo-wrap { grid-template-columns: 1fr; } }
  .phone {
    background: linear-gradient(180deg, #1a2238, #0a1024);
    border-radius: 44px;
    padding: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,.5), inset 0 0 0 2px rgba(140,180,255,.12);
    position: relative;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .phone-screen {
    border-radius: 34px;
    background: #06080f;
    overflow: hidden;
    height: 620px;
    position: relative;
    border: 1px solid rgba(140,180,255,.08);
  }
  .phone-notch {
    position: absolute; top: 14px; left: 50%;
    transform: translateX(-50%);
    width: 100px; height: 22px;
    background: #000; border-radius: 100px; z-index: 5;
  }
  .phone-status {
    position: absolute; top: 16px; left: 0; right: 0;
    padding: 0 26px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; font-weight: 700; color: #fff;
    z-index: 4;
  }
  .sms-head {
    padding: 48px 18px 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    text-align: center;
    background: rgba(20,28,50,.5);
  }
  .sms-head .name { font-size: 16px; font-weight: 700; color: #fff; }
  .sms-head .sub { font-size: 12px; color: #8694b3; margin-top: 2px; }
  .sms-bubbles {
    padding: 16px 12px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .sms-bubble {
    max-width: 92%;
    background: #1c2438;
    color: #f0f4ff;
    font-size: 14px;
    line-height: 1.42;
    padding: 10px 12px;
    border-radius: 16px 16px 4px 16px;
    align-self: flex-start;
    word-wrap: break-word;
  }
  .sms-bubble a { color: #5bb6ff; text-decoration: underline; }
  .sms-time {
    font-size: 11px; color: #5b6d92; text-align: center; margin: 4px 0;
  }
  .sms-spotlight {
    background: rgba(255,77,109,.15);
    border-left: 3px solid var(--warn);
    margin-top: 4px; padding: 8px 10px; border-radius: 8px;
    font-size: 12px; color: var(--warn); font-weight: 600;
  }

  .demo-side { padding: 36px; display: flex; flex-direction: column; gap: 18px; }
  .clue {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,77,109,.06);
    border: 1px solid rgba(255,77,109,.18);
    transition: background .3s, transform .3s;
  }
  .clue:hover { background: rgba(255,77,109,.12); transform: translateX(-4px); }
  .clue-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--grad-warn);
    color: #fff; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 14px;
  }
  .clue h4 { color: var(--text); font-size: 16px; margin-bottom: 4px; }
  .clue p { color: var(--text-dim); font-size: 14px; margin: 0; line-height: 1.5; }
  .clue mark {
    background: rgba(255,77,109,.25); color: var(--warn);
    padding: 1px 5px; border-radius: 4px; font-weight: 600;
  }

  /* ============= 5 PRINCIPLES ============= */
  .principles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 56px;
  }
  @media (max-width: 1100px) { .principles { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 700px) { .principles { grid-template-columns: 1fr 1fr; } }

  /* hover/transition handled by the shared glass-card system in design.css */
  .principle {
    padding: 28px 22px;
    text-align: center;
    cursor: default;
  }
  .principle .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--text-mute);
    letter-spacing: 2px;
    display: block;
  }
  .principle .icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(44,193,255,.1);
    border: 1px solid rgba(44,193,255,.25);
    display: flex; align-items: center; justify-content: center;
    margin: 14px auto 18px;
    color: var(--tl-cyan);
  }
  .principle h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
  .principle p { font-size: 14px; color: var(--text-dim); margin: 0; line-height: 1.5; }

  /* ============= CHAPTERS ============= */
  .chapters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  @media (max-width: 900px) { .chapters { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .chapters { grid-template-columns: 1fr; } }

  /* hover/transition handled by the shared glass-card system in design.css */
  .chapter { padding: 28px; cursor: pointer; text-decoration: none; color: inherit; display: block; }
  .chapter-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; color: var(--tl-cyan); letter-spacing: 2px;
  }
  .chapter h3 { font-size: 22px; margin: 12px 0 10px; }
  .chapter p { color: var(--text-dim); font-size: 14px; line-height: 1.5; margin: 0; }
  .chapter .meta {
    display: flex; align-items: center; gap: 14px;
    margin-top: 18px;
    font-size: 12px; color: var(--text-mute);
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }
  .chapter .meta svg { width: 14px; height: 14px; opacity: .7; }

  /* ============= TESTIMONIALS ============= */
  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
  }
  @media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

  .testimonial {
    padding: 32px;
    display: flex; flex-direction: column; gap: 18px;
  }
  .testimonial .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
  .testimonial blockquote {
    margin: 0;
    font-size: 16px; line-height: 1.6;
    color: var(--text);
  }
  .testimonial .author {
    display: flex; align-items: center; gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }
  .testimonial .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--grad-blue);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; color: #04102b; font-size: 16px;
  }
  .testimonial .name { font-weight: 700; font-size: 14px; }
  .testimonial .role { color: var(--text-mute); font-size: 12px; }

  /* ============= PRICING ============= */
  .pricing-wrap {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 32px;
    margin-top: 48px;
  }
  @media (max-width: 900px) { .pricing-wrap { grid-template-columns: 1fr; } }

  .pricing-main {
    padding: 48px;
    position: relative;
    overflow: hidden;
  }
  .pricing-main::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44,193,255,.25), transparent 70%);
    pointer-events: none;
  }
  .pricing-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--grad-warn);
    color: #fff; font-weight: 800; font-size: 12px;
    letter-spacing: 1.5px;
    animation: badgePulse 2.5s ease-in-out infinite;
  }
  @keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,109,.5); }
    50% { box-shadow: 0 0 0 14px rgba(255,77,109,0); }
  }
  .price-row {
    display: flex; align-items: baseline; gap: 18px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  .price-old {
    font-size: 38px; font-weight: 600;
    color: var(--text-mute);
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--warn);
    direction: ltr;
  }
  .price-new {
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
    background: var(--grad-text);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    letter-spacing: -3px;
    direction: ltr;
  }
  .price-currency { font-size: 32px; opacity: .7; }
  .price-period {
    font-size: 14px; color: var(--text-mute);
    margin-top: 4px;
  }
  .price-savings {
    display: inline-flex; gap: 8px; align-items: center;
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(41,211,145,.1);
    border: 1px solid rgba(41,211,145,.3);
    color: var(--ok);
    font-weight: 700; font-size: 14px;
  }

  .includes { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
  .includes-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
  .includes-item svg { width: 20px; height: 20px; color: var(--ok); flex-shrink: 0; margin-top: 2px; }

  /* Countdown */
  .countdown {
    padding: 32px;
    text-align: center;
  }
  .countdown h4 { font-size: 14px; color: var(--text-mute); letter-spacing: 2px; }
  .countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
  }
  .cd-cell {
    background: rgba(255,77,109,.08);
    border: 1px solid rgba(255,77,109,.25);
    border-radius: 12px;
    padding: 14px 6px;
  }
  .cd-cell .n {
    font-family: 'JetBrains Mono', monospace;
    font-size: 32px; font-weight: 800;
    color: var(--warn);
    line-height: 1; font-variant-numeric: tabular-nums;
  }
  .cd-cell .l { font-size: 10px; color: var(--text-mute); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 8px; }

  .scarcity {
    margin-top: 24px; padding: 16px;
    border-radius: 12px;
    background: rgba(255,77,109,.06);
    border: 1px solid rgba(255,77,109,.2);
    text-align: right;
  }
  .scarcity-bar {
    height: 6px; border-radius: 3px;
    background: rgba(255,255,255,.06);
    margin-top: 10px;
    overflow: hidden;
  }
  .scarcity-fill {
    height: 100%;
    background: var(--grad-warn);
    border-radius: 3px;
    width: 0%;
    transition: width 2s cubic-bezier(.2,.6,.3,1);
  }
  .scarcity-text { font-size: 13px; color: var(--text-dim); }
  .scarcity-text b { color: var(--warn); }

  /* ============= FAQ ============= */
  .faq { display: flex; flex-direction: column; gap: 12px; margin-top: 48px; max-width: 880px; margin-inline: auto; }
  .faq-item {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.025), rgba(255,255,255,.005)), rgba(10,16,36,.55);
    border: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    position: relative;
    transition:
      border-color .35s ease,
      transform .35s cubic-bezier(.2,.7,.3,1.2),
      box-shadow .4s ease,
      background .35s ease;
  }
  .faq-item:hover {
    border-color: rgba(127,217,255,.28);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -22px rgba(44,193,255,.4);
  }
  .faq-item.open {
    border-color: rgba(127,217,255,.4);
    background:
      linear-gradient(135deg, rgba(44,193,255,.06), rgba(255,255,255,.01)),
      rgba(10,16,36,.65);
    box-shadow: 0 24px 50px -22px rgba(44,193,255,.5);
  }
  .faq-q {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text);
    padding: 22px 28px;
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    transition: color .25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 2;
    position: relative;
  }
  .faq-q:hover { color: var(--tl-cyan); }
  .faq-toggle {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44,193,255,.14), rgba(44,193,255,.04));
    border: 1px solid rgba(127,217,255,.3);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--tl-cyan);
    font-size: 20px; font-weight: 300; line-height: 1;
    transition:
      transform .4s cubic-bezier(.2,.7,.3,1.4),
      background .35s ease,
      box-shadow .35s ease,
      color .35s ease;
  }
  .faq-item:hover .faq-toggle {
    background: linear-gradient(135deg, rgba(44,193,255,.22), rgba(44,193,255,.08));
    box-shadow: 0 0 14px rgba(44,193,255,.3);
  }
  .faq-item.open .faq-toggle {
    transform: rotate(135deg);
    background: linear-gradient(135deg, var(--tl-cyan), #0d7cd9);
    color: #04102b;
    box-shadow: 0 0 20px rgba(44,193,255,.5);
  }
  /* Smooth expand via grid-template-rows — no max-height guessing. */
  .faq-a {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows .5s cubic-bezier(.2,.7,.3,1);
    position: relative; z-index: 2;
  }
  .faq-item.open .faq-a { grid-template-rows: 1fr; }
  .faq-a > .faq-a-inner { overflow: hidden; min-height: 0; }
  .faq-a-inner {
    padding: 0 28px 24px;
    color: var(--text-dim);
    font-size: 15px; line-height: 1.65;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .4s ease .1s, transform .4s ease .1s;
  }
  .faq-item.open .faq-a-inner { opacity: 1; transform: translateY(0); }

  /* ============= CTA FINAL ============= */
  .cta-final {
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(44,193,255,.15), transparent 60%);
  }
  @media (max-width: 720px) {
    .cta-final { padding: 48px 24px; }
  }

  /* (Footer rules moved to design.css so every page renders the same.) */

  /* ============= Floating CTA mobile-like sticky ============= */
  /* Sticky CTA — smooth fade-in/out (no pop). Longer duration + cubic-bezier
     easing so it glides instead of snapping. Visibility delays on out so the
     element doesn't catch clicks during the fade. */
  .sticky-cta {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translate(-50%, 36px) scale(.96);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity, transform;
    transition:
      opacity   .6s cubic-bezier(.2,.7,.3,1),
      transform .6s cubic-bezier(.2,.7,.3,1),
      visibility 0s linear .6s;
  }
  .sticky-cta.in {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
    pointer-events: auto;
    transition:
      opacity   .55s cubic-bezier(.2,.7,.3,1),
      transform .65s cubic-bezier(.2,.7,.3,1.2),
      visibility 0s linear 0s;
  }
  .sticky-cta .pill {
    display: flex; align-items: center; gap: 14px;
    padding: 10px 12px 10px 22px;
    border-radius: 999px;
    /* Fully opaque base so nothing behind bleeds through. The cyan tint sits
       on top of a solid near-black so the pill reads as a real surface. */
    background:
      linear-gradient(135deg, rgba(44,193,255,.10), rgba(255,255,255,.02)),
      #050914;
    border: 1px solid rgba(127,217,255,.3);
    box-shadow:
      0 24px 60px rgba(0,0,0,.7),
      0 0 32px -8px rgba(44,193,255,.4),
      inset 0 1px 0 rgba(255,255,255,.05);
  }
  .sticky-cta .price-mini {
    display: flex; flex-direction: column; line-height: 1.1;
  }
  .sticky-cta .price-mini b { color: var(--tl-cyan); font-weight: 800; direction: ltr; }
  .sticky-cta .price-mini small { color: var(--text-mute); font-size: 11px; }

  /* warn line of ticker */
  .ticker-wrap {
    overflow: hidden;
    margin-top: 56px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,77,109,.04);
    position: relative;
    /* Force LTR so the ticker child's overflow starts at the LEFT edge —
       otherwise RTL parent right-aligns the content and breaks the
       translateX seamless-loop math (showing gaps on the right). */
    direction: ltr;
  }
  .ticker {
    display: flex; gap: 28px;
    white-space: nowrap;
    animation: tickerScroll 80s linear infinite;
    width: max-content;
    direction: ltr;
    will-change: transform;
  }
  .ticker:hover { animation-play-state: paused; }
  .ticker-item {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--text-dim);
    font-size: 14px;
    /* Each item's INTERNAL content is Hebrew — render it RTL so the warn-dot
       sits on the right (Hebrew reading start) and the text reads naturally.
       The PARENT .ticker stays LTR for the translate-loop math. */
    direction: rtl;
  }
  .ticker-item b { color: var(--warn); }
  .ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--warn); flex-shrink: 0; }
  /* (Mega-button rules moved to design.css so every page — landing, FAQ,
     checkout, login — picks them up uniformly. See `.buy-*` block there.) */

  /* "above CTA" tag */
  .cta-above {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(41,211,145,.1);
    border: 1px solid rgba(41,211,145,.35);
    color: var(--ok);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: .3px;
  }
  .cta-above svg { width: 13px; height: 13px; }
  /* Seamless infinite loop — content is duplicated in PHP. Items enter
     from the RIGHT and exit on the LEFT (matches Hebrew reading direction).
     Animate translateX from 0 → -50% so the duplicate set scrolls into view
     from the right while the original exits left. */
  @keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

/* ---- block ---- */

      .reframe-card {
        padding: clamp(36px, 6vw, 72px);
        position: relative;
        overflow: hidden;
      }
      .reframe-card::before {
        content: '';
        position: absolute; inset: 0;
        background:
          radial-gradient(700px 400px at 92% 0%, rgba(44,193,255,.18), transparent 60%),
          radial-gradient(500px 400px at 5% 100%, rgba(13,124,217,.15), transparent 65%);
        pointer-events: none;
      }
      .reframe-quote {
        font-size: clamp(28px, 4.2vw, 56px);
        font-weight: 900;
        line-height: 1.1;
        letter-spacing: -1.5px;
        margin: 0;
        max-width: 920px;
      }
      .reframe-quote .strike { color: var(--text-mute); text-decoration: line-through; text-decoration-thickness: 4px; text-decoration-color: var(--warn); font-weight: 700; }
      .reframe-sub {
        margin-top: 28px;
        font-size: clamp(17px, 1.7vw, 22px);
        color: var(--text-dim);
        max-width: 760px;
        line-height: 1.6;
      }
      .reframe-sub b { color: var(--text); }
      .pattern-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        margin-top: 44px;
      }
      @media (max-width: 880px) { .pattern-row { grid-template-columns: 1fr 1fr; } }
      /* base pattern card — hover handled by shared .glass-card system in design.css */
      .pattern {
        padding: 22px 20px;
        border-radius: var(--radius-m);
        background: rgba(255,255,255,.025);
        border: 1px solid var(--border);
        position: relative;
      }
      .pattern .ic {
        width: 40px; height: 40px;
        border-radius: 10px;
        background: rgba(44,193,255,.1);
        border: 1px solid rgba(44,193,255,.25);
        color: var(--tl-cyan);
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 16px;
      }
      .pattern .ic svg { width: 20px; height: 20px; }
      .pattern h4 { font-size: 16px; font-weight: 800; margin: 0 0 6px; }
      .pattern p { font-size: 13px; color: var(--text-dim); margin: 0; line-height: 1.5; }
      .pattern .num {
        position: absolute;
        top: 18px; left: 18px;
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        color: var(--text-mute);
        letter-spacing: 1.5px;
      }
      .reframe-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 7px 14px;
        border-radius: 100px;
        background: rgba(41,211,145,.08);
        border: 1px solid rgba(41,211,145,.3);
        color: var(--ok);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .5px;
        margin-bottom: 24px;
      }
      .reframe-tag svg { width: 14px; height: 14px; }
  /* ============= Reframe lock cards (subtle) ============= */
  .reframe-locks .pattern {
    background: rgba(20,36,71,0.32);
    border-color: var(--border);
    text-align: center;
  }
  .reframe-locks .pattern .num { display: block; margin-bottom: 8px; }
  .reframe-locks .pattern .ic {
    margin: 0 auto 14px;
    color: var(--text-mute);
    background: rgba(255,255,255,0.03);
    border-color: var(--border);
  }
  .reframe-locks .pattern h4 { color: var(--text-dim); font-size: 14px; }
  .reframe-locks .pattern p { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-mute); }

  /* ============= SMS quiz options ============= */
  .quiz-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.02);
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s;
    user-select: none;
  }
  .quiz-opt:hover { background: rgba(44,193,255,.04); border-color: var(--border-strong); transform: translateX(-2px); }
  .quiz-opt input { position: absolute; opacity: 0; pointer-events: none; }
  .quiz-opt .dot {
    width: 18px; height: 18px;
    border-radius: 4px;
    border: 1.5px solid var(--border-strong);
    background: rgba(255,255,255,.02);
    position: relative;
    transition: all .2s;
    flex-shrink: 0;
  }
  .quiz-opt .dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--grad-blue);
    border-radius: 2px;
    transform: scale(0);
    transition: transform .2s cubic-bezier(.2,.7,.3,1.4);
  }
  .quiz-opt.selected .dot {
    border-color: var(--tl-cyan);
    background: rgba(44,193,255,.08);
  }
  .quiz-opt.selected .dot::after { transform: scale(1); }
  .quiz-opt.selected { background: rgba(44,193,255,.05); border-color: var(--border-cyan); }
  .quiz-opt .lbl { font-size: 14px; color: var(--text); }

  /* ============= Pricing v2 (glassy, cursor-reactive) ============= */
  .pricing-v2-card {
    padding: clamp(28px, 4vw, 56px);
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
      radial-gradient(circle at 100% 0%, rgba(44,193,255,.10), transparent 55%),
      radial-gradient(circle at 0% 100%, rgba(13,124,217,.08), transparent 55%),
      rgba(7, 11, 24, 0.72);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid rgba(127,217,255,.18);
    box-shadow:
      0 40px 100px -30px rgba(44,193,255,.35),
      0 0 0 1px rgba(255,255,255,.03) inset,
      0 1px 0 rgba(255,255,255,.08) inset;
  }
  .pricing-v2-card::before {
    content: '';
    position: absolute;
    top: -220px; right: -220px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44,193,255,.22), transparent 70%);
    pointer-events: none;
    animation: pricingOrbA 14s ease-in-out infinite;
  }
  .pricing-v2-card::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 460px; height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13,124,217,.16), transparent 70%);
    pointer-events: none;
    animation: pricingOrbB 18s ease-in-out infinite;
  }
  @keyframes pricingOrbA {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-30px, 20px); }
  }
  @keyframes pricingOrbB {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(20px, -30px); }
  }

  .pricing-v2-ribbon {
    position: absolute;
    top: 22px; left: 22px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .8px;
    color: #04102b;
    background: linear-gradient(135deg, #ffd86b, #ff9d4d);
    box-shadow: 0 8px 20px -6px rgba(255,157,77,.55), inset 0 1px 0 rgba(255,255,255,.5);
    text-transform: uppercase;
  }

  .pricing-v2-head { text-align: center; position: relative; z-index: 1; }
  .pricing-v2-name {
    font-size: 13px; font-weight: 700; color: var(--text-mute);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .pricing-v2-price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin: 16px 0 6px;
    direction: ltr;
    line-height: 1;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pricing-v2-price .old {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-mute);
    opacity: .55;
    margin-right: 2px;
    align-self: center;
  }
  .pricing-v2-price .old::after {
    content: '';
    position: absolute;
    left: -4px; right: -4px;
    top: 52%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--warn) 20%, var(--warn) 80%, transparent);
    transform: rotate(-8deg);
    border-radius: 2px;
  }
  .pricing-v2-price .old .cur { font-size: 16px; opacity: .9; }
  .pricing-v2-price > .cur {
    font-size: 32px;
    color: var(--text-dim);
    font-weight: 700;
    opacity: .8;
  }
  .pricing-v2-price .n {
    font-size: clamp(72px, 10vw, 120px);
    font-weight: 900;
    background: var(--grad-text);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    letter-spacing: -4px;
    filter: drop-shadow(0 8px 24px rgba(44,193,255,.25));
  }
  .pricing-v2-price .save {
    align-self: center;
    margin-left: 6px;
    padding: 5px 10px;
    border-radius: 100px;
    background: rgba(41,211,145,.12);
    border: 1px solid rgba(41,211,145,.35);
    color: var(--ok);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 0 0 16px rgba(41,211,145,.18);
  }
  .pricing-v2-period {
    color: var(--text-mute);
    font-size: 13px;
    margin-bottom: 32px;
    padding: 0 16px;
  }

  .pricing-v2-features {
    display: flex; flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    position: relative; z-index: 1;
  }
  .pricing-v2-feature {
    position: relative;
    background:
      linear-gradient(135deg, rgba(255,255,255,.025), rgba(255,255,255,.005));
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    overflow: hidden;
    transition:
      border-color .3s,
      background .3s,
      transform .25s cubic-bezier(.2,.7,.3,1.2),
      box-shadow .3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    isolation: isolate;
  }
  /* Cursor-reactive glow — border-only, no fill (per design feedback). */
  /* Subtle border highlight that also follows the cursor. */
  .pricing-v2-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
      280px circle at var(--mx, 50%) var(--my, 50%),
      rgba(127,217,255,.4),
      transparent 40%
    );
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    padding: 1px;
    z-index: 0;
  }
  .pricing-v2-feature:hover {
    border-color: rgba(127,217,255,.25);
    background:
      linear-gradient(135deg, rgba(44,193,255,.06), rgba(255,255,255,.01));
    transform: translateY(-1px);
    box-shadow: 0 18px 40px -20px rgba(44,193,255,.4);
  }
  .pricing-v2-feature:hover::after  { opacity: 1; }
  .pricing-v2-feature.open {
    border-color: rgba(127,217,255,.35);
    background:
      linear-gradient(135deg, rgba(44,193,255,.08), rgba(255,255,255,.015));
    box-shadow: 0 24px 50px -22px rgba(44,193,255,.5);
  }
  .pricing-v2-feature.open::after { opacity: 1; }

  .pricing-v2-feature-head {
    width: 100%;
    background: transparent;
    border: 0;
    color: var(--text);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  .pricing-v2-feature-head .check {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(41,211,145,.2), rgba(41,211,145,.06));
    border: 1px solid rgba(41,211,145,.35);
    color: var(--ok);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    transition: transform .3s cubic-bezier(.2,.7,.3,1.4), box-shadow .3s;
  }
  .pricing-v2-feature:hover .pricing-v2-feature-head .check {
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 0 14px rgba(41,211,145,.4), inset 0 1px 0 rgba(255,255,255,.15);
  }
  .pricing-v2-feature-head .check svg { width: 13px; height: 13px; }
  .pricing-v2-feature-head .title { flex: 1; }
  .pricing-v2-feature-head .chev {
    color: var(--text-mute);
    transition: transform .3s cubic-bezier(.2,.7,.3,1.2), color .3s;
  }
  .pricing-v2-feature.open .pricing-v2-feature-head .chev { transform: rotate(180deg); color: var(--tl-cyan); }

  /* Smooth expand using grid-template-rows + fade-in on the inner content
     so opening matches the same gentle motion as closing. */
  .pricing-v2-feature-body {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows .45s cubic-bezier(.2,.7,.3,1);
  }
  .pricing-v2-feature.open .pricing-v2-feature-body { grid-template-rows: 1fr; }
  .pricing-v2-feature-body > p {
    overflow: hidden;
    min-height: 0;
    margin: 0;
    padding: 0 18px 16px 54px;
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(-4px);
    transition:
      opacity .35s ease .1s,
      transform .4s cubic-bezier(.2,.7,.3,1) .1s;
  }
  .pricing-v2-feature.open .pricing-v2-feature-body > p {
    opacity: 1;
    transform: translateY(0);
  }

  .pricing-v2-cta {
    width: 100%;
    margin-top: 8px;
    padding: 20px 24px !important;
    font-size: 17px !important;
    position: relative; z-index: 1;
  }
  .pricing-v2-trust {
    text-align: center;
    margin-top: 18px;
    color: var(--text-mute);
    font-size: 12px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    position: relative; z-index: 1;
  }
