/* ============================================================
   Mirtilu - landing (v3, do zero)
   Direção: movido a personagem (Popo), colorido e redondo,
   bold, sobre a noite blueberry. Refs: discord.com + kyodo.app.
   Fredoka (display) + Nunito (corpo). Shared /pt /en /es.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:        #0b0918;   /* noite blueberry profunda */
    --bg-soft:   #120f26;
    --card:      #19152e;   /* card escuro */
    --line:      rgba(255,255,255,0.09);
    --text:      #f5f3ff;
    --muted:     #aca6cf;
    --faint:     #79739a;

    --indigo:    #6366f1;
    --violet:    #8b5cf6;
    --pink:      #ec4899;
    --blue:      #3b82f6;
    --green:     #22c55e;
    --gold:      #fbbf24;
    --cyan:      #22d3ee;

    --grad-brand: linear-gradient(120deg, #6366f1, #8b5cf6);

    --radius:    24px;
    --radius-lg: 36px;
    --maxw:      1140px;
    --ease:      cubic-bezier(.22,.7,.3,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    background: var(--bg); color: var(--text); line-height: 1.6;
    overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
::selection { background: rgba(139,92,246,.4); color: #fff; }

h1, h2, h3, .display { font-family: 'Fredoka', sans-serif; font-weight: 700; line-height: 1.02; letter-spacing: -0.015em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* cosmic backdrop */
.sky { position: fixed; inset: 0; z-index: -2; background:
        radial-gradient(1100px 700px at 50% -8%, rgba(99,102,241,.28), transparent 60%),
        radial-gradient(900px 600px at 88% 22%, rgba(217,70,239,.16), transparent 60%),
        radial-gradient(800px 600px at 8% 40%, rgba(59,130,246,.14), transparent 60%),
        var(--bg);
    pointer-events: none; }
.sky::after { content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(1.4px 1.4px at 20% 30%, rgba(255,255,255,.5), transparent),
        radial-gradient(1.4px 1.4px at 70% 20%, rgba(255,255,255,.35), transparent),
        radial-gradient(1.2px 1.2px at 40% 70%, rgba(255,255,255,.4), transparent),
        radial-gradient(1.6px 1.6px at 85% 60%, rgba(255,255,255,.3), transparent),
        radial-gradient(1.2px 1.2px at 15% 80%, rgba(255,255,255,.35), transparent),
        radial-gradient(1.3px 1.3px at 60% 85%, rgba(255,255,255,.3), transparent);
    background-size: 100% 100%; opacity: .6; }

/* ---------- Header ---------- */
header { position: fixed; top: 0; width: 100%; z-index: 100; padding: 16px 0; transition: background .3s, border-color .3s; border-bottom: 1px solid transparent; }
header.scrolled { background: rgba(11,9,24,.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--line); }
header .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.logo { height: 30px; width: auto; }
.header-right { display: flex; align-items: center; gap: 12px; }

.lang { position: relative; }
.lang-btn { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--text); padding: 8px 12px; border-radius: 50px; cursor: pointer; font: inherit; font-size: .85rem; font-weight: 800; }
.lang-btn:hover { background: rgba(255,255,255,.1); }
.lang-flag { font-size: 1rem; }
.lang-menu { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 7px; min-width: 165px; box-shadow: 0 18px 50px rgba(0,0,0,.6); }
.lang.open .lang-menu { display: block; }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px; font-weight: 700; color: var(--muted); font-size: .9rem; }
.lang-menu a:hover { background: rgba(255,255,255,.06); color: var(--text); }
.lang-menu a.active { color: var(--text); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font: inherit; font-weight: 800; cursor: pointer; border: none; border-radius: 50px; padding: 14px 26px; transition: transform .18s var(--ease), box-shadow .25s, background .2s; white-space: nowrap; }
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: #fff; color: #14101f; box-shadow: 0 10px 30px -8px rgba(255,255,255,.3); }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); }
.btn-brand { background: var(--grad-brand); color: #fff; box-shadow: 0 12px 34px -8px rgba(124,90,255,.6); }
.btn-brand:hover { transform: translateY(-2px) scale(1.02); }
.btn-ghost { background: rgba(255,255,255,.07); color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.header-cta { padding: 10px 20px; }

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 150px 0 70px; position: relative; }
.hero-popo { width: 150px; height: auto; margin: 0 auto 14px; filter: drop-shadow(0 24px 46px rgba(139,92,246,.5)); animation: bob 5s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); margin-bottom: 22px; }
.hero h1 .pop { display: inline-block; background: linear-gradient(100deg, #a78bfa, #f0abfc); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: clamp(1.08rem, 2.2vw, 1.35rem); color: var(--muted); max-width: 560px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-os { margin-top: 16px; font-size: .85rem; color: var(--faint); font-weight: 700; }

/* floating emoji sticker constellation (subtle, behind hero) */
.stickers { position: absolute; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.stickers span { position: absolute; font-size: 2.2rem; opacity: .9; filter: drop-shadow(0 8px 14px rgba(0,0,0,.4)); animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-16px) rotate(var(--r,0deg)); } }

/* ---------- Topic rail (Kyodo) ---------- */
.rail-wrap { padding: 18px 0 10px; position: relative; }
.rail-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 96px; background: linear-gradient(90deg, transparent, var(--bg) 86%); pointer-events: none; z-index: 2; transition: opacity .25s; }
.rail-wrap.rail-end::after { opacity: 0; }
.rail-arrow { position: absolute; top: 105px; right: 16px; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: rgba(25,21,46,.92); border: 1px solid var(--line); color: #fff; display: grid; place-items: center; cursor: pointer; box-shadow: 0 10px 26px rgba(0,0,0,.55); transition: transform .2s var(--ease), opacity .25s, background .2s; }
.rail-arrow:hover { transform: translateY(-50%) scale(1.08); background: rgba(38,32,64,.95); }
.rail-arrow svg { width: 20px; height: 20px; }
.rail-arrow.hide { opacity: 0; pointer-events: none; }
.rail { display: flex; gap: 16px; overflow-x: auto; padding: 8px 24px; scroll-snap-type: x proximity; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.rail::-webkit-scrollbar { display: none; }
.rail { max-width: calc(var(--maxw) + 48px); margin: 0 auto; }
.topic { scroll-snap-align: start; flex: 0 0 auto; width: 168px; border-radius: 22px; overflow: hidden; border: 1px solid var(--line); background: var(--card); transition: transform .2s var(--ease); }
.topic:hover { transform: translateY(-5px); }
.topic-cover { height: 158px; display: grid; place-items: center; font-size: 3rem; overflow: hidden; }
.topic-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.topic-body { padding: 13px 15px; }
.topic-body b { display: block; font-weight: 800; font-size: 1rem; }
.topic-body span { font-size: .82rem; color: var(--faint); font-weight: 700; }

/* ---------- Lead (parágrafo de contexto sob o rail) ---------- */
.lead { padding: 44px 0 0; }
.lead-p { max-width: 780px; margin: 0 auto; text-align: center; font-size: clamp(1.02rem, 2vw, 1.18rem); color: var(--muted); }
.lead-p b { color: var(--text); font-weight: 800; }

/* ---------- Galeria de telas do app ---------- */
.shots-wrap { position: relative; }
.shots-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; right: 0; width: 96px; background: linear-gradient(90deg, transparent, var(--bg) 86%); pointer-events: none; z-index: 2; transition: opacity .25s; }
.shots-wrap.rail-end::after { opacity: 0; }
.shots-wrap .rail-arrow { top: 50%; }
.shots { display: flex; gap: 18px; overflow-x: auto; padding: 6px 24px 18px; scroll-snap-type: x proximity; scrollbar-width: none; -webkit-overflow-scrolling: touch; max-width: calc(var(--maxw) + 48px); margin: 0 auto; }
.shots::-webkit-scrollbar { display: none; }
.shots img { scroll-snap-align: center; flex: 0 0 auto; width: 240px; height: auto; border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 24px 50px -22px rgba(0,0,0,.8); background: var(--card); }

/* ---------- Lista "por que" ---------- */
.why { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 13px; list-style: none; }
.why li { display: flex; align-items: flex-start; gap: 12px; padding: 16px 19px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid var(--line); font-weight: 600; color: var(--text); font-size: .99rem; line-height: 1.45; }
.why li::before { content: '✓'; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: rgba(34,197,94,.16); color: #4ade80; display: grid; place-items: center; font-size: .78rem; font-weight: 900; margin-top: 1px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: border-color .2s; }
.faq details[open] { border-color: rgba(139,92,246,.35); }
.faq summary { cursor: pointer; list-style: none; padding: 19px 24px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.06rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ''; flex-shrink: 0; width: 10px; height: 10px; border-right: 2.4px solid var(--faint); border-bottom: 2.4px solid var(--faint); transform: rotate(45deg) translate(-2px,-2px); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px,-2px); }
.faq summary:hover { background: rgba(255,255,255,.03); }
.faq .faq-a { padding: 0 24px 20px; color: var(--muted); font-size: 1rem; }
.faq .faq-a a { color: #a78bfa; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Section heads ---------- */
section { padding: 92px 0; position: relative; }
.head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.kicker { display: inline-block; font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--violet); margin-bottom: 14px; }
.head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
.head p { font-size: 1.12rem; color: var(--muted); }
.tcolor { background: linear-gradient(100deg, #a78bfa, #f0abfc); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Big feature card ---------- */
.feature { border-radius: var(--radius-lg); padding: 52px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; position: relative; overflow: hidden; border: 1px solid rgba(139,92,246,.3); background: linear-gradient(135deg, rgba(99,102,241,.3), rgba(139,92,246,.13) 60%, rgba(217,70,239,.12)); margin-bottom: 22px; }
.feature::before { content: ''; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.55), transparent 64%); top: -42%; right: -10%; pointer-events: none; }

/* ---------- Cena de sala ao vivo (ilustração, sem UI) ---------- */
.scene { position: relative; width: 320px; height: 320px; max-width: 100%; display: grid; place-items: center; margin: 0 auto; }
.scene .ring { position: absolute; inset: 22px; border-radius: 50%; border: 1.5px dashed rgba(255,255,255,.16); animation: spin 26s linear infinite; }
.scene .ring.r2 { inset: 66px; border-style: solid; border-color: rgba(255,255,255,.07); animation-duration: 34s; animation-direction: reverse; }
.scene .glow { position: absolute; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.6), transparent 70%); filter: blur(26px); }
.scene-popo { width: 124px; height: auto; position: relative; z-index: 3; filter: drop-shadow(0 16px 30px rgba(139,92,246,.5)); animation: bob 5s ease-in-out infinite; }
.av-dot { position: absolute; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; border: 2px solid rgba(255,255,255,.18); box-shadow: 0 7px 15px rgba(0,0,0,.4); animation: floaty 6s ease-in-out infinite; z-index: 2; }
.av-dot.d1 { top: 5%; left: 50%; margin-left: -26px; animation-delay: 0s; }
.av-dot.d2 { top: 24%; right: 8%; animation-delay: .5s; }
.av-dot.d3 { bottom: 21%; right: 11%; animation-delay: 1s; }
.av-dot.d4 { bottom: 6%; left: 50%; margin-left: -26px; animation-delay: 1.4s; }
.av-dot.d5 { bottom: 21%; left: 11%; animation-delay: .8s; }
.av-dot.d6 { top: 24%; left: 8%; animation-delay: 1.2s; }
.scene-live { position: absolute; top: 2px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 7px; padding: 7px 15px; border-radius: 50px; background: rgba(34,197,94,.16); border: 1px solid rgba(34,197,94,.4); color: #4ade80; font-weight: 800; font-size: .8rem; z-index: 4; white-space: nowrap; box-shadow: 0 8px 20px rgba(0,0,0,.4); }
.scene-live::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: ping 1.6s infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.feature.reverse .feature-visual { order: 2; }
.feature-text { position: relative; }
.feature-text h3 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.feature-text p { color: var(--muted); font-size: 1.08rem; max-width: 420px; }
.feature-visual { display: flex; justify-content: center; position: relative; z-index: 1; }

/* ---------- Bento de cards coloridos (Kyodo) ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tile { border-radius: var(--radius); padding: 30px; min-height: 260px; display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s; }
.tile:hover { transform: translateY(-7px) scale(1.012); box-shadow: 0 26px 50px -18px rgba(0,0,0,.6); }
.tile h3 { font-size: 1.5rem; margin-bottom: 8px; max-width: 80%; }
.tile p { font-size: .98rem; opacity: .92; max-width: 88%; }
.tile .emoji { position: absolute; right: 4px; bottom: -10px; font-size: 4.4rem; filter: drop-shadow(0 10px 18px rgba(0,0,0,.25)); transition: transform .3s var(--ease); }
.tile:hover .emoji { transform: scale(1.12) rotate(-7deg); }
.tile.wide { grid-column: span 2; }
.tile.t-violet { background: linear-gradient(150deg, #7c3aed, #a855f7); color: #fff; }
.tile.t-pink   { background: linear-gradient(150deg, #db2777, #fb7185); color: #fff; }
.tile.t-blue   { background: linear-gradient(150deg, #2563eb, #38bdf8); color: #fff; }
.tile.t-green  { background: linear-gradient(150deg, #15a34a, #4ade80); color: #08260f; }
.tile.t-gold   { background: linear-gradient(150deg, #d97706, #fbbf24); color: #2a1605; }
.tile.t-red    { background: linear-gradient(150deg, #dc2626, #fb7185); color: #fff; }
.tile .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tile .chips span { background: rgba(255,255,255,.22); padding: 6px 12px; border-radius: 50px; font-size: .8rem; font-weight: 800; }
.tile.t-green .chips span, .tile.t-gold .chips span { background: rgba(0,0,0,.14); }

/* ---------- Phone / UI mockup ---------- */
.phone { width: 260px; border-radius: 38px; padding: 11px; background: linear-gradient(160deg, #2a2640, #14111f); border: 1px solid var(--line); box-shadow: 0 36px 80px -30px rgba(0,0,0,.85); position: relative; }
.phone::before { content: ''; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 82px; height: 6px; border-radius: 8px; background: #000; opacity: .65; z-index: 3; }
.screen { border-radius: 28px; overflow: hidden; background: var(--bg-soft); height: 500px; border: 1px solid rgba(255,255,255,.06); padding: 16px 12px; }
.screen .ttl { font-family: 'Fredoka'; font-weight: 700; font-size: 1.2rem; padding: 4px 6px 12px; }
.uicard { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 7px; }
.row { display: flex; align-items: center; gap: 11px; padding: 9px 7px; border-radius: 13px; }
.av { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 1.15rem; flex-shrink: 0; }
.av.rnd { border-radius: 50%; }
.row .info { flex: 1; min-width: 0; }
.row .info b { display: block; font-size: .92rem; font-weight: 800; }
.row .info span { font-size: .78rem; color: var(--muted); }
.live { font-size: .74rem; color: var(--green); font-weight: 800; display: inline-flex; align-items: center; gap: 5px; }
.live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: ping 1.6s infinite; }
.voicepill { margin-left: auto; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(34,197,94,.18); color: var(--green); }
.g-violet { background: linear-gradient(135deg,#8b5cf6,#6366f1); }
.g-green  { background: linear-gradient(135deg,#22c55e,#16a34a); }
.g-amber  { background: linear-gradient(135deg,#f59e0b,#d97706); }
.g-pink   { background: linear-gradient(135deg,#ec4899,#be185d); }
.g-blue   { background: linear-gradient(135deg,#3b82f6,#6366f1); }
.g-cyan   { background: linear-gradient(135deg,#22d3ee,#3b82f6); }
.bubbles { display: flex; flex-direction: column; gap: 9px; padding: 6px 4px; }
.bub { max-width: 80%; padding: 9px 13px; border-radius: 16px; font-size: .88rem; line-height: 1.35; }
.bub.them { align-self: flex-start; background: var(--card); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.bub.me { align-self: flex-end; background: var(--grad-brand); color: #fff; border-bottom-right-radius: 5px; }
.pnav { display: flex; justify-content: space-around; padding: 12px 4px 2px; border-top: 1px solid var(--line); margin-top: 10px; }
.pnav span { font-size: .66rem; font-weight: 800; color: var(--faint); display: flex; flex-direction: column; align-items: center; gap: 3px; }
.pnav span.on { color: var(--violet); }
.pnav i { font-size: 1.05rem; font-style: normal; }

/* ---------- Word marquee (Discord) ---------- */
.words { padding: 40px 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.words-track { display: flex; gap: 40px; width: max-content; animation: scrollx 30s linear infinite; }
.words-track b { font-family: 'Fredoka'; font-weight: 700; font-size: clamp(2rem, 5vw, 3.4rem); color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.28); white-space: nowrap; }
.words-track b.fill { color: var(--text); -webkit-text-stroke: 0; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Closing scene ---------- */
.closing { text-align: center; }
.closing-card { border-radius: var(--radius-lg); padding: 70px 40px 64px; position: relative; overflow: hidden; background: linear-gradient(160deg, rgba(99,102,241,.34), rgba(217,70,239,.2)); border: 1px solid rgba(139,92,246,.3); }
.closing-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -5%, rgba(139,92,246,.5), transparent 58%); pointer-events: none; }
.closing-popos { display: flex; justify-content: center; align-items: flex-end; gap: 8px; margin-bottom: 22px; position: relative; }
.closing-popos img { width: 70px; height: auto; animation: bob 5s ease-in-out infinite; }
.closing-popos img:nth-child(2) { width: 110px; animation-delay: .4s; }
.closing-popos img:nth-child(1) { animation-delay: .1s; opacity: .92; }
.closing-popos img:nth-child(3) { animation-delay: .7s; opacity: .92; }
.closing-card h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 14px; position: relative; }
.closing-card p { color: var(--muted); font-size: 1.1rem; margin-bottom: 30px; position: relative; }
.store-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.store-btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 24px; border-radius: 16px; background: rgba(255,255,255,.07); border: 1px solid var(--line); font-weight: 800; transition: transform .2s, border-color .2s; }
.store-btn:hover { transform: translateY(-2px); border-color: var(--violet); }
.store-btn.off { opacity: .4; cursor: default; }
.store-btn svg { width: 24px; height: 24px; }
.store-btn small { display: block; font-size: .68rem; color: var(--muted); font-weight: 700; }

/* ---------- Footer ---------- */
footer { padding: 56px 0 40px; border-top: 1px solid var(--line); }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 34px; }
.foot-brand { max-width: 280px; }
.foot-brand img { height: 28px; width: auto; margin-bottom: 12px; }
.foot-brand p { color: var(--muted); font-size: .92rem; }
.foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h5 { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--faint); margin-bottom: 13px; }
.foot-col a { display: block; color: var(--muted); font-size: .93rem; font-weight: 600; padding: 5px 0; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); color: var(--faint); font-size: .85rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); } 70%,100% { box-shadow: 0 0 0 7px rgba(34,197,94,0); } }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
    .feature { grid-template-columns: 1fr; gap: 34px; padding: 40px 28px; text-align: center; }
    .feature.reverse .feature-visual { order: 0; }
    .feature-text p { margin: 0 auto; }
    .bento { grid-template-columns: 1fr 1fr; }
    .tile.wide { grid-column: span 2; }
    .tile .emoji { font-size: 3.5rem; }
}
@media (max-width: 720px) {
    .why { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    section { padding: 70px 0; }
    .hero { padding: 124px 0 50px; }
        .lead { padding: 34px 0 0; }
    .shots img { width: 200px; }
    .faq summary { padding: 17px 19px; font-size: .99rem; }
    .faq .faq-a { padding: 0 19px 18px; font-size: .95rem; }
    .hero-popo { width: 120px; }
    .header-cta { display: none; }
    .bento { grid-template-columns: 1fr; }
    .tile.wide { grid-column: span 1; }
    .closing-card { padding: 50px 24px; }
    .phone { width: 230px; }
    .feature { padding: 34px 18px; }
    .scene { width: 244px; height: 244px; }
    .scene-popo { width: 92px; }
    .av-dot { width: 44px; height: 44px; font-size: 1.15rem; }
    .av-dot.d1, .av-dot.d4 { margin-left: -22px; }
    .stickers { display: none; }
    .tile .emoji { font-size: 2.9rem; right: 4px; bottom: -6px; }
    .tile.wide .emoji { font-size: 3.4rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
}
