/*
  Zupzi Math — o site (24/09/2026).
  A mesma planta do site do Zupzi Art (art.zupzi.io), que é a do www.zupzi.io:
  cabeçalho de vidro, herói com a família, cartões de vidro, Nunito pesada,
  botões de brinquedo, o roxo da marca. O fundo é o do jogo: onde o Art tem
  papel de aquarela quente, o Math tem o céu (#cfe6ff) e o mar turquesa do
  arquipélago, com uma folha quadriculada de caderno bem de leve por baixo,
  as estrelas douradas e peças de brinquedo com + − × ÷ = flutuando nas bordas.
*/
:root {
  --ink: #1d2046;
  --text: #474d6e;
  --muted: #5d6384;
  --purple: #7038d8;
  --purple-dark: #4f22a3;
  --purple-soft: #efe8ff;
  --violet: #8b4cf6;
  --sea: #1bb5c4;
  --sea-deep: #0b6f80;
  --sea-soft: #dff6f8;
  --sky: #cfe6ff;
  --sky-soft: #eaf5ff;
  --blue: #2477f3;
  --gold: #ffc83d;
  --gold-star: #ffb627;
  --gold-dark: #d98a00;
  --coral: #ff6b6b;
  --green: #2fa85e;
  --leaf: #47c979;
  --glass: rgba(255, 255, 255, 0.8);
  --glass-line: rgba(255, 255, 255, 0.9);
  --shadow: 0 18px 44px rgba(36, 90, 170, 0.12);
  --shadow-pic: 0 22px 50px rgba(30, 70, 140, 0.2);
  --radius-card: 32px;
  --font: "Nunito", ui-rounded, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-logo: "Fredoka", "Nunito", ui-rounded, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 700;
  color: var(--ink);
  background: #f3f9ff;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; border-radius: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- o céu do arquipélago, fixo atrás da página ---------- */
.paper {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60vmax 42vmax at 6% 2%, rgba(160, 214, 255, 0.75), transparent 60%),
    radial-gradient(48vmax 38vmax at 98% 14%, rgba(206, 186, 255, 0.5), transparent 62%),
    radial-gradient(52vmax 38vmax at 86% 98%, rgba(120, 222, 228, 0.42), transparent 62%),
    radial-gradient(40vmax 30vmax at 2% 86%, rgba(255, 214, 120, 0.32), transparent 60%),
    linear-gradient(180deg, #dcefff 0%, #f1f8ff 42%, #f6fbff 70%, #e8f7f9 100%);
}
/* a folha quadriculada de caderno, quase invisível */
.paper::before {
  content: ""; position: absolute; inset: 0; opacity: 0.55;
  background-image:
    linear-gradient(rgba(36, 119, 243, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 119, 243, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 60%, #000 100%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 60%, #000 100%);
}
.paper::after {
  content: ""; position: absolute; inset: 0; opacity: 0.3; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.3  0 0 0 0 0.4  0 0 0 0 0.6  0 0 0 0.07 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- as peças de brinquedo com os sinais, nas bordas ---------- */
.toys { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.toy {
  position: absolute; display: grid; place-items: center;
  width: var(--s, 52px); height: var(--s, 52px); border-radius: 30%;
  background: var(--c); color: var(--g, #fff);
  font-family: var(--font-logo); font-weight: 700; font-size: calc(var(--s, 52px) * 0.62); line-height: 1;
  box-shadow: 0 5px 0 rgba(24, 33, 61, 0.14), inset 0 -4px 0 rgba(24, 33, 61, 0.08), inset 0 3px 0 rgba(255, 255, 255, 0.35);
  transform: rotate(var(--r, 0deg));
  opacity: 0.8;
  animation: bob var(--d, 12s) ease-in-out infinite alternate;
  animation-delay: var(--w, 0s);
}
.toy b { font-weight: 700; transform: translateY(-3%); }
.toy svg { width: 60%; height: 60%; }
@keyframes bob {
  0% { transform: translateY(0) rotate(var(--r, 0deg)); }
  100% { transform: translateY(-16px) rotate(calc(var(--r, 0deg) + 7deg)); }
}
/* sempre na margem, fora do texto: em tela larga ficam inteiras ao lado do conteúdo
   (1240 px); em tela estreita espiam da borda, metade para fora */
.toy.t1 { --c: #47c979; --g: #18213d; --r: -8deg; --s: 54px; left: max(-22px, calc((100vw - 1240px) / 2 - 72px)); top: 21%; --d: 11s; }
.toy.t2 { --c: #2477f3; --r: 6deg; --s: 46px; right: max(-18px, calc((100vw - 1240px) / 2 - 64px)); top: 33%; --d: 13s; --w: -3s; }
.toy.t3 { --c: #ffc83d; --g: #18213d; --r: 10deg; --s: 50px; left: max(-20px, calc((100vw - 1240px) / 2 - 66px)); top: 64%; --d: 12s; --w: -6s; }
.toy.t4 { --c: #8b4cf6; --r: -6deg; --s: 56px; right: max(-22px, calc((100vw - 1240px) / 2 - 74px)); top: 72%; --d: 14s; --w: -2s; }
.toy.t5 { --c: #ff6b6b; --r: 4deg; --s: 40px; right: max(-16px, calc((100vw - 1240px) / 2 - 54px)); top: 11%; --d: 10s; --w: -5s; }
.toy.t6 { --c: #1bb5c4; --r: -12deg; --s: 38px; left: max(-16px, calc((100vw - 1240px) / 2 - 50px)); top: 88%; --d: 12s; --w: -8s; }
@media (max-width: 1360px) { .toy { opacity: 0.55; } }
@media (max-width: 960px) {
  .toy { --s: 34px !important; opacity: 0.4; }
  .toy.t2, .toy.t5, .toy.t6 { display: none; }
}

/* ---------- cabeçalho ---------- */
.header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(244, 250, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.header-in {
  max-width: 1240px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand .brand-logo { height: 32px; width: auto; display: block; }
.footer .brand .brand-logo { height: 28px; }
.nav { display: flex; gap: 20px; font-size: 14px; font-weight: 800; color: var(--text); }
.nav a { text-decoration: none; white-space: nowrap; transition: color .15s; }
.nav a:hover { color: var(--purple); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px;
  border-radius: 999px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 800;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.header-cta svg { width: 16px; height: 16px; }
.nav-mobile { display: none; }
@media (max-width: 1140px) {
  .nav-desktop { display: none; }
  .nav-mobile { display: flex; overflow-x: auto; padding: 0 24px 12px; gap: 20px; scrollbar-width: none; }
  .nav-mobile::-webkit-scrollbar { display: none; }
}
@media (max-width: 520px) { .header .brand .brand-logo { height: 23px; } .header-in { padding: 12px 16px; } .nav-mobile { padding: 0 16px 12px; } }
@media (max-width: 420px) { .header-cta span { display: none; } .header-cta { padding: 0 12px; } }

/* ---------- herói ---------- */
.hero { position: relative; padding: 0; }
.hero-in { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 72px 24px 40px; }
.hero-copy { max-width: 540px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.82); border: 1px solid var(--glass-line); font-size: 13px; font-weight: 900;
  color: var(--purple); box-shadow: 0 6px 18px rgba(112, 56, 216, 0.1);
}
.eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--sea); box-shadow: 0 0 0 4px rgba(27, 181, 196, 0.22); }
h1 {
  margin: 18px 0 0; font-weight: 900; letter-spacing: -0.05em; line-height: 0.95;
  font-size: clamp(46px, 7vw, 78px);
}
h1 .l1 { display: block; }
h1 .l2 { display: block; color: var(--purple); position: relative; width: fit-content; }
h1 .l2 svg { position: absolute; left: -3%; bottom: -16px; width: 106%; height: 24px; overflow: visible; }
/* o traço aparece desenhado; sem animação (ou com menos movimento) ele simplesmente está lá */
.draw { stroke-dasharray: 340; animation: draw 1.1s .45s cubic-bezier(.6, 0, .3, 1) backwards; }
@keyframes draw { from { stroke-dashoffset: 340; } to { stroke-dashoffset: 0; } }
.lede { margin: 28px 0 0; font-size: 19px; line-height: 1.6; color: var(--text); max-width: 490px; }
.actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px 16px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 54px; padding: 0 24px;
  border-radius: 999px; font-family: inherit; font-size: 15px; font-weight: 900; text-decoration: none; cursor: pointer;
  border: 0; transition: transform .12s ease, box-shadow .12s ease;
}
.btn-primary { background: var(--purple); color: #fff; box-shadow: 0 6px 0 var(--purple-dark); }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--purple-dark); }

.store {
  display: inline-flex; align-items: center; gap: 12px; height: 54px; padding: 0 20px 0 16px; border-radius: 16px;
  background: #111; color: #fff; text-decoration: none; box-shadow: 0 6px 0 #000;
  transition: transform .12s ease, box-shadow .12s ease;
}
a.store:active { transform: translateY(4px); box-shadow: 0 2px 0 #000; }
.store svg { width: 26px; height: 26px; }
.store small { display: block; font-size: 11px; font-weight: 700; opacity: .85; line-height: 1.1; }
.store strong { display: block; font-size: 17px; font-weight: 900; line-height: 1.15; letter-spacing: -0.01em; }

.pills { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 900;
  background: rgba(255, 255, 255, 0.78); border: 1px solid var(--glass-line); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.pill svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-art { position: relative; margin-top: 8px; width: 100%; aspect-ratio: 3 / 2; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: 78% 50%; }
@media (min-width: 1024px) {
  .hero { min-height: 700px; }
  .hero-art {
    position: absolute; inset: 0 0 0 auto; width: 68%; margin: 0; aspect-ratio: auto; z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 30%), linear-gradient(to bottom, #000 82%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, #000 30%), linear-gradient(to bottom, #000 82%, transparent 100%);
    mask-composite: intersect;
  }
  .hero-art img { object-position: right center; }
}
@media (max-width: 1023px) {
  .hero-in { padding-top: 44px; padding-bottom: 8px; }
  .hero-art { aspect-ratio: 5 / 4; }
  .hero-art img { object-position: 92% 50%; }
  .hero-art { -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%); mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%); }
}
@media (max-width: 520px) { .hero-in { padding-left: 16px; padding-right: 16px; } .lede { font-size: 17.5px; } }

/* ---------- a conta em números ---------- */
.stats-wrap { padding: 0 24px; }
@media (max-width: 520px) { .stats-wrap { padding: 0 16px; } }
.stats {
  position: relative; z-index: 3; max-width: 1100px; margin: 12px auto 0; padding: 22px 12px; border-radius: 30px;
  display: grid; grid-template-columns: repeat(5, 1fr); list-style: none;
}
.stats li { text-align: center; padding: 6px 10px; position: relative; }
.stats li + li::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 2px; border-radius: 2px; background: rgba(36, 119, 243, 0.1); }
.stats b { display: block; font-family: var(--font-logo); font-weight: 700; font-size: clamp(34px, 4vw, 46px); line-height: 1; letter-spacing: -0.02em; color: var(--c, var(--purple)); }
.stats span { display: block; margin-top: 6px; font-size: 13px; font-weight: 800; color: var(--muted); line-height: 1.3; }
@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 10px 0; }
  .stats li + li::before { display: none; }
  .stats li:last-child { grid-column: 1 / -1; }
}

/* ---------- ouvir ---------- */
.listen {
  display: inline-flex; align-items: center; gap: 10px; height: 46px; padding: 0 18px 0 6px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.88); border: 1px solid var(--glass-line); color: var(--ink); cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 900; box-shadow: var(--shadow);
}
.listen .ic { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--ink); }
.listen .ic svg { width: 16px; height: 16px; }
.listen .bars { display: none; gap: 3px; align-items: flex-end; height: 16px; }
.listen .bars i { width: 3px; border-radius: 2px; background: var(--ink); animation: bar 0.9s ease-in-out infinite; }
.listen .bars i:nth-child(2) { animation-delay: .15s; } .listen .bars i:nth-child(3) { animation-delay: .3s; } .listen .bars i:nth-child(4) { animation-delay: .45s; }
.listen.playing .bars { display: inline-flex; }
.listen.playing .play-ic { display: none; }
.listen .stop-ic { display: none; }
.listen.playing .stop-ic { display: block; }
@keyframes bar { 0%, 100% { height: 4px; } 50% { height: 16px; } }
.hear {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; padding: 7px 14px 7px 7px; border-radius: 999px;
  background: var(--purple-soft); color: var(--purple); border: 0; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 900;
}
.hear .ic { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--purple); color: #fff; }
.hear .ic svg { width: 10px; height: 10px; }
.hear.playing .ic { animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.18); } }

/* ---------- seções ---------- */
main { max-width: 1240px; margin: 0 auto; }
section { padding: 72px 24px; scroll-margin-top: 90px; }
@media (max-width: 520px) { section { padding: 60px 16px; } }
.sec-title { max-width: 740px; margin: 0 auto; text-align: center; }
.kicker { display: inline-block; font-size: 13px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sea-deep); }
h2 { margin: 8px 0 0; font-size: clamp(32px, 4.6vw, 44px); font-weight: 900; letter-spacing: -0.04em; line-height: 1.06; }
h2 em { font-style: normal; color: var(--purple); }
.sub { margin: 14px auto 0; font-size: 18px; color: var(--text); max-width: 640px; }

.glass {
  background: var(--glass); border: 1px solid var(--glass-line); box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.grid3 { margin-top: 44px; display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid3 { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }
.card { border-radius: var(--radius-card); padding: 12px 12px 26px; }
.card .pic { border-radius: 24px; overflow: hidden; aspect-ratio: 3 / 2; background: var(--sky); }
.card .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .pic img { transform: scale(1.04); }
.card h3 { margin: 20px 12px 0; font-size: 22px; font-weight: 900; letter-spacing: -0.02em; color: var(--purple); }
.card p { margin: 8px 12px 0; font-size: 15px; color: var(--text); }
.card .hear { margin-left: 12px; }
/* os três "Hear the app" na mesma altura, no pé de cada cartão */
.card { display: flex; flex-direction: column; }
.card p { margin-bottom: 14px; }
.card .hear { margin-top: auto; align-self: flex-start; }

/* ---------- a reta numérica que separa as seções ---------- */
.numline { max-width: 640px; margin: 0 auto; padding: 8px 24px 0; color: var(--sea-deep); }
.numline svg { width: 100%; height: auto; overflow: visible; }
.numline .axis { stroke: rgba(29, 32, 70, 0.28); stroke-width: 3; stroke-linecap: round; }
.numline .tick { stroke: rgba(29, 32, 70, 0.28); stroke-width: 2.5; stroke-linecap: round; }
.numline text { font-family: var(--font-logo); font-weight: 700; font-size: 13px; fill: rgba(29, 32, 70, 0.45); text-anchor: middle; }
.numline .hop { fill: none; stroke: var(--purple); stroke-width: 3.5; stroke-linecap: round; stroke-dasharray: 300; stroke-dashoffset: 300; transition: stroke-dashoffset 1.2s .2s cubic-bezier(.6, 0, .3, 1); }
.numline .tip { fill: var(--purple); opacity: 0; transition: opacity .3s 1.2s; }
.numline .from { fill: var(--sea); }
.numline .to { fill: var(--gold-star); stroke: #fff; stroke-width: 3; opacity: 0; transition: opacity .3s 1.25s; }
.numline .lbl { font-size: 15px; fill: var(--purple); opacity: 0; transition: opacity .3s .9s; }
.numline.in .hop { stroke-dashoffset: 0; }
.numline.in .tip, .numline.in .to, .numline.in .lbl { opacity: 1; }
.no-js .numline .hop { stroke-dashoffset: 0; }
.no-js .numline .tip, .no-js .numline .to, .no-js .numline .lbl { opacity: 1; }

/* ---------- como funciona ---------- */
.steps .step { border-radius: 26px; padding: 22px 22px 24px; }
.steps h3 { margin: 0; font-size: 19px; font-weight: 900; }
.steps p { margin: 8px 0 0; font-size: 15px; color: var(--text); }
.num {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 30%; margin-right: 10px;
  background: var(--c, var(--gold)); color: var(--g, var(--ink)); font-family: var(--font-logo); font-size: 17px; font-weight: 700; vertical-align: 2px;
  box-shadow: 0 3px 0 rgba(24, 33, 61, 0.14); transform: rotate(var(--r, -5deg));
}

/* a visita, como a trilha do jogo: 3 bandeiras e a pedra */
.trail {
  list-style: none; margin: 40px auto 0; padding: 26px 18px 22px; max-width: 1000px; border-radius: 30px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; counter-reset: none;
}
.trail li { position: relative; text-align: center; padding: 0 6px; }
.trail li::before {
  content: ""; position: absolute; top: 27px; left: -50%; width: 100%; height: 0;
  border-top: 3px dashed rgba(112, 56, 216, 0.35); z-index: 0;
}
.trail li:first-child::before { display: none; }
.trail .dot {
  position: relative; z-index: 1; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto; border-radius: 30%;
  background: var(--c, #fff); color: var(--g, var(--ink)); font-family: var(--font-logo); font-weight: 700; font-size: 20px;
  box-shadow: 0 4px 0 rgba(24, 33, 61, 0.14); transform: rotate(var(--r, 0deg));
}
.trail .dot svg { width: 30px; height: 30px; }
.trail b { display: block; margin-top: 12px; font-size: 15.5px; font-weight: 900; }
.trail small { display: block; margin-top: 2px; font-size: 13px; font-weight: 800; color: var(--muted); line-height: 1.35; }
.trail .flag { position: absolute; z-index: 2; top: -12px; right: calc(50% - 44px); width: 26px; height: 30px; transform: rotate(8deg); }
@media (max-width: 760px) {
  .trail { grid-template-columns: 1fr; gap: 18px; max-width: 420px; padding: 22px; }
  .trail li { display: grid; grid-template-columns: 56px 1fr; column-gap: 16px; text-align: left; align-items: center; padding: 0; }
  .trail li::before { top: -18px; left: 27px; width: 0; height: 18px; border-top: 0; border-left: 3px dashed rgba(112, 56, 216, 0.35); }
  .trail .dot { grid-row: span 2; margin: 0; }
  .trail b { margin-top: 0; align-self: end; }
  .trail small { align-self: start; }
  .trail .flag { top: -8px; right: auto; left: 40px; }
}

/* ---------- telas reais ----------
   Duas fileiras: o jogo DEITADO (#telas, em "How it works": 3 × 2 no computador,
   carrossel no celular) e o app EM PÉ (#telas-pais, em "For grown-ups").
   O degrau entre as telas usa `translate`, não `transform`: o `.reveal.in`
   zera o transform e apagaria o degrau. A ilha dinâmica é desenhada no quadro
   (as fotos do simulador saem sem ela). */
.telas-wrap:not(:has(figure)) { display: none; }
.telas-wrap { margin-top: 56px; }
.phones {
  display: flex; gap: 28px; justify-content: safe center; align-items: flex-start;
  overflow-x: auto; overscroll-behavior-x: contain; padding: 10px 4px 34px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.phones::-webkit-scrollbar { display: none; }
.phones:focus-visible { outline-offset: -3px; }
.phone { flex: 0 0 auto; width: 236px; margin: 0; scroll-snap-align: center; text-align: center; }
.phone.landscape { width: 440px; }
.phone .frame {
  position: relative; border-radius: 42px; padding: 9px; background: #1a1d33;
  box-shadow: 0 24px 50px rgba(20, 40, 90, 0.25), inset 0 0 0 2px #353a58;
  transition: transform .45s cubic-bezier(.2, .9, .3, 1.3), box-shadow .45s ease;
}
.phone .frame::after {
  content: ""; position: absolute; left: 50%; top: calc(9px + 1.3%); width: 31%; height: 4.2%;
  transform: translateX(-50%); border-radius: 99px; background: #0a0b14;
}
.phone.landscape .frame { border-radius: 30px; padding: 10px; }
.phone.landscape .frame::after { left: calc(10px + 1.3%); top: 50%; width: 4.2%; height: 31%; transform: translateY(-50%); }
.phone .frame img { border-radius: 34px; width: 100%; height: auto; background: #fff; }
.phone.landscape .frame img { border-radius: 21px; }
.phone figcaption { margin-top: 14px; font-size: 14.5px; font-weight: 900; color: var(--ink); line-height: 1.3; }
@media (hover: hover) {
  .phone:hover .frame { transform: translateY(-6px) rotate(-0.8deg); box-shadow: 0 32px 60px rgba(20, 40, 90, 0.3), inset 0 0 0 2px #353a58; }
  .phone:nth-child(even):hover .frame { transform: translateY(-6px) rotate(0.8deg); }
}
.phones-tall { gap: 34px; }
.phones-tall .phone:nth-child(2) { translate: 0 30px; }
.phones-tall { padding-bottom: 64px; }
.telas-note { text-align: center; margin: 4px 0 0; font-size: 13.5px; color: var(--muted); }

/* computador: o jogo em 3 colunas × 2 linhas, tudo à vista, sem rolar */
@media (min-width: 900px) {
  .phones-game {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 30px;
    overflow: visible; padding: 10px 0 34px; max-width: 1180px; margin: 0 auto;
  }
  .phones-game .phone.landscape { width: auto; }
  .phones-game .phone:nth-child(3n+2) { translate: 0 26px; }
  .swipe-hint { display: none; }
}
/* tablet e celular: carrossel de ponta a ponta, rolando só DENTRO da fileira */
@media (max-width: 899px) {
  .phones { justify-content: flex-start; margin-inline: -24px; padding-inline: 24px; scroll-padding-inline: 24px; }
  .phone.landscape { width: min(420px, 78vw); }
}
@media (max-width: 700px) {
  .phone { width: 200px; }
  .phones-tall { gap: 22px; padding-bottom: 50px; }
  .phones-tall .phone:nth-child(2) { translate: 0 22px; }
  .phone.landscape .frame { border-radius: 24px; padding: 8px; }
  .phone.landscape .frame::after { left: calc(8px + 1.3%); }
  .phone.landscape .frame img { border-radius: 17px; }
  .phone .frame { border-radius: 36px; padding: 8px; }
  .phone .frame::after { top: calc(8px + 1.3%); }
  .phone .frame img { border-radius: 29px; }
}
@media (max-width: 520px) {
  .phones { margin-inline: -16px; padding-inline: 16px; scroll-padding-inline: 16px; }
  .phone.landscape { width: 80vw; }
}

/* ---------- linhas de história ---------- */
.stories { margin-top: 48px; display: grid; gap: 84px; }
.story { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.story.flip > .pic-framed, .story.flip > .stage { order: 2; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; gap: 26px; } .story.flip > .pic-framed, .story.flip > .stage { order: 0; } }
.pic-framed { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-pic); outline: 1px solid rgba(255, 255, 255, 0.85); aspect-ratio: 3 / 2; background: var(--sky); position: relative; }
.pic-framed img { width: 100%; height: 100%; object-fit: cover; }
.story h3 { margin: 10px 0 0; font-size: clamp(28px, 3.4vw, 36px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.1; }
.story p { margin: 14px 0 0; font-size: 17.5px; color: var(--text); }
.story p b { color: var(--ink); font-weight: 900; }

/* as ilhas, com a miniatura de cada uma */
.chips { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px 5px 5px; border-radius: 999px;
  background: #fff; border: 1px solid #dbe9f7; font-size: 13px; font-weight: 900; color: var(--ink); box-shadow: 0 3px 0 #d3e4f5;
}
.chip img { width: 42px; height: 28px; border-radius: 999px; object-fit: cover; }

/* o mapa de verdade do jogo */
.map { margin: 64px auto 0; max-width: 1040px; }
.map .pic-framed { aspect-ratio: 3 / 2; }
.map-tag {
  position: absolute; left: 18px; bottom: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.9); font-size: 13.5px; font-weight: 900; color: var(--ink); box-shadow: 0 6px 18px rgba(20, 40, 90, 0.18);
}
.map-tag svg { width: 18px; height: 18px; color: var(--gold-dark); }
@media (max-width: 560px) { .map-tag { left: 10px; bottom: 10px; font-size: 12px; padding: 7px 12px; } }

/* os filhotes que saem do ovo */
.hatch { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 14px 18px; list-style: none; padding: 0; }
.hatch li { text-align: center; width: 84px; }
.hatch .egg {
  display: grid; place-items: end center; height: 96px; border-radius: 50% 50% 46% 46% / 58% 58% 42% 42%;
  background: radial-gradient(circle at 50% 38%, #fff 0%, var(--e, #f3ecff) 70%); box-shadow: inset 0 -6px 0 rgba(24, 33, 61, 0.06);
  padding-bottom: 6px;
}
.hatch img { height: 84px; width: auto; transition: transform .25s ease; }
.hatch li:hover img { transform: translateY(-4px) rotate(-3deg); }
.hatch span { display: block; margin-top: 6px; font-size: 13px; font-weight: 900; }
@media (max-width: 520px) {
  .hatch { gap: 12px; }
  .hatch li { width: 70px; }
  .hatch .egg { height: 82px; }
  .hatch img { height: 70px; }
}

/* ---------- experimente uma conta (a demo) ---------- */
.try {
  margin: 64px auto 0; max-width: 1040px; border-radius: 34px; padding: 30px clamp(20px, 4vw, 44px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; align-items: center;
}
.no-js .try { display: none; }
@media (max-width: 860px) { .try { grid-template-columns: 1fr; } }
.try h3 { margin: 6px 0 0; font-size: clamp(26px, 3vw, 32px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; }
.try p { margin: 10px 0 0; font-size: 16px; color: var(--text); }
.try-scene {
  position: relative; display: flex; align-items: flex-end; justify-content: center; gap: 6px; padding: 18px 10px 14px;
  border-radius: 26px; background: linear-gradient(180deg, #d5ecff 0%, #e8f6ff 62%, #fff3d6 62%, #ffe9b8 100%);
  min-height: 250px;
}
.friend { position: relative; height: 220px; container-type: inline-size; flex: none; }
.friend img { width: 100%; height: 100%; object-fit: contain; }
.friend .cardnum {
  position: absolute; display: grid; place-items: center;
  font-family: var(--font-logo); font-weight: 700; color: var(--ink); line-height: 1;
  font-size: 54px;
}
.friend.cheer .cardnum { display: none; }
.op { align-self: center; margin-bottom: 30px; font-family: var(--font-logo); font-weight: 700; font-size: 44px; color: var(--purple); }
.op.eq { color: var(--sea-deep); }
.qmark {
  align-self: center; margin-bottom: 30px; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 30%;
  background: #fff; font-family: var(--font-logo); font-weight: 700; font-size: 36px; color: var(--purple);
  box-shadow: 0 5px 0 rgba(24, 33, 61, 0.12); transform: rotate(-4deg); transition: background .2s, color .2s;
}
.try.done .qmark { background: var(--leaf); color: var(--ink); }
@media (max-width: 520px) {
  .friend { height: 150px; }
  .friend .cardnum { font-size: 38px; }
  .op { font-size: 32px; margin-bottom: 22px; }
  .qmark { width: 50px; height: 50px; font-size: 28px; margin-bottom: 22px; }
  .try-scene { min-height: 180px; }
}
.answers { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 12px; }
.answer {
  width: 76px; height: 64px; border-radius: 20px; border: 0; cursor: pointer;
  background: #fff; color: var(--ink); font-family: var(--font-logo); font-weight: 700; font-size: 30px;
  box-shadow: 0 6px 0 #c9dcef, inset 0 0 0 2px #dbe9f7; transition: transform .12s ease, box-shadow .12s ease, background .2s;
}
.answer:hover { background: #f7fbff; }
.answer:active { transform: translateY(4px); box-shadow: 0 2px 0 #c9dcef, inset 0 0 0 2px #dbe9f7; }
.answer.wrong { background: #ffe9e9; color: #b3261e; box-shadow: 0 6px 0 #f3c3c3, inset 0 0 0 2px #f3c3c3; animation: shake .4s ease; }
.answer.right { background: var(--leaf); color: var(--ink); box-shadow: 0 6px 0 #2c9a58, inset 0 0 0 2px #2c9a58; }
.answer[disabled], .answer[aria-disabled="true"] { cursor: default; }
@keyframes shake { 20%, 60% { transform: translateX(-5px); } 40%, 80% { transform: translateX(5px); } }
.try-say { margin-top: 14px; min-height: 26px; font-size: 16px; font-weight: 900; color: var(--purple); }
.try-again { margin-top: 12px; }
.try-again[hidden] { display: none; }
.btn-soft { height: 44px; padding: 0 18px; background: var(--purple-soft); color: var(--purple); font-size: 14px; }
.spark { position: absolute; width: 14px; height: 14px; pointer-events: none; color: var(--gold-star); animation: spark 0.9s ease-out forwards; }
@keyframes spark { 0% { opacity: 1; transform: translate(0, 0) scale(.6) rotate(0); } 100% { opacity: 0; transform: translate(var(--x), var(--y)) scale(1.2) rotate(120deg); } }

/* ---------- o Lilo ---------- */
.stage {
  position: relative; display: grid; place-items: center; aspect-ratio: 1 / 1; max-width: 460px; width: 100%; margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 50% 50%, #e9defe 0%, #d7ecff 62%, rgba(215, 236, 255, 0) 71%);
}
.stage img { width: 64%; height: auto; animation: float 4.5s ease-in-out infinite alternate; filter: drop-shadow(0 18px 22px rgba(80, 50, 160, 0.22)); }
@keyframes float { from { transform: translateY(6px); } to { transform: translateY(-8px); } }
.bubble {
  position: absolute; top: 8%; right: 2%; padding: 12px 16px; border-radius: 22px 22px 22px 6px;
  background: #fff; font-size: 16px; font-weight: 900; color: var(--ink); box-shadow: 0 10px 26px rgba(40, 60, 120, 0.16);
  transform: rotate(3deg); max-width: 210px; line-height: 1.3;
}
.stage .twinkle { position: absolute; width: 22px; height: 22px; color: var(--gold-star); animation: twinkle 2.6s ease-in-out infinite; }
.stage .twinkle.a { left: 12%; top: 22%; }
.stage .twinkle.b { left: 20%; bottom: 18%; width: 16px; height: 16px; animation-delay: -1s; }
.stage .twinkle.c { right: 14%; bottom: 26%; width: 18px; height: 18px; animation-delay: -1.8s; }
@keyframes twinkle { 0%, 100% { opacity: .35; transform: scale(.8) rotate(0); } 50% { opacity: 1; transform: scale(1.1) rotate(20deg); } }

/* ---------- para os adultos ---------- */
.parents { margin-top: 56px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 24px; align-items: start; }
@media (max-width: 900px) { .parents { grid-template-columns: 1fr; } }
.mini { display: grid; gap: 14px; }
.mini .glass { border-radius: 24px; padding: 18px 20px; display: grid; grid-template-columns: 44px 1fr; gap: 4px 14px; align-items: start; }
.mini .ico { grid-row: span 2; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 30%; background: var(--c, var(--purple-soft)); color: var(--g, var(--purple)); }
.mini .ico svg { width: 22px; height: 22px; }
.mini h3 { margin: 0; font-size: 17px; font-weight: 900; }
.mini p { margin: 0; font-size: 14.5px; color: var(--text); }

/* o e-mail da noite, de exemplo, no desenho do e-mail de verdade */
.mail { border-radius: 28px; padding: 22px 24px 20px; position: relative; }
.mail-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid #e6eef8; }
.mail-from { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.mail-from img { width: 34px; height: 34px; border-radius: 9px; }
.mail-from b { display: block; color: var(--ink); font-size: 14px; }
.mail-tag { font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--sea-deep); background: var(--sea-soft); padding: 5px 10px; border-radius: 999px; }
.mail h3 { margin: 16px 0 2px; font-size: 21px; font-weight: 900; color: #2b1c46; letter-spacing: -0.02em; }
.mail h3 small { font-size: 13px; color: #5d6384; font-weight: 800; letter-spacing: 0; margin-left: 4px; }
.mail .intro { margin: 0; font-size: 14px; color: var(--muted); }
.mail-stats { margin: 14px 0 8px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; text-align: center; }
.mail-stats b { display: block; font-size: 22px; font-weight: 900; color: var(--purple); line-height: 1.1; }
.mail-stats span { display: block; font-size: 11px; font-weight: 800; color: var(--muted); }
.mail p { margin: 6px 0 0; font-size: 14px; color: #2b1c46; }
.mail p.m { color: var(--muted); font-size: 13px; }
.mail p.help { color: #c0312f; font-size: 13px; }
@media (max-width: 420px) { .mail-stats { grid-template-columns: repeat(2, 1fr); row-gap: 10px; } }

/* ---------- promessa ---------- */
.promise { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .promise { grid-template-columns: 1fr; } }
.promise ul { list-style: none; margin: 26px 0 0; padding: 22px; border-radius: 26px; display: grid; gap: 14px; }
.promise li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--text); }
.promise li svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; color: var(--green); }
.promise li b { font-weight: 900; color: var(--ink); }
.promise a { color: var(--purple); font-weight: 900; }

/* ---------- baixar ---------- */
.get { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
@media (max-width: 900px) { .get { grid-template-columns: 1fr; } }
.get .stage { max-width: 420px; }
.get .stage img { width: 70%; }
.get-card { border-radius: var(--radius-card); padding: 30px; max-width: 460px; width: 100%; margin: 0 auto; }
.get-card h3 { margin: 0; font-size: 30px; font-weight: 900; letter-spacing: -0.03em; }
.get-card .tag { margin: 4px 0 0; font-size: 14px; color: var(--text); }
.get-card ul { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 12px; font-size: 15px; color: var(--text); }
.get-card li { display: flex; gap: 10px; align-items: flex-start; }
.get-card li svg { flex-shrink: 0; width: 19px; height: 19px; margin-top: 2px; color: var(--green); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 36px auto 0; display: grid; gap: 12px; }
.faq details { border-radius: 24px; padding: 18px 22px; }
.faq summary { cursor: pointer; list-style: none; font-size: 16.5px; font-weight: 900; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--purple); font-size: 26px; line-height: 1; transition: transform .2s; font-family: var(--font-logo); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 12px 0 0; font-size: 15px; color: var(--text); }
.faq a { color: var(--purple); font-weight: 900; }
.more { text-align: center; margin-top: 22px; font-size: 15px; color: var(--text); }
.more a { color: var(--purple); font-weight: 900; }

/* ---------- faixa final ---------- */
.cta-band {
  position: relative; margin: 20px 24px 0; border-radius: 40px; overflow: hidden; padding: 60px 32px; text-align: center;
  background:
    radial-gradient(40% 70% at 12% 10%, rgba(255, 255, 255, 0.18), transparent 70%),
    linear-gradient(135deg, #0e7f99 0%, #2a5fd6 52%, #6a35d0 100%);
  color: #fff; box-shadow: 0 24px 60px rgba(42, 95, 214, 0.3);
}
.cta-band h2 { font-size: clamp(30px, 4.4vw, 46px); color: #fff; }
.cta-band p { margin: 12px auto 26px; max-width: 560px; font-size: 18.5px; color: #fff; }
.cta-band .store { box-shadow: 0 6px 0 #000; }
.cta-band .lilo { position: absolute; right: 18px; bottom: -26px; width: 200px; height: auto; transform: rotate(-6deg); filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.25)); }
.cta-band .toy { position: absolute; opacity: 0.9; animation-duration: 9s; }
.cta-band .toy.b1 { --c: #ffc83d; --g: #18213d; --r: -10deg; --s: 46px; left: 26px; top: 26px; }
.cta-band .toy.b2 { --c: #47c979; --g: #18213d; --r: 8deg; --s: 36px; left: 88px; top: 92px; --w: -4s; }
@media (max-width: 800px) {
  .cta-band { margin: 20px 16px 0; padding: 52px 22px 130px; }
  .cta-band .lilo { width: 130px; right: 50%; margin-right: -65px; bottom: -22px; transform: rotate(0); }
  .cta-band .toy.b2 { display: none; }
  .cta-band .toy.b1 { --s: 34px; left: 16px; top: 16px; }
}

/* ---------- rodapé ---------- */
.footer { max-width: 1240px; margin: 0 auto; padding: 56px 24px 40px; }
.footer-in { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; align-items: flex-start; padding-top: 28px; border-top: 1px solid rgba(29, 32, 70, 0.12); }
.footer p { margin: 10px 0 0; max-width: 380px; font-size: 14px; color: var(--text); }
.footer p a { color: var(--purple); }
.footer nav { display: flex; flex-wrap: wrap; gap: 12px 24px; font-size: 14px; font-weight: 800; }
.footer nav a { text-decoration: none; color: var(--text); }
.footer nav a:hover { color: var(--purple); }
.footer .fine { margin-top: 28px; font-size: 12.5px; color: var(--muted); max-width: none; }
@media (max-width: 520px) { .footer { padding-left: 16px; padding-right: 16px; } }

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

/* ---------- menos movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .numline .hop { stroke-dashoffset: 0; }
  .numline .tip, .numline .to, .numline .lbl { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- páginas de texto (privacidade, termos, suporte, apps) ---------- */
.doc-hero { max-width: 880px; margin: 0 auto; padding: 56px 24px 8px; display: flex; gap: 24px; align-items: center; }
.doc-lilo {
  flex-shrink: 0; display: grid; place-items: center; width: 120px; height: 120px; border-radius: 34%;
  background: radial-gradient(circle at 50% 60%, #fff 0%, #e9defe 60%, #d7ecff 100%); box-shadow: var(--shadow);
}
.doc-lilo img { width: 84px; height: auto; margin-top: 8px; }
.doc-hero h1 { font-size: clamp(38px, 5.4vw, 56px); margin: 6px 0 0; }
.doc-hero p { margin: 8px 0 0; color: var(--text); font-size: 16px; }
@media (max-width: 560px) {
  .doc-hero { flex-direction: column; align-items: flex-start; padding: 40px 16px 8px; }
  .doc-lilo { width: 88px; height: 88px; } .doc-lilo img { width: 62px; }
}
.doc {
  max-width: 880px; margin: 24px auto 0; padding: 36px clamp(22px, 5vw, 56px) 44px; border-radius: 36px;
  font-weight: 600; font-size: 16.5px; color: #353a5c;
}
.doc h2 { font-size: 26px; margin: 38px 0 0; letter-spacing: -0.025em; color: var(--ink); }
.doc h2:first-child { margin-top: 0; }
.doc h3 { font-size: 19px; font-weight: 900; margin: 26px 0 0; color: var(--purple); }
.doc p, .doc ul, .doc ol, .doc table { margin: 12px 0 0; }
.doc ul, .doc ol { padding-left: 22px; }
.doc li { margin: 6px 0; }
.doc li::marker { color: var(--sea-deep); }
.doc strong { font-weight: 900; color: var(--ink); }
.doc a { color: var(--purple); font-weight: 800; }
.doc table { width: 100%; border-collapse: collapse; font-size: 14.5px; display: block; overflow-x: auto; }
.doc th, .doc td { text-align: left; padding: 10px 12px; border-bottom: 1px solid #e3ecf6; vertical-align: top; }
.doc th { font-weight: 900; color: var(--ink); background: #eef6ff; }
.contact-cards { max-width: 880px; margin: 24px auto 0; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-cards .glass { border-radius: 26px; padding: 22px 24px; }
.contact-cards h3 { margin: 0; font-size: 18px; font-weight: 900; color: var(--purple); }
.contact-cards p { margin: 6px 0 0; font-size: 15px; color: var(--text); }
.contact-cards a.mail { display: inline-block; margin-top: 10px; font-size: 17px; font-weight: 900; color: var(--ink); }
.doc-wrap { padding: 0 24px; }
@media (max-width: 520px) { .doc-wrap { padding: 0 16px; } }

/* A página /apps: os apps da família Zupzi */
.familia-logo { display: flex; justify-content: center; margin: 4px 0 18px; }
.familia-logo img { width: min(360px, 80%); height: auto; }
.familia-intro, .familia-fim { text-align: center; max-width: 620px; margin-left: auto; margin-right: auto; }
.app-cards { display: grid; gap: 18px; margin: 26px 0; }
.app-card { display: flex; gap: 20px; align-items: flex-start; padding: 22px; background: #fff; border: 2px solid #e3e9f1; border-bottom-width: 6px; border-radius: 24px; }
.app-card-aqui { border-color: #cfe0ff; }
.app-icon { width: 88px; height: 88px; border-radius: 22px; flex: none; box-shadow: 0 6px 16px rgba(24, 33, 61, 0.16); }
.app-body h2 { margin: 0; font-family: var(--font-logo); font-size: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.app-tag { margin: 2px 0 8px; font-weight: 800; color: var(--purple); }
.app-body p { margin-top: 6px; }
.app-aqui { font-family: var(--font); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; color: #fff; background: var(--purple); padding: 4px 10px; border-radius: 999px; }
.app-links { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 14px; }
.app-store img { display: block; height: 40px; width: auto; }
.app-site { font-weight: 900; text-decoration: none; color: var(--purple); }
.app-soon { font-weight: 800; font-size: 14px; color: var(--text); background: var(--sky-soft); padding: 9px 14px; border-radius: 12px; }
@media (max-width: 560px) { .app-card { flex-direction: column; } .app-icon { width: 72px; height: 72px; border-radius: 18px; } }
