/* ============================================================
   ANOLOGE — TikTok Shop Growth funnel
   Design tokens
       ============================================
======================================= */
:root{
  --bg:            #121317;
  --bg-alt:        #17181d;
  --surface:       #1c1d23;
  --surface-2:     #24252c;
  --line:          #33343d;
  --text:          #f2f2f5;
  --text-muted:    #b7b7c2;
  --cyan:          #2dd9d1;
  --pink:          #f6416c;
  --cyan-dim:      #1c3634;
  --pink-dim:      #3a1f2b;

  --font-display:  'Sora', 'Space Grotesk', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'IBM Plex Mono', monospace;

  --container:     1120px;
  --radius-s:      10px;
  --radius-m:      16px;
  --radius-l:      24px;

  --gap-section:   clamp(48px, 6vw, 96px);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

h1,h2,h3{
  font-family:var(--font-display);
  font-weight:700;
  letter-spacing:-0.02em;
  line-height:1.08;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--cyan);
}
.eyebrow::before{
  content:'';
  width:6px; height:6px;
  border-radius:50%;
  background:var(--pink);
  box-shadow:0 0 8px var(--pink);
}

section{
  position:relative;
  padding:var(--gap-section) 0;
  scroll-margin-top:24px;
}

.section-head{
  max-width:640px;
  margin-bottom:48px;
}
.section-head h2{
  font-size:clamp(28px,4vw,42px);
  margin-top:14px;
}
.section-head p{
  margin-top:14px;
  color:var(--text-muted);
  font-size:16px;
}

/* ============ divider glow between sections ============ */
.divider{
  height:1px;
  width:100%;
  background:linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

/* ============================================================
   Top bar
   ============================================================ */
.topbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px 24px;
  background:rgba(18,19,23,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav-links{
  display:none;
  align-items:center;
  gap:28px;
  list-style:none;
  margin:0 auto;
}
.nav-links a{
  font-size:14.5px;
  font-weight:500;
  color:var(--text-muted);
  transition:color .15s ease;
}
.nav-links a:hover{ color:var(--text); }
@media (min-width:900px){
  .nav-links{ display:flex; }
}

.topbar-right{
  display:flex;
  align-items:center;
  gap:14px;
}

.hamburger{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:36px; height:36px;
  padding:8px;
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:8px;
  cursor:pointer;
}
.hamburger span{
  display:block;
  height:2px;
  width:100%;
  background:var(--text);
  border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}
@media (min-width:900px){
  .hamburger{ display:none; }
}
.hamburger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed;
  top:0; left:0; right:0; bottom:0;
  z-index:99;
  background:var(--bg);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
  transform:translateY(-100%);
  transition:transform .3s ease;
}
.mobile-menu.open{ transform:translateY(0); }
.mobile-menu a{
  font-family:var(--font-display);
  font-size:24px;
  font-weight:700;
  color:var(--text);
}
.mobile-menu .btn{ margin-top:12px; }
@media (min-width:900px){
  .mobile-menu{ display:none; }
}
.logo{
  display:flex;
  align-items:center;
  gap:9px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:17px;
  letter-spacing:-0.01em;
}
.logo img{ height:22px; width:auto; }
.logo span{ color:var(--cyan); }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  padding:13px 24px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:scale(0.97); }
.btn-primary{
  background:linear-gradient(95deg, var(--cyan), var(--pink));
  color:#0a0a0d;
  box-shadow:0 8px 24px -8px rgba(254,44,85,0.5);
}
.btn-primary:hover{ box-shadow:0 10px 28px -6px rgba(37,244,238,0.45); }
.btn-ghost{
  background:var(--surface-2);
  color:var(--text);
  border:1px solid var(--line);
  font-size:14px;
  padding:11px 20px;
}
.btn-ghost:hover{ border-color:var(--cyan); }
.btn-small{ padding:10px 18px; font-size:13px; }

.topbar .btn{ display:none; }
@media (min-width:720px){
  .topbar .btn{ display:inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero{
  padding-top:calc(var(--gap-section) + 56px);
  overflow:hidden;
}
.hero-glow{
  position:absolute;
  top:-200px; left:50%;
  width:900px; height:700px;
  transform:translateX(-50%);
  background:radial-gradient(circle at 30% 30%, rgba(37,244,238,0.16), transparent 60%),
             radial-gradient(circle at 70% 60%, rgba(254,44,85,0.16), transparent 60%);
  filter:blur(20px);
  pointer-events:none;
  z-index:0;
}
.hero-inner{
  position:relative;
  z-index:1;
  text-align:center;
  max-width:840px;
  margin:0 auto;
}
.hero h1{
  font-size:clamp(34px, 6.2vw, 68px);
  margin-top:20px;
}
.hero h1 .num{
  background:linear-gradient(95deg, var(--cyan), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero-sub{
  margin-top:22px;
  font-size:clamp(16px,2vw,19px);
  color:var(--text-muted);
  max-width:600px;
  margin-left:auto; margin-right:auto;
}
.hero-cta{
  margin-top:36px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.hero-cta .btn-primary{
  font-size:17px;
  padding:17px 32px;
}
.hero-secondary-cta{ font-size:14px; padding:10px 20px; opacity:0.8; }
.hero-secondary-cta:hover{ opacity:1; }
.trust-strip{
  color:var(--text-muted);
  font-size:13px;
  font-family:var(--font-mono);
  letter-spacing:0.02em;
}
.trust-strip strong{ color:var(--text); }

.hero-visual{
  position:relative;
  z-index:1;
  margin-top:64px;
  border-radius:var(--radius-l);
  border:1px solid var(--line);
  overflow:hidden;
  box-shadow:0 40px 80px -40px rgba(0,0,0,0.7);
}
.hero-visual img{ width:100%; }

/* ============================================================
   Stats strip
   ============================================================ */
.stats{ padding:56px 0; }
.stats-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
}
@media (min-width:720px){
  .stats-grid{ grid-template-columns:repeat(4,1fr); }
}
.stat-card{
  background:var(--surface);
  padding:28px 20px;
  text-align:center;
}
.stat-num{
  font-family:var(--font-mono);
  font-weight:600;
  font-size:clamp(24px,3.4vw,34px);
  background:linear-gradient(95deg, var(--cyan), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.stat-label{
  margin-top:8px;
  font-size:13px;
  color:var(--text-muted);
}

/* ============================================================
   Pain point
   ============================================================ */
.pain-section{ padding:calc(var(--gap-section) * 0.75) 0; }
.pain-main{
  max-width:760px;
  margin:0 auto;
  text-align:center;
  font-family:var(--font-display);
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1.35;
  font-size:clamp(22px,3.2vw,32px);
  color:var(--text);
}
.pain-highlight{
  background:linear-gradient(95deg, var(--cyan), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.pain-followup{
  max-width:560px;
  margin:20px auto 0;
  text-align:center;
  font-size:16.5px;
  color:var(--text-muted);
}
.pain-cta{
  margin-top:32px;
  display:flex;
  justify-content:center;
}

/* ============================================================
   Alternating section background (visual rhythm)
   ============================================================ */
.section-alt{ background:var(--bg-alt); }

/* ============================================================
   Why us
   ============================================================ */
.why-grid{
  display:grid;
  gap:20px;
  grid-template-columns:1fr;
}
@media (min-width:720px){
  .why-grid{ grid-template-columns:repeat(2,1fr); }
}
.why-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:28px;
  transition:border-color .2s ease, transform .2s ease;
}
.why-card:hover{ border-color:var(--cyan); transform:translateY(-3px); }
.why-icon{
  width:40px; height:40px;
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--cyan-dim), var(--pink-dim));
  margin-bottom:16px;
}
.why-icon svg{ width:20px; height:20px; stroke:var(--cyan); }
.why-card h3{ font-size:18px; margin-bottom:8px; }
.why-card p{ color:var(--text-muted); font-size:14.5px; }

/* ============================================================
   Reviews strip (native cards, always matched height)
   ============================================================ */
.reviews-grid{
  display:grid;
  gap:20px;
  grid-template-columns:1fr;
  align-items:stretch;
}
@media (min-width:720px){
  .reviews-grid{ grid-template-columns:repeat(2,1fr); }
}
.review-card{
  border-radius:var(--radius-m);
  border:1px solid var(--line);
  background:var(--surface);
  padding:26px;
  display:flex;
  flex-direction:column;
}
.review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
}
.review-title{ font-size:15px; font-weight:600; }
.review-stars{
  display:flex;
  align-items:center;
  gap:6px;
  color:#f5a623;
  font-size:13px;
  font-family:var(--font-mono);
}
.review-stars svg{ width:13px; height:13px; fill:#f5a623; }
.review-date{
  font-size:12px;
  color:var(--text-muted);
  margin-bottom:14px;
  font-family:var(--font-mono);
}
.review-quote{
  font-size:15.5px;
  font-style:italic;
  color:var(--text);
  margin-bottom:18px;
  flex:1;
}
.review-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.review-tags span{
  font-size:11.5px;
  padding:5px 11px;
  border-radius:999px;
  background:var(--surface-2);
  color:var(--text-muted);
  border:1px solid var(--line);
}

/* ============================================================
   Portfolio
   ============================================================ */
.portfolio-grid{
  display:grid;
  gap:24px;
  grid-template-columns:1fr;
}
@media (min-width:860px){
  .portfolio-grid{ grid-template-columns:repeat(3,1fr); }
}
.case-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.case-thumb{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.case-thumb img{ width:100%; height:100%; object-fit:cover; }
.case-thumb img.case-badge{
  position:absolute;
  top:12px; left:12px;
  width:26px !important;
  height:26px !important;
  object-fit:contain;
  opacity:0.85;
  filter:drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.case-body{ padding:24px; display:flex; flex-direction:column; flex:1; }
.case-body h3{ font-size:17px; margin-bottom:10px; }
.case-body ul{ margin:4px 0 18px; }
.case-body li{
  font-size:13.5px;
  color:var(--text-muted);
  padding-left:16px;
  position:relative;
  margin-bottom:6px;
}
.case-body li::before{
  content:'';
  position:absolute; left:0; top:8px;
  width:6px; height:6px; border-radius:50%;
  background:var(--cyan);
}
.case-body p{
  font-size:13.5px;
  color:var(--text-muted);
  margin-bottom:18px;
  flex:1;
}
.case-result{
  margin-top:auto;
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--cyan);
  padding-top:14px;
  border-top:1px solid var(--line);
}

/* ============================================================
   Screenshot proof grid (nested inside Portfolio section)
   ============================================================ */
.sub-heading{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--text-muted);
  margin:56px 0 20px;
  display:flex;
  align-items:center;
  gap:10px;
}
.sub-heading::after{
  content:'';
  flex:1;
  height:1px;
  background:var(--line);
}
.proof-grid{
  display:grid;
  gap:20px;
  grid-template-columns:1fr;
}
@media (min-width:720px){
  .proof-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (min-width:1020px){
  .proof-grid{ grid-template-columns:repeat(3,1fr); }
}
.proof-card{
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
  background:#fff;
  display:flex;
  flex-direction:column;
}
.proof-card .proof-img-wrap{
  aspect-ratio:4/3;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
}
.proof-card img{ width:100%; height:100%; object-fit:contain; display:block; }
.proof-cap{
  padding:14px 16px;
  background:var(--surface);
  border-top:1px solid var(--line);
}
.proof-cap .big{
  font-family:var(--font-mono);
  color:var(--cyan);
  font-weight:600;
  font-size:15px;
}
.proof-cap .small{
  font-size:12.5px;
  color:var(--text-muted);
  margin-top:2px;
}

/* ============================================================
   Form section
   ============================================================ */
.form-section{
  background:var(--surface);
  border-radius:var(--radius-l);
  border:1px solid var(--line);
  padding:clamp(28px,5vw,56px);
}
.form-head{
  max-width:520px;
  margin:0 auto 32px;
  text-align:center;
}
.form-head h2{ font-size:clamp(26px,4vw,36px); margin-top:14px; }
.form-head p{ margin-top:12px; color:var(--text-muted); font-size:15px; }

.native-form{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:640px;
  margin:0 auto;
}
.form-row{
  display:grid;
  gap:20px;
  grid-template-columns:1fr;
}
@media (min-width:600px){
  .form-row{ grid-template-columns:1fr 1fr; }
}
.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.form-group label{
  font-size:14px;
  font-weight:600;
  color:var(--text);
}
.native-form input,
.native-form textarea{
  width:100%;
  padding:13px 16px;
  background:var(--surface-2);
  border:1px solid var(--line);
  border-radius:var(--radius-s);
  color:var(--text);
  font-family:var(--font-body);
  font-size:15px;
  resize:vertical;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.native-form input::placeholder,
.native-form textarea::placeholder{ color:var(--text-muted); }
.native-form input:focus,
.native-form textarea:focus{
  outline:none;
  border-color:var(--cyan);
  box-shadow:0 0 0 3px rgba(45,217,209,0.15);
}

/* ============================================================
   Sticky mobile CTA bar
   ============================================================ */
.sticky-cta{
  position:fixed;
  left:0; right:0; bottom:0;
  z-index:90;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(18,19,23,0.94);
  backdrop-filter:blur(10px);
  border-top:1px solid var(--line);
  transform:translateY(110%);
  transition:transform .3s ease;
}
.sticky-cta.show{ transform:translateY(0); }
.sticky-cta .btn{ width:100%; }
@media (min-width:720px){
  .sticky-cta{ display:none; }
}

/* ============================================================
   Side rail (desktop signature element)
   ============================================================ */
.side-rail{
  position:fixed;
  right:28px;
  top:50%;
  transform:translateY(-50%);
  z-index:80;
  display:none;
  flex-direction:column;
  gap:14px;
}
@media (min-width:1020px){
  .side-rail{ display:flex; }
}
.side-rail button{
  width:9px; height:9px;
  border-radius:50%;
  background:var(--line);
  border:none;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
  padding:0;
}
.side-rail button.active{
  background:linear-gradient(135deg,var(--cyan),var(--pink));
  transform:scale(1.5);
}

/* ============================================================
   WhatsApp floating button
   ============================================================ */
.wa-float{
  position:fixed;
  left:20px; bottom:20px;
  z-index:90;
  width:52px; height:52px;
  border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 20px -6px rgba(0,0,0,0.5);
}
.wa-float svg{ width:26px; height:26px; fill:#fff; }
@media (max-width:719px){
  .wa-float{ bottom:20px; } .wa-float.float-raised{ bottom:84px; }
}

/* ============================================================
   About / Founder
   ============================================================ */
.founder-card{
  display:flex;
  flex-direction:column;
  gap:24px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-l);
  padding:clamp(24px,4vw,40px);
}
@media (min-width:720px){
  .founder-card{ flex-direction:row; align-items:flex-start; }
}
.founder-avatar{
  width:88px; height:88px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--cyan-dim),var(--pink-dim));
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-display);
  font-weight:700;
  font-size:32px;
  color:var(--text);
  flex-shrink:0;
}
.founder-card h3, .founder-card .founder-name{ font-size:20px; margin-bottom:4px; }
.founder-role{
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--cyan);
  margin-bottom:14px;
  display:block;
}
.founder-card p{ color:var(--text-muted); font-size:15px; margin-bottom:10px; }
.founder-card p:last-child{ margin-bottom:0; }

/* ============================================================
   Proof sentence strip
   ============================================================ */
.proof-sentence{
  max-width:720px;
  margin:0 auto 48px;
  text-align:center;
  font-size:16px;
  line-height:1.7;
  color:var(--text-muted);
}
.proof-sentence strong{ color:var(--text); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ max-width:760px; }
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item summary{
  padding:22px 0;
  font-family:var(--font-display);
  font-weight:600;
  font-size:16.5px;
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:'+';
  font-size:22px;
  color:var(--cyan);
  flex-shrink:0;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{
  padding-bottom:22px;
  color:var(--text-muted);
  font-size:15px;
  line-height:1.7;
  max-width:640px;
}

/* ============================================================
   Resources / citations
   ============================================================ */
.resources-grid{
  display:grid;
  gap:20px;
  grid-template-columns:1fr;
}
@media (min-width:720px){
  .resources-grid{ grid-template-columns:repeat(3,1fr); }
}
.resource-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:24px;
}
.resource-card h3{ font-size:16px; margin-bottom:10px; }
.resource-card p{ color:var(--text-muted); font-size:14px; margin-bottom:14px; }
.resource-card a{
  font-family:var(--font-mono);
  font-size:12.5px;
  color:var(--cyan);
}
.citation-note{
  margin-top:32px;
  font-size:13px;
  color:var(--text-muted);
}
.citation-note a{ color:var(--cyan); }

/* ============================================================
   Expanded footer
   ============================================================ */
footer{
  padding:56px 0 120px;
  border-top:1px solid var(--line);
  color:var(--text-muted);
  font-size:13px;
}
footer .footer-inner{
  display:flex;
  flex-direction:column;
  gap:28px;
}
@media (min-width:720px){
  footer .footer-inner{
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-start;
  }
  footer{ padding-bottom:56px; }
}
.footer-brand{ display:flex; align-items:center; gap:8px; font-family:var(--font-display); font-weight:700; color:var(--text); font-size:16px; }
.footer-brand img{ height:18px; }
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.footer-links a{ color:var(--text-muted); }
.footer-links a:hover{ color:var(--text); }
.footer-bottom{
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid var(--line);
  font-size:12.5px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:10px;
}

/* ============================================================
   Legal / simple content pages
   ============================================================ */
.legal-page{
  padding-top:calc(var(--gap-section) + 72px);
  padding-bottom:var(--gap-section);
  max-width:720px;
}
.legal-page h1{ font-size:clamp(28px,4vw,40px); margin-bottom:8px; }
.legal-page .updated{ color:var(--text-muted); font-size:13px; margin-bottom:40px; display:block; }
.legal-page h2{ font-size:20px; margin:36px 0 12px; }
.legal-page p, .legal-page li{ color:var(--text-muted); font-size:15px; line-height:1.75; margin-bottom:14px; }
.legal-page ul{ padding-left:20px; list-style:disc; margin-bottom:14px; }
.legal-page a{ color:var(--cyan); }
.legal-page strong{ color:var(--text); }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.in{ opacity:1; transform:translateY(0); }

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--cyan);
  outline-offset:3px;
}


/* ==========================================================
   Cookie consent banner (GDPR)
   ========================================================== */
.cookie-consent{
     position:fixed;
     left:16px;
     right:16px;
     bottom:16px;
     max-width:480px;
     margin:0 auto;
     background:var(--surface, #1c1d23);
     color:var(--text, #f2f2f5);
     padding:18px 20px;
     border-radius:14px;
     border:1px solid var(--line, #33343d);
     box-shadow:0 12px 32px rgba(0,0,0,.35);
     z-index:9999;
     transform:translateY(150%);
     opacity:0;
     pointer-events:none;
     transition:transform .35s ease, opacity .35s ease;
}
.cookie-consent.show{
     transform:translateY(0);
     opacity:1;
     pointer-events:auto;
}
.cookie-consent p{
     margin:0 0 14px;
     font-size:14px;
     line-height:1.5;
     color:var(--text-muted, #b7b7c2);
}
.cookie-consent a{
     color:var(--cyan, #2dd9d1);
     text-decoration:underline;
}
.cookie-consent-actions{
     display:flex;
     gap:10px;
     justify-content:flex-end;
}
.cookie-consent-actions button{
     border-radius:8px;
     padding:9px 18px;
     font-size:14px;
     font-weight:600;
     cursor:pointer;
     border:1px solid var(--line, #33343d);
}
.btn-cookie-reject{
     background:transparent;
     color:var(--text, #f2f2f5);
}
.btn-cookie-accept{
     background:var(--cyan, #2dd9d1);
     color:#0b0c0f;
     border-color:transparent;
}
@media (max-width:480px){
     .cookie-consent{ left:12px; right:12px; bottom:12px; padding:16px; }
}
