/* ============================================================
   PKTOK – campaign landing (/join/) ADD-ONS
   Loaded AFTER styles.css. Only the conversion-page extras live
   here; the base design system is reused from styles.css.
   ============================================================ */

/* ---- slim, focused nav (no burger; stays visible on mobile) ---- */
.lp-nav{position:sticky;top:0;z-index:100;
  background:rgba(10,10,16,.72);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line)}
.lp-nav__inner{display:flex;align-items:center;justify-content:space-between;gap:14px;height:64px}
.lp-nav__right{display:flex;align-items:center;gap:10px}
@media (max-width:480px){
  .lp-nav__inner{gap:10px}
  .lp-nav__right{gap:8px}
  .lp-nav__right .btn{padding:9px 14px;font-size:14px}
}

/* ---- CTA microcopy under the hero button ---- */
.lp-ctasub{margin-top:14px;color:var(--muted-2);font-size:13.5px;font-weight:500}

/* ---- price reassurance band (under hero) ---- */
.lp-reassure{padding:6px 0 0}
.lp-reassure .container{display:flex;justify-content:center}
.lp-reassure p{max-width:780px;text-align:center;color:var(--muted);font-size:15px;line-height:1.55;
  background:var(--grad-soft);border:1px solid var(--line-strong);border-radius:18px;padding:14px 24px}

/* ---- compact footer ---- */
.lp-footer{padding:42px 0 30px}
.lp-footer__inner{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.lp-footer__links{display:flex;align-items:center;gap:22px;flex-wrap:wrap;
  font-family:var(--font);font-weight:600;font-size:14px}
.lp-footer__links a{color:var(--muted);transition:color .2s}
.lp-footer__links a:hover{color:var(--text)}
.lp-footer__legal{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
  margin-top:24px;padding-top:20px;border-top:1px solid var(--line);color:var(--muted-2);font-size:13px}

/* ---- GDPR cookie consent banner (gates the Meta Pixel) ---- */
.consent{position:fixed;left:16px;right:16px;bottom:16px;z-index:300;
  display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;
  max-width:880px;margin:0 auto;padding:16px 20px;
  background:rgba(14,14,22,.97);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border:1px solid var(--line-strong);border-radius:18px;box-shadow:var(--shadow)}
.consent__text{flex:1;min-width:240px;color:var(--muted);font-size:13.5px;line-height:1.5}
.consent__text a{color:var(--c-cyan);text-decoration:underline}
.consent__actions{flex:none;display:flex;gap:10px}
.consent .btn{padding:10px 18px;font-size:14px}
@media (max-width:560px){
  .consent{flex-direction:column;align-items:stretch;gap:12px;left:10px;right:10px;bottom:10px}
  .consent__actions{justify-content:flex-end}
}
@media (prefers-reduced-motion:no-preference){
  .consent{animation:consentIn .4s var(--ease) both}
}
@keyframes consentIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}

/* 2026 promo lead stacks above the price-reassurance line */
.lp-reassure .container{flex-direction:column;align-items:center;gap:12px}

/* /join: the old pricing line is struck through (promo lead carries the message) */
.lp-reassure p:not(.lp-promo){background:none;border:none;padding:2px 0;color:var(--muted-2);
  font-size:13px;text-decoration:line-through;text-decoration-thickness:1.5px}

/* ============================================================
   "100% FREE in 2026" — LOUD emphasis (landing /join only).
   This file loads AFTER styles.css, so these override the base.
   ============================================================ */

/* hero free-ribbon → big, glowing, gently pulsing banner */
.hero--stage .promo-ribbon{
  font-size:clamp(15px,2.2vw,20px);
  font-weight:800;
  padding:13px 24px;
  margin-bottom:18px;
  box-shadow:0 16px 46px rgba(91,124,255,.55), inset 0 0 0 1.5px rgba(255,255,255,.22);
}
@media (prefers-reduced-motion:no-preference){
  .hero--stage .promo-ribbon{animation:lpFreePulse 2.6s ease-in-out infinite}
  @keyframes lpFreePulse{0%,100%{transform:scale(1)}50%{transform:scale(1.045)}}
}

/* trust points → bold green "free" chips */
.hero--stage .hero__trust{gap:10px;margin-top:24px}
.hero--stage .hero__trust li{
  font-size:14.5px;font-weight:700;color:var(--text);
  background:rgba(22,199,132,.13);border:1px solid rgba(22,199,132,.42);
  border-radius:999px;padding:8px 15px}
.hero--stage .hero__trust li::before{content:"✓";color:#16c784;font-weight:900}

/* the big free statement (reassure band) → much larger */
.lp-reassure{padding:26px 0 0}
.lp-promo{
  font-size:clamp(26px,4.8vw,42px);
  line-height:1.16;
  max-width:980px;
  font-weight:800;
}
