@font-face { font-family:"Modam"; src:url("/fonts/Modam-Regular.ttf") format("truetype"); font-weight:400; font-display:swap; }
  @font-face { font-family:"Modam"; src:url("/fonts/Modam-SemiBold.ttf") format("truetype"); font-weight:600; font-display:swap; }
  @font-face { font-family:"Modam"; src:url("/fonts/Modam-Bold.ttf") format("truetype"); font-weight:700; font-display:swap; }
  @font-face { font-family:"Modam"; src:url("/fonts/Modam-ExtraBold.ttf") format("truetype"); font-weight:800; font-display:swap; }

  :root{
    --bg:#060912; --bg-2:#0b1120; --surface:#111a2e; --surface-2:#0e1626;
    --line:rgba(122,147,194,0.22); --line-strong:rgba(171,111,146,0.42);
    --text:#e7edf8; --muted:#9fb0cf; --faint:#6f80a0;
    --pink:#ef3f79; --pink-2:#ff598f; --pink-soft:rgba(239,63,121,0.12);
    --green:#2bbd7e;
    --radius:14px; --radius-sm:10px;
    --font:"Modam","Vazirmatn","Tahoma",sans-serif;
  }
  *{box-sizing:border-box;}
  html,body{margin:0;padding:0;}
  body{
    font-family:var(--font); color:var(--text); background:var(--bg);
    line-height:1.85; -webkit-font-smoothing:antialiased;
    background:
      radial-gradient(680px 320px at 88% -8%, rgba(239,63,121,0.20), transparent 70%),
      radial-gradient(560px 300px at 6% 4%, rgba(64,110,190,0.14), transparent 72%),
      linear-gradient(180deg,#05080f,#070c16);
    background-attachment:fixed;
  }
  a{color:inherit; text-decoration:none;}
  .wrap{max-width:1080px; margin:0 auto; padding:0 22px;}
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    height:48px; padding:0 26px; border-radius:12px; font-weight:700; font-size:15px;
    border:1px solid var(--line-strong); background:var(--surface); color:var(--text);
    cursor:pointer; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space:nowrap;
    /* A <button> does not inherit the page typeface — browsers substitute
       their own UI font. Every anchor styled .btn looked right and every
       real button looked foreign, including the checkout one. */
    font-family:inherit;
  }
  /* Icons ride along at text size so a label with one lines up with a
     label without. */
  .btn svg{ width:17px; height:17px; flex:0 0 auto; }
  .btn.big svg{ width:19px; height:19px; }
  .btn:hover{ transform:translateY(-2px); }
  .btn.primary{
    background:linear-gradient(180deg,var(--pink-2),var(--pink));
    border-color:rgba(255,169,198,0.6); color:#fff;
    box-shadow:0 10px 30px rgba(239,63,121,0.35);
  }
  .btn.big{ height:54px; padding:0 34px; font-size:16px; }

  /* A long label ("خرید X — ۲۹۰,۰۰۰ تومان") must never spill past the button
     edge on a narrow screen: let it wrap and grow instead of clipping. */
  .btn{max-width:100%;}
  @media(max-width:520px){
    .btn, .btn.big{
      white-space:normal; height:auto; min-height:48px; line-height:1.7;
      padding:12px 20px; text-align:center;
    }
    .btn.big{min-height:54px; font-size:15px;}
  }

  /* ---- discord promo bar ---- */
  .promo-bar{
    background:linear-gradient(90deg, rgba(239,63,121,0.16), rgba(43,189,126,0.10));
    border-bottom:1px solid var(--line);
  }
  .promo-link{
    display:flex; align-items:center; justify-content:center; gap:12px;
    flex-wrap:wrap; padding:11px 22px; text-align:center;
    transition:background .18s ease;
  }
  .promo-link:hover{ background:rgba(255,255,255,0.035); }
  .promo-icon{ display:inline-flex; flex:0 0 auto; color:#fff; }
  .promo-icon svg{ width:19px; height:19px; }
  .promo-text{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; font-size:13.5px; }
  .promo-text strong{ font-weight:800; color:var(--text); }
  .promo-text span{ color:var(--muted); }
  .promo-cta{
    flex:0 0 auto; font-weight:700; font-size:12.5px; color:#fff;
    background:linear-gradient(180deg,var(--pink-2),var(--pink));
    padding:5px 16px; border-radius:999px;
  }
  /* Only the headline + join pill survive on a phone — the description is
     what a nav link already implies once space is tight. */
  @media(max-width:640px){
    .promo-link{ gap:8px; padding:10px 16px; }
    .promo-text span:not(strong){ display:none; }
  }

  /* ---- nav ---- */
  header.nav{
    position:sticky; top:0; z-index:20;
    backdrop-filter:blur(10px);
    background:linear-gradient(180deg,rgba(6,9,18,0.9),rgba(6,9,18,0.6));
    border-bottom:1px solid var(--line);
  }
  .nav-in{display:flex; align-items:center; gap:18px; height:66px;}
  .brand{font-weight:800; font-size:20px; letter-spacing:2px; color:#fff;}
  .brand span{color:var(--pink);}
  .nav-links{display:flex; gap:22px; margin-inline-start:auto; font-size:14px; color:var(--muted);}
  .nav-links a:hover{color:var(--text);}
  .nav .btn{height:40px; padding:0 18px; font-size:14px;}
  /* Mobile: the product links are the whole point of a multi-product site,
     so instead of hiding the nav, drop it to its own scrollable second row. */
  @media(max-width:760px){
    .nav-in{flex-wrap:wrap; height:auto; padding-top:10px; padding-bottom:10px; gap:10px;}
    .nav-links{
      order:3; width:100%; margin-inline-start:0; gap:16px;
      overflow-x:auto; padding-bottom:2px; -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
    }
    .nav-links::-webkit-scrollbar{display:none;}
    .nav-links a{white-space:nowrap; padding:4px 0;}
    .nav .btn{margin-inline-start:auto;}
  }

  /* ---- hero ---- */
  .hero{padding:78px 0 56px; text-align:center;}
  .pill{
    display:inline-flex; align-items:center; gap:8px; padding:6px 14px; border-radius:999px;
    border:1px solid var(--line-strong); background:var(--pink-soft); color:#ffc4d8;
    font-size:13px; font-weight:600; margin-bottom:26px;
  }
  .dot{width:7px; height:7px; border-radius:50%; background:var(--green); box-shadow:0 0 8px var(--green);}
  .hero h1{font-size:clamp(34px,6vw,58px); line-height:1.25; margin:0 0 18px; font-weight:800; color:#fff;}
  .hero h1 em{font-style:normal; color:var(--pink);}
  .hero p.sub{max-width:640px; margin:0 auto 32px; font-size:clamp(15px,2.4vw,19px); color:var(--muted);}
  .hero-cta{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}
  .price-badge{
    margin-top:34px; display:inline-flex; flex-direction:column; align-items:center; gap:2px;
  }
  .price-badge .amt{font-size:30px; font-weight:800; color:#fff;}
  .price-badge .amt small{font-size:15px; color:var(--muted); font-weight:600;}
  .price-badge .note{font-size:13px; color:var(--faint);}

  /* ---- trust strip ---- */
  .trust{display:flex; flex-wrap:wrap; justify-content:center; gap:12px; margin-top:44px;}
  .chip{
    display:inline-flex; align-items:center; gap:8px; padding:9px 16px; border-radius:10px;
    border:1px solid var(--line); background:rgba(255,255,255,0.02); font-size:13.5px; color:var(--muted);
  }
  .chip b{color:var(--text); font-weight:600;}

  /* ---- sections ---- */
  section.blk{padding:64px 0; border-top:1px solid var(--line);}
  .kicker{color:var(--pink); font-weight:700; font-size:13px; letter-spacing:.14em; text-transform:uppercase; margin-bottom:10px;}
  .blk h2{font-size:clamp(24px,4vw,34px); margin:0 0 14px; font-weight:800; color:#fff;}
  .blk .lead{color:var(--muted); max-width:660px; margin:0 0 34px; font-size:16px;}

  .grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
  @media(max-width:860px){ .grid{grid-template-columns:repeat(2,1fr);} }
  @media(max-width:560px){ .grid{grid-template-columns:1fr;} }
  .card{
    border:1px solid var(--line); border-radius:var(--radius); padding:22px;
    background:linear-gradient(180deg,var(--surface),var(--surface-2));
    transition:border-color .15s ease, transform .15s ease;
  }
  .card:hover{border-color:var(--line-strong); transform:translateY(-3px);}
  .card .ic{
    width:42px; height:42px; border-radius:11px; display:flex; align-items:center; justify-content:center;
    background:var(--pink-soft); border:1px solid var(--line-strong); margin-bottom:14px;
  }
  .card .ic svg{width:22px; height:22px; stroke:var(--pink-2); fill:none; stroke-width:1.8;}
  .card h3{margin:0 0 6px; font-size:17px; color:#fff; font-weight:700;}
  .card p{margin:0; color:var(--muted); font-size:14px;}

  /* ---- steps ---- */
  .steps{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
  @media(max-width:720px){ .steps{grid-template-columns:1fr;} }
  .step{border:1px solid var(--line); border-radius:var(--radius); padding:24px; background:rgba(255,255,255,0.015); position:relative;}
  .step .num{
    width:34px; height:34px; border-radius:9px; display:flex; align-items:center; justify-content:center;
    font-weight:800; color:#fff; background:linear-gradient(180deg,var(--pink-2),var(--pink)); margin-bottom:14px;
  }
  .step h3{margin:0 0 6px; font-size:17px; color:#fff;}
  .step p{margin:0; color:var(--muted); font-size:14px;}

  /* ---- pricing ---- */
  /* Two products side by side; stacks on narrow screens. */
  /* auto-fit so the same grid holds one card (a product page) or several
     (a comparison) without a per-page override. */
  .pricegrid{
    display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:22px;
    max-width:940px; margin:0 auto; align-items:start;
  }

  .pricebox{
    display:flex; flex-direction:column; height:100%;
    border:1px solid var(--line-strong); border-radius:18px; overflow:hidden;
    background:linear-gradient(180deg,var(--surface),var(--surface-2));
    box-shadow:0 24px 60px rgba(0,0,0,0.45);
  }
  .pricebox ul{flex:1 1 auto;}

  /* Which Adobe app the licence is for — the fastest thing a buyer looks for. */
  .host-tag{
    display:inline-block; margin-bottom:10px; padding:4px 12px; border-radius:999px;
    background:rgba(239,63,121,0.16); border:1px solid rgba(239,63,121,0.4);
    color:#ffb9d0; font-size:11.5px; font-weight:700; letter-spacing:.04em;
  }
  .host-tag.ppro{
    background:rgba(124,131,255,0.16); border-color:rgba(124,131,255,0.45); color:#c3c7ff;
  }
  /* A product that targets two host apps (e.g. DUDE SAFE ZONE) shows both
     tags side by side instead of picking one arbitrarily. */
  .host-tag-row{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:10px; }
  .host-tag-row .host-tag{ margin-bottom:0; }
  .pricebox .top{padding:30px 28px; text-align:center; border-bottom:1px solid var(--line); background:linear-gradient(180deg,rgba(239,63,121,0.10),transparent);}
  .pricebox .top .name{font-weight:700; color:#ffc4d8; letter-spacing:.1em; text-transform:uppercase; font-size:13px;}
  .pricebox .top .big{font-size:40px; font-weight:800; color:#fff; margin:8px 0 2px;}
  .pricebox .top .big small{font-size:16px; color:var(--muted); font-weight:600;}
  .pricebox .top .sub{color:var(--faint); font-size:13px;}
  .pricebox ul{list-style:none; margin:0; padding:24px 28px; display:flex; flex-direction:column; gap:13px;}
  .pricebox li{display:flex; align-items:flex-start; gap:10px; color:var(--muted); font-size:14.5px;}
  .pricebox li svg{width:19px; height:19px; flex:0 0 auto; stroke:var(--green); fill:none; stroke-width:2; margin-top:3px;}
  .pricebox li b{color:var(--text); font-weight:600;}
  .pricebox .foot{padding:0 28px 28px;}
  .pricebox .foot .btn{width:100%;}

  /* ---- discount (injected by the /pricing fetch when a sale is live) ---- */
  .js-was{
    color:var(--muted); text-decoration:line-through; text-decoration-thickness:1px;
    text-decoration-color:rgba(239,63,121,.85);
    font-weight:600; margin-inline-end:.5em;
  }
  .pricebox .top .big .js-was{font-size:.5em; vertical-align:.28em;}
  .js-off{
    display:inline-block; background:linear-gradient(135deg,#ff5c8a,#ef3f79); color:#fff;
    border-radius:999px; padding:5px 14px; font-size:12.5px; font-weight:800;
    letter-spacing:.02em; box-shadow:0 6px 18px rgba(239,63,121,.35);
  }
  .js-off-slot:not(:empty){margin:10px 0 2px;}
  /* Hero/nav prices sit inline, so keep the struck price proportional there. */
  .amt .js-was{font-size:.8em;}
  /* Inside a filled button the struck price reads as noise — show only the
     price actually charged. */
  .btn .js-was{display:none;}

  /* ---- faq ---- */
  .faq{display:flex; flex-direction:column; gap:12px; max-width:820px;}
  details.qa{border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,0.02); padding:4px 18px;}
  details.qa summary{cursor:pointer; list-style:none; padding:16px 0; font-weight:700; color:#fff; font-size:15.5px; display:flex; align-items:center; justify-content:space-between;}
  details.qa summary::-webkit-details-marker{display:none;}
  details.qa summary::after{content:"+"; color:var(--pink); font-size:22px; font-weight:800;}
  details.qa[open] summary::after{content:"–";}
  details.qa p{margin:0 0 16px; color:var(--muted); font-size:14.5px;}

  /* ---- contact / rules ---- */
  .cols{display:grid; grid-template-columns:1fr 1fr; gap:22px;}
  @media(max-width:760px){ .cols{grid-template-columns:1fr;} }
  .panel{border:1px solid var(--line); border-radius:var(--radius); padding:26px; background:linear-gradient(180deg,var(--surface),var(--surface-2));}
  .panel h3{margin:0 0 14px; color:#fff; font-size:18px;}
  .panel ul{margin:0; padding:0; list-style:none; display:flex; flex-direction:column; gap:12px;}
  .panel li{color:var(--muted); font-size:14.5px; display:flex; gap:10px; align-items:flex-start;}
  .panel li b{color:var(--text); font-weight:600;}
  .fillme{color:#ffca7a; font-weight:700;}
  /* Contact links: latin handles stay LTR inside the RTL list. */
  #contact a{color:#ff9dbd; font-weight:700; text-decoration:none; unicode-bidi:isolate;}
  #contact a:hover{text-decoration:underline;}
  .rules-list{counter-reset:r;}
  .rules-list li{counter-increment:r;}
  .rules-list li::before{content:counter(r); flex:0 0 auto; width:22px; height:22px; border-radius:6px; background:var(--pink-soft); border:1px solid var(--line-strong); color:#ffc4d8; font-size:12px; font-weight:700; display:flex; align-items:center; justify-content:center;}

  /* ---- footer ---- */
  footer{border-top:1px solid var(--line); padding:34px 0; margin-top:12px; color:var(--faint); font-size:13.5px;}
  .foot-in{display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between;}
  .foot-in .brand{font-size:16px;}
  .foot-links{display:flex; gap:18px;}
  .foot-links a:hover{color:var(--text);}

  .cta-band{
    margin:8px auto 0; text-align:center; border:1px solid var(--line-strong); border-radius:20px;
    padding:44px 24px; background:linear-gradient(180deg,rgba(239,63,121,0.10),rgba(6,9,18,0.2));
  }
  .cta-band h2{font-size:clamp(22px,4vw,30px); color:#fff; margin:0 0 10px;}
  .cta-band p{color:var(--muted); margin:0 0 22px;}

/* ================================================================
   Studio landing — product chooser
   Shared by "/" and the per-product pages, so the look stays one
   system as more extensions are added.
   ================================================================ */

/* Nav gets a product menu once there is more than one product. */
.brand small{
  display:block; font-size:10.5px; letter-spacing:.22em; color:var(--faint);
  font-weight:600; margin-top:-4px;
}
.nav-links a.on{color:var(--text);}

/* ---- chooser grid ---- */
.picker{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px;
  max-width:980px; margin:0 auto;
}
@media(max-width:820px){ .picker{grid-template-columns:1fr; max-width:480px;} }

.pcard{
  position:relative; display:flex; flex-direction:column; overflow:hidden;
  border:1px solid var(--line-strong); border-radius:20px;
  background:linear-gradient(180deg,var(--surface),var(--surface-2));
  box-shadow:0 24px 60px rgba(0,0,0,0.45);
  transition:transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.pcard:hover{transform:translateY(-4px); border-color:rgba(239,63,121,0.55);}
/* The whole card is the click target; the button is just the affordance. */
.pcard .stretch{position:absolute; inset:0; z-index:2;}

.pcard .art{
  position:relative; overflow:hidden;
  height:132px; display:flex; align-items:center; justify-content:center;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(220px 90px at 50% 120%, rgba(239,63,121,0.28), transparent 70%),
    linear-gradient(180deg,rgba(239,63,121,0.10),transparent);
}
.pcard.ppro .art{
  background:
    radial-gradient(220px 90px at 50% 120%, rgba(124,131,255,0.30), transparent 70%),
    linear-gradient(180deg,rgba(124,131,255,0.10),transparent);
}
.pcard .art svg{width:52px; height:52px; stroke:#fff; fill:none; stroke-width:1.6; opacity:.95;}

/* A real screenshot of the product, faded into the card instead of sitting
   as a competing image — so a visitor gets a rough sense of what they're
   downloading instead of just the app-icon glyph. `--shot` is set inline per
   card; the gradient does the fading, the image is only ever decoration. */
.pcard .art.has-shot{
  height:172px;
  background-image:
    linear-gradient(180deg, rgba(6,9,18,0.22) 0%, rgba(6,9,18,0.38) 45%, var(--surface) 100%),
    var(--shot);
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
.pcard .art.has-shot .tool{ display:none; }
.pcard .art.has-shot .appicon.xl{
  box-shadow:0 10px 26px rgba(0,0,0,0.45);
}

.pcard .body{padding:24px 26px 26px; display:flex; flex-direction:column; flex:1 1 auto;}
.pcard h3{margin:12px 0 6px; font-size:21px; color:#fff; font-weight:800;}
.pcard .tagline{margin:0 0 16px; color:var(--muted); font-size:14.5px; flex:1 1 auto;}
.pcard .bullets{list-style:none; margin:0 0 20px; padding:0; display:flex; flex-direction:column; gap:9px;}
.pcard .bullets li{display:flex; gap:9px; align-items:flex-start; color:var(--muted); font-size:14px;}
.pcard .bullets svg{width:17px; height:17px; flex:0 0 auto; stroke:var(--green); fill:none; stroke-width:2; margin-top:3px;}

.pcard .price-row{
  display:flex; align-items:baseline; gap:8px; flex-wrap:wrap;
  padding-top:16px; border-top:1px solid var(--line); margin-bottom:16px;
}
.pcard .price-row .js-price{font-size:26px; font-weight:800; color:#fff;}
.pcard .price-row small{color:var(--muted); font-size:13px;}
.pcard .go{position:relative; z-index:3; width:100%;}

/* "Coming soon" placeholder for the next extension. */
.pcard.soon{opacity:.62; position:relative; cursor:default;}
.pcard.soon:hover{transform:none; border-color:var(--line-strong);}
.pcard.soon .art{background:linear-gradient(180deg,rgba(255,255,255,0.04),transparent);}
/* Same specificity as the rule above (two classes on the .art side), so
   without this a "soon" card with a real screenshot would lose it — the
   card's own opacity:.62 already reads as dimmed/inactive. */
.pcard.soon .art.has-shot{
  background-image:
    linear-gradient(180deg, rgba(6,9,18,0.22) 0%, rgba(6,9,18,0.38) 45%, var(--surface) 100%),
    var(--shot);
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
.pcard.soon .art svg{stroke:var(--faint);}
.pcard.soon .go{cursor:not-allowed; opacity:.7;}
.pcard.soon .go:hover{transform:none;}
.soon-badge{
  position:absolute; top:14px; inset-inline-end:14px; z-index:3;
  display:inline-block; padding:5px 12px; border-radius:999px;
  background:rgba(159,176,207,0.14); border:1px solid var(--line-strong);
  color:var(--muted); font-size:11.5px; font-weight:700; letter-spacing:.04em;
}

/* ---- studio strip: what the studio does ---- */
.hostline{
  display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:26px;
}
.hostline .chip b{color:var(--text);}

/* ---- product page: back link ---- */
.backlink{
  display:inline-flex; align-items:center; gap:7px; color:var(--faint);
  font-size:13.5px; font-weight:600; margin-bottom:18px;
}
.backlink:hover{color:var(--text);}
.backlink svg{width:15px; height:15px; stroke:currentColor; fill:none; stroke-width:2;}

/* ================================================================
   App icon slots (After Effects / Premiere Pro)
   The artwork is supplied as files in /assets/icons/. Until a file
   exists the slot stays a quiet neutral frame — no invented logo.
   ================================================================ */
.appicon{
  display:inline-flex; align-items:center; justify-content:center;
  width:1.9em; height:1.9em; flex:0 0 auto; overflow:hidden;
  border-radius:.42em; line-height:1;
}
.appicon img{ width:100%; height:100%; object-fit:contain; display:block; }
/* No file yet: a faint placeholder frame instead of a broken image. */
.appicon.empty{ border:1px dashed var(--line); background:rgba(255,255,255,.03); }
.appicon.empty img{ display:none; }

.appicon.xl{ width:64px; height:64px; border-radius:16px; }

.host-tag .appicon, .chip .appicon{ font-size:11px; margin-inline-end:6px; vertical-align:-.35em; }
.host-tag{ display:inline-flex; align-items:center; }
.pill .appicon{ font-size:12px; margin-inline-end:6px; }

/* Shipping build number, filled in by pricing.js from the installer filename.
   Stays hidden until it has a real value, so a missing installer never shows
   an empty badge. */
.ver{
  display:inline-block; margin-inline-start:8px; padding:2px 8px;
  border:1px solid var(--line); border-radius:999px;
  font-size:.72em; font-weight:600; line-height:1.6;
  color:var(--muted); vertical-align:middle; white-space:nowrap;
}
.ver[hidden]{ display:none; }

/* Card artwork: app icon + the tool's own glyph, side by side. */
.pcard .art{ gap:16px; }
.pcard .art .tool{ width:44px; height:44px; opacity:.9; }

/* ================================================================
   Screenshot gallery

   UI screenshots are wide, thin, and information-dense: the one strip
   that matters can be a few percent of the frame. So never crop them
   (object-fit: contain, no forced aspect-ratio) — the image sets its
   own height and is shown whole. Captions sit below, not on top.
   ================================================================ */
.shots{ display:flex; flex-direction:column; gap:26px; }

/* Side-by-side pair for the two detail shots. */
.shots .pair{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:26px;
}

.shot{ margin:0; }
.shot .frame{
  border:1px solid var(--line); border-radius:var(--radius);
  background:#05080f; padding:10px; overflow:hidden;
  box-shadow:0 18px 44px rgba(0,0,0,.45);
}
.shot img{
  display:block; width:100%; height:auto;      /* whole image, never cropped */
  border-radius:8px;
}
.shot figcaption{
  margin-top:12px; color:var(--muted); font-size:13.5px; text-align:center;
}

/* No file yet: a labelled dashed box that keeps the section from collapsing. */
.shot.empty .frame{
  border-style:dashed; box-shadow:none;
  min-height:180px; display:flex; align-items:center; justify-content:center;
}
.shot.empty img{ display:none; }
.shot.empty .frame::before{
  content:attr(data-label); color:var(--faint); font-size:13.5px;
  padding:0 18px; text-align:center;
}
.shot.empty figcaption{ display:none; }

/* ================================================================
   Accessibility & motion
   ================================================================ */

/* Anchor links land under the 66px sticky header without this. */
html{ scroll-behavior:smooth; }
section[id], [id]{ scroll-margin-top:86px; }

/* Keyboard users get nothing without a visible focus ring; the default
   outline is invisible on this dark background. */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.pcard:focus-within{
  outline:2px solid var(--pink-2);
  outline-offset:3px;
  border-radius:6px;
}
/* The stretched overlay link is invisible, so show the ring on the card. */
.pcard .stretch:focus-visible{ outline:none; }
.pcard:focus-within{ border-color:var(--pink-2); }

/* Whole card is clickable — say so. */
.pcard{ cursor:pointer; }

/* Skip straight to content instead of tabbing the whole nav.
   fixed, not absolute: an absolutely positioned skip link scrolls away with
   the document and appears off-screen when focused mid-page. */
.skip{
  position:fixed; inset-inline-start:-9999px; top:8px; z-index:1000;
  padding:10px 18px; border-radius:10px;
  background:var(--pink); color:#fff; font-weight:700; font-size:14px;
}
.skip:focus{ inset-inline-start:8px; }

/* Users who ask for less motion get less motion. */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
  .btn:hover, .pcard:hover, .card:hover{ transform:none; }
}

/* ================================================================
   Differentiator band — the two or three things that actually win
   the sale, given room to breathe instead of being buried in the
   feature grid.
   ================================================================ */
.edge{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:20px;
}
.edge-card{
  border:1px solid var(--line-strong); border-radius:18px; padding:28px;
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(239,63,121,0.10), transparent 70%),
    linear-gradient(180deg,var(--surface),var(--surface-2));
}
.edge-card .ic{
  width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background:var(--pink-soft); border:1px solid var(--line-strong); margin-bottom:16px;
}
.edge-card .ic svg{width:24px; height:24px; stroke:var(--pink-2); fill:none; stroke-width:1.8;}
.edge-card h3{margin:0 0 10px; font-size:19px; color:#fff; font-weight:700;}
.edge-card p{margin:0 0 14px; color:var(--muted); font-size:14.5px;}
.edge-card p:last-child{margin-bottom:0;}

/* Format pills — concrete proof, not a vague claim. */
.formats{display:flex; flex-wrap:wrap; gap:7px; margin-top:4px;}
.formats span{
  padding:4px 11px; border-radius:8px; border:1px solid var(--line);
  background:rgba(255,255,255,0.03); color:var(--text);
  font-size:12.5px; font-weight:600; letter-spacing:.02em;
}

/* ================================================================
   Value / throughput section
   ================================================================ */
.valuegrid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:26px;}
@media(max-width:760px){ .valuegrid{grid-template-columns:1fr;} }
.vstat{
  border:1px solid var(--line); border-radius:var(--radius); padding:24px;
  background:linear-gradient(180deg,var(--surface),var(--surface-2)); text-align:center;
}
.vstat .n{
  font-size:34px; font-weight:800; color:#fff; line-height:1.2;
  background:linear-gradient(180deg,#fff,#ffb9d0); -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent;
}
.vstat .l{margin-top:6px; color:var(--muted); font-size:14px;}
.valuenote{
  border:1px dashed var(--line); border-radius:var(--radius); padding:18px 22px;
  color:var(--faint); font-size:13.5px; line-height:1.9;
}

/* ================================================================
   Payment & result pages (rendered by Http::page)

   These used to carry their own inline stylesheet — different font,
   different card, no brand — so the buyer left the site's look at the
   exact moment they were handing over money. They now use the same
   tokens as everything else.
   ================================================================ */
.pay-wrap{
  min-height:100dvh; display:flex; flex-direction:column; align-items:center;
  justify-content:center; padding:32px 20px; gap:22px;
}
.pay-brand{
  display:inline-flex; flex-direction:column; align-items:center; gap:2px;
  font-weight:800; font-size:19px; letter-spacing:2px; color:#fff;
}
.pay-brand span{color:var(--pink);}
.pay-brand small{
  font-size:10px; letter-spacing:.22em; color:var(--faint); font-weight:600;
}

.pay-card{
  width:100%; max-width:520px; text-align:center;
  border:1px solid var(--line-strong); border-radius:20px; padding:36px 30px;
  background:
    radial-gradient(420px 200px at 50% -10%, rgba(239,63,121,0.12), transparent 70%),
    linear-gradient(180deg,var(--surface),var(--surface-2));
  box-shadow:0 24px 60px rgba(0,0,0,.45);
}
.pay-card h1{
  margin:0 0 12px; font-size:clamp(20px,4vw,26px); font-weight:800; color:#fff;
  line-height:1.5;
}
.pay-card h1.err{color:#ff8fa3;}
.pay-card p{margin:0 0 14px; color:var(--muted); font-size:14.5px; line-height:1.9;}
.pay-card p:last-child{margin-bottom:0;}
.pay-card .hint{font-size:12.5px; color:var(--faint);}

/* The activation code — the single most important string on the page. */
.pay-card code{
  display:block; margin:22px 0; padding:18px 16px;
  border:1px dashed rgba(122,147,194,.45); border-radius:14px;
  background:rgba(0,0,0,.30);
  font-family:"Segoe UI Mono",Consolas,monospace;
  font-size:clamp(16px,4vw,21px); font-weight:700; letter-spacing:2px;
  color:#7fd1a4; direction:ltr; user-select:all; word-break:break-all;
}

/* Buy / download / back — all reuse the site button, no bespoke styles. */
.pay-card .btn{max-width:100%;}
.pay-actions{display:flex; flex-direction:column; gap:10px; margin-top:22px;}
.pay-card .sz{font-weight:600; opacity:.85; font-size:13px; margin-inline-start:6px;}

/* Checkout form fields — same shape as the rest of the site. */
.pay-form{display:flex; flex-direction:column; gap:12px; margin-top:20px; text-align:start;}
.pay-form input{
  width:100%; box-sizing:border-box; height:48px; padding:0 14px;
  border:1px solid var(--line); border-radius:12px;
  background:rgba(0,0,0,.28); color:var(--text);
  font-family:inherit; font-size:14.5px; direction:ltr; text-align:left;
}
.pay-form input::placeholder{color:var(--faint);}
.pay-form input:focus{outline:none; border-color:var(--pink); background:rgba(0,0,0,.4);}
.pay-form button{margin-top:6px;}

/* Price summary above the form. */
.pay-price{
  display:flex; align-items:baseline; justify-content:center; gap:10px; flex-wrap:wrap;
  padding:16px; margin:4px 0 6px;
  border:1px solid var(--line); border-radius:14px; background:rgba(0,0,0,.22);
}
.pay-price .now{font-size:26px; font-weight:800; color:#fff;}
.pay-price .cur{color:var(--muted); font-size:13px;}
.pay-price .now.free, .js-price.free{color:var(--green);}

  /* ---- floating support button ---------------------------------------
     Fixed to the corner on every page. z-index sits above the sticky nav
     but the panel is anchored to the button rather than the viewport, so it
     never covers a page's own primary action on a phone. */
  .sup-wrap{
    position:fixed; inset-inline-end:18px; bottom:18px; z-index:60;
    display:flex; flex-direction:column; align-items:flex-end; gap:10px;
  }
  .sup-fab{
    display:inline-flex; align-items:center; gap:8px;
    height:46px; padding:0 18px; border-radius:999px;
    background:linear-gradient(180deg,var(--pink-2),var(--pink));
    border:1px solid rgba(255,169,198,.6); color:#fff;
    font-family:inherit; font-weight:700; font-size:14px; cursor:pointer;
    box-shadow:0 10px 30px rgba(239,63,121,.35);
    transition:transform .18s ease, box-shadow .18s ease;
  }
  .sup-fab svg{ width:19px; height:19px; flex:0 0 auto; }
  .sup-fab:hover{ transform:translateY(-2px); }
  .sup-fab.on{ background:var(--surface); border-color:var(--line-strong); box-shadow:none; }

  .sup-panel{
    width:min(300px, calc(100vw - 36px));
    padding:16px; border-radius:14px;
    background:var(--surface); border:1px solid var(--line-strong);
    box-shadow:0 24px 60px rgba(0,0,0,.5);
  }
  .sup-panel[hidden]{ display:none; }
  .sup-head{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:8px; }
  .sup-head strong{ font-size:14.5px; color:#fff; }
  .sup-x{
    background:none; border:0; color:var(--faint); cursor:pointer; padding:2px;
    display:inline-flex; line-height:0;
  }
  .sup-x svg{ width:16px; height:16px; }
  .sup-x:hover{ color:var(--text); }
  .sup-body{ margin:0 0 12px; font-size:13px; line-height:1.9; color:var(--muted); }
  .sup-go{
    display:flex; align-items:center; justify-content:center; gap:8px;
    height:44px; border-radius:11px;
    background:#229ED9; color:#fff; font-weight:700; font-size:14px;
  }
  .sup-go svg{ width:18px; height:18px; }
  .sup-go:hover{ filter:brightness(1.08); }
  .sup-id{ margin:8px 0 0; text-align:center; font-size:12.5px; color:var(--faint); }
  .sup-hint{ margin:10px 0 0; padding-top:10px; border-top:1px solid var(--line);
    font-size:12.5px; line-height:1.8; color:var(--muted); }
  .sup-hint a{ color:var(--pink-2); }

  /* ---- editors group bubble -------------------------------------------
     Same shape as the support bubble so the corner reads as one control
     stack, different colour so it does not look like a duplicate. */
  .grp-fab{
    background:linear-gradient(180deg,#3aa7dd,#1f86bb);
    border-color:rgba(150,214,245,.55);
    box-shadow:0 10px 30px rgba(34,158,217,.32);
  }
  .grp-fab.on{ background:var(--surface); border-color:var(--line-strong); box-shadow:none; }
  .grp-list{
    margin:0 0 12px; padding-inline-start:18px;
    font-size:12.5px; line-height:2; color:var(--muted);
  }
  .grp-list li{ margin:0; }
  .grp-go{ background:#229ED9; }

  /* ---- testimonials ------------------------------------------------------
     Hidden by default: shown only once testimonials.php finds at least one
     active row and adds .has-data, so an empty table never renders an empty
     section with a heading and nothing under it. */
  .testi-section{ display:none; }
  .testi-section.has-data{ display:block; }
  .testi-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:18px; }
  .testi-card{
    position:relative; overflow:hidden;
    display:flex; flex-direction:column; gap:12px;
    border:1px solid var(--line-strong); border-radius:18px; padding:26px 24px 22px;
    background:linear-gradient(180deg,var(--surface),var(--surface-2));
    box-shadow:0 20px 50px rgba(0,0,0,.35);
    transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  }
  .testi-card:hover{ transform:translateY(-4px); border-color:rgba(239,63,121,0.5); }
  /* Decorative — a big quotation mark behind the content, not read by anyone. */
  .testi-quote-mark{
    position:absolute; top:-18px; inset-inline-end:14px; z-index:0;
    font-size:92px; font-weight:800; line-height:1; font-family:Georgia,'Times New Roman',serif;
    color:rgba(239,63,121,0.14); pointer-events:none; user-select:none;
  }
  .testi-product-tag{
    position:relative; z-index:1; align-self:flex-start;
    display:inline-block; padding:4px 12px; border-radius:999px;
    background:rgba(239,63,121,0.14); border:1px solid rgba(239,63,121,0.35);
    color:#ffb9d0; font-size:11px; font-weight:700; letter-spacing:.02em;
  }
  .testi-stars{ position:relative; z-index:1; display:flex; gap:3px; color:var(--pink-2); }
  .testi-stars svg{ width:15px; height:15px; }
  .testi-quote{ position:relative; z-index:1; margin:0; flex:1; color:var(--text); font-size:14.5px; line-height:1.9; }
  .testi-who{
    position:relative; z-index:1; display:flex; align-items:center; gap:10px;
    padding-top:14px; margin-top:2px; border-top:1px solid var(--line);
  }
  .testi-avatar{
    display:flex; align-items:center; justify-content:center; flex:0 0 auto;
    width:40px; height:40px; border-radius:50%;
    background:linear-gradient(135deg,var(--pink-2),var(--pink));
    color:#fff; font-weight:800; font-size:15px;
    box-shadow:0 6px 16px rgba(239,63,121,0.35);
  }
  .testi-name{ color:#fff; font-weight:700; font-size:14px; }
  .testi-role{ color:var(--muted); font-size:12.5px; margin-top:1px; }

  /* ---- discord bubble ---------------------------------------------------
     Third bubble, same shape again, Discord's own blurple so the stack reads
     as three distinct destinations rather than one thing three times. */
  .disc-fab{
    background:linear-gradient(180deg,#6a75f5,#5865f2);
    border-color:rgba(180,187,255,.55);
    box-shadow:0 10px 30px rgba(88,101,242,.35);
  }
  .disc-fab.on{ background:var(--surface); border-color:var(--line-strong); box-shadow:none; }
  .disc-go{ background:#5865f2; }

  @media(max-width:520px){
    .sup-wrap{ inset-inline-end:12px; bottom:12px; }
    .sup-fab{ height:42px; padding:0 14px; font-size:13px; }
  }

  /* ---- lead-capture popup (assets/lead-popup.js) -----------------------
     A centred modal rather than a corner bubble: this one is asking for
     something, not offering a channel to reach us, so it gets a beat of
     the visitor's attention on purpose — but stays easy to dismiss. */
  .lead-overlay{
    position:fixed; inset:0; z-index:200;
    display:flex; align-items:center; justify-content:center; padding:20px;
    background:rgba(4,6,12,.72); backdrop-filter:blur(3px);
    animation:lead-fade .18s ease;
  }
  @keyframes lead-fade{ from{opacity:0;} to{opacity:1;} }
  .lead-modal{
    position:relative; width:100%; max-width:420px; text-align:center;
    border:1px solid var(--line-strong); border-radius:20px; padding:32px 26px;
    background:
      radial-gradient(420px 200px at 50% -10%, rgba(239,63,121,.16), transparent 70%),
      linear-gradient(180deg,var(--surface),var(--surface-2));
    box-shadow:0 24px 60px rgba(0,0,0,.5);
    animation:lead-pop .22s ease;
  }
  @keyframes lead-pop{ from{opacity:0; transform:translateY(8px) scale(.98);} to{opacity:1; transform:none;} }
  .lead-x{
    position:absolute; inset-inline-end:14px; top:14px;
    background:none; border:0; color:var(--faint); cursor:pointer; padding:4px;
    display:inline-flex; line-height:0;
  }
  .lead-x svg{ width:18px; height:18px; }
  .lead-x:hover{ color:var(--text); }
  .lead-body h2{ margin:0 0 10px; font-size:clamp(19px,4vw,23px); font-weight:800; color:#fff; }
  .lead-body > p{ margin:0 0 20px; color:var(--muted); font-size:14px; line-height:1.85; }
  .lead-form{ display:flex; flex-direction:column; gap:12px; text-align:start; }
  .lead-form input{
    width:100%; box-sizing:border-box; height:46px; padding:0 14px;
    border:1px solid var(--line); border-radius:12px;
    background:rgba(0,0,0,.28); color:var(--text);
    font-family:inherit; font-size:14.5px; direction:ltr; text-align:left;
  }
  .lead-form input::placeholder{ color:var(--faint); }
  .lead-form input:focus{ outline:none; border-color:var(--pink); background:rgba(0,0,0,.4); }
  .lead-err{ margin:0; color:#ff8fa3; font-size:13px; text-align:center; }
  .lead-code-row{ display:flex; align-items:center; gap:10px; margin:18px 0 6px; }
  .lead-code{
    flex:1; padding:14px 12px; border:1px dashed rgba(122,147,194,.45); border-radius:12px;
    background:rgba(0,0,0,.3); font-family:"Segoe UI Mono",Consolas,monospace;
    font-size:clamp(15px,4vw,18px); font-weight:700; letter-spacing:1.5px;
    color:#7fd1a4; direction:ltr; user-select:all; word-break:break-all;
  }
  .lead-copy{
    flex:0 0 auto; height:46px; padding:0 16px; border-radius:12px;
    background:var(--surface); border:1px solid var(--line-strong); color:var(--text);
    font-family:inherit; font-weight:700; font-size:13.5px; cursor:pointer;
  }
  .lead-copy:hover{ filter:brightness(1.1); }
  .lead-body .hint{ font-size:12.5px; color:var(--faint); }

  /* ---- download list --------------------------------------------------
     One card per product. The facts (host app, version, size) sit above the
     button instead of inside its label, which is what made the old row
     unreadable at any width. */
  .dl-list{ display:flex; flex-direction:column; gap:10px; margin-top:20px; text-align:start; }
  .dl-card{
    padding:14px 16px; border-radius:14px;
    background:rgba(0,0,0,.22); border:1px solid var(--line);
  }
  .dl-card.soon{ opacity:.6; }
  .dl-head{ margin-bottom:11px; }
  .dl-head b{ display:block; font-size:14.5px; font-weight:700; color:#fff; line-height:1.7; }
  .dl-meta{ display:block; font-size:12px; color:var(--muted); line-height:1.8; }

  /* Softer than a hero CTA on purpose: there are two of these stacked, and at
     full brightness they fight each other instead of reading as a list. */
  .dl-go{
    width:100%; height:42px; font-size:14px;
    box-shadow:0 6px 18px rgba(239,63,121,.22);
  }
  .dl-note{ margin:0; font-size:13px; color:var(--muted); }

  .dl-old{
    display:flex; align-items:center; flex-wrap:wrap; gap:4px 8px;
    margin:11px 0 0; padding-top:10px; border-top:1px solid var(--line);
    font-size:12px; color:var(--faint);
  }
  .dl-old a{
    padding:2px 8px; border-radius:6px;
    background:var(--surface-2); border:1px solid var(--line);
    color:var(--muted); direction:ltr;
  }
  .dl-old a:hover{ color:var(--pink-2); border-color:var(--line-strong); }
  .dl-old span{ display:none; }   /* the pills separate themselves */
