/* YouTube Ban Service — YouTube red on player-dark canvas.
   Shared framework (mobile-hardened); palette + platform extras swapped per site. */

/* Self-hosted variable fonts (latin subset) — no third-party request; font-display:swap. */
@font-face{
  font-family:"Inter"; font-style:normal; font-weight:400 600; font-display:swap;
  src:url("/assets/fonts/inter-latin.woff2") format("woff2");
}
@font-face{
  font-family:"Space Grotesk"; font-style:normal; font-weight:500 700; font-display:swap;
  src:url("/assets/fonts/space-grotesk-latin.woff2") format("woff2");
}

:root{
  --bg:        #0f0f0f;
  --bg-2:      #000000;
  --panel:     #1c1c1c;
  --panel-2:   #242424;
  --line:      rgba(255,255,255,.11);
  --line-soft: rgba(255,255,255,.06);
  --text:      #f5f5f7;
  --muted:     #9a9aa6;
  --faint:     #696974;
  --red:       #ff0000;
  --red-2:     #cc0000;
  --red-ink:   #7a0000;
  --red-soft:  rgba(255,0,0,.12);
  --red-glow:  rgba(255,0,0,.42);
  --cyan:      #ff5252;
  --cyan-2:    #ff3838;
  --cyan-ink:  #8a1f1f;
  --cyan-soft: rgba(255,82,82,.12);
  --cyan-glow: rgba(255,82,82,.38);
  --maxw:      1180px;
  --r:         16px;
  --r-sm:      11px;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --shadow:    0 30px 70px -34px rgba(0,0,0,.85);
  --vh:        1vh;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --disp: "Space Grotesk", "Inter", system-ui, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms!important; transition-duration:.001ms!important; }
}

body{
  margin:0; border-top:3px solid var(--red);
  border-image:linear-gradient(90deg, var(--cyan), var(--red)) 1;
  font-family:var(--sans); font-size:1.0625rem; line-height:1.7;
  color:var(--text); background:var(--bg); overflow-x:clip;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
body::before{
  content:""; position:fixed; inset:0; z-index:-2; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:76px 76px;
  -webkit-mask-image:radial-gradient(125% 70% at 50% -5%, #000 22%, transparent 72%);
          mask-image:radial-gradient(125% 70% at 50% -5%, #000 22%, transparent 72%);
}

::selection{ background:var(--red); color:#fff; }

img,svg{ max-width:100%; height:auto; display:block; }
a{ color:var(--text); text-decoration:none; }

h1,h2,h3,h4{ font-family:var(--disp); font-weight:600; line-height:1.05; letter-spacing:-.022em; margin:0 0 .5em; }
h1{ font-size:clamp(2.05rem,5.8vw,4.6rem); }
h2{ font-size:clamp(1.85rem,4vw,3rem); }
h3{ font-size:clamp(1.2rem,2vw,1.45rem); letter-spacing:-.012em; }
p{ margin:0 0 1rem; }
.lead{ font-size:clamp(1.12rem,2vw,1.32rem); color:var(--muted); max-width:58ch; }
strong{ color:#fff; font-weight:600; }

/* a11y */
.skip-link{ position:absolute; left:10px; top:-60px; z-index:1000; background:var(--red); color:#fff; padding:.7rem 1rem; border-radius:8px; transition:top .15s; }
.skip-link:focus{ top:10px; }
:focus-visible{ outline:2px solid var(--red); outline-offset:3px; border-radius:4px; }

/* layout */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:clamp(1.1rem,4vw,2.2rem); }
.section{ padding-block:clamp(3.5rem,8vw,7rem); }
.section--line{ border-top:1px solid var(--line-soft); }
.seclabel{ display:flex; align-items:center; gap:.7rem; font-family:var(--disp); font-size:.82rem; font-weight:500; letter-spacing:.06em; color:var(--muted); margin-bottom:1.4rem; text-transform:uppercase; }
.seclabel::before{ content:""; width:30px; height:1px; background:var(--red); }
.sechead{ max-width:62ch; margin-bottom:clamp(2rem,4vw,3rem); }
.sechead p{ color:var(--muted); }

/* header */
.header{ position:sticky; top:0; z-index:100; background:rgba(15,15,15,.72); backdrop-filter:blur(16px) saturate(150%); border-bottom:1px solid var(--line-soft); }
.nav{ display:flex; align-items:center; justify-content:space-between; gap:1rem; min-height:68px; }
.brand{ display:inline-flex; align-items:center; gap:.6rem; font-family:var(--disp); font-weight:600; font-size:1.18rem; letter-spacing:-.02em; color:#fff; }
.brand b{ color:var(--red); font-weight:600; }
.brand__mark{ width:26px; height:26px; flex:0 0 auto; transition:transform .3s var(--ease); }
.brand:hover .brand__mark{ transform:rotate(-6deg) scale(1.06); }

.nav__toggle{ display:inline-flex; align-items:center; justify-content:center; width:46px; height:46px; background:transparent; border:1px solid var(--line); border-radius:10px; color:var(--text); cursor:pointer; transition:border-color .15s, background .15s; }
.nav__toggle:hover{ border-color:var(--red); background:var(--red-soft); }
.nav__toggle svg{ width:22px; height:22px; }
.nav__toggle .x{ display:none; }
body.nav-open .nav__toggle .m{ display:none; }
body.nav-open .nav__toggle .x{ display:block; }

.nav__menu{ list-style:none; margin:0; padding:0; }
.nav__link{ display:flex; align-items:center; min-height:46px; padding:.5rem .95rem; font-size:1rem; font-weight:500; color:var(--muted); border-radius:9px; transition:color .15s, background .15s; }
.nav__link:hover,.nav__link[aria-current="page"]{ color:#fff; }
.nav__link--cta{ color:#fff; border:1px solid var(--line); }
.nav__link--cta:hover{ border-color:var(--red); background:var(--red-soft); }

.nav__menu{
  position:fixed; inset:68px 0 auto 0; display:grid; gap:.15rem;
  padding:1.1rem clamp(1.1rem,4vw,2.2rem) 1.6rem;
  background:var(--bg-2); border-bottom:1px solid var(--line);
  transform:translateY(-130%); opacity:0; visibility:hidden;
  transition:transform .3s var(--ease), opacity .3s, visibility .3s;
  max-height:calc(100*var(--vh) - 68px); overflow-y:auto;
}
body.nav-open .nav__menu{ transform:translateY(0); opacity:1; visibility:visible; }
@media (min-width:900px){
  .nav__toggle{ display:none; }
  .nav__menu{ position:static; inset:auto; display:flex; align-items:center; gap:.4rem; padding:0; background:none; border:0; transform:none; opacity:1; visibility:visible; max-height:none; overflow:visible; }
}

/* buttons */
.btn{ position:relative; display:inline-flex; align-items:center; justify-content:center; gap:.55rem; min-height:50px; padding:.8rem 1.5rem; border-radius:999px; border:1px solid transparent; font-family:var(--sans); font-weight:600; font-size:1rem; cursor:pointer; transition:transform .14s var(--ease), background .18s, border-color .18s, color .18s, box-shadow .25s; }
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn svg{ width:18px; height:18px; }
.btn--primary{ background:var(--red); color:#fff; box-shadow:0 10px 24px -14px var(--red-glow); }
.btn--primary:hover{ background:var(--red-2); box-shadow:0 16px 36px -12px var(--red-glow); }
.btn--line{ background:transparent; color:#fff; border-color:var(--line); }
.btn--line:hover{ border-color:var(--cyan); background:var(--cyan-soft); box-shadow:0 14px 34px -18px var(--cyan-glow); }
.btn--sm{ min-height:42px; padding:.55rem 1.05rem; font-size:.92rem; }
.btn-row{ display:flex; flex-wrap:wrap; gap:.8rem; }

/* hero */
.hero{ position:relative; padding-block:clamp(3.4rem,8vw,6.8rem); overflow:hidden; }
.hero::before{ content:""; position:absolute; top:-25%; right:-8%; width:55%; height:140%; z-index:-1; pointer-events:none;
  background:radial-gradient(closest-side, rgba(255,0,0,.16), transparent 72%); filter:blur(8px); }
.hero__grid{ display:grid; gap:clamp(2rem,5vw,4rem); align-items:center; }
@media (min-width:980px){ .hero__grid{ grid-template-columns:1.05fr .95fr; } }
.hero h1{ margin-bottom:.32em; }
.hero h1 .accent{ color:#fff; position:relative; text-shadow:-.035em -.018em 0 var(--cyan), .035em .018em 0 var(--red); }
@media (prefers-reduced-motion: reduce){ .hero h1 .accent{ text-shadow:none; color:var(--red); } }
.hero__tags{ display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.9rem; list-style:none; padding:0; }
.hero__tags li{ font-size:.85rem; color:var(--muted); border:1px solid var(--line); border-radius:999px; padding:.4rem .85rem; transition:border-color .15s, color .15s; }
.hero__tags li:hover{ border-color:var(--red); color:#fff; }

/* case report visual */
.report{ position:relative; background:linear-gradient(180deg,var(--panel-2),var(--panel)); border:1px solid var(--line); border-radius:var(--r); padding:1.5rem; box-shadow:var(--shadow); }
.report::after{ content:""; position:absolute; inset:0; border-radius:var(--r); padding:1px; pointer-events:none;
  background:linear-gradient(180deg, rgba(255,0,0,.45), transparent 40%);
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite:xor; mask-composite:exclude; }
.report__bar{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding-bottom:1rem; border-bottom:1px solid var(--line-soft); }
.report__id{ font-family:var(--disp); font-size:.8rem; letter-spacing:.06em; color:var(--muted); }
.report__id .dot{ display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--red); margin-right:.45rem; vertical-align:middle; box-shadow:0 0 8px 1px var(--red-glow); }
.report__status{ font-size:.72rem; font-weight:600; letter-spacing:.1em; color:var(--red); border:1px solid var(--red-ink); background:var(--red-soft); border-radius:999px; padding:.28rem .7rem; }
.report__rows{ margin:1.1rem 0; display:grid; gap:.6rem; }
.report__rows div{ display:flex; justify-content:space-between; gap:1rem; font-size:.95rem; }
.report__rows dt{ color:var(--faint); }
.report__rows dd{ margin:0; color:#fff; font-family:var(--disp); font-weight:500; text-align:right; }
.report__steps{ list-style:none; margin:1.1rem 0 0; padding:1.1rem 0 0; border-top:1px solid var(--line-soft); display:grid; gap:.75rem; }
.report__steps li{ display:flex; align-items:center; gap:.7rem; font-size:.92rem; color:var(--muted); }
.report__steps .tick{ width:21px; height:21px; flex:0 0 auto; border-radius:50%; background:var(--red-soft); border:1px solid var(--red-ink); display:grid; place-items:center; }
.report__steps .tick svg{ width:12px; height:12px; stroke:var(--red); }
.report__steps li.done{ color:#e7e7ea; }

/* editorial list */
.rows{ display:grid; }
.row{ display:grid; gap:.4rem 1.5rem; padding:1.7rem 1rem; margin-inline:-1rem; border-top:1px solid var(--line-soft); border-radius:12px; align-items:start; transition:background .18s, border-color .18s; }
.row:last-child{ border-bottom:1px solid var(--line-soft); }
.row:hover{ background:linear-gradient(90deg, var(--red-soft), transparent 60%); }
@media (min-width:760px){ .row{ grid-template-columns:auto 1fr auto; align-items:center; } }
.row__no{ font-family:var(--disp); font-size:1.05rem; color:var(--red); }
.row__body h3{ margin:0 0 .25rem; }
.row__body p{ margin:0; color:var(--muted); }
.row__go{ color:var(--muted); display:inline-flex; align-items:center; gap:.4rem; font-weight:500; transition:color .15s, gap .15s; }
.row:hover .row__go{ color:#fff; gap:.75rem; }
.row__go svg{ width:18px; height:18px; }

/* service blocks */
.service{ padding:clamp(1.6rem,3vw,2.3rem); border:1px solid var(--line-soft); border-radius:var(--r); background:var(--panel); transition:border-color .18s, transform .15s; }
.service:hover{ border-color:var(--line); }
.service + .service{ margin-top:1.25rem; }
.service h2{ font-size:clamp(1.4rem,3vw,1.95rem); margin-bottom:.6rem; }
.service__answer{ border-left:2px solid var(--red); padding-left:1rem; color:#e7e7ea; margin:.4rem 0 1.1rem; }
.service ul{ margin:0; padding-left:1.1rem; color:var(--muted); }
.service li{ margin-bottom:.45rem; }
.service li::marker{ color:var(--red); }

/* steps */
.steps{ display:grid; gap:1px; background:var(--line-soft); border:1px solid var(--line-soft); border-radius:var(--r); overflow:hidden; }
@media (min-width:760px){ .steps{ grid-template-columns:repeat(4,1fr); } }
.step{ background:var(--bg); padding:1.7rem 1.4rem; transition:background .2s; }
.step:hover{ background:var(--panel); }
.step__no{ font-family:var(--disp); font-size:2.2rem; color:var(--red); line-height:1; margin-bottom:.7rem; }
.step h3{ font-size:1.1rem; margin-bottom:.35rem; }
.step p{ margin:0; color:var(--muted); font-size:.95rem; }

/* principles */
.principles{ display:grid; gap:1.6rem; }
@media (min-width:760px){ .principles{ grid-template-columns:repeat(3,1fr); } }
.principle{ border-top:1px solid var(--red); padding-top:1.1rem; }
.principle h3{ font-size:1.15rem; margin-bottom:.4rem; }
.principle p{ margin:0; color:var(--muted); }

/* FAQ */
.faq-grid{ display:grid; gap:clamp(1.5rem,4vw,3rem); }
@media (min-width:900px){ .faq-grid{ grid-template-columns:.7fr 1.3fr; } }
.faq{ display:grid; gap:.6rem; }
.faq details{ border:1px solid var(--line-soft); border-radius:var(--r-sm); background:var(--panel); padding:0 1.2rem; transition:border-color .18s, background .18s; }
.faq details:hover{ border-color:var(--line); }
.faq details[open]{ border-color:var(--line); background:var(--panel-2); }
.faq summary{ cursor:pointer; list-style:none; font-family:var(--disp); font-weight:500; font-size:1.05rem; padding:1.05rem 0; display:flex; justify-content:space-between; gap:1rem; align-items:center; min-height:48px; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:"+"; color:var(--red); font-size:1.5rem; line-height:1; transition:transform .2s; }
.faq details[open] summary::after{ content:"\2013"; }
.faq details>p{ margin:0; padding:0 0 1.1rem; color:var(--muted); }

/* CTA */
.cta{ position:relative; border:1px solid var(--line); border-radius:var(--r); padding:clamp(2.2rem,5vw,3.8rem); text-align:center; overflow:hidden;
  background:radial-gradient(130% 150% at 50% 0%, rgba(255,0,0,.14), transparent 58%), var(--panel); }
.cta h2{ margin-bottom:.5rem; }
.cta p{ color:var(--muted); max-width:54ch; margin:0 auto 1.7rem; }
.cta .btn-row{ justify-content:center; }

/* blog */
.post-grid{ display:grid; gap:clamp(1rem,2.5vw,1.5rem); grid-template-columns:1fr; }
@media (min-width:680px){ .post-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .post-grid{ grid-template-columns:repeat(3,1fr); } }
.post-card{ display:flex; flex-direction:column; gap:.6rem; padding:1.6rem; border:1px solid var(--line-soft); border-radius:var(--r); background:var(--panel); transition:border-color .18s var(--ease), transform .18s var(--ease), box-shadow .25s; }
.post-card:hover{ border-color:var(--line); transform:translateY(-4px); box-shadow:var(--shadow); }
.post-card__meta{ font-size:.82rem; color:var(--faint); font-family:var(--disp); letter-spacing:.03em; }
.post-card h3{ margin:0; }
.post-card h3 a{ color:#fff; }
.post-card p{ margin:0; color:var(--muted); font-size:.96rem; }
.post-card__more{ margin-top:auto; color:var(--red); font-weight:600; font-size:.92rem; }

/* article */
.article{ max-width:72ch; margin-inline:auto; }
.article h2{ margin-top:2.2rem; font-size:clamp(1.4rem,3vw,1.95rem); }
.article ul,.article ol{ padding-left:1.2rem; color:var(--muted); }
.article li{ margin-bottom:.5rem; }
.article li::marker{ color:var(--red); }
.article a:not(.btn){ color:var(--red); text-decoration:underline; text-underline-offset:3px; }
.article a:not(.btn):hover{ color:#fff; }
.article table{ width:100%; border-collapse:collapse; margin:1rem 0; }
.article th,.article td{ text-align:left; padding:.7rem; border-bottom:1px solid var(--line-soft); }
.article th{ font-family:var(--disp); color:#fff; }
.answer{ border-left:2px solid var(--red); padding:.2rem 0 .2rem 1.1rem; color:#e9e9ec; font-size:1.08rem; margin:1.2rem 0 1.6rem; }
.crumbs{ font-size:.85rem; color:var(--faint); margin-bottom:1.2rem; font-family:var(--disp); }
.crumbs a{ color:var(--muted); }
.crumbs a:hover{ color:#fff; }
.meta{ color:var(--faint); font-family:var(--disp); font-size:.85rem; letter-spacing:.03em; margin-bottom:.6rem; }

/* note */
.note{ border:1px solid var(--line); border-left:3px solid var(--red); border-radius:var(--r-sm); padding:1.1rem 1.3rem; color:#e7e7ea; background:var(--panel); }
.note strong{ color:#fff; }

/* ============ CONTACT (redesigned) ============ */
.contact-layout{ display:grid; gap:1.25rem; }
@media (min-width:920px){ .contact-layout{ grid-template-columns:1.12fr .88fr; gap:1.75rem; align-items:start; } }

.ch{ display:flex; align-items:center; gap:1.1rem; padding:1.5rem 1.6rem; border:1px solid var(--line-soft); border-radius:var(--r);
  background:linear-gradient(180deg,var(--panel-2),var(--panel)); transition:border-color .2s, transform .15s, box-shadow .25s; }
.ch + .ch{ margin-top:1.1rem; }
.ch:hover{ border-color:var(--red); transform:translateY(-2px); box-shadow:0 22px 50px -28px var(--red-glow); }
.ch__glyph{ width:56px; height:56px; flex:0 0 auto; border:1px solid var(--line); border-radius:15px; display:grid; place-items:center; background:var(--bg); }
.ch__glyph svg{ width:27px; height:27px; stroke:var(--red); fill:none; }
.ch__body{ flex:1; min-width:0; }
.ch__label{ font-family:var(--disp); font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color:var(--faint); margin-bottom:.2rem; }
.ch__id{ font-family:var(--disp); font-size:clamp(1.1rem,2.4vw,1.35rem); color:#fff; word-break:break-word; line-height:1.15; }
.ch__actions{ display:flex; flex-wrap:wrap; gap:.6rem; margin-top:.85rem; }

.copy{ display:inline-flex; align-items:center; gap:.4rem; min-height:42px; padding:.5rem .95rem; background:transparent; border:1px solid var(--line); color:var(--muted); border-radius:999px; font-family:var(--sans); font-size:.9rem; font-weight:500; cursor:pointer; transition:border-color .15s, color .15s; }
.copy:hover{ border-color:var(--red); color:#fff; }
.copy.copied{ color:var(--red); border-color:var(--red); }
.copy svg{ width:15px; height:15px; }

.side-panel{ border:1px solid var(--line-soft); border-radius:var(--r); padding:1.6rem; background:var(--panel); }
.side-panel + .side-panel{ margin-top:1.25rem; }
.side-panel h2{ font-family:var(--disp); font-size:1.05rem; margin:0 0 1rem; letter-spacing:0; }
.checklist{ list-style:none; margin:0; padding:0; display:grid; gap:.75rem; }
.checklist li{ display:flex; gap:.7rem; align-items:flex-start; color:var(--muted); font-size:.96rem; }
.checklist .tick{ width:20px; height:20px; flex:0 0 auto; margin-top:.15rem; border-radius:50%; background:var(--red-soft); border:1px solid var(--red-ink); display:grid; place-items:center; }
.checklist .tick svg{ width:11px; height:11px; stroke:var(--red); fill:none; }
.ministeps{ list-style:none; margin:0; padding:0; counter-reset:s; display:grid; gap:.85rem; }
.ministeps li{ display:flex; gap:.8rem; align-items:flex-start; color:var(--muted); font-size:.96rem; }
.ministeps li::before{ counter-increment:s; content:counter(s); flex:0 0 auto; width:24px; height:24px; border-radius:50%; background:var(--bg); border:1px solid var(--line); color:var(--red); font-family:var(--disp); font-size:.8rem; font-weight:600; display:grid; place-items:center; }
.reassure{ margin-top:1.25rem; color:var(--faint); font-size:.88rem; }

/* footer */
.footer{ border-top:1px solid var(--line-soft); padding-block:clamp(2.5rem,6vw,4rem) 2rem; margin-top:2rem; background:var(--bg-2); }
.footer__grid{ display:grid; gap:2rem; grid-template-columns:1fr; }
@media (min-width:760px){ .footer__grid{ grid-template-columns:2fr 1fr 1.4fr; } }
.footer h4{ font-family:var(--disp); font-size:.8rem; text-transform:uppercase; letter-spacing:.12em; color:var(--faint); margin:0 0 1rem; font-weight:500; }
.footer__links{ list-style:none; margin:0; padding:0; display:grid; gap:.6rem; }
.footer__links a{ color:var(--muted); transition:color .15s; }
.footer__links a:hover{ color:#fff; }
.footer__note{ color:var(--muted); font-size:.9rem; max-width:42ch; margin:1rem 0 0; }
.footer__bottom{ border-top:1px solid var(--line-soft); margin-top:2.5rem; padding-top:1.5rem; display:flex; flex-wrap:wrap; gap:.5rem 1.5rem; justify-content:space-between; color:var(--faint); font-size:.85rem; }
.footer__bottom a{ color:var(--muted); }
.footer__bottom a:hover{ color:#fff; }

/* ============ Branded contact buttons (Telegram / WhatsApp) ============ */
.btn--tg{ background:#229ED9; color:#fff; box-shadow:0 10px 24px -14px rgba(34,158,217,.55); }
.btn--tg:hover{ background:#1d8cc0; }
.btn--wa{ background:#25D366; color:#062b14; box-shadow:0 10px 24px -14px rgba(37,211,102,.5); }
.btn--wa:hover{ background:#20bd5a; }

/* ============ Inline CTA (used inside blog articles) ============ */
.inline-cta{ margin:1.9rem 0 2.3rem; padding:clamp(1.4rem,4vw,1.9rem) 1.5rem; text-align:center; border:1px solid var(--line); border-radius:var(--r);
  background:radial-gradient(130% 175% at 50% 0%, rgba(255,0,0,.13), transparent 60%), var(--panel-2); }
.inline-cta h3{ margin:0 0 .45rem; font-size:clamp(1.25rem,3vw,1.5rem); }
.inline-cta p{ margin:0 auto 1.25rem; color:var(--muted); max-width:48ch; }
.inline-cta__btns{ display:flex; flex-wrap:wrap; gap:.75rem; justify-content:center; }

/* ============ Contact hero — big, centered, channels first ============ */
.contact-hero{ text-align:center; padding-top:clamp(2.4rem,6vw,4.5rem); }
.contact-hero__head{ max-width:60ch; margin:0 auto; }
.contact-hero .seclabel{ justify-content:center; }
.contact-hero h1{ font-size:clamp(2.4rem,6vw,3.7rem); margin-bottom:.4em; }
.contact-hero .lead{ margin:0 auto; }
.channels{ display:grid; gap:1.1rem; max-width:900px; margin:clamp(2rem,4vw,2.8rem) auto 0; }
@media (min-width:720px){ .channels{ grid-template-columns:1fr 1fr; } }
.ch--big{ flex-direction:column; align-items:center; text-align:center; gap:.4rem; padding:clamp(1.9rem,4vw,2.5rem) 1.5rem; }
.ch--big .ch__glyph{ width:66px; height:66px; margin-bottom:.55rem; }
.ch--big .ch__glyph svg{ width:31px; height:31px; }
.ch--big .ch__body{ width:100%; }
.ch--big .ch__actions{ justify-content:center; margin-top:1.25rem; }
.contact-extra{ display:grid; gap:1.25rem; max-width:900px; margin:0 auto; }
@media (min-width:760px){ .contact-extra{ grid-template-columns:1fr 1fr; align-items:start; } }

/* ============ Mobile refinements ============ */
@media (max-width:560px){
  .section{ padding-block:clamp(2.6rem,9vw,4rem); }
  .wrap{ padding-inline:1.05rem; }
  .hero{ padding-block:2.4rem; }
  .hero h1{ line-height:1.08; }
  .btn{ min-height:48px; }
  .btn-row{ width:100%; }
  /* Long-label contact buttons ("Message on Telegram/WhatsApp") stack full-width on
     phones — at 2-up widths the label wrapped to 3 lines and the 999px pill rendered
     as an ellipse. */
  .btn-row .btn{ flex:1 1 100%; white-space:nowrap; }
  .inline-cta__btns .btn{ flex:1 1 140px; }
  .ch{ padding:1.35rem; }
  .ch--big .ch__actions{ width:100%; }
  .ch--big .ch__actions .btn{ flex:1 1 auto; }
  .report{ padding:1.2rem; }
  .report__rows div{ font-size:.9rem; }
  .step{ padding:1.45rem 1.2rem; }
  .service{ padding:1.4rem; }
  .faq summary{ font-size:1rem; }
}

/* ============ Mobile hardening (global — every page via this shared sheet) ============ */
/* Long unbreakable strings (URLs, @handles) must never force horizontal scrolling.
   Exclude .btn — buttons must never break mid-word (e.g. "WhatsApp" → "WhatsA/pp"). */
body{ overflow-wrap:break-word; }
.article a:not(.btn),.footer__links a,.ch__id,.crumbs{ overflow-wrap:anywhere; }
.btn{ overflow-wrap:normal; word-break:keep-all; }

/* Wide article tables scroll instead of overflowing the viewport on phones. */
@media (max-width:600px){
  .article table{ display:block; width:100%; overflow-x:auto; -webkit-overflow-scrolling:touch; white-space:nowrap; }
}

/* Respect notch / rounded-corner safe areas (iPhone, modern Android). */
@supports (padding:max(0px)){
  .wrap{
    padding-left:max(clamp(1.1rem,4vw,2.2rem), env(safe-area-inset-left));
    padding-right:max(clamp(1.1rem,4vw,2.2rem), env(safe-area-inset-right));
  }
}

/* Very small phones (≤380px) — tighten spacing, prevent oversized headings. */
@media (max-width:380px){
  body{ font-size:1rem; }
  .wrap{ padding-inline:.9rem; }
  .btn{ padding-inline:1.1rem; min-height:46px; }
  .btn-row .btn{ flex:1 1 100%; }
  .brand{ font-size:1.05rem; }
  h1{ font-size:clamp(1.75rem,8.5vw,2.15rem); }
  .hero__tags li{ font-size:.8rem; }
}

/* ============ TikTok theme extras (cyan/pink dual-tone) ============ */
/* Second, cyan glow on the hero — opposite corner to the pink one (::before). */
.hero::after{ content:""; position:absolute; bottom:-30%; left:-10%; width:48%; height:130%; z-index:-1; pointer-events:none;
  background:radial-gradient(closest-side, var(--cyan-glow), transparent 70%); filter:blur(10px); opacity:.5; }

/* Gradient text helper (cyan -> pink) for a headline word. */
.grad-text{ background:linear-gradient(92deg, var(--cyan), var(--red)); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }

/* Gradient pill button (cyan -> pink) — optional bold CTA. */
.btn--grad{ background:linear-gradient(92deg, var(--cyan-2), var(--red)); color:#fff; box-shadow:0 12px 30px -14px var(--red-glow); }
.btn--grad:hover{ filter:brightness(1.07); box-shadow:0 18px 40px -14px var(--red-glow); }

/* Extra-large buttons for the hero contact row. */
.btn--lg{ min-height:60px; padding:1rem 1.9rem; font-size:1.1rem; }
@media (max-width:560px){ .btn--lg{ min-height:54px; font-size:1.02rem; } }

/* Cyan accent on a few editorial marks for variety. */
.seclabel::before{ background:linear-gradient(90deg, var(--cyan), var(--red)); }
.brand b{ color:var(--red); }

/* Feature/solution cards used on the landing + solutions pages. */
.feature-grid{ display:grid; gap:1.1rem; grid-template-columns:1fr; }
@media (min-width:680px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (min-width:1000px){ .feature-grid{ grid-template-columns:repeat(3,1fr); } }
.feature{ padding:1.5rem 1.5rem 1.6rem; border:1px solid var(--line-soft); border-radius:var(--r); background:var(--panel); transition:border-color .18s, transform .18s, box-shadow .25s; }
.feature:hover{ border-color:var(--line); transform:translateY(-3px); box-shadow:var(--shadow); }
.feature__ic{ width:46px; height:46px; border-radius:12px; display:grid; place-items:center; background:var(--red-soft); border:1px solid var(--red-ink); margin-bottom:1rem; }
.feature__ic svg{ width:23px; height:23px; stroke:var(--red); fill:none; }
.feature:nth-child(3n-1) .feature__ic{ background:var(--cyan-soft); border-color:var(--cyan-ink); }
.feature:nth-child(3n-1) .feature__ic svg{ stroke:var(--cyan); }
.feature h3{ margin:0 0 .4rem; }
.feature p{ margin:0; color:var(--muted); font-size:.97rem; }

/* =====================================================================
   Homepage redesign layer — richer & more vibrant, still GPU-light.
   ===================================================================== */

/* Entrance animation — PURE CSS (no JS dependency, so content can never stay hidden).
   Plays once on load; `both` keeps the final visible state. Off for reduced-motion,
   where elements simply render in their default (fully visible) state. */
@keyframes reveal-in{ from{ opacity:0; transform:translateY(18px); } to{ opacity:1; transform:none; } }
@media (prefers-reduced-motion: no-preference){
  .reveal{ animation:reveal-in .7s var(--ease) both; }
  .reveal--d1{ animation-delay:.09s; }
  .reveal--d2{ animation-delay:.18s; }
  .reveal--d3{ animation-delay:.27s; }
}

/* Subtle drifting orbs / hero card. */
@keyframes floaty{ from{ transform:translate3d(0,0,0); } to{ transform:translate3d(0,-20px,0); } }

/* Richer hero backdrop: layered cyan/pink mesh + drifting glow orbs. */
.hero{ background:
  radial-gradient(46% 60% at 88% -6%, rgba(255,0,0,.20), transparent 68%),
  radial-gradient(42% 52% at 5% 38%, rgba(255,82,82,.13), transparent 72%); }
.hero::before{ animation:floaty 15s var(--ease) infinite alternate; }
.hero::after{ opacity:.6; animation:floaty 19s var(--ease) infinite alternate-reverse; }
@media (min-width:980px){ .hero .report{ animation:floaty 13s var(--ease) infinite alternate; } }
@media (prefers-reduced-motion: reduce){ .hero::before,.hero::after,.hero .report{ animation:none; } }

/* Gradient-text words get a soft glow. */
.grad-text{ filter:drop-shadow(0 2px 16px rgba(255,0,0,.16)); }
.hero h1{ letter-spacing:-.028em; }

/* Trust/stat band under the hero. */
.stat-band{ border-block:1px solid var(--line-soft); background:linear-gradient(180deg, var(--bg-2), transparent); }
.stat-band .wrap{ display:grid; gap:1.1rem; grid-template-columns:1fr; padding-block:1.5rem; }
@media (min-width:760px){ .stat-band .wrap{ grid-template-columns:repeat(3,1fr); } }
.stat{ display:flex; align-items:center; gap:.85rem; }
.stat__ic{ width:44px; height:44px; flex:0 0 auto; border-radius:12px; display:grid; place-items:center; background:var(--cyan-soft); border:1px solid var(--cyan-ink); }
.stat__ic svg{ width:21px; height:21px; stroke:var(--cyan); fill:none; }
.stat:nth-child(2) .stat__ic{ background:var(--red-soft); border-color:var(--red-ink); }
.stat:nth-child(2) .stat__ic svg{ stroke:var(--red); }
.stat b{ display:block; font-family:var(--disp); font-weight:600; font-size:1.04rem; color:#fff; line-height:1.2; }
.stat span{ font-size:.88rem; color:var(--muted); }

/* Gradient ring on feature cards (fades in on hover). */
.feature{ position:relative; overflow:hidden; }
.feature::after{ content:""; position:absolute; inset:0; border-radius:inherit; padding:1px; pointer-events:none; opacity:0; transition:opacity .28s var(--ease);
  background:linear-gradient(135deg, var(--cyan), var(--red));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite:xor; mask-composite:exclude; }
.feature:hover::after{ opacity:.7; }

/* Contact buttons: a touch more glow. */
.btn--tg.btn--lg{ box-shadow:0 16px 38px -16px rgba(34,158,217,.6); }
.btn--wa.btn--lg{ box-shadow:0 16px 38px -16px rgba(37,211,102,.55); }


/* ============ YouTube — strike-ledger hero widget ============ */
.strikes{ position:relative; background:linear-gradient(180deg,var(--panel-2),var(--panel)); border:1px solid var(--line); border-radius:var(--r); padding:1.5rem; box-shadow:var(--shadow); }
.strikes__head{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding-bottom:1rem; border-bottom:1px solid var(--line-soft); }
.strikes__title{ font-family:var(--disp); color:#fff; font-size:1.02rem; }
.strikes__title span{ display:block; font-size:.76rem; color:var(--faint); font-family:var(--sans); }
.strikes__badge{ font-size:.72rem; font-weight:600; letter-spacing:.08em; color:var(--red); border:1px solid var(--red-ink); background:var(--red-soft); border-radius:999px; padding:.28rem .72rem; white-space:nowrap; }
.strikelist{ list-style:none; margin:1.1rem 0 0; padding:0; display:grid; gap:.55rem; }
.strikelist li{ display:flex; align-items:center; gap:.8rem; padding:.7rem .85rem; border:1px solid var(--line-soft); border-radius:var(--r-sm); background:var(--bg); font-size:.92rem; color:var(--muted); }
.strikelist .n{ width:27px; height:27px; flex:0 0 auto; border-radius:8px; display:grid; place-items:center; font-family:var(--disp); font-weight:600; font-size:.84rem; background:var(--red-soft); border:1px solid var(--red-ink); color:var(--red); }
.strikelist li b{ color:#e7e7ea; font-weight:500; }
.strikelist li.is-final{ border-color:var(--red-ink); background:var(--red-soft); color:#fff; font-family:var(--disp); }
.strikelist li.is-final .n{ background:var(--red); color:#fff; border-color:var(--red); }
.strikes__foot{ margin-top:1rem; padding-top:1rem; border-top:1px solid var(--line-soft); font-size:.84rem; color:var(--faint); }
.strikes__foot b{ color:#e7e7ea; font-weight:500; }

/* compact hero — keep contact buttons above the fold (desktop + mobile) */
.hero{ padding-top:clamp(1.3rem,3vw,2.1rem)!important; }
.hero h1{ font-size:clamp(1.95rem,4.4vw,3.05rem)!important; }
