/* =========================================================
   ofertivo.pro — hoja de estilos principal
   Paleta "pizarra de cuotas": tinta ciruela, ámbar, celeste frío
   ========================================================= */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body,
h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
    margin: 0;
    padding: 0;
}

ul[class], ol[class] { list-style: none; }

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

button, input, textarea, select { font: inherit; color: inherit; }

table { border-collapse: collapse; width: 100%; }

/* ---------- Tokens ---------- */
:root {
    --ink:        #15111e;
    --ink-2:      #1d1829;
    --ink-3:      #262036;
    --ink-4:      #2f2743;
    --line:       #382f4e;
    --text:       #ede9f5;
    --muted:      #a79fbd;
    --gold:       #f3b63f;
    --gold-2:     #d2901f;
    --gold-soft:  rgba(243, 182, 63, 0.12);
    --teal:       #79cfd4;
    --teal-soft:  rgba(121, 207, 212, 0.12);
    --ok:         #7bd6a0;
    --danger:     #e8807f;

    --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
    --body:    "Karla", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --mono:    "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

    --radius: 4px;
    --maxw: 1120px;
    --gut: 24px;

    --shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.9);
}

/* ---------- Base ---------- */
body {
    background-color: var(--ink);
    background-image:
        radial-gradient(900px 460px at 82% -8%, rgba(243, 182, 63, 0.10), transparent 62%),
        radial-gradient(760px 420px at 6% 4%, rgba(121, 207, 212, 0.08), transparent 60%);
    background-repeat: no-repeat;
    color: var(--text);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: 0.005em;
    min-height: 100%;
}

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 4.05rem); }
h2 { font-size: clamp(1.65rem, 3.1vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); letter-spacing: -0.015em; }
h4 { font-size: 1.02rem; letter-spacing: -0.005em; }

p { margin-bottom: 1.05rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }

strong { font-weight: 700; color: #fff; }

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--gold);
    color: #1a1206;
    padding: 12px 20px;
    font-family: var(--mono);
    font-size: 0.8rem;
    z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Layout ---------- */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--gut);
    padding-right: var(--gut);
}

.wrap--narrow { max-width: 820px; }

.block { padding: 68px 0; }
.block--tight { padding: 46px 0; }
.block--alt { background: rgba(29, 24, 41, 0.62); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.eyebrow {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.eyebrow--teal { color: var(--teal); }

.lead {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 62ch;
}

.section-head { margin-bottom: 30px; max-width: 68ch; }
.section-head p { color: var(--muted); margin-top: 14px; }

/* Perforación: divisor firma del sitio */
.perf {
    position: relative;
    height: 1px;
    border-top: 2px dashed var(--line);
    margin: 0;
}
.perf::before,
.perf::after {
    content: "";
    position: absolute;
    top: -11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ink);
    border: 2px solid var(--line);
}
.perf::before { left: -10px; }
.perf::after { right: -10px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(21, 17, 30, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 70px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--text);
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.16rem;
    letter-spacing: -0.03em;
    text-decoration: none;
    flex-shrink: 0;
}
.brand:hover { color: var(--text); text-decoration: none; }
.brand__mark {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 2px solid var(--gold);
    border-radius: 3px;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--gold-soft);
}
.brand__dot { color: var(--gold); }

.nav-toggle {
    display: none;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    padding: 9px 12px;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}
.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }

.main-nav { margin-left: auto; }
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.main-nav a {
    display: block;
    padding: 9px 12px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: var(--radius);
    text-decoration: none;
    white-space: nowrap;
}
.main-nav a:hover { color: var(--text); background: var(--ink-3); text-decoration: none; }
.main-nav a[aria-current="page"] {
    color: var(--gold);
    box-shadow: inset 0 -2px 0 var(--gold);
    border-radius: 0;
}

/* Selector de idioma */
.lang {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}
.lang a {
    display: block;
    padding: 8px 13px;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-decoration: none;
    background: transparent;
}
.lang a:hover { color: var(--text); background: var(--ink-3); text-decoration: none; }
.lang a[aria-current="true"] {
    background: var(--gold);
    color: #1a1206;
}
.lang__sep { color: var(--line); font-size: 0.7rem; }

/* ---------- Botones ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary { background: var(--gold); color: #1a1206; border-color: var(--gold); }
.btn--primary:hover { background: #ffc858; border-color: #ffc858; color: #1a1206; }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn--block { width: 100%; }

.btn__arrow { font-family: var(--mono); font-size: 0.95rem; }

/* Sello +18 */
.stamp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border: 2px solid var(--gold);
    border-radius: 3px;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: rotate(-1.4deg);
    background: var(--gold-soft);
}

/* ---------- Hero ---------- */
.hero { padding: 74px 0 62px; }
.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 54px;
    align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero__sub {
    font-size: 1.16rem;
    color: var(--text);
    max-width: 46ch;
    margin-bottom: 16px;
}
.hero__text { color: var(--muted); max-width: 52ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 28px; }

.hero--inner { padding: 56px 0 40px; }
.hero--inner h1 { max-width: 20ch; }
.hero--inner .lead { margin-top: 18px; }

/* Ticket firma del hero */
.ticket {
    position: relative;
    background: linear-gradient(168deg, var(--ink-2), var(--ink-3));
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 26px 26px 24px;
    box-shadow: var(--shadow);
}
.ticket::before,
.ticket::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--ink);
    border: 1px solid var(--line);
    top: 50%;
    margin-top: -11px;
}
.ticket::before { left: -12px; border-right-color: transparent; }
.ticket::after { right: -12px; border-left-color: transparent; }

.ticket__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 16px;
    border-bottom: 2px dashed var(--line);
    margin-bottom: 18px;
}
.ticket__rows { list-style: none; }
.ticket__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--ink-4);
    font-size: 0.95rem;
}
.ticket__row:last-child { border-bottom: 0; }
.ticket__row span { color: var(--muted); }
.ticket__row b {
    font-family: var(--mono);
    font-weight: 600;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    text-align: right;
}
.ticket__foot {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 2px dashed var(--line);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* ---------- Tarjetas de bono ---------- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.bonus {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(172deg, var(--ink-2), rgba(38, 32, 54, 0.7));
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.bonus:hover { border-color: var(--gold-2); transform: translateY(-3px); }

.bonus__badge {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-soft);
    border: 1px solid rgba(243, 182, 63, 0.4);
    border-radius: 999px;
    padding: 6px 13px;
    margin-bottom: 18px;
}
.bonus__name { margin-bottom: 14px; }
@media (min-width: 961px) {
    /* Mantiene alineadas las dos tarjetas aunque un título ocupe dos líneas */
    .bonus__name { min-height: 2.12em; }
}
.bonus__offer {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(1.55rem, 3.2vw, 2.05rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
    padding: 16px 0;
    border-top: 2px dashed var(--line);
    border-bottom: 2px dashed var(--line);
    margin-bottom: 18px;
}
.bonus__desc { color: var(--muted); margin-bottom: 18px; }
.bonus__features { list-style: none; margin-bottom: 20px; }
.bonus__features li {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.96rem;
    border-bottom: 1px solid var(--ink-4);
}
.bonus__features li:last-child { border-bottom: 0; }
.bonus__check { color: var(--ok); font-family: var(--mono); flex-shrink: 0; }
.bonus__terms {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--muted);
    background: rgba(15, 12, 22, 0.55);
    border-left: 2px solid var(--ink-4);
    padding: 12px 14px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 22px;
}
.bonus__cta { margin-top: auto; }

.note {
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    background: rgba(29, 24, 41, 0.75);
    padding: 20px 22px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.95rem;
    color: var(--muted);
}
.note--teal { border-left-color: var(--teal); }
.note strong { color: var(--text); }

/* ---------- Tablas ---------- */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }

table.data {
    min-width: 620px;
    font-size: 0.94rem;
    background: rgba(29, 24, 41, 0.6);
}
table.data caption {
    caption-side: top;
    text-align: left;
    padding: 16px 18px;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}
table.data th,
table.data td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--ink-4);
    vertical-align: top;
}
table.data thead th {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(15, 12, 22, 0.6);
    border-bottom: 1px solid var(--line);
}
table.data tbody th {
    font-family: var(--body);
    font-weight: 700;
    color: var(--text);
    width: 210px;
}
table.data td { color: var(--muted); }
table.data tbody tr:last-child th,
table.data tbody tr:last-child td { border-bottom: 0; }
table.data .num { font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--text); }

/* ---------- Contenido editorial ---------- */
.prose h2 { margin: 42px 0 16px; }
.prose h3 { margin: 30px 0 12px; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { color: var(--muted); }
.prose ul, .prose ol { margin: 0 0 1.1rem 1.15rem; color: var(--muted); }
.prose li { margin-bottom: 9px; padding-left: 4px; }
.prose li::marker { color: var(--gold); }
.prose .note { margin: 24px 0; }

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
    background: rgba(29, 24, 41, 0.72);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card__num {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--teal);
    display: block;
    margin-bottom: 12px;
}

.checklist { list-style: none; margin: 0 0 1.1rem; }
.checklist li {
    display: flex;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--ink-4);
    color: var(--muted);
}
.checklist li:last-child { border-bottom: 0; }
.checklist span:first-child { color: var(--gold); font-family: var(--mono); flex-shrink: 0; }

.contact-lines { list-style: none; }
.contact-lines li {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--ink-4);
}
.contact-lines li:last-child { border-bottom: 0; }
.contact-lines b {
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    min-width: 148px;
    font-weight: 600;
}

.help-line {
    font-family: var(--mono);
    font-size: clamp(1.3rem, 3.4vw, 1.9rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
    display: block;
    margin: 6px 0 4px;
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
    border-bottom: 1px solid var(--line);
    padding: 4px 0;
}
.faq summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 44px 20px 0;
    position: relative;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.06rem;
    letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--mono);
    font-size: 1.4rem;
    color: var(--gold);
    line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq summary:hover { color: var(--gold); }
.faq .faq__body { padding: 0 44px 22px 0; color: var(--muted); }

/* ---------- Formularios ---------- */
.form-panel {
    background: rgba(29, 24, 41, 0.78);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px;
}
.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.field input,
.field textarea {
    width: 100%;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 15px;
    color: var(--text);
    font-size: 1rem;
    font-family: var(--body);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #6f678a; }
.field input:focus,
.field textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px var(--gold-soft); }

.form-hint { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }

.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.inline-form { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.inline-form .field { flex: 1 1 260px; margin-bottom: 0; }

/* Mensajes de estado (JS) */
.status {
    border: 1px solid rgba(123, 214, 160, 0.42);
    background: rgba(123, 214, 160, 0.09);
    border-radius: 8px;
    padding: 26px 28px;
}
.status__title {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--ok);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.status__title::before {
    content: "\2713";
    font-family: var(--mono);
    font-size: 0.95rem;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(123, 214, 160, 0.5);
}
.status p { color: var(--muted); margin-bottom: 0.7rem; }
.status .btn { margin-top: 12px; }
[hidden] { display: none !important; }

/* ---------- Bloque suscripción ---------- */
.subscribe {
    background:
        linear-gradient(150deg, rgba(243, 182, 63, 0.10), transparent 55%),
        rgba(29, 24, 41, 0.85);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 36px;
}
.subscribe h2 { margin-bottom: 12px; }
.subscribe p { color: var(--muted); max-width: 58ch; }
.subscribe form { margin-top: 22px; }

/* ---------- 404 ---------- */
.err { padding: 96px 0 84px; text-align: center; }
.err__code {
    font-family: var(--mono);
    font-size: clamp(4.5rem, 17vw, 9.5rem);
    font-weight: 600;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 12px;
}
.err h1 { margin-bottom: 18px; }
.err p { color: var(--muted); margin: 0 auto 30px; max-width: 46ch; }

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(15, 12, 22, 0.72);
    padding: 54px 0 34px;
    margin-top: 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line);
}
.footer-about p {
    color: var(--muted);
    font-size: 0.93rem;
    margin-top: 16px;
    max-width: 42ch;
}
.footer-col h4 {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 0.93rem; }
.footer-col a:hover { color: var(--gold); }

.footer-legal { padding-top: 28px; display: grid; gap: 18px; }
.footer-legal p { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }
.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    align-items: center;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: #7d7597;
    text-transform: uppercase;
}
.footer-warn {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(29, 24, 41, 0.8);
}
.footer-warn__age {
    font-family: var(--mono);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--danger);
    border: 2px solid var(--danger);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
}
.footer-warn p { font-size: 0.86rem; flex: 1 1 300px; margin: 0; }

/* ---------- Animación de entrada ---------- */
@keyframes riseIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}
.hero h1,
.hero__sub,
.hero__text,
.hero__actions,
.hero .stamp,
.hero .ticket {
    animation: riseIn 0.6s cubic-bezier(0.22, 0.75, 0.3, 1) both;
}
.hero__sub    { animation-delay: 0.06s; }
.hero__text   { animation-delay: 0.12s; }
.hero__actions{ animation-delay: 0.18s; }
.hero .stamp  { animation-delay: 0.24s; }
.hero .ticket { animation-delay: 0.1s; }

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