/* doesnothing.app. Misma marca que la app: Unbounded solo para el logo "nada", Onest para todo lo demás. */

/* ---------- Fuentes (alojadas aquí; licencia SIL OFL 1.1, ver /fonts/OFL-*.txt) ---------- */
@font-face { font-family: "Onest"; font-style: normal; font-weight: 400 700; font-display: swap; src: url(/fonts/onest-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
/* Solo las letras del logo ("nada") y de "[D4U]": unos pocos cientos de bytes cada una */
@font-face { font-family: "Unbounded"; font-style: normal; font-weight: 800; font-display: swap; src: url(/fonts/unbounded-800-nada.woff2) format("woff2"); unicode-range: U+61, U+64, U+6E; }
@font-face { font-family: "Caveat"; font-style: normal; font-weight: 600; font-display: swap; src: url(/fonts/caveat-600-hand.woff2) format("woff2"); unicode-range: U+20, U+4E, U+61, U+64-65, U+6F; }
@font-face { font-family: "JetBrains Mono"; font-style: normal; font-weight: 700; font-display: swap; src: url(/fonts/jetbrainsmono-700-d4u.woff2) format("woff2"); unicode-range: U+34, U+44, U+55, U+5B, U+5D; }

/* ---------- Tokens: claro por defecto; oscuro por el sistema o por elección ---------- */
:root {
  --bg: #F5F6F8; --bg-alt: #ECEEF1; --card: #FFFFFF; --ink: #14161A; --muted: #676D77; --faint: #9BA1AA; --line: #DCDFE4;
  --accent: #FF4A2B; --accent-ink: #FFFFFF; --gold: #FFCF3A; --good: #17915A; --tint: #FFE9E4;
  --shadow: 0 1px 2px rgba(20, 22, 26, .06), 0 14px 30px -18px rgba(20, 22, 26, .25);
  --display: "Unbounded", "Arial Black", system-ui, sans-serif;
  --body: "Onest", system-ui, -apple-system, "Segoe UI", sans-serif;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #17191D; --bg-alt: #111316; --card: #22252A; --ink: #F2F3F5; --muted: #9AA0A9; --faint: #6A707A; --line: #33373E;
    --good: #22A866; --tint: rgba(255, 74, 43, .14);
    --shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 14px 30px -16px rgba(0, 0, 0, .8);
    --dk: 1; --ped-side: url(#pedside-dk); --ped-top: #33373F;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #17191D; --bg-alt: #111316; --card: #22252A; --ink: #F2F3F5; --muted: #9AA0A9; --faint: #6A707A; --line: #33373E;
  --good: #22A866; --tint: rgba(255, 74, 43, .14);
  --shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 14px 30px -16px rgba(0, 0, 0, .8);
  --dk: 1; --ped-side: url(#pedside-dk); --ped-top: #33373F;
  color-scheme: dark;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.55 var(--body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
/* El pie siempre abajo, aunque la página sea corta */
body { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
body > main { flex: 1 0 auto; }
body > .foot { flex-shrink: 0; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img, svg { display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 10px; }
.wrap { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 720px) { .wrap { padding: 0 32px; } }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--bg); padding: 8px 14px; border-radius: 10px; z-index: 100; }
.skip:focus { left: 8px; }
[hidden] { display: none !important; }

/* ---------- Tipografía ---------- */
.eyebrow { font: 600 12.5px/1.3 var(--body); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.h1 { font: 700 clamp(34px, 6vw, 52px)/1.05 var(--body); letter-spacing: -.03em; text-wrap: balance; }
.h2 { font: 700 clamp(28px, 4.2vw, 42px)/1.1 var(--body); letter-spacing: -.028em; text-wrap: balance; }
.lead { font-size: clamp(17px, 2vw, 19px); color: var(--muted); max-width: 44ch; text-wrap: pretty; }

/* ---------- Cabecera ---------- */
.top { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid color-mix(in srgb, var(--line) 60%, transparent); }
.top-in { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font: 800 28px/1 var(--display); letter-spacing: -.045em; text-decoration: none; transition: opacity .15s; }
a.logo:hover { opacity: .78; }
.logo-ic { width: 36px; height: 36px; border-radius: 9px; box-shadow: 0 0 0 1px rgba(20, 22, 26, .08), 0 4px 10px -4px rgba(20, 22, 26, .35); }
.logo .ic-dark { display: none; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .logo .ic-light { display: none; } :root:not([data-theme="light"]) .logo .ic-dark { display: block; } }
:root[data-theme="dark"] .logo .ic-light { display: none; }
:root[data-theme="dark"] .logo .ic-dark { display: block; }
.top-r { display: flex; align-items: center; gap: 8px; }
.pill-link { font-size: 14px; font-weight: 600; color: var(--muted); text-decoration: none; padding: 8px 10px; border-radius: 99px; }
.pill-link:hover { color: var(--ink); background: var(--card); }
.icon-btn { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); background: var(--card); box-shadow: var(--shadow); }
.icon-btn svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn .i-moon { display: none; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .icon-btn .i-sun { display: none; } :root:not([data-theme="light"]) .icon-btn .i-moon { display: block; } }
:root[data-theme="dark"] .icon-btn .i-sun { display: none; }
:root[data-theme="dark"] .icon-btn .i-moon { display: block; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: 16px; background: var(--accent); color: var(--accent-ink); font-weight: 700; text-decoration: none; transition: transform .1s, box-shadow .2s; box-shadow: 0 8px 20px -10px rgba(255, 74, 43, .8); }
.btn:active { transform: scale(.97); }
.btn-sm { padding: 9px 15px; border-radius: 99px; font-size: 14px; }
@media (max-width: 420px) { .btn-sm { display: none; } }

/* ---------- Portada ---------- */
.hero { padding: 40px 0 24px; }
/* En el móvil el botón va justo después del título (es lo que engancha); en escritorio, a la derecha */
.hero-in { display: grid; gap: 24px; grid-template-areas: "top" "play" "copy"; }
.hero-top { grid-area: top; } .hero-play { grid-area: play; } .hero-copy { grid-area: copy; }
@media (min-width: 900px) {
  .hero { padding: 72px 0 56px; }
  .hero-copy .hero-sub { margin-top: 18px; }                        /* más específico que la regla general (margin 0) */
  .hero-in { grid-template-columns: 1.05fr .95fr; grid-template-areas: "top play" "copy play"; column-gap: 48px; row-gap: 0; align-items: center; }
  .hero-top { align-self: end; } .hero-copy { align-self: start; }
}
.hero-h { font: 700 clamp(44px, 7.4vw, 76px)/.98 var(--body); letter-spacing: -.045em; }
.hero-h span { color: var(--accent); }
/* "No hagas nada." es más largo que "Do nothing.": un poco más pequeño para que quepa en una línea */
.hero-h:lang(es) { font-size: clamp(40px, 6.2vw, 64px); }
.hero-sub { margin-top: 0; font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 40ch; text-wrap: pretty; }
.price { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* Tiendas: los gráficos oficiales de Apple y Google, sin modificar (los de Google, recortados sin su margen transparente).
   Antes del lanzamiento se ven igual, con la nota "Coming soon" debajo, y al tocarlos avisan. */
.stores { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 26px; }
.store { display: block; line-height: 0; border-radius: 10px; transition: transform .1s; }
.store:active { transform: scale(.97); }
/* Los gráficos de Google vienen recortados sin su margen transparente (el español no lo traía): todos miden lo mismo */
.store-badge { width: auto; height: 48px; }
.stores-note { margin-top: 10px; font-size: 13.5px; font-weight: 600; color: var(--accent); }
.stores-inv { justify-content: center; }


.hero-play { display: grid; justify-items: center; text-align: center; }
.bigbtn { display: block; width: min(420px, 92%); -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.bigbtn svg { width: 100%; height: auto; overflow: visible; }
.bigbtn .cap { transform-box: view-box; transform-origin: 200px 178px; }
.tapline { height: 52px; display: flex; align-items: center; justify-content: center; max-width: 30ch; margin-top: 4px; font-size: 18px; line-height: 24px; font-weight: 600; color: var(--muted); }
.tapline > span { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-wrap: balance; }
.tapline.hit { color: var(--ink); animation: pop .32s cubic-bezier(.3, 1.6, .5, 1); }
@keyframes pop { from { opacity: 0; transform: translateY(6px) scale(.96); } to { opacity: 1; transform: none; } }
.taps { font-size: 13.5px; color: var(--faint); font-variant-numeric: tabular-nums; min-height: 21px; }
.btn-ghost { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 99px; font-weight: 600; font-size: 15px; background: var(--card); box-shadow: var(--shadow); }
.btn-ghost svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Bandas ---------- */
.band { padding: 56px 0; }
@media (min-width: 900px) { .band { padding: 88px 0; } }
.band-alt { background: var(--bg-alt); }
.sec-head { max-width: 640px; margin-bottom: 32px; }

/* Pantalla bloqueada con notificaciones */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: .9fr 1.1fr; gap: 64px; } }
.split-copy .lead { margin-top: 14px; }
.phone { justify-self: center; width: min(320px, 86vw); aspect-ratio: 9 / 18.5; border-radius: 48px; padding: 10px; background: #16181C; box-shadow: 0 40px 70px -34px rgba(10, 12, 16, .55); }
.phone-screen { height: 100%; border-radius: 38px; overflow: hidden; padding: 56px 12px 16px; color: #fff; text-align: center;
  background: radial-gradient(120% 70% at 50% 0%, #FF7A5C 0%, #FF4A2B 38%, #7A1F12 78%, #2A0E09 100%); }
.ls-time { font: 700 64px/1 var(--body); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.ls-date { font-size: 15px; font-weight: 500; opacity: .9; margin-top: 6px; }
.ls-stack { margin-top: 26px; display: grid; gap: 8px; text-align: left; }
.ls-n { display: grid; grid-template-columns: 36px 1fr; gap: 10px; align-items: center; padding: 11px 12px; border-radius: 20px; background: rgba(255, 255, 255, .22); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); color: #fff; animation: ls-in .55s cubic-bezier(.2, .9, .3, 1.1) both; }
.ls-n img { width: 36px; height: 36px; border-radius: 9px; }
.ls-h { display: flex; justify-content: space-between; gap: 8px; font-size: 13.5px; }
.ls-h span { opacity: .75; font-size: 12.5px; }
.ls-b { font-size: 13.5px; line-height: 1.35; opacity: .95; }
@keyframes ls-in { from { opacity: 0; transform: translateY(-14px) scale(.96); } to { opacity: 1; transform: none; } }

/* World of Nothing */
.world { text-align: center; display: grid; justify-items: center; }
.world-n { font: 700 clamp(44px, 9vw, 96px)/1 var(--body); letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.world-t { font-size: clamp(18px, 2.4vw, 24px); font-weight: 600; margin-top: 10px; }
.world-s { font-size: 14px; color: var(--muted); margin-top: 22px; display: grid; gap: 2px; }
.world-s span { display: block; }
/* Desglose: en qué están los que no hacen nada, según su hora local */
.world-split { margin-top: 30px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; width: 100%; max-width: 820px; }
@media (min-width: 720px) { .world-split { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.world-split div { background: var(--card); border-radius: 20px; padding: 16px 12px; box-shadow: var(--shadow); display: grid; gap: 2px; }
.world-split b { font: 700 26px/1.1 var(--body); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.world-split span { font-weight: 600; font-size: 15px; }
.world-split small { color: var(--muted); font-size: 13px; }
.world .btn-ghost { margin-top: 22px; }

/* Tarjetas */
.cards { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card { background: var(--card); border-radius: 24px; padding: 22px; box-shadow: var(--shadow); display: grid; gap: 8px; align-content: start; }
.card-ic { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--tint); color: var(--accent); margin-bottom: 6px; }
.card-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: 15px; }
.card .card-k { color: var(--ink); font-weight: 700; font-size: 14px; margin-top: 4px; font-variant-numeric: tabular-nums; }

/* Cierre */
.cta-band { background: var(--ink); color: var(--bg); border-radius: 32px; padding: clamp(32px, 6vw, 64px); text-align: center; display: grid; justify-items: center; }
.cta-band .lead { color: color-mix(in srgb, var(--bg) 70%, transparent); margin-top: 14px; }
.cta-band .stores { justify-content: center; }
.cta-band .stores-note { color: color-mix(in srgb, var(--bg) 80%, var(--accent)); }

/* Preguntas */
.faq { max-width: 760px; }
.faq .h2 { margin-bottom: 20px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 36px 18px 0; font-size: 18px; font-weight: 600; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--muted); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--muted); max-width: 60ch; }

/* ---------- Páginas de texto (privacidad, soporte, /get, 404) ---------- */
.doc { padding: 48px 0 72px; }
.doc-in { max-width: 760px; display: grid; gap: 14px; }
/* Ruta de vuelta al inicio en las páginas internas */
.crumb { display: flex; align-items: center; gap: 8px; }
.doc .crumb a { display: inline-flex; align-items: center; gap: 4px; color: var(--accent); text-decoration: none; }
.crumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.crumb svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin-left: -3px; }
/* Nosotros: cifras y quién está detrás */
.about-nums { margin-top: 4px; max-width: none; }
.team { margin-top: 4px; }
.doc .cards a.card { color: var(--ink); font-weight: 400; text-decoration: none; transition: transform .2s; }
.doc .cards a.card:hover { transform: translateY(-3px); }
.team-av { width: 44px; height: 44px; border-radius: 13px; margin-bottom: 6px; }
.team-d4u { justify-self: start; display: inline-flex; align-items: center; height: 44px; padding: 0 12px; border-radius: 13px; background: var(--bg); box-shadow: inset 0 0 0 1px var(--line); margin-bottom: 6px; }
.team-d4u b { font-size: 17px; }
.card-go { display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; color: var(--accent); font-weight: 700; font-size: 14px; }
.card-go svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.doc a.card:hover .card-go svg { transform: translateX(3px); }
.doc h2 { font-size: 22px; font-weight: 700; letter-spacing: -.015em; margin-top: 22px; }
.doc ul { margin: 0; padding-left: 20px; display: grid; gap: 8px; color: var(--muted); }
.doc p { color: var(--muted); }
.doc .h1, .doc h2 { color: var(--ink); }
.doc a:not(.store) { color: var(--accent); font-weight: 600; }
.doc-date { font-size: 14px; margin-top: 18px; }
.faq-doc { max-width: none; margin-top: 10px; }
.get-in { justify-items: center; text-align: center; padding-top: 24px; }
.get-in .lead { margin: 0 auto; }
.get-icon { border-radius: 22px; box-shadow: var(--shadow); }
.get-in .stores { justify-content: center; margin-top: 10px; }
.get-in .stores-note { margin-top: 0; }
.get-back { margin-top: 10px; font-size: 15px; }
/* El botón pequeño de la 404 */
.play-404 { grid-area: auto; margin: 6px 0 2px; }
.play-404 .bigbtn { width: min(300px, 76%); }
.play-404 .tapline { height: 46px; font-size: 16.5px; }
.doc .big404 { font: 700 clamp(72px, 16vw, 140px)/1 var(--body); letter-spacing: -.05em; color: var(--accent); font-variant-numeric: tabular-nums; }

/* ---------- Pie ---------- */
/* Pie sólido para los créditos (regla de la casa) */
.foot { background: var(--card); border-top: 1px solid var(--line); padding: 36px 0 32px; }
.foot-in { display: grid; gap: 24px; }
/* Enlaces centrados en vertical con la línea del logo (el icono mide 36 px; el botón del café, 34) */
@media (min-width: 720px) { .foot-in { grid-template-columns: 1fr auto; } .foot-base { grid-column: 1 / -1; } .foot-links { min-height: 36px; } }
.foot-brand p { color: var(--muted); margin-top: 8px; font-size: 15px; }
.foot-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; align-content: start; gap: 10px 22px; font-weight: 600; font-size: 15px; }
.foot-links li { display: flex; align-items: center; }
.foot-links a { text-decoration: none; }
.foot-links a:hover { color: var(--accent); }
/* Buy Me a Coffee con su logo y su amarillo de marca */
.foot-links .bmc { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px 7px 12px; border-radius: 10px; background: #FFDD00; color: #0D0C22; transition: transform .1s; }
.foot-links .bmc:hover { color: #0D0C22; transform: translateY(-1px); }
.foot-links .bmc img { width: 14px; height: 20px; }
.foot-base { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 10px; font-size: 13.5px; color: var(--muted); padding-top: 34px; border-top: 1px solid var(--line); }
/* La corrección a mano: "Todos los" tachado y, encima, "Nada de" con rotulador rojo */
.fix { position: relative; display: inline-block; }
.fix s { text-decoration: line-through; text-decoration-color: var(--accent); text-decoration-thickness: 2.5px; }
.fix .hand { position: absolute; left: 50%; bottom: 84%; transform: translateX(-50%) rotate(-5deg); white-space: nowrap; font: 600 22px/1 "Caveat", "Bradley Hand", "Segoe Script", cursive; color: var(--accent); font-style: normal; }
/* D4U: su propio logotipo (JetBrains Mono y corchetes azules), como marca de quien lo hizo */
.d4u { text-decoration: none; }
.d4u b { font: 700 13.5px "JetBrains Mono", ui-monospace, monospace; color: var(--ink); }
.d4u i { font-style: normal; color: #1652F0; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .d4u i { color: #5B84FF; } }
:root[data-theme="dark"] .d4u i { color: #5B84FF; }

/* ---------- Compartir: la tarjeta-imagen ---------- */
.share-dlg { border: 0; padding: 0; background: transparent; max-width: min(440px, calc(100% - 24px)); width: 100%; color: var(--ink); }
.share-dlg::backdrop { background: rgba(12, 13, 15, .55); backdrop-filter: blur(4px); }
.share-in { position: relative; background: var(--card); border-radius: 28px; padding: 20px; display: grid; gap: 14px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5); }
.share-h { font: 700 24px/1.1 var(--body); letter-spacing: -.02em; padding-right: 48px; }
.share-x { position: absolute; top: 14px; right: 14px; box-shadow: none; background: var(--bg); }
.share-img { width: 100%; height: auto; border-radius: 18px; box-shadow: var(--shadow); background: var(--bg); }
.share-acts { display: grid; gap: 14px; }
.share-acts .btn { width: 100%; }
/* Iconos en vez de textos: cada red con su color; al pasar el cursor se rellena con él */
.share-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.sico { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--bg); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); transition: background .15s, color .15s, transform .1s; }
.sico:active { transform: scale(.94); }
.sico svg { width: 22px; height: 22px; }
.sico.line svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sico .i-ok { display: none; }
.sico.done .i-link { display: none; } .sico.done .i-ok { display: block; }
.sico.done { background: var(--good); color: #fff; box-shadow: none; }
.wa { color: #25D366; } .tg { color: #26A5E4; } .fb { color: #0866FF; }
.wa:hover { background: #25D366; color: #fff; } .tg:hover { background: #26A5E4; color: #fff; } .fb:hover { background: #0866FF; color: #fff; }
.xx:hover, .line:hover { background: var(--ink); color: var(--bg); }

/* ---------- Aviso ---------- */
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 2147483647; max-width: calc(100% - 32px); width: max-content; padding: 12px 18px; border-radius: 14px; background: var(--ink); color: var(--bg); font-size: 15px; font-weight: 500; text-align: center; transform: translate(-50%, 16px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Aparecer al hacer scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
