/* ==========================================================================
   hoywin casino — hoja de estilos principal
   Orden: tokens -> base -> utilidades -> componentes (por bloque)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tipografía autoalojada
   -------------------------------------------------------------------------- */
@font-face {
    font-family: "Geist";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/images-sleek/type-400.woff2") format("woff2");
}
@font-face {
    font-family: "Geist";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/images-sleek/type-600.woff2") format("woff2");
}
@font-face {
    font-family: "Geist";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/images-sleek/type-700.woff2") format("woff2");
}

/* --------------------------------------------------------------------------
   Tokens de diseño
   -------------------------------------------------------------------------- */
:root {
    /* color */
    --tone-root: #c51130;
    --tone-key: #c2a200;
    --tone-accent-strong: #987801;
    --tone-field: #0b0b15;
    --tone-above: #15151f;
    --tone-front: #ffffff;
    --tone-faint: #bdbcbc;
    --tone-stroke: #2a2a3b;
    --tone-rule-bold: #3d3d55;
    --tone-ramp-start: #fedd4f;
    --tone-grad-2: #fec500;
    --tone-age-band: #a71e34;

    /* espacio */
    --sp-hair: 4px;
    --sp-tiny: 12px;
    --sp-snug: 20px;
    --sp-base: 36px;
    --sp-wide: 56px;
    --sp-roomy: 84px;
    --sp-vast: 120px;
    --sp-huge: 180px;

    /* radios */
    --crn-pill: 9999px;
    --crn-dot: 50%;
    --crn-hair: 2px;
    --crn-tiny: 4px;
    --crn-snug: 8px;
    --crn-base: 12px;
    --crn-wide: 16px;
    --crn-roomy: 20px;
    --crn-vast: 26px;
    --crn-huge: 34px;

    /* tipografía */
    --fnt-display: "Geist", "Segoe UI", system-ui, sans-serif;
    --fnt-body: "Geist", "Segoe UI", system-ui, sans-serif;
    --fs-title: clamp(30px, 5.1vw, 64px);
    --fs-head: clamp(26px, 3.3vw, 40px);
    --fs-h3: clamp(21px, 2.1vw, 28px);
    --fs-display-4: 22px;
    --fs-sm-2: 18px;
    --fs-xs-2: 16px;
    --fs-body: 17px;
    --fs-petite: 14px;
    --fs-xs: 12px;
    --ln-dense: 1.14;
    --ln-default: 1.5;
    --ln-loose: 1.75;
    --fw-plain: 400;
    --fw-half: 500;
    --fw-heavy: 700;
    --trk-narrow: -0.02em;
    --trk-normal: 0;
    --trk-spread: 0.04em;

    /* sombras */
    --elev-hair: none;
    --elev-tiny: none;
    --elev-snug: none;
    --elev-base: none;
    --elev-wide: 0 8px 24px rgba(0, 0, 0, 0.4);
    --elev-roomy: 0 14px 38px rgba(0, 0, 0, 0.48);
    --elev-vast: 0 20px 52px rgba(0, 0, 0, 0.55);
    --elev-huge: 0 28px 70px rgba(0, 0, 0, 0.6);

    /* movimiento */
    --tm-fast: 200ms;
    --tm-normal: 420ms;
    --tm-gentle: 755ms;
    --bz-exit: cubic-bezier(0.11, 0.73, 0.3, 0.95);
    --bz-in: cubic-bezier(0.35, 0.1, 0.36, 1);
    --bz-swing: cubic-bezier(0.35, 0.1, 0.36, 1);
    --bz-pop: cubic-bezier(0.44, 1.75, 0.65, 1.1);

    /* contenedores */
    --wrp-site: 1120px;
    --wrp-column: 1120px;
    --wrp-pad-lg: 24px;
    --wrp-edge-mid: 32px;
    --wrp-pad-sm: 16px;

    /* bordes */
    --str-fine: 1px;
    --str-base: 2px;
    --str-strong: 3px;

    /* alturas de barra */
    --bar-height-desktop: 72px;
    --bar-height-mobile: 62px;

    /* propios de esta construcción */
    --hw-sec-y: 44px;
    --hw-narrow: 550px;
    --hw-crown: 106px;
    --hw-deep: #101019;
    --hw-ink: #0b0b15;
    --hw-glow: #1c1c2b;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--tone-field);
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    margin-block-start: var(--hw-crown);
    background: var(--tone-field);
    color: var(--tone-front);
    font-family: var(--fnt-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-plain);
    line-height: var(--ln-loose);
    overflow-x: clip;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hw-main {
    flex: 1 0 auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: anywhere;
    margin: 0;
}

h1 {
    font-family: var(--fnt-display);
    font-size: var(--fs-title);
    font-weight: var(--fw-heavy);
    line-height: var(--ln-dense);
    letter-spacing: var(--trk-narrow);
    text-transform: uppercase;
}

h2 {
    font-family: var(--fnt-display);
    font-size: var(--fs-head);
    font-weight: var(--fw-heavy);
    line-height: var(--ln-dense);
    letter-spacing: var(--trk-narrow);
}

h3 {
    font-family: var(--fnt-display);
    font-size: var(--fs-h3);
    font-weight: var(--fw-heavy);
    line-height: var(--ln-dense);
    letter-spacing: var(--trk-normal);
}

h4 {
    font-family: var(--fnt-display);
    font-size: var(--fs-display-4);
    font-weight: var(--fw-heavy);
    line-height: var(--ln-dense);
}

h5,
h6 {
    font-family: var(--fnt-body);
    font-weight: var(--fw-half);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
}

p {
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

table {
    border-collapse: collapse;
}

button {
    font: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: var(--str-base) solid var(--tone-key);
    outline-offset: 3px;
}

[id] {
    scroll-margin-block-start: calc(var(--hw-crown) + 14px);
}

/* --------------------------------------------------------------------------
   Utilidades y accesibilidad
   -------------------------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.skip-hop {
    position: fixed;
    inset-inline-start: var(--sp-tiny);
    z-index: 400;
    padding: var(--sp-tiny) var(--sp-snug);
    background: var(--tone-key);
    color: var(--hw-ink);
    font-weight: var(--fw-heavy);
    text-decoration: none;
    border-radius: var(--crn-snug);
}

.skip-hop:not(:focus) {
    top: -200px;
}

.skip-hop:focus {
    top: var(--sp-tiny);
}

.hw-quiet {
    color: var(--tone-faint);
    background: var(--tone-field);
}

/* marco común de todas las secciones — un ancho único para toda la página */
.kutod-shell,
.gika-shell,
.tova-shell,
.nyduv-shell,
.rizo-shell,
.guvapuv-shell,
.zavy-shell,
.zopyfo-shell,
.rofyxof-shell,
.nogerim-shell,
.bunutus-shell,
.lalutap-shell,
.ribo-shell,
.nelyvut-shell,
.burutil-shell,
.vume-shell {
    display: block;
    width: 100%;
    max-width: calc(var(--wrp-site) + 2 * var(--wrp-pad-lg));
    margin-inline: auto;
    padding-inline: var(--wrp-pad-lg);
}

/* aparición de bloques */
[data-reveal] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--tm-normal) var(--bz-exit), transform var(--tm-normal) var(--bz-exit);
}

[data-reveal].shown {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   Franja de edad (RG-05) — dentro de la cabecera fija
   -------------------------------------------------------------------------- */
.rg-band {
    display: block;
    background: var(--hw-deep);
    color: var(--tone-faint);
    border-block-end: var(--str-fine) solid var(--tone-stroke);
    text-align: center;
    padding-block: 7px;
    padding-inline: var(--wrp-pad-sm);
    font-size: var(--fs-xs);
    line-height: 1.4;
}

.rg-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    min-height: 26px;
    margin-inline-end: 8px;
    padding-inline: 5px;
    border-radius: var(--crn-snug);
    background: var(--tone-age-band);
    color: var(--tone-front);
    font-size: 11px;
    font-weight: var(--fw-heavy);
    letter-spacing: var(--trk-spread);
    vertical-align: middle;
}

.rg-say {
    display: inline;
}

.rg-band a {
    color: var(--tone-ramp-start);
    background: var(--hw-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rg-band a:hover {
    color: var(--tone-front);
    background: var(--hw-deep);
}

/* --------------------------------------------------------------------------
   Cabecera HEAD-UTIL — franja de servicio + fila principal
   -------------------------------------------------------------------------- */
.bedid {
    position: fixed;
    inset-block-start: 0;
    inset-inline: 0;
    z-index: 300;
    background: var(--tone-field);
    border-block-end: var(--str-fine) solid var(--tone-stroke);
    transition: transform var(--tm-normal) var(--bz-exit);
}

.bedid.is-hidden {
    transform: translateY(-100%);
}

.bedid-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-tiny);
    min-height: 32px;
    padding-inline: var(--sp-base);
    background: var(--hw-deep);
    color: var(--tone-faint);
    font-size: var(--fs-xs);
    line-height: 1.4;
}

.bedid-desk {
    color: var(--tone-faint);
    background: var(--hw-deep);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
}

.bedid-note {
    color: var(--tone-faint);
    background: var(--hw-deep);
}

.bedid-note a {
    color: var(--tone-ramp-start);
    background: var(--hw-deep);
    text-decoration: none;
}

.bedid-note a:hover {
    color: var(--tone-front);
    background: var(--hw-deep);
    text-decoration: underline;
}

.bedid-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--sp-base);
    height: 72px;
    min-height: 72px;
    padding-inline: var(--sp-base);
    background: var(--tone-field);
}

.bedid-logo {
    order: 2;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.bedid-logo-figure {
    display: block;
    height: 60px;
    width: auto;
    flex-shrink: 0;
}

.bedid-menu-lever {
    order: 1;
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    background: var(--hw-glow);
    color: var(--tone-front);
    border: 0;
    border-radius: var(--crn-snug);
}

.bedid-lines {
    display: grid;
    grid-template-columns: repeat(2, 7px);
    grid-template-rows: repeat(2, 7px);
    gap: 4px;
}

.bedid-lines span {
    display: block;
    width: 7px;
    height: 7px;
    background: var(--tone-front);
    border-radius: var(--crn-hair);
    transition: transform var(--tm-fast) var(--bz-exit), opacity var(--tm-fast) var(--bz-exit);
}

.bedid-menu-lever[aria-expanded="true"] .bedid-lines {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
}

.bedid-menu-lever[aria-expanded="true"] .bedid-lines span {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    width: 18px;
    height: 2px;
    margin-block-start: -1px;
    margin-inline-start: -9px;
}

.bedid-menu-lever[aria-expanded="true"] .bedid-lines span:nth-child(1) {
    transform: rotate(45deg);
}

.bedid-menu-lever[aria-expanded="true"] .bedid-lines span:nth-child(2),
.bedid-menu-lever[aria-expanded="true"] .bedid-lines span:nth-child(3) {
    opacity: 0;
}

.bedid-menu-lever[aria-expanded="true"] .bedid-lines span:nth-child(4) {
    transform: rotate(-45deg);
}

.bedid-bar {
    order: 3;
    flex: 0 1 auto;
    margin-inline-start: auto;
    min-width: 0;
}

.bedid-run {
    display: flex;
    align-items: center;
    gap: var(--sp-snug);
    margin: 0;
    padding: 0;
    list-style: none;
}

.bedid-piece {
    display: flex;
    align-items: center;
    position: relative;
}

.bedid-piece[hidden] {
    display: none;
}

.bedid-piece + .bedid-piece::before {
    content: "\00b7";
    margin-inline-end: var(--sp-snug);
    color: var(--tone-rule-bold);
    background: var(--tone-field);
    font-size: var(--fs-xs-2);
}

.bedid-hop {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-inline: 2px;
    background: var(--tone-field);
    color: var(--tone-front);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--tm-fast) var(--bz-exit), transform var(--tm-fast) var(--bz-exit);
}

.bedid-hop:hover {
    color: var(--tone-ramp-start);
    background: var(--tone-field);
    transform: translateY(-2px);
}

.bedid-hop[aria-current="page"] {
    color: var(--tone-ramp-start);
    background: var(--tone-field);
}

.bedid-piece-more {
    position: relative;
}

.bedid-more-opener {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding-inline: var(--sp-tiny);
    background: var(--hw-glow);
    color: var(--tone-front);
    border: var(--str-fine) solid var(--tone-stroke);
    border-radius: var(--crn-pill);
    font-family: var(--fnt-body);
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.bedid-more-opener:hover {
    background: var(--tone-rule-bold);
    color: var(--tone-front);
}

.bedid-more-opener::after {
    content: "\25be";
    font-size: 11px;
}

.bedid-more-pane {
    display: none;
    position: absolute;
    inset-block-start: calc(100% + 8px);
    inset-inline-end: 0;
    z-index: 320;
    min-width: 220px;
    max-height: 70vh;
    overflow-y: auto;
    margin: 0;
    padding: var(--sp-hair);
    list-style: none;
    background: var(--hw-deep);
    border: var(--str-fine) solid var(--tone-rule-bold);
    border-radius: var(--crn-base);
    box-shadow: var(--elev-wide);
}

.bedid-more-pane.is-open {
    display: block;
}

.bedid-more-pane .bedid-piece {
    display: block;
}

.bedid-more-pane .bedid-piece + .bedid-piece::before {
    content: none;
}

.bedid-more-pane .bedid-hop {
    display: flex;
    width: 100%;
    padding: 10px var(--sp-tiny);
    background: var(--hw-deep);
    border-radius: var(--crn-snug);
    white-space: normal;
}

.bedid-more-pane .bedid-hop:hover {
    background: var(--hw-glow);
    color: var(--tone-ramp-start);
    transform: none;
}

/* panel móvil */
.bedid-pane {
    display: none;
    position: absolute;
    inset-block-start: 100%;
    inset-inline: 0;
    z-index: 310;
    max-height: 74vh;
    overflow-y: auto;
    padding: var(--sp-tiny) var(--sp-snug) var(--sp-snug);
    background: var(--hw-deep);
    border-block-start: var(--str-fine) solid var(--tone-stroke);
    box-shadow: var(--elev-roomy);
}

.bedid-pane.is-open {
    display: block;
}

.bedid-pane-run {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bedid-pane-piece {
    display: block;
}

.bedid-pane-piece + .bedid-pane-piece {
    border-block-start: var(--str-fine) dashed var(--tone-stroke);
}

.bedid-pane-hop {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding-inline: 2px;
    background: var(--hw-deep);
    color: var(--tone-front);
    font-size: var(--fs-sm-2);
    font-weight: 600;
    text-decoration: none;
}

.bedid-pane-hop:hover,
.bedid-pane-hop[aria-current="page"] {
    color: var(--tone-ramp-start);
    background: var(--hw-deep);
}

/* --------------------------------------------------------------------------
   Migas de pan (BREAD-02, píldoras)
   -------------------------------------------------------------------------- */
.tova {
    padding-block: var(--sp-snug) 0;
}

.tova-run {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-hair) var(--sp-tiny);
    margin: 0;
    padding: 0;
    list-style: none;
}

.tova-piece {
    display: inline-flex;
}

.tova-hop,
.tova-now {
    display: inline-flex;
    align-items: center;
    padding: 5px var(--sp-tiny);
    border-radius: var(--crn-pill);
    font-size: var(--fs-xs);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
    text-decoration: none;
}

.tova-hop {
    background: var(--tone-above);
    color: var(--tone-faint);
    transition: background var(--tm-fast) var(--bz-exit), color var(--tm-fast) var(--bz-exit);
}

.tova-hop:hover {
    background: var(--tone-key);
    color: var(--hw-ink);
}

.tova-now {
    background: var(--tone-root);
    color: var(--tone-front);
}

/* --------------------------------------------------------------------------
   Primer bloque HERO-11 — texto a la izquierda, imagen compacta a la derecha
   -------------------------------------------------------------------------- */
.kutod {
    padding-block: 0;
    background: var(--tone-field);
    color: var(--tone-front);
}

.kutod-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr);
    align-items: center;
    gap: var(--sp-base);
    padding-block: var(--hw-sec-y);
    min-height: 420px;
}

.kutod-meat {
    display: block;
    min-width: 0;
}

.kutod-eye {
    display: inline-block;
    margin-block-end: var(--sp-tiny);
    padding: 4px var(--sp-tiny);
    background: var(--tone-root);
    color: var(--tone-front);
    border-radius: var(--crn-tiny);
    font-size: var(--fs-xs);
    font-weight: var(--fw-heavy);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
}

.kutod-lede {
    margin-block-end: var(--sp-snug);
    color: var(--tone-front);
}

.kutod-second {
    max-width: var(--hw-narrow);
    margin-block-end: var(--sp-snug);
    color: var(--tone-faint);
    font-size: var(--fs-sm-2);
    line-height: var(--ln-default);
}

.kutod-facts {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-tiny);
    margin-block-end: var(--sp-snug);
}

.kutod-fact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px var(--sp-tiny);
    background: var(--tone-above);
    color: var(--tone-front);
    border: var(--str-fine) dashed var(--tone-rule-bold);
    border-radius: var(--crn-snug);
    font-size: var(--fs-petite);
}

.kutod-fact svg {
    width: 16px;
    height: 16px;
    fill: var(--tone-key);
}

.kutod-keys {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-tiny);
    margin-block-end: var(--sp-tiny);
}

.kutod-terms {
    display: block;
    max-width: var(--hw-narrow);
    color: var(--tone-faint);
    background: var(--tone-field);
    font-size: var(--fs-xs);
    line-height: 1.5;
}

.kutod-figure {
    position: relative;
    min-width: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: var(--str-fine) dashed var(--tone-rule-bold);
    border-radius: var(--crn-wide);
    padding: 6px;
    background: var(--hw-deep);
}

.kutod-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--crn-base);
}

/* --------------------------------------------------------------------------
   Cabecera de página PHEAD-08 — racimo de etiquetas + título
   -------------------------------------------------------------------------- */
.gika {
    padding-block: var(--hw-sec-y);
    background: var(--tone-field);
}

.gika-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-tiny);
    margin: 0 0 var(--sp-snug);
    padding: 0;
    list-style: none;
}

.gika-tag {
    display: inline-flex;
    padding: 5px var(--sp-snug);
    background: var(--tone-root);
    color: var(--tone-front);
    border-radius: var(--crn-pill);
    font-size: var(--fs-xs);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
}

.gika-lede {
    margin-block-end: var(--sp-tiny);
    color: var(--tone-front);
}

.gika-second {
    max-width: var(--hw-narrow);
    color: var(--tone-faint);
    font-size: var(--fs-sm-2);
    line-height: var(--ln-default);
}

.gika-day {
    margin-block-start: var(--sp-tiny);
    color: var(--tone-faint);
    background: var(--tone-field);
    font-size: var(--fs-xs);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Texto principal PROSE-15 — primer párrafo del bloque en negrita
   -------------------------------------------------------------------------- */
.nyduv {
    padding-block: var(--hw-sec-y);
    background: var(--tone-field);
}

.nyduv-part {
    display: block;
}

.nyduv-part + .nyduv-part {
    margin-block-start: var(--sp-base);
}

.nyduv-head {
    margin-block: 0 var(--sp-tiny);
    color: var(--tone-front);
    font-weight: 600;
}

.nyduv-body {
    margin-block-end: var(--sp-tiny);
    color: var(--tone-faint);
    font-size: var(--fs-body);
    line-height: var(--ln-loose);
}

.nyduv-body-lead {
    color: var(--tone-front);
    font-weight: var(--fw-heavy);
}

.nyduv-body strong,
.nyduv-piece strong {
    color: var(--tone-front);
    font-weight: var(--fw-heavy);
}

.nyduv-body em,
.nyduv-piece em {
    color: var(--tone-front);
    font-style: italic;
}

.nyduv-body a,
.nyduv-piece a {
    color: var(--tone-ramp-start);
    background: var(--tone-field);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nyduv-body a:hover,
.nyduv-piece a:hover {
    color: var(--tone-front);
    background: var(--tone-field);
}

.nyduv-run {
    margin: 0 0 var(--sp-tiny);
    padding-inline-start: var(--sp-snug);
    list-style: none;
    counter-reset: step;
}

.nyduv-piece {
    position: relative;
    margin-block-end: var(--sp-hair);
    padding-inline-start: var(--sp-snug);
    color: var(--tone-faint);
    line-height: var(--ln-loose);
}

.nyduv-piece::before {
    content: "\25b8";
    position: absolute;
    inset-inline-start: 0;
    color: var(--tone-key);
}

.nyduv-run-num {
    counter-reset: step;
}

.nyduv-run-num .nyduv-piece {
    counter-increment: step;
}

.nyduv-run-num .nyduv-piece::before {
    content: counter(step) ".";
    font-weight: var(--fw-heavy);
}

.nyduv-figure {
    width: fit-content;
    max-width: 100%;
    margin: var(--sp-snug) auto;
    padding: var(--sp-tiny);
    background: var(--hw-deep);
    border: var(--str-fine) dashed var(--tone-rule-bold);
    border-radius: var(--crn-base);
}

.nyduv-figure img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    border-radius: var(--crn-snug);
    background: var(--hw-ink);
}

/* --------------------------------------------------------------------------
   Llamada intercalada INLINE-CTA-04 — promesa a la izquierda, botón a la derecha
   -------------------------------------------------------------------------- */
.burutil {
    display: block;
    padding-block: var(--sp-snug);
}

.burutil-shell {
    display: flex;
    align-items: center;
    gap: var(--sp-base);
    padding: var(--sp-snug);
    background: var(--tone-above);
    border: var(--str-base) dashed var(--tone-root);
    border-radius: var(--crn-base);
}

.burutil-meat {
    flex: 1 1 auto;
    min-width: 0;
}

.burutil-head {
    margin-block-end: 4px;
    color: var(--tone-front);
    background: var(--tone-above);
    font-family: var(--fnt-display);
    font-size: var(--fs-display-4);
    font-weight: var(--fw-heavy);
    line-height: var(--ln-dense);
}

.burutil-body {
    color: var(--tone-faint);
    background: var(--tone-above);
    font-size: var(--fs-petite);
    line-height: var(--ln-default);
}

.burutil-keys {
    flex: 0 0 auto;
}

/* dentro de la rejilla de tarjetas ocupa toda la fila */
.rizo-push {
    grid-column: 1 / -1;
}

/* --------------------------------------------------------------------------
   Rejilla de puntos GRID-01 — tres columnas con tarjetas de borde
   -------------------------------------------------------------------------- */
.rizo {
    padding-block: var(--hw-sec-y);
    background: var(--tone-field);
}

.rizo-head {
    margin-block-end: var(--sp-snug);
    color: var(--tone-front);
}

.rizo-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: var(--sp-snug);
}

.rizo-piece {
    display: block;
    padding: var(--sp-snug);
    background: var(--tone-above);
    color: var(--tone-front);
    border: var(--str-fine) dashed var(--tone-rule-bold);
    border-radius: var(--crn-base);
    transition: border-color var(--tm-normal) var(--bz-exit);
}

.rizo-piece:hover {
    border-color: var(--tone-key);
}

.rizo-glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-block-end: var(--sp-tiny);
    background: var(--hw-ink);
    border: var(--str-fine) solid var(--tone-rule-bold);
    border-radius: var(--crn-snug);
}

.rizo-glyph svg {
    width: 21px;
    height: 21px;
    fill: var(--tone-key);
}

.rizo-piece-lede {
    margin-block-end: var(--sp-tiny);
    color: var(--tone-front);
    background: var(--tone-above);
    font-size: var(--fs-display-4);
}

.rizo-piece-body {
    color: var(--tone-faint);
    background: var(--tone-above);
    font-size: var(--fs-body);
    line-height: var(--ln-default);
}

/* --------------------------------------------------------------------------
   Tabla de datos TABLE-04 — primera columna destacada
   -------------------------------------------------------------------------- */
.guvapuv {
    padding-block: var(--hw-sec-y);
    background: var(--tone-field);
}

.guvapuv-head {
    margin-block-end: var(--sp-tiny);
    color: var(--tone-front);
}

.guvapuv-note {
    display: block;
    margin-block-end: var(--sp-snug);
    color: var(--tone-faint);
    background: var(--tone-field);
    font-size: var(--fs-petite);
}

.guvapuv-scroll {
    overflow-x: auto;
    border: var(--str-fine) dashed var(--tone-rule-bold);
    border-radius: var(--crn-base);
}

.guvapuv-grid {
    width: 100%;
    background: var(--tone-above);
    color: var(--tone-front);
    font-size: var(--fs-petite);
}

.guvapuv-grid th,
.guvapuv-grid td {
    padding: var(--sp-tiny);
    text-align: start;
    vertical-align: top;
    border-block-end: var(--str-fine) solid var(--tone-stroke);
    line-height: var(--ln-default);
}

.guvapuv-grid thead th {
    background: var(--tone-root);
    color: var(--tone-front);
    font-size: var(--fs-xs);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
}

.guvapuv-grid tbody th {
    width: 26%;
    background: var(--tone-root);
    color: var(--tone-front);
    font-weight: var(--fw-heavy);
    border-inline-end: 4px solid var(--tone-key);
}

.guvapuv-grid tbody td {
    background: var(--tone-above);
    color: var(--tone-faint);
}

/* --------------------------------------------------------------------------
   Opiniones REV-03 — carril horizontal con puntos
   -------------------------------------------------------------------------- */
.zavy {
    padding-block: var(--hw-sec-y);
    background: var(--tone-field);
}

.zavy-head {
    margin-block-end: var(--sp-snug);
    color: var(--tone-front);
}

.zavy-rail {
    display: flex;
    gap: var(--sp-snug);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-block-end: var(--sp-tiny);
}

.zavy-box {
    flex: 0 0 360px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: var(--sp-tiny);
    min-height: 240px;
    padding: var(--sp-snug);
    background: var(--tone-above);
    color: var(--tone-front);
    border: var(--str-fine) dashed var(--tone-rule-bold);
    border-radius: var(--crn-base);
}

.zavy-who {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--sp-tiny);
}

.zavy-voice {
    color: var(--tone-front);
    background: var(--tone-above);
    font-family: var(--fnt-display);
    font-weight: var(--fw-heavy);
    font-size: var(--fs-xs-2);
}

.zavy-day {
    color: var(--tone-faint);
    background: var(--tone-above);
    font-size: var(--fs-xs);
    white-space: nowrap;
}

.zavy-score {
    color: var(--tone-key);
    background: var(--tone-above);
    font-size: var(--fs-xs);
    font-weight: var(--fw-heavy);
    letter-spacing: var(--trk-spread);
}

.zavy-gauge {
    width: 60%;
    height: 4px;
    background: var(--tone-rule-bold);
    border-radius: var(--crn-pill);
    overflow: hidden;
}

.zavy-fill {
    display: block;
    height: 100%;
    background: var(--tone-key);
}

.zavy-body {
    margin: 0;
    color: var(--tone-faint);
    background: var(--tone-above);
    font-size: var(--fs-petite);
    line-height: var(--ln-default);
}

.zavy-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-block-start: var(--sp-tiny);
}

.zavy-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: var(--crn-dot);
    background: var(--tone-rule-bold);
    transition: background var(--tm-fast) var(--bz-exit);
}

.zavy-dot.is-live {
    background: var(--tone-key);
}

.zavy-push {
    margin-block-start: var(--sp-snug);
}

/* --------------------------------------------------------------------------
   Bloque de llamada CTA-07 — tarjeta vertical con cifra decorativa
   -------------------------------------------------------------------------- */
.zopyfo {
    padding-block: var(--hw-sec-y);
    background: var(--tone-field);
}

.zopyfo-box {
    display: block;
    padding: var(--sp-base);
    text-align: center;
    background: var(--hw-deep);
    color: var(--tone-front);
    border: var(--str-base) solid var(--tone-key);
    border-radius: var(--crn-wide);
}

.zopyfo-numeral {
    display: block;
    margin-block-end: var(--sp-tiny);
    color: var(--tone-key);
    background: var(--hw-deep);
    font-family: var(--fnt-display);
    font-size: var(--fs-title);
    font-weight: var(--fw-heavy);
    line-height: 1.05;
}

.zopyfo-lede {
    margin-block-end: var(--sp-tiny);
    color: var(--tone-front);
}

.zopyfo-body {
    max-width: var(--hw-narrow);
    margin-inline: auto;
    margin-block-end: var(--sp-snug);
    color: var(--tone-faint);
    background: var(--hw-deep);
    font-size: var(--fs-body);
    line-height: var(--ln-default);
}

.zopyfo-terms {
    display: block;
    margin-block-start: var(--sp-tiny);
    color: var(--tone-faint);
    background: var(--hw-deep);
    font-size: var(--fs-xs);
}

/* --------------------------------------------------------------------------
   Preguntas FAQ-08 — caja con barra indicadora
   -------------------------------------------------------------------------- */
.rofyxof {
    padding-block: var(--hw-sec-y);
    background: var(--tone-field);
}

.rofyxof-head {
    margin-block-end: var(--sp-snug);
    color: var(--tone-front);
}

.rofyxof-box {
    padding: var(--sp-base);
    background: var(--hw-deep);
    border: var(--str-fine) solid var(--tone-stroke);
    border-radius: var(--crn-wide);
}

.rofyxof-piece {
    padding-inline-start: var(--sp-base);
    box-shadow: inset 4px 0 0 var(--tone-key);
    border-block-end: var(--str-fine) solid var(--tone-stroke);
}

.rofyxof-piece:last-of-type {
    border-block-end: 0;
}

.rofyxof-ask {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-tiny);
    padding-block: var(--sp-tiny);
    cursor: pointer;
    list-style: none;
    color: var(--tone-front);
    background: var(--hw-deep);
}

.rofyxof-ask::-webkit-details-marker {
    display: none;
}

.rofyxof-ask h3 {
    font-size: var(--fs-display-4);
    color: var(--tone-front);
    background: var(--hw-deep);
}

.rofyxof-ask::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--tone-key);
    font-family: var(--fnt-display);
    font-size: var(--fs-h3);
    line-height: 1;
    transition: transform var(--tm-normal) var(--bz-exit);
}

.rofyxof-piece[open] .rofyxof-ask::after {
    transform: rotate(45deg);
}

.rofyxof-meat {
    padding-block-end: var(--sp-tiny);
    color: var(--tone-faint);
    background: var(--hw-deep);
    font-size: var(--fs-body);
    line-height: var(--ln-loose);
}

.rofyxof-push {
    margin-block-start: var(--sp-snug);
}

/* --------------------------------------------------------------------------
   Firma de autora BYLINE-02 — tarjeta con borde
   -------------------------------------------------------------------------- */
.nelyvut {
    padding-block: var(--sp-snug);
    background: var(--tone-field);
}

.nelyvut-box {
    display: flex;
    gap: var(--sp-snug);
    max-width: 620px;
    padding: var(--sp-snug);
    background: var(--tone-above);
    color: var(--tone-front);
    border: var(--str-fine) dashed var(--tone-rule-bold);
    border-radius: var(--crn-base);
}

.nelyvut-face {
    flex: 0 0 auto;
    display: block;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: var(--crn-dot);
}

.nelyvut-face img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: center top;
}

.nelyvut-meat {
    min-width: 0;
}

.nelyvut-mark {
    display: block;
    color: var(--tone-faint);
    background: var(--tone-above);
    font-size: var(--fs-xs);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
}

.nelyvut-lede {
    margin-block: 2px;
    font-size: var(--fs-display-4);
}

.nelyvut-lede a {
    color: var(--tone-front);
    background: var(--tone-above);
    text-decoration: none;
}

.nelyvut-lede a:hover {
    color: var(--tone-ramp-start);
    background: var(--tone-above);
    text-decoration: underline;
}

.nelyvut-body {
    color: var(--tone-faint);
    background: var(--tone-above);
    font-size: var(--fs-petite);
    line-height: var(--ln-default);
}

.nelyvut-hat {
    color: var(--tone-faint);
    background: var(--tone-above);
    font-size: var(--fs-petite);
}

.nelyvut-day {
    display: block;
    margin-block-start: 2px;
    color: var(--tone-faint);
    background: var(--tone-above);
    font-size: var(--fs-xs);
}

.nelyvut-hop {
    display: inline-block;
    margin-block-start: var(--sp-tiny);
    color: var(--tone-ramp-start);
    background: var(--tone-above);
    font-size: var(--fs-petite);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
    text-decoration: none;
}

.nelyvut-hop:hover {
    color: var(--tone-front);
    background: var(--tone-above);
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Ficha de autora AUTH-02 — vertical y centrada
   -------------------------------------------------------------------------- */
.lalutap {
    padding-block: var(--hw-sec-y);
    background: var(--tone-field);
}

.lalutap-box {
    max-width: 600px;
    margin-inline: auto;
    text-align: center;
    background: var(--tone-field);
    color: var(--tone-front);
}

.lalutap-face {
    width: 140px;
    height: 140px;
    margin-inline: auto;
    margin-block-end: var(--sp-snug);
    object-fit: cover;
    object-position: center top;
    border-radius: var(--crn-dot);
    border: var(--str-base) solid var(--tone-key);
}

.lalutap-hat {
    margin-block-end: var(--sp-hair);
    color: var(--tone-key);
    background: var(--tone-field);
    font-size: var(--fs-petite);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
}

.lalutap-lede {
    margin-block-end: var(--sp-tiny);
    color: var(--tone-front);
}

.lalutap-body {
    margin-block-end: var(--sp-snug);
    color: var(--tone-faint);
    background: var(--tone-field);
    line-height: var(--ln-loose);
}

.lalutap-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-hair) var(--sp-tiny);
    margin: 0;
    padding: 0;
    list-style: none;
}

.lalutap-skill {
    display: inline-flex;
    padding: 6px var(--sp-tiny);
    background: var(--tone-above);
    color: var(--tone-front);
    border: var(--str-fine) dashed var(--tone-rule-bold);
    border-radius: var(--crn-pill);
    font-size: var(--fs-xs);
}

/* --------------------------------------------------------------------------
   Documento legal LEGAL-01 — documento continuo
   -------------------------------------------------------------------------- */
.gika + .nogerim {
    padding-block-start: 0;
}

.nogerim {
    padding-block: var(--hw-sec-y);
    background: var(--tone-field);
}

.nogerim-intro {
    margin-block-end: var(--sp-snug);
    color: var(--tone-front);
    background: var(--tone-field);
    font-size: var(--fs-sm-2);
    line-height: var(--ln-default);
}

.nogerim-day {
    display: block;
    margin-block-end: var(--sp-base);
    color: var(--tone-faint);
    background: var(--tone-field);
    font-size: var(--fs-xs);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
}

.nogerim-part + .nogerim-part {
    margin-block-start: var(--sp-snug);
    padding-block-start: var(--sp-snug);
    border-block-start: var(--str-fine) solid var(--tone-stroke);
}

.nogerim-head {
    margin-block-end: var(--sp-tiny);
    color: var(--tone-front);
}

.nogerim-body {
    margin-block-end: var(--sp-tiny);
    color: var(--tone-faint);
    background: var(--tone-field);
    line-height: var(--ln-loose);
}

.nogerim-aid {
    margin-block-start: var(--sp-base);
    padding: var(--sp-snug);
    background: var(--tone-above);
    color: var(--tone-front);
    border-radius: var(--crn-base);
}

.nogerim-aid h3 {
    margin-block-end: var(--sp-tiny);
    color: var(--tone-front);
    background: var(--tone-above);
}

.nogerim-run {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nogerim-piece {
    margin-block-end: var(--sp-hair);
    color: var(--tone-faint);
    background: var(--tone-above);
    line-height: var(--ln-default);
}

.nogerim-piece a {
    color: var(--tone-ramp-start);
    background: var(--tone-above);
}

.nogerim-warn {
    margin-block-start: var(--sp-base);
    padding: var(--sp-tiny);
    background: #2a0f14;
    color: var(--tone-faint);
    border-inline-start: var(--str-strong) solid var(--tone-age-band);
    border-radius: var(--crn-tiny);
    font-size: var(--fs-petite);
    line-height: var(--ln-default);
}

/* --------------------------------------------------------------------------
   Formulario FORM-06 — etiquetas flotantes
   -------------------------------------------------------------------------- */
.bunutus {
    padding-block: var(--hw-sec-y);
    background: var(--tone-field);
}

.bunutus-head {
    margin-block-end: var(--sp-tiny);
    color: var(--tone-front);
}

.bunutus-intro {
    max-width: var(--hw-narrow);
    margin-block-end: var(--sp-snug);
    color: var(--tone-faint);
    background: var(--tone-field);
    line-height: var(--ln-default);
}

.bunutus-form {
    display: grid;
    gap: var(--sp-snug);
    max-width: 640px;
    padding: var(--sp-snug);
    background: var(--tone-above);
    border: var(--str-fine) dashed var(--tone-rule-bold);
    border-radius: var(--crn-base);
}

.bunutus-entry {
    position: relative;
}

.bunutus-input,
.bunutus-area {
    width: 100%;
    padding: var(--sp-snug) var(--sp-tiny) 8px;
    background: var(--hw-ink);
    color: var(--tone-front);
    font-family: var(--fnt-body);
    font-size: var(--fs-body);
    border: 0;
    border-block-end: var(--str-base) dashed var(--tone-rule-bold);
    border-radius: var(--crn-tiny) var(--crn-tiny) 0 0;
}

.bunutus-area {
    min-height: 130px;
    resize: vertical;
}

.bunutus-input:focus,
.bunutus-area:focus {
    border-block-end-color: var(--tone-key);
    outline: none;
}

.bunutus-mark {
    position: absolute;
    inset-block-start: 18px;
    inset-inline-start: var(--sp-tiny);
    color: var(--tone-faint);
    font-size: var(--fs-body);
    pointer-events: none;
    transition: top var(--tm-fast) var(--bz-exit), font-size var(--tm-fast) var(--bz-exit);
}

.bunutus-input:focus + .bunutus-mark,
.bunutus-input:not(:placeholder-shown) + .bunutus-mark,
.bunutus-area:focus + .bunutus-mark,
.bunutus-area:not(:placeholder-shown) + .bunutus-mark {
    inset-block-start: 5px;
    color: var(--tone-key);
    font-size: var(--fs-xs);
}

.bunutus-press {
    justify-self: start;
    min-height: 48px;
    padding: var(--sp-tiny) var(--sp-base);
    background: var(--tone-root);
    color: var(--tone-front);
    border: 0;
    border-radius: var(--crn-snug);
    font-family: var(--fnt-display);
    font-weight: var(--fw-heavy);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
    transition: transform var(--tm-fast) var(--bz-exit);
}

.bunutus-press:hover {
    background: var(--tone-age-band);
    color: var(--tone-front);
}

.bunutus-press:active {
    transform: translateY(2px);
}

.bunutus-words {
    display: none;
    padding: var(--sp-tiny);
    background: #10231a;
    color: var(--tone-front);
    border-radius: var(--crn-snug);
    font-size: var(--fs-petite);
}

.bunutus-words.is-live {
    display: block;
}

.bunutus-mail {
    margin-block-start: var(--sp-snug);
    color: var(--tone-faint);
    background: var(--tone-field);
    font-size: var(--fs-petite);
}

.bunutus-mail a {
    color: var(--tone-ramp-start);
    background: var(--tone-field);
}

/* --------------------------------------------------------------------------
   Página de error ERR-05 — título con desdoblamiento
   -------------------------------------------------------------------------- */
.ribo {
    display: flex;
    flex: 1 0 auto;
    align-items: center;
    padding-block: var(--sp-wide);
    background: var(--tone-field);
}

.ribo-shell {
    text-align: center;
}

.ribo-lede {
    position: relative;
    display: inline-block;
    color: var(--tone-front);
}

.ribo-lede::before,
.ribo-lede::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    opacity: 0.55;
}

.ribo-lede::before {
    color: var(--tone-key);
    transform: translate(2px, -2px);
}

.ribo-lede::after {
    color: var(--tone-root);
    transform: translate(-2px, 2px);
}

.ribo-body {
    max-width: var(--hw-narrow);
    margin-inline: auto;
    margin-block: var(--sp-snug);
    color: var(--tone-faint);
    background: var(--tone-field);
    line-height: var(--ln-default);
}

.ribo-hop {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: var(--sp-tiny) var(--sp-base);
    background: var(--tone-root);
    color: var(--tone-front);
    border-radius: var(--crn-snug);
    font-family: var(--fnt-display);
    font-weight: var(--fw-heavy);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
    text-decoration: none;
}

.ribo-hop:hover {
    background: var(--tone-age-band);
    color: var(--tone-front);
}

/* --------------------------------------------------------------------------
   Pie FOOT-06 — manifiesto
   -------------------------------------------------------------------------- */
.vume {
    padding-block: var(--sp-wide);
    background: var(--hw-deep);
    color: var(--tone-front);
    border-block-start: var(--str-fine) solid var(--tone-stroke);
}

.vume-manifesto {
    text-align: center;
}

.vume-statement {
    max-width: var(--hw-narrow);
    margin-inline: auto;
    margin-block-end: var(--sp-tiny);
    color: var(--tone-front);
    background: var(--hw-deep);
    font-family: var(--fnt-display);
    font-size: var(--fs-head);
    font-weight: var(--fw-heavy);
    line-height: var(--ln-dense);
}

.vume-return {
    display: inline-block;
    color: var(--tone-ramp-start);
    background: var(--hw-deep);
    font-family: var(--fnt-display);
    font-size: var(--fs-sm-2);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.vume-return:hover {
    color: var(--tone-front);
    background: var(--hw-deep);
}

.vume-rule {
    height: 1px;
    margin-block: var(--sp-base);
    background: var(--tone-stroke);
}

.vume-tag {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-snug);
}

.vume-logo {
    display: inline-flex;
    flex-shrink: 0;
}

.vume-logo img {
    display: block;
    height: 52px;
    width: auto;
}

.vume-bar,
.vume-legal {
    display: block;
}

.vume-run {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-hair) var(--sp-snug);
    margin: 0;
    padding: 0;
    list-style: none;
}

.vume-piece {
    display: inline-flex;
}

.vume-hop {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: var(--tone-faint);
    background: var(--hw-deep);
    font-size: var(--fs-petite);
    text-decoration: none;
}

.vume-hop:hover,
.vume-hop[aria-current="page"] {
    color: var(--tone-ramp-start);
    background: var(--hw-deep);
    text-decoration: underline;
}

.vume-fine {
    display: block;
    width: 100%;
    color: var(--tone-faint);
    background: var(--hw-deep);
    font-size: var(--fs-xs);
    line-height: var(--ln-default);
}

.vume-warn {
    display: block;
    width: 100%;
    margin-block-start: var(--sp-tiny);
    color: var(--tone-faint);
    background: var(--hw-deep);
    font-size: var(--fs-xs);
    line-height: var(--ln-default);
}

/* --------------------------------------------------------------------------
   Aviso de cookies COOK-06 — tarjeta inferior con enlace de preferencias
   -------------------------------------------------------------------------- */
.nepub {
    display: none;
    position: fixed;
    inset-block-end: var(--sp-tiny);
    inset-inline: var(--sp-tiny);
    z-index: 350;
    opacity: 0;
    transition: opacity var(--tm-normal) var(--bz-exit), clip-path var(--tm-normal) var(--bz-exit);
    clip-path: inset(0 0 0 0);
}

.nepub.is-live {
    display: block;
    opacity: 1;
}

.nepub.is-gone {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
}

.nepub-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-tiny);
    max-width: calc(var(--wrp-site) + 2 * var(--wrp-pad-lg));
    margin-inline: auto;
    padding: var(--sp-tiny) var(--sp-snug);
    background: var(--tone-above);
    color: var(--tone-front);
    border: var(--str-fine) solid var(--tone-rule-bold);
    border-radius: var(--crn-base);
    box-shadow: var(--elev-roomy);
}

.nepub-glyph {
    display: inline-flex;
    flex: 0 0 auto;
}

.nepub-glyph svg {
    width: 22px;
    height: 22px;
    fill: var(--tone-key);
}

.nepub-words {
    flex: 1 1 240px;
    color: var(--tone-front);
    background: var(--tone-above);
    font-size: var(--fs-petite);
    line-height: var(--ln-default);
}

.nepub-keys {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-tiny);
}

.nepub-grant,
.nepub-decline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px var(--sp-snug);
    border-radius: var(--crn-snug);
    font-family: var(--fnt-display);
    font-size: var(--fs-petite);
    font-weight: var(--fw-heavy);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
    white-space: nowrap;
}

.nepub-grant {
    background: var(--tone-key);
    color: var(--hw-ink);
    border: 0;
}

.nepub-grant:hover {
    background: var(--tone-ramp-start);
    color: var(--hw-ink);
}

.nepub-decline {
    background: var(--tone-above);
    color: var(--tone-front);
    border: var(--str-fine) solid var(--tone-rule-bold);
}

.nepub-decline:hover {
    background: var(--hw-glow);
    color: var(--tone-front);
}

.nepub-hop {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: var(--tone-ramp-start);
    background: var(--tone-above);
    font-size: var(--fs-xs);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.nepub-hop:hover {
    color: var(--tone-front);
    background: var(--tone-above);
}

/* --------------------------------------------------------------------------
   Adaptación a pantallas (desktop-first)
   -------------------------------------------------------------------------- */
@media (max-width: 1240px) {
    .bedid-row {
        gap: var(--sp-snug);
        padding-inline: var(--sp-snug);
    }

    .bedid-strip {
        padding-inline: var(--sp-snug);
    }

    .bedid-run {
        gap: var(--sp-tiny);
    }

    .bedid-piece + .bedid-piece::before {
        margin-inline-end: var(--sp-tiny);
    }

    .rizo-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    :root {
        --hw-sec-y: 36px;
    }

    .kutod-shell,
    .gika-shell,
    .tova-shell,
    .nyduv-shell,
    .rizo-shell,
    .guvapuv-shell,
    .zavy-shell,
    .zopyfo-shell,
    .rofyxof-shell,
    .nogerim-shell,
    .bunutus-shell,
    .lalutap-shell,
    .ribo-shell,
    .nelyvut-shell,
    .burutil-shell,
    .vume-shell {
        padding-inline: var(--wrp-edge-mid);
    }

    .bedid-menu-lever {
        display: inline-flex;
    }

    .bedid-bar {
        display: none;
    }

    .bedid-logo {
        margin-inline-start: 0;
    }

    .bedid-row {
        height: 62px;
        min-height: 62px;
        gap: var(--sp-tiny);
    }

    .bedid-logo-figure {
        height: 48px;
    }

    .kutod-shell {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .kutod-figure {
        order: 2;
        aspect-ratio: auto;
        width: 100%;
        height: 240px;
    }

    .rizo-stack {
        grid-template-columns: minmax(0, 1fr);
    }

    .burutil-shell {
        flex-direction: column;
        align-items: stretch;
        text-align: start;
    }

    .burutil-keys {
        width: 100%;
    }

    .rofyxof-box {
        padding: var(--sp-snug);
    }

    .zopyfo-box {
        padding: var(--sp-snug);
    }

    .vume-tag {
        flex-direction: column;
        align-items: flex-start;
    }

    .nyduv-figure img {
        max-height: 54vh;
    }
}

@media (max-width: 620px) {
    .rg-say {
        display: none;
    }
}

@media (max-width: 720px) {
    .nepub,
    .nepub-box {
        padding: 12px 14px;
        gap: 8px;
        font-size: 13px;
        line-height: 1.35;
    }

    .nepub {
        padding: 0;
    }

    .nepub-words {
        flex: 1 1 100%;
        font-size: 13px;
    }

    .nepub-keys {
        width: 100%;
    }

    .nepub-grant,
    .nepub-decline {
        flex: 1 1 auto;
        padding: 8px 14px;
        font-size: 12px;
        min-height: 40px;
    }

    .zavy-box {
        flex-basis: 280px;
    }

    .bedid-desk {
        display: none;
    }

    .guvapuv-grid th,
    .guvapuv-grid td {
        white-space: normal;
        padding: 8px;
    }
}

@media (max-width: 600px) {
    :root {
        --fs-body: 16px;
        --fs-petite: 13px;
        --fs-xs: 11px;
        --fs-display-4: 18px;
        --fs-sm-2: 16px;
        --fs-xs-2: 14px;
    }

    .kutod-shell,
    .gika-shell,
    .tova-shell,
    .nyduv-shell,
    .rizo-shell,
    .guvapuv-shell,
    .zavy-shell,
    .zopyfo-shell,
    .rofyxof-shell,
    .nogerim-shell,
    .bunutus-shell,
    .lalutap-shell,
    .ribo-shell,
    .nelyvut-shell,
    .burutil-shell,
    .vume-shell {
        padding-inline: var(--wrp-pad-sm);
    }

    .bedid-row {
        padding-inline: var(--wrp-pad-sm);
    }

    .bedid-strip {
        padding-inline: var(--wrp-pad-sm);
        min-height: 30px;
    }

    .bedid-logo-figure {
        height: 48px;
    }

    .nelyvut-box {
        flex-direction: column;
    }

    .rofyxof-box {
        padding: var(--sp-tiny);
    }

    .rofyxof-piece {
        padding-inline-start: var(--sp-snug);
    }

    .lalutap-face {
        width: 120px;
        height: 120px;
    }

    .nyduv-figure img {
        max-height: 52vh;
    }

    .zavy-box {
        flex-basis: 260px;
        min-height: 0;
    }
}

@media (max-width: 430px) {
    .nepub-grant,
    .nepub-decline {
        white-space: normal;
    }

    .zavy-box {
        flex-basis: 232px;
    }

    .kutod-fact {
        font-size: var(--fs-xs);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   Botón de oferta — geometría base (el color y la animación vienen abajo)
   -------------------------------------------------------------------------- */
.hoy-act {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 30px;
    border-radius: var(--crn-snug);
    font-family: var(--fnt-display);
    font-size: var(--fs-xs-2);
    font-weight: var(--fw-heavy);
    letter-spacing: var(--trk-spread);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

/* color y animación de la llamada — salida de scripts/cta-style (clase renombrada) */
.hoy-act {
    position: relative;
    background: #059669;
    color: #0B0B15;
    text-decoration: none;
    transition: background var(--tm-fast) var(--bz-swing), transform var(--tm-fast) var(--bz-swing);
}

.hoy-act.hoy-act {
    color: #0B0B15;
    text-decoration: none;
}

.hoy-act:hover {
    background: #047857;
    color: #FFFFFF;
    animation: none;
}

.hoy-act.hoy-act:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.hoy-act:hover::after {
    animation: none;
}

.hoy-act:active {
    background: #065F46;
    color: #FFFFFF;
}

.hoy-act:focus-visible {
    outline: 3px solid #0B0B15;
    outline-offset: 3px;
}

@keyframes koki-drift {
    0%,
    100% {
        transform: scaleX(0);
    }
    40%,
    60% {
        transform: scaleX(1);
    }
}

.hoy-act::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 6px;
    height: 2px;
    background: currentColor;
    opacity: 0.5;
    transform-origin: left;
    animation: koki-drift 1.7s var(--bz-exit) infinite;
}

@media (prefers-reduced-motion: reduce) {
    .hoy-act,
    .hoy-act::after {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 502px) {
  .bedid-bar,
  .bedid-run,
  .bedid-hop { display: none !important; }
  .bedid-more-opener { display: inline-flex !important; }
}
