/* ============================================================
   Big Wolf Play — Home (full-bleed / cinematográfico)
   Paleta original mantida. Usado só na home.
   ============================================================ */

:root {
  --bg:     #080d14;
  --bg-2:   #0b111b;
  --bg-3:   #0f1826;
  --card:   #111927;
  --blue:   #2979FF;
  --blue-2: #1565C0;
  --neon:   #4fc3f7;
  --ink:    #ffffff;
  --gray:   #b0bec5;
  --gray-2: #6b7f92;
  --green:  #43c463;
  --line:   rgba(41,121,255,0.16);
  --line-2: rgba(41,121,255,0.42);
  --glow:   0 0 40px rgba(41,121,255,0.25);
  --maxw:   1600px;
  --pad:    clamp(20px, 4vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.display {
  font-family: 'Anton', 'Inter', sans-serif;
  font-weight: 400; text-transform: uppercase;
  letter-spacing: .5px; line-height: .95;
}
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--neon);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--blue); }
:focus-visible { outline: 2px solid var(--neon); outline-offset: 3px; border-radius: 4px; }

/* ---------- NAV (full-bleed) ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  background: linear-gradient(to bottom, rgba(8,13,20,.9), rgba(8,13,20,.5) 70%, transparent);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.solid { background: rgba(8,13,20,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo img { height: 42px; }
.nav-name { font-family: 'Anton', 'Inter', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; font-size: 21px; line-height: 1; color: var(--ink); }
.nav-menu { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-menu a { font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--gray); transition: color .2s; }
.nav-menu a:hover { color: var(--ink); }
.nav-cta { color: var(--ink) !important; border: 1px solid var(--line-2); padding: 9px 18px; border-radius: 6px; transition: background .2s, border-color .2s; }
.nav-cta:hover { background: var(--blue); border-color: var(--blue); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 0 auto; transition: transform .25s, opacity .25s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO (personagem à direita, estilo showcase) ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(70% 90% at 82% 60%, rgba(41,121,255,.22), transparent 60%),
    radial-gradient(50% 60% at 18% 22%, rgba(79,195,247,.10), transparent 60%),
    var(--bg);
}
.hero-art {
  position: absolute; right: 0; bottom: 0; z-index: 0;
  height: 96%; width: auto; max-width: 64%;
  object-fit: contain; object-position: bottom right;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 26%);
          mask: linear-gradient(90deg, transparent 0%, #000 26%);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.5));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }
/* garante contraste do texto sobre qualquer imagem */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(8,13,20,.85) 30%, rgba(8,13,20,.15) 58%, transparent 78%),
    linear-gradient(0deg, var(--bg) 2%, transparent 40%);
}
.hero-line { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; height: 3px; background: linear-gradient(90deg, transparent, var(--blue), var(--neon), var(--blue), transparent); }
.hero-inner { position: relative; z-index: 3; width: 100%; padding: 120px 0 60px; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { font-size: clamp(52px, 9vw, 132px); margin-bottom: 22px; text-shadow: 0 6px 44px rgba(0,0,0,.55); }
.hero h1 span { color: var(--neon); }
.hero-sub { font-size: clamp(16px, 1.6vw, 21px); color: var(--gray); max-width: 600px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; letter-spacing: .3px; padding: 15px 28px; border-radius: 7px; transition: transform .12s, background .2s, border-color .2s, box-shadow .2s; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-2); transform: translateY(-2px); box-shadow: var(--glow); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--ink); }
.btn-ghost:hover { border-color: var(--neon); transform: translateY(-2px); }

.hero-meta { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta b { font-family: 'Anton', sans-serif; font-size: 30px; font-weight: 400; }
.hero-meta span { font-size: 12px; color: var(--gray-2); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- FEATURE BAND (full-bleed, estilo PlayStation) ---------- */
.feature { position: relative; overflow: hidden; }
.feature-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 120% at 12% 20%, var(--f-tint, rgba(67,196,99,.22)), transparent 60%),
    linear-gradient(120deg, var(--bg-3), var(--bg) 70%);
}
.feature-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,7vw,110px) var(--pad);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,80px); align-items: center;
}
.feature-copy h2 { font-size: clamp(34px,5vw,68px); margin: 16px 0 18px; }
.feature-copy p { color: var(--gray); font-size: 17px; max-width: 520px; margin-bottom: 26px; }
.feature-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.chip { font-size: 12px; padding: 6px 14px; border-radius: 20px; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--gray); }
.feature-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* mockup de celular em CSS (ilustrativo) */
.phone-stage { display: flex; justify-content: center; }
.phone {
  width: min(290px, 78vw); aspect-ratio: 9/19; border-radius: 34px;
  background: linear-gradient(160deg, #10202a, #0a1016);
  border: 1px solid rgba(67,196,99,.32);
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 60px rgba(67,196,99,.18);
  padding: 12px; position: relative;
  transform: rotate(-3deg);
  transition: transform .3s;
}
.feature:hover .phone { transform: rotate(-1.5deg) translateY(-6px); }
.phone::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 90px; height: 6px; border-radius: 6px; background: rgba(255,255,255,.12); }
.phone-screen { height: 100%; border-radius: 24px; background: #0c141d; overflow: hidden; display: flex; flex-direction: column; }
.app-head { background: linear-gradient(135deg, #1B5E20, #2E7D32); padding: 26px 16px 14px; }
.app-head .t { font-weight: 800; font-size: 15px; }
.app-head .s { font-size: 11px; color: rgba(255,255,255,.75); }
.app-list { padding: 8px 10px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.app-row { display: flex; align-items: center; gap: 10px; background: #111c26; border: 1px solid rgba(255,255,255,.05); border-radius: 10px; padding: 9px 11px; font-size: 12px; }
.app-row em { margin-left: auto; color: var(--gray-2); font-style: normal; font-size: 11px; }
.chk { width: 16px; height: 16px; border-radius: 5px; border: 1.5px solid var(--gray-2); flex-shrink: 0; }
.chk.on { background: var(--green); border-color: var(--green); position: relative; }
.chk.on::after { content: "✓"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #06210d; font-weight: 900; }
.app-row.done { opacity: .5; text-decoration: line-through; }
.app-fab { align-self: flex-end; margin: 6px 12px 14px; width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #06210d; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; box-shadow: 0 8px 20px rgba(67,196,99,.4); }

/* ---------- SEÇÕES ---------- */
.section { padding: clamp(72px,8vw,120px) 0; }
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: clamp(32px,5vw,60px); margin-top: 14px; }
.section-head p { color: var(--gray); font-size: 17px; max-width: 600px; margin-top: 14px; }
.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- VITRINE (tiles grandes) ---------- */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tile {
  position: relative; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: var(--card); min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.tile.link { cursor: pointer; }
.tile.link:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 28px 70px rgba(0,0,0,.5), var(--glow); }
.tile-cover { position: absolute; inset: 0; z-index: 0; background: radial-gradient(120% 90% at 80% 0%, var(--tile-tint, rgba(41,121,255,.28)), transparent 60%), linear-gradient(180deg, var(--bg-3), var(--bg)); }
.tile-cover::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px); background-size: 4px 4px; opacity: .5; }
.tile-glyph { position: absolute; top: 28px; left: 28px; z-index: 1; width: 64px; height: 64px; border-radius: 16px; background: rgba(8,13,20,.5); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--tile-ico, var(--neon)); backdrop-filter: blur(4px); }
.tile-glyph svg { width: 32px; height: 32px; }
.tile-badge { position: absolute; top: 32px; right: 28px; z-index: 1; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.b-live { background: rgba(67,196,99,.14); color: #7be08f; border: 1px solid rgba(67,196,99,.34); }
.b-dev  { background: rgba(255,152,0,.14); color: #ffb74d; border: 1px solid rgba(255,152,0,.34); }
.b-soon { background: rgba(41,121,255,.14); color: var(--neon); border: 1px solid var(--line); }
.tile-body { position: relative; z-index: 1; padding: 30px; background: linear-gradient(0deg, rgba(8,13,20,.94), rgba(8,13,20,.5) 70%, transparent); }
.tile-kicker { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-2); margin-bottom: 6px; }
.tile-body h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 30px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.tile-body p { font-size: 14px; color: var(--gray); margin-bottom: 16px; max-width: 90%; }
.tile-foot { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tile-more { font-size: 13px; font-weight: 600; color: var(--neon); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mini { border: 1px solid var(--line); border-radius: 16px; padding: 28px; background: var(--card); }
.mini .tile-glyph { position: static; margin-bottom: 18px; width: 56px; height: 56px; }
.mini h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.mini p { font-size: 14px; color: var(--gray); margin-bottom: 14px; }

/* badge Google Play */
.gp { display: inline-flex; align-items: center; gap: 11px; background: #000; border: 1px solid rgba(255,255,255,.28); border-radius: 10px; padding: 10px 18px; transition: border-color .2s, transform .12s, box-shadow .2s; }
.gp:hover { border-color: var(--neon); transform: translateY(-2px); box-shadow: var(--glow); }
.gp svg { width: 26px; height: 26px; }
.gp .t { display: flex; flex-direction: column; line-height: 1.1; }
.gp .t small { font-size: 9px; letter-spacing: .6px; text-transform: uppercase; color: #cfd8e3; }
.gp .t b { font-size: 17px; font-weight: 700; }

/* ---------- ESTÚDIO ---------- */
.studio { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px,5vw,70px); align-items: center; }
.studio-statement { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; font-size: clamp(34px,4.4vw,60px); line-height: 1; margin-top: 16px; }
.studio-statement span { color: var(--neon); }
.studio-body p { color: var(--gray); font-size: 16px; margin-bottom: 18px; }
.studio-body strong { color: var(--ink); }
.signature { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.signature .dot { width: 46px; height: 46px; border-radius: 50%; background: var(--bg-3); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; color: var(--neon); font-weight: 800; }
.signature b { display: block; font-size: 15px; }
.signature span { font-size: 13px; color: var(--gray-2); }

/* ---------- CTA ---------- */
.cta-band { text-align: center; padding: clamp(72px,9vw,120px) 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 130% at 50% 0%, rgba(41,121,255,.2), transparent 60%); }
.cta-band .wrap { position: relative; }
.cta-band h2 { font-size: clamp(32px,5vw,56px); margin-bottom: 16px; }
.cta-band p { color: var(--gray); font-size: 17px; margin-bottom: 30px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 46px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--gray-2); max-width: 340px; }
.footer h4 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; color: var(--ink); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 11px; }
.footer li a { font-size: 14px; color: var(--gray-2); transition: color .2s; }
.footer li a:hover { color: var(--neon); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--gray-2); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsivo ---------- */
@media (max-width: 980px) {
  .feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature-copy { order: 1; } .phone-stage { order: 2; }
  .studio { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .hero-art { height: auto; width: 120%; max-width: none; right: -10%; bottom: 0; opacity: .22; }
  .hero-scrim { background: linear-gradient(0deg, var(--bg) 10%, rgba(8,13,20,.55) 45%, rgba(8,13,20,.3) 100%); }
  .grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Menu mobile (hambúrguer) + páginas internas (Apps/Jogos/Privacidade)
   ============================================================ */

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(8,13,20,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 6px 0 12px;
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav.open .nav-menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 15px 24px; font-size: 15px; }
  .nav-cta { margin: 10px 24px 4px; text-align: center; border-radius: 8px; }
}

/* Subhero (topo curto das páginas internas) */
.subhero {
  position: relative; padding: 140px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(70% 120% at 85% 10%, rgba(41,121,255,.16), transparent 60%),
    var(--bg);
}
.subhero .wrap { position: relative; z-index: 1; }
.subhero h1 { font-size: clamp(38px, 6vw, 76px); margin: 16px 0 14px; }
.subhero p { color: var(--gray); font-size: 18px; max-width: 620px; }

/* Ícone real dentro do tile-glyph / cabeçalhos */
.tile-glyph img, .app-ico img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.tile-glyph.has-img { background: transparent; border: 0; padding: 0; }
.app-ico.has-img { background: transparent; border: 0; }

/* Cabeçalho de app/jogo (páginas de detalhe e política) */
.app-head-row { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.app-ico { width: 88px; height: 88px; border-radius: 20px; overflow: hidden; flex-shrink: 0; background: #fff; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.app-ico.blue { background: var(--bg-3); }
.app-ico svg { width: 46px; height: 46px; color: var(--neon); }

/* Página de política (coluna de leitura centralizada) */
.policy { max-width: 780px; margin: 0 auto; }
.policy .updated { color: var(--gray-2); font-size: 14px; margin-bottom: 40px; }
.policy-block {
  background: var(--card); border: 1px solid var(--line);
  border-left: 4px solid var(--blue); border-radius: 14px;
  padding: 24px 26px; margin-bottom: 22px;
}
.policy-block h2 { font-size: 18px; color: var(--neon); margin-bottom: 12px; }
.policy-block { scroll-margin-top: 92px; }
.policy-block p { color: var(--gray); font-size: 15px; line-height: 1.75; }
.policy-block ul { color: var(--gray); font-size: 15px; line-height: 1.85; padding-left: 20px; margin-top: 6px; }
.policy-block li { margin-bottom: 6px; }
.policy-block strong { color: var(--ink); }
.policy-block a { color: var(--blue); }
.policy-note {
  background: rgba(41,121,255,.08); border: 1px solid var(--line);
  border-radius: 8px; padding: 12px 16px; margin-top: 16px;
  color: var(--neon); font-size: 14px;
}

/* Grade de cards de política / listagens centralizada quando poucos itens */
.grid.tight { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

@media (max-width: 400px) { .nav-name { font-size: 17px; } .nav-logo img { height: 36px; } }

/* Política: layout com índice lateral (usa melhor a largura) */
.policy { max-width: var(--maxw); }
.policy-grid { display: grid; grid-template-columns: 280px 1fr; gap: 72px; align-items: start; }
.policy-main { min-width: 0; }
.policy-side { position: sticky; top: 96px; }
.policy-toc { display: flex; flex-direction: column; border-left: 1px solid var(--line); }
.policy-toc a { padding: 8px 14px; margin-left: -1px; border-left: 2px solid transparent; color: var(--gray-2); font-size: 14px; line-height: 1.4; transition: color .2s, border-color .2s, background .2s; }
.policy-toc a:hover { color: var(--ink); }
.policy-toc a.active { color: var(--neon); border-color: var(--blue); background: rgba(41,121,255,.06); }
@media (max-width: 900px) {
  .policy-grid { grid-template-columns: 1fr; gap: 20px; }
  .policy-side { position: static; }
  .policy-toc { flex-direction: row; flex-wrap: wrap; border-left: 0; gap: 8px; }
  .policy-toc a { border: 1px solid var(--line); border-radius: 20px; padding: 6px 12px; font-size: 13px; margin: 0; }
}


/* Índice: patinha no item selecionado */
.policy-toc a { position: relative; padding-left: 32px; }
.policy-toc a.active::before {
  content:""; position:absolute; left:9px; top:50%; transform:translateY(-50%) rotate(-8deg);
  width:16px; height:16px; background:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%20fill%3D%27%234fc3f7%27%3E%3Ccircle%20cx%3D%276.5%27%20cy%3D%2710.5%27%20r%3D%272%27/%3E%3Ccircle%20cx%3D%2710.8%27%20cy%3D%277.6%27%20r%3D%272.1%27/%3E%3Ccircle%20cx%3D%2715.2%27%20cy%3D%277.6%27%20r%3D%272.1%27/%3E%3Ccircle%20cx%3D%2719%27%20cy%3D%2710.5%27%20r%3D%272%27/%3E%3Cpath%20d%3D%27M13%2012.4c2.5.5%204.2%202.5%203.7%204.4-.4%201.6-2%201.8-3.5%201.4-.95-.26-2.05-.26-3%200-1.5.4-3.1.2-3.5-1.4-.5-1.9%201.2-3.9%203.7-4.4.9-.16%201.7-.16%202.6%200z%27/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (max-width: 900px) {
  .policy-toc a { padding-left: 12px; }
  .policy-toc a.active { padding-left: 30px; }
  .policy-toc a.active::before { left:9px; }
}
