/* ============================================================
   NICHT WEGGEWISCHT — Funnel Styles (shared)
   Brand: Hans / @hans.samas · Samas Media Group LLC
   Tokens below are the single source of truth for branding.
   ============================================================ */

:root {
  /* Brand */
  --bg:        #0C0D16;
  --bg-2:      #11121F;
  --surface:   #171A2B;
  --surface-2: #1E2235;   /* Samas Navy */
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.14);

  --brand:     #7B52E8;   /* Samas Lila */
  --brand-2:   #9B7CF4;   /* Lila hell */
  --brand-ink: #C9B6FF;

  --cta:       #F97316;   /* Engagement Orange */
  --cta-2:     #FB923C;
  --cta-ink:   #1A0E00;

  --danger:    #F0556B;
  --ok:        #34D399;

  --text:      #F5F6FB;
  --muted:     #A6AAC2;
  --muted-2:   #7B7F98;

  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow:    0 24px 60px -20px rgba(0,0,0,.7);
  --shadow-brand: 0 20px 50px -18px rgba(123,82,232,.55);
  --shadow-cta:   0 16px 40px -12px rgba(249,115,22,.55);

  --maxw: 1080px;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-brand: 'Unbounded', 'Space Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  /* ambient brand glow */
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60% 40% at 78% -5%, rgba(123,82,232,.22), transparent 60%),
    radial-gradient(50% 35% at 8% 8%, rgba(249,115,22,.10), transparent 60%);
}

h1,h2,h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; margin: 0 0 .4em; }
h1 { font-size: clamp(2.1rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.5rem); }
p  { margin: 0 0 1rem; color: var(--muted); }
strong { color: var(--text); font-weight: 600; }
a { color: var(--brand-2); text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 9vw, 108px) 0; position: relative; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-ink);
  background: rgba(123,82,232,.12);
  border: 1px solid rgba(123,82,232,.28);
  padding: 7px 14px; border-radius: 100px;
}
.lead { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--muted); max-width: 44ch; }
.grad { background: linear-gradient(100deg, var(--brand-2), var(--cta)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.underline-mark { position: relative; white-space: nowrap; }
.underline-mark::after {
  content:""; position:absolute; left:-2%; right:-2%; bottom:.08em; height:.42em;
  background: linear-gradient(90deg, rgba(249,115,22,.55), rgba(123,82,232,.55));
  z-index:-1; border-radius: 3px; transform: skewX(-8deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.06rem;
  padding: 17px 30px; border-radius: 100px; border: 0; cursor: pointer;
  text-align: center; transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  color: var(--cta-ink); background: linear-gradient(180deg, var(--cta-2), var(--cta));
  box-shadow: var(--shadow-cta); letter-spacing: -.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 52px -12px rgba(249,115,22,.7); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--brand-2); outline-offset: 3px; }
.btn--lg { font-size: 1.18rem; padding: 21px 40px; width: 100%; max-width: 460px; }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); box-shadow: none; }
.btn--ghost:hover { background: rgba(255,255,255,.05); box-shadow: none; }
.btn--brand { background: linear-gradient(180deg, var(--brand-2), var(--brand)); color: #fff; box-shadow: var(--shadow-brand); }
.btn .sub { display:block; font-size:.72rem; font-weight:500; opacity:.85; letter-spacing:.02em; }
.btn-note { margin-top: 12px; font-size: .85rem; color: var(--muted-2); display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-note span { display:inline-flex; align-items:center; gap:6px; }

/* ---------- Announcement bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--brand), var(--cta));
  color: #fff; text-align: center; font-size: .84rem; font-weight: 600;
  padding: 9px 16px; letter-spacing: .01em; position: relative; z-index: 60;
  font-family: var(--font-display);
}
.topbar b { font-weight: 700; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); background: rgba(12,13,22,.72);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-brand); font-weight: 800; font-size: 1.04rem; letter-spacing: -.02em; color: var(--text); }
.brand__mark {
  width: 36px; height: 36px; flex: none; display: block; border-radius: 10px;
  box-shadow: var(--shadow-brand);
}
.brand small { display:block; font-size:.56rem; font-weight:500; letter-spacing:.3em; color: var(--muted-2); text-transform: uppercase; margin-top:1px; font-family: var(--font-body); }
.nav .btn { padding: 11px 22px; font-size: .95rem; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(40px, 6vw, 72px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero .lead { margin-bottom: 30px; max-width: 40ch; }
.pill-row { display:flex; gap:10px; flex-wrap:wrap; margin: 22px 0 4px; }
.pill { font-size:.82rem; color: var(--muted); background: var(--surface); border:1px solid var(--line); padding:7px 13px; border-radius:100px; display:inline-flex; gap:7px; align-items:center; }

/* Video frame */
.vsl {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/10; background: linear-gradient(145deg, var(--surface-2), #0a0b13);
  border: 1px solid var(--line-2); box-shadow: var(--shadow);
}
.vsl::after { content:""; position:absolute; inset:0; background: radial-gradient(70% 60% at 50% 40%, rgba(123,82,232,.20), transparent 70%); }
.vsl__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; z-index: 3; background: #000; display: block; }
.vsl__sound {
  position: absolute; z-index: 4; top: 12px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(12,13,22,.82); color: #fff; border: 1px solid var(--line-2);
  border-radius: 100px; padding: 8px 15px; font-family: var(--font-display); font-weight: 600;
  font-size: .82rem; cursor: pointer; backdrop-filter: blur(6px); box-shadow: var(--shadow);
  animation: pulseSound 2s ease-in-out infinite; white-space: nowrap;
}
.vsl__sound:hover { background: rgba(12,13,22,.95); }
@keyframes pulseSound { 0%,100%{opacity:.92} 50%{opacity:.55} }
.vsl__play {
  position: absolute; inset: 0; margin: auto; width: 88px; height: 88px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer; z-index: 2;
  background: linear-gradient(180deg, var(--cta-2), var(--cta)); box-shadow: var(--shadow-cta);
  border: 0; transition: transform .2s ease;
}
.vsl__play:hover { transform: scale(1.06); }
.vsl__play svg { margin-left: 5px; }
.vsl__label { position:absolute; left:16px; bottom:14px; z-index:2; font-family:var(--font-display); font-weight:600; font-size:.8rem; color:#fff; background:rgba(0,0,0,.45); padding:6px 12px; border-radius:100px; backdrop-filter: blur(6px);}
.vsl__badge { position:absolute; right:14px; top:14px; z-index:2; font-size:.72rem; font-weight:700; font-family:var(--font-display); letter-spacing:.06em; color:#fff; background: rgba(240,85,107,.9); padding:5px 11px; border-radius:100px; }

/* ---------- Problem list ---------- */
.prob { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px; }
.prob__item { display:flex; gap:14px; align-items:flex-start; background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.prob__x { flex:none; width:26px; height:26px; border-radius:50%; display:grid; place-items:center; background: rgba(240,85,107,.14); color: var(--danger); font-weight:700; }
.prob__item p { margin:0; color: var(--muted); font-size:.98rem; }

/* ---------- Shift / reframe ---------- */
.shift { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.shift .big { font-family: var(--font-display); font-weight:700; font-size: clamp(1.6rem,4vw,2.6rem); line-height:1.15; max-width: 22ch; margin: 0 auto 18px; }

/* ---------- Bundle / value stack ---------- */
.offer-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center; }
.bundle {
  position: relative; border-radius: var(--radius-lg); padding: 34px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface)); border:1px solid var(--line-2);
  box-shadow: var(--shadow);
}
.bundle__cover {
  aspect-ratio: 3/4; border-radius: 14px; margin-bottom: 20px; position: relative; overflow:hidden;
  background: linear-gradient(160deg, var(--brand), #3a1d7a); border:1px solid rgba(255,255,255,.14);
  display:flex; flex-direction:column; justify-content:space-between; padding: 24px;
}
.bundle__cover .kick { font-family:var(--font-display); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color: rgba(255,255,255,.7);}
.bundle__cover .ttl { font-family:var(--font-display); font-weight:700; font-size: clamp(1.5rem,3vw,2rem); color:#fff; line-height:1.02; }
.bundle__cover .ttl span { color: var(--cta-2); }
.bundle__cover .foot { font-size:.8rem; color: rgba(255,255,255,.75); }
.bundle__tags { display:flex; gap:10px; }
.tag { font-size:.76rem; font-weight:600; font-family:var(--font-display); background: rgba(255,255,255,.08); border:1px solid var(--line); padding:6px 12px; border-radius:100px; color: var(--text); }

.stack { list-style:none; margin: 8px 0 0; padding: 0; }
.stack li { display:flex; gap:14px; align-items:flex-start; padding: 13px 0; border-bottom:1px dashed var(--line); }
.stack li:last-child { border-bottom:0; }
.stack .ck { flex:none; width:24px; height:24px; border-radius:7px; display:grid; place-items:center; background: rgba(52,211,153,.14); color: var(--ok); margin-top:2px; }
.stack .txt { flex:1; }
.stack .txt b { color: var(--text); font-weight:600; }
.stack .val { font-family: var(--font-display); font-size:.85rem; color: var(--muted-2); white-space:nowrap; }
.stack .val s { color: var(--muted-2); opacity:.7; }

/* ---------- 10 rules teaser ---------- */
.rules { display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.rule { display:flex; gap:14px; align-items:center; background: var(--surface); border:1px solid var(--line); border-radius: var(--radius-sm); padding: 15px 18px; }
.rule__n { flex:none; width:34px; height:34px; border-radius:9px; display:grid; place-items:center; font-family:var(--font-display); font-weight:700; color: var(--brand-ink); background: rgba(123,82,232,.14); border:1px solid rgba(123,82,232,.24); }
.rule p { margin:0; color: var(--text); font-size:.96rem; font-weight:500; }

/* ---------- Steps ---------- */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step { background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.step__n { font-family:var(--font-display); font-weight:700; font-size:.9rem; color: var(--cta-2); letter-spacing:.1em; }
.step h3 { margin:.5em 0 .3em; }
.step p { margin:0; font-size:.95rem; }

/* ---------- Testimonials ---------- */
.tgrid { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.tcard { background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.tcard .stars { color: var(--cta-2); letter-spacing:2px; font-size:.95rem; margin-bottom:10px; }
.tcard p { color: var(--text); font-size:.98rem; margin:0 0 16px; }
.tcard .who { display:flex; align-items:center; gap:12px; }
.tcard .av { width:38px; height:38px; border-radius:50%; background: linear-gradient(135deg,var(--brand),var(--cta)); }
.tcard .who b { display:block; font-size:.9rem; }
.tcard .who small { color: var(--muted-2); font-size:.8rem; }
.placeholder-note { text-align:center; font-size:.82rem; color:var(--muted-2); margin-top:22px; font-style:italic;}

/* ---------- Offer box (checkout) ---------- */
.checkout { max-width: 560px; margin: 0 auto; }
.pricebox {
  border-radius: var(--radius-lg); background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--brand); box-shadow: var(--shadow-brand); padding: 6px;
}
.pricebox__head {
  background: linear-gradient(90deg, var(--brand), var(--brand-2)); color:#fff; text-align:center;
  font-family:var(--font-display); font-weight:700; padding: 12px; border-radius: 22px 22px 0 0; letter-spacing:.02em;
}
.pricebox__body { padding: 30px 28px 28px; text-align:center; }
.price { display:flex; align-items:baseline; gap:12px; justify-content:center; margin: 6px 0 4px; }
.price .now { font-family:var(--font-display); font-weight:700; font-size: 3.4rem; color: var(--text); line-height:1; }
.price .cur { font-family:var(--font-display); font-weight:700; font-size:1.6rem; color: var(--text); }
.price .was { font-size:1.2rem; color: var(--muted-2); text-decoration: line-through; }
.price-sub { font-size:.85rem; color: var(--muted); margin-bottom:20px; }

.bump {
  display:flex; gap:14px; align-items:flex-start; text-align:left;
  background: rgba(249,115,22,.07); border:1px dashed rgba(249,115,22,.4);
  border-radius: var(--radius-sm); padding: 16px; margin: 4px 0 22px; cursor:pointer;
}
.bump input { width:22px; height:22px; margin-top:2px; accent-color: var(--cta); flex:none; cursor:pointer; }
.bump label { cursor:pointer; }
.bump b { color: var(--cta-2); }
.bump p { margin:4px 0 0; font-size:.85rem; color: var(--muted); }

.consent { display:flex; gap:12px; align-items:flex-start; text-align:left; margin: 0 0 16px; font-size:.82rem; color: var(--muted); cursor:pointer; }
.consent input { width:20px; height:20px; margin-top:1px; accent-color: var(--brand); flex:none; cursor:pointer; }
.consent b { color: var(--text); font-weight:600; }
.consent a { text-decoration:underline; }
.consent-hint { color: var(--cta-2); font-size:.84rem; margin:-6px 0 0; }

.guarantee { display:flex; gap:14px; align-items:center; justify-content:center; text-align:left; margin-top:22px; padding-top:20px; border-top:1px solid var(--line); }
.guarantee .seal { flex:none; width:52px; height:52px; border-radius:50%; display:grid; place-items:center; background: rgba(52,211,153,.12); color:var(--ok); border:1px solid rgba(52,211,153,.3); }
.guarantee p { margin:0; font-size:.86rem; color: var(--muted); }
.guarantee b { color: var(--text); }
.paylogos { display:flex; gap:10px; justify-content:center; align-items:center; margin-top:16px; opacity:.7; font-size:.78rem; color: var(--muted-2); flex-wrap:wrap;}

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.qa { border:1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--surface); overflow:hidden; }
.qa summary { cursor:pointer; padding: 20px 22px; font-family:var(--font-display); font-weight:600; font-size:1.05rem; list-style:none; display:flex; justify-content:space-between; gap:16px; align-items:center; }
.qa summary::-webkit-details-marker { display:none; }
.qa summary .ic { flex:none; width:26px; height:26px; border-radius:50%; border:1px solid var(--line-2); display:grid; place-items:center; transition: transform .2s ease; color:var(--brand-2); }
.qa[open] summary .ic { transform: rotate(45deg); }
.qa .a { padding: 0 22px 20px; color: var(--muted); font-size:.98rem; }

/* ---------- Final CTA ---------- */
.finalcta { text-align:center; background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top:1px solid var(--line); }

/* ---------- Footer ---------- */
.foot { border-top:1px solid var(--line); padding: 40px 0 60px; }
.foot__in { display:flex; justify-content:space-between; gap:24px; flex-wrap:wrap; align-items:flex-start; }
.foot a { color: var(--muted); font-size:.88rem; }
.foot a:hover { color: var(--text); }
.foot .legal { display:flex; gap:20px; flex-wrap:wrap; }
.foot small { color: var(--muted-2); font-size:.82rem; display:block; max-width: 52ch; margin-top:10px; }

/* ---------- Mitgliederbereich (zugang.html) ---------- */
.acc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.acccard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.acccard__media { position: relative; aspect-ratio: 16/9; background: #000; }
.acccard__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.acccard__cover { display: flex; align-items: center; justify-content: center; aspect-ratio: 16/9; background: linear-gradient(160deg, var(--brand), #3a1d7a); }
.acccard__cover svg { width: 46px; height: 46px; color: #fff; opacity: .92; }
.acccard__body { padding: 20px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.acccard__body b { font-family: var(--font-display); font-size: 1.05rem; }
.acccard__body p { margin: 0; color: var(--muted); font-size: .92rem; }
.acccard__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.acccard__actions .btn { padding: 11px 18px; font-size: .9rem; }
.acccard--locked { border-color: var(--brand); box-shadow: var(--shadow-brand); }
.acc-price { display: flex; align-items: baseline; gap: 10px; }
.acc-price .now { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.acc-price .was { color: var(--muted-2); text-decoration: line-through; }

/* ---------- Legal / doc pages ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: clamp(40px,7vw,72px) 0; }
.doc h1 { font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: .6em; }
.doc h2 { font-size: 1.25rem; margin: 1.8em 0 .5em; padding-top: .4em; }
.doc h3 { font-size: 1.02rem; color: var(--brand-2); margin: 1.3em 0 .3em; }
.doc p, .doc li { color: var(--muted); font-size: .98rem; line-height: 1.75; }
.doc ul { padding-left: 1.2em; margin: .4em 0 1em; }
.doc a { color: var(--brand-2); }
.doc strong { color: var(--text); }
.doc .back { display:inline-flex; gap:8px; align-items:center; font-size:.9rem; color: var(--muted-2); margin-bottom: 20px; }
.doc address { font-style: normal; color: var(--text); line-height: 1.7; }
.doc .updated { font-size:.82rem; color: var(--muted-2); margin-top: 2.5em; padding-top:1.2em; border-top:1px solid var(--line); }

/* ---------- Sticky mobile CTA ---------- */
.stickybuy {
  position: fixed; left:0; right:0; bottom:0; z-index: 55; display:none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(12,13,22,.92); backdrop-filter: blur(12px); border-top:1px solid var(--line-2);
}
.stickybuy .btn { width:100%; max-width:none; }

/* ---------- Reveal animation base (only hide when JS is on) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }

/* ---------- Upsell / thank-you specific ---------- */
.oto { max-width: 720px; margin: 0 auto; text-align:center; }
.oto__warn { display:inline-flex; gap:10px; align-items:center; color: var(--cta-2); font-family:var(--font-display); font-weight:700; letter-spacing:.04em; font-size:.9rem; margin-bottom: 14px; }
.oto__box { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border:1px solid var(--line-2); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); text-align:left; margin-top:26px; }
.oto__price { display:flex; align-items:baseline; gap:12px; margin:14px 0; }
.oto__price .now { font-family:var(--font-display); font-weight:700; font-size:2.6rem; }
.oto__price .was { text-decoration:line-through; color:var(--muted-2); }
.oto__actions { display:flex; flex-direction:column; gap:12px; margin-top:26px; }
.decline { background:none; border:0; color: var(--muted-2); font-size:.9rem; cursor:pointer; text-decoration:underline; padding:8px; }
.decline:hover { color: var(--muted); }
.countdown { font-family:var(--font-display); font-weight:700; color: var(--danger); font-variant-numeric: tabular-nums; }

.success-mark { width:76px; height:76px; border-radius:50%; display:grid; place-items:center; margin:0 auto 20px; background: rgba(52,211,153,.14); color:var(--ok); border:1px solid rgba(52,211,153,.35); }
.dl-list { list-style:none; padding:0; margin: 26px auto; max-width: 520px; text-align:left; }
.dl-list li { display:flex; gap:16px; align-items:center; background: var(--surface); border:1px solid var(--line); border-radius: var(--radius-sm); padding:18px 20px; margin-bottom:12px; }
.dl-list .ic { flex:none; width:40px; height:40px; border-radius:10px; display:grid; place-items:center; background: rgba(123,82,232,.14); color: var(--brand-2); }
.dl-list .btn { padding:10px 20px; font-size:.9rem; margin-left:auto; }

/* ---------- Recap chips (checkout) ---------- */
.recap { display:flex; flex-wrap:wrap; gap:6px 16px; justify-content:center; align-items:center; font-size:.86rem; color: var(--muted); margin: 4px 0 22px; }
.recap__ck { color: var(--ok); font-weight:700; margin-left:4px; }

/* ---------- Countdown badge ---------- */
.cd-badge { display:inline-block; background: rgba(0,0,0,.22); color:#fff; font-weight:700; padding:2px 9px; border-radius:100px; font-variant-numeric: tabular-nums; letter-spacing:.02em; }

/* ---------- Social-proof toast ---------- */
.toast {
  position: fixed; left: 18px; bottom: 18px; z-index: 58; max-width: 320px;
  display: flex; gap: 11px; align-items: center;
  background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow); font-size: .86rem; color: var(--text);
  transform: translateY(140%); opacity: 0; transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .45s ease;
}
.toast.show { transform: none; opacity: 1; }
.toast__dot { flex:none; width:9px; height:9px; border-radius:50%; background: var(--ok); box-shadow:0 0 0 4px rgba(52,211,153,.18); }
.toast__msg b { color: var(--text); }
.toast__msg small { display:block; color: var(--muted-2); font-size:.76rem; margin-top:1px; }
@media (max-width: 900px){ .toast { bottom: 92px; left: 12px; right: 12px; max-width:none; } }

/* ---------- Modal / popup ---------- */
.modal { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6,7,12,.72); backdrop-filter: blur(4px); animation: fade .25s ease; }
.modal__card {
  position: relative; z-index: 1; width: 100%; max-width: 460px; text-align: center;
  background: linear-gradient(165deg, var(--surface-2), var(--surface)); border: 1px solid var(--brand);
  border-radius: var(--radius-lg); padding: 38px 30px 30px; box-shadow: var(--shadow-brand);
  animation: pop .3s cubic-bezier(.2,.8,.2,1);
}
.modal__x { position:absolute; top:14px; right:16px; background:none; border:0; color:var(--muted-2); font-size:1.7rem; line-height:1; cursor:pointer; }
.modal__x:hover { color: var(--text); }
.modal__decline { display:block; width:100%; margin-top:14px; background:none; border:0; color:var(--muted-2); font-size:.86rem; cursor:pointer; text-decoration:underline; }
.modal__decline:hover { color: var(--muted); }
@keyframes fade { from { opacity:0 } to { opacity:1 } }
@keyframes pop { from { opacity:0; transform: translateY(16px) scale(.97) } to { opacity:1; transform:none } }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 34px; }
  .offer-grid { grid-template-columns: 1fr; gap: 30px; }
  .steps, .tgrid { grid-template-columns: 1fr; }
  .prob { grid-template-columns: 1fr; }
  .rules { grid-template-columns: 1fr; }
  .stickybuy { display:block; }
  body { padding-bottom: 84px; }
}
@media (max-width: 520px) {
  .nav .btn { display:none; }
  .price .now { font-size: 2.8rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
