/* =============================================================
   Sandrènyl — Pages promotionnelles des projets
   Chrome commun + thèmes par projet (mêmes accents que le hub)
   + composants pédagogiques (cartes, plateau, modèle, étapes…).
   S'appuie sur les design tokens globaux définis dans app.css.
   ============================================================= */

/* ---------- Thèmes par projet (accents repris des panels du hub) ---------- */
.promo--track-history {
    --accent: #00ffe9;
    --accent-2: #9254ff;
    --accent-soft: rgba(0, 255, 233, 0.12);
    --glow: rgba(0, 255, 233, 0.4);
    --font-title: 'Kode Mono', monospace;
}

.promo--voltrine {
    --accent: #00f6ff;
    --accent-2: #ffd700;
    --accent-soft: rgba(0, 246, 255, 0.12);
    --glow: rgba(0, 246, 255, 0.38);
    --font-title: 'Cinzel Decorative', serif;
}

.promo--ttrpg {
    --accent: #c9a84c;
    --accent-2: #e8833a;
    --accent-soft: rgba(201, 168, 76, 0.13);
    --glow: rgba(232, 131, 58, 0.38);
    --font-title: 'Cinzel Decorative', serif;
}

.promo--sohnaris {
    --accent: #ffc800;
    --accent-2: #ffe89a;
    --accent-soft: rgba(255, 200, 0, 0.1);
    --glow: rgba(255, 200, 0, 0.3);
    --font-title: 'Marhey', cursive;
}

/* ---------- Trame générale ---------- */
.promo {
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
}

.promo__ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(60% 45% at 50% -5%, var(--accent-soft), transparent 70%),
        radial-gradient(50% 40% at 100% 100%, var(--accent-soft), transparent 70%);
}

.promo > * {
    position: relative;
    z-index: 1;
}

/* Conteneur lisible centré, réutilisé par toutes les sections. */
.promo__bar,
.promo__hero,
.promo section,
.promo__cta {
    width: min(100% - 2.4rem, 1080px);
    margin-inline: auto;
}

/* ---------- Barre supérieure ---------- */
.promo__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.4rem;
}

.promo__back,
.promo__visit {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--muted);
    transition: color var(--transition);
}

.promo__back:hover,
.promo__visit:hover {
    color: var(--text);
}

.promo__visit {
    color: var(--accent);
}

/* ---------- En-tête éditorial ---------- */
.promo__hero {
    position: relative;
    text-align: center;
    padding-block: clamp(2.2rem, 6vw, 4.5rem) clamp(2rem, 6vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    isolation: isolate;
}

/* Halo d'ambiance derrière l'en-tête (par défaut pour toutes les pages). */
.promo__hero::before {
    content: '';
    position: absolute;
    z-index: -1;
    pointer-events: none;
    left: 50%;
    top: -1rem;
    transform: translateX(-50%);
    width: min(920px, 96%);
    height: 460px;
    background: radial-gradient(46% 60% at 50% 30%, var(--accent-soft), transparent 72%);
}

/* Track History : trame de grille, clin d'œil aux tableaux de bord. */
.promo--track-history .promo__hero::after {
    content: '';
    position: absolute;
    z-index: -1;
    pointer-events: none;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(880px, 96%);
    height: 320px;
    background-image:
        linear-gradient(to right, color-mix(in srgb, var(--accent) 22%, transparent) 1px, transparent 1px),
        linear-gradient(to bottom, color-mix(in srgb, var(--accent) 22%, transparent) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(58% 78% at 50% 18%, #000, transparent 76%);
    mask-image: radial-gradient(58% 78% at 50% 18%, #000, transparent 76%);
    opacity: 0.45;
}

/* Voltrine : décor illustré (château de cristal) au lieu du simple halo. */
.promo--voltrine .promo__hero::before {
    inset: -1.5rem -50vw 0;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    height: auto;
    background:
        linear-gradient(180deg, rgba(8, 8, 13, 0.5), var(--bg) 92%),
        url('/assets/voltrine/web/player-bg.webp') center top / cover no-repeat;
    -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent);
    mask-image: linear-gradient(180deg, #000 62%, transparent);
    opacity: 0.5;
}

/* Médaillon du logo, ceinturé de halos concentriques. */
.promo__badge {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(116px, 15vw, 164px);
    aspect-ratio: 1;
    margin-bottom: 1.7rem;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 38%, #16161f 0%, #0a0a10 78%);
    border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--border));
    box-shadow:
        0 20px 54px -18px rgba(0, 0, 0, 0.85),
        0 0 70px -24px var(--glow),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.promo__badge::before,
.promo__badge::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.promo__badge::before {
    inset: -11px;
    border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
}

.promo__badge::after {
    inset: -24px;
    border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
}

.promo__logo {
    width: 62%;
    height: 62%;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px var(--glow));
}

.promo__title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.05;
    letter-spacing: var(--title-spacing, 0);
    color: var(--text);
    text-shadow: 0 2px 34px var(--glow);
}

.promo__tagline {
    position: relative;
    margin-top: 0.85rem;
    padding-bottom: 1.05rem;
    font-family: var(--font-title);
    font-size: clamp(1rem, 0.9rem + 0.6vw, 1.35rem);
    letter-spacing: 0.04em;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Liseré décoratif sous l'accroche. */
.promo__tagline::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.promo__lead {
    margin-top: 1.3rem;
    max-width: 60ch;
    color: var(--muted);
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.12rem);
}

/* Respiration lente du halo extérieur du médaillon. */
@media (prefers-reduced-motion: no-preference) {
    .promo__badge::after {
        animation: promo-badge-pulse 4.5s ease-in-out infinite;
    }

    @keyframes promo-badge-pulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.045); opacity: 0.45; }
    }
}

/* ---------- Sections ---------- */
.promo section {
    padding-block: clamp(2.4rem, 6vw, 4rem);
    border-top: 1px solid var(--seam);
}

.promo__section-head {
    max-width: 64ch;
    margin-bottom: 2rem;
}

.promo__section-head--center {
    margin-inline: auto;
    text-align: center;
}

.promo__kicker {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.7rem;
}

.promo__h2 {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: var(--title-spacing, 0);
    color: var(--text);
}

.promo__intro {
    margin-top: 0.9rem;
    color: var(--muted);
    font-size: clamp(0.97rem, 0.92rem + 0.3vw, 1.08rem);
}

.promo__intro + .promo__intro {
    margin-top: 0.7rem;
}

.promo p strong {
    color: var(--text);
    font-weight: 600;
}

.promo a.inline {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ---------- Grille de fonctionnalités (cartes icône + texte) ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1rem;
}

.feature {
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color var(--transition), transform var(--transition);
}

.feature:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, transparent);
    transform: translateY(-3px);
}

.feature__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature__text {
    color: var(--muted);
    font-size: 0.95rem;
}

.feature__text + .feature__text {
    margin-top: 0.6rem;
}

/* ---------- Étapes numérotées ---------- */
.steps {
    display: grid;
    gap: 1rem;
    counter-reset: step;
}

.step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.1rem;
    align-items: start;
    padding: 1.3rem 1.5rem;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.step__num {
    counter-increment: step;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    color: #08080d;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
}

.step__num::before {
    content: counter(step);
}

.step__title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.step__text {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ---------- Hiérarchie de modèle de données (Track History) ---------- */
.model {
    display: grid;
    gap: 0.7rem;
}

.model__node {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 0.9rem 1.1rem;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    /* Indentation progressive de la hiérarchie. */
    margin-left: calc(var(--depth, 0) * clamp(0.8rem, 3vw, 2rem));
}

.model__tag {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--accent);
    white-space: nowrap;
}

.model__desc {
    color: var(--muted);
    font-size: 0.9rem;
}

.model__desc b {
    color: var(--text);
    font-weight: 600;
}

/* ---------- Cas d'usage (Track History) ---------- */
.usecases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 1.1rem;
}

.usecase {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color var(--transition), transform var(--transition);
}

.usecase:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, transparent);
    transform: translateY(-3px);
}

.usecase__emoji {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
}

.usecase__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.usecase__row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem;
    margin-top: 0.7rem;
    font-size: 0.9rem;
}

.usecase__label {
    font-family: var(--font-title);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    padding-top: 0.12rem;
}

.usecase__value {
    color: var(--muted);
}

.usecase__value code {
    font-family: var(--font-title);
    font-size: 0.85em;
    color: var(--text);
    background: var(--accent-soft);
    padding: 0.05rem 0.35rem;
    border-radius: 5px;
}

/* ---------- Cartes Voltrine (vraies illustrations + cadre) ---------- */
.vcards {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.7rem, 2vw, 1.1rem);
    justify-content: center;
    align-items: flex-end;
}

.vcard {
    --role: #2b2f3a;
    position: relative;
    width: clamp(132px, 21vw, 184px);
    aspect-ratio: 709 / 1299;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #0c0e14;
    border: 1px solid color-mix(in srgb, var(--role) 65%, #ffffff 14%);
    box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.9), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.vcard:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 26px 48px -18px var(--glow);
}

.vcard__art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Voile sombre haut + bas pour la lisibilité de la valeur et du nom. */
.vcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 8, 13, 0.72) 0%, transparent 26%),
        linear-gradient(0deg, rgba(8, 8, 13, 0.88) 0%, transparent 38%);
    pointer-events: none;
}

.vcard__value {
    position: absolute;
    top: 0.5rem;
    left: 0.6rem;
    z-index: 2;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.vcard__meta {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 0.6rem 0.5rem 0.7rem;
    text-align: center;
}

.vcard__name {
    display: block;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.86rem;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

/* Carte face cachée : illustre l'information cachée. */
.vcard--back {
    --role: #00c4cc;
    background: #f3f4f8;
}

.vcard--back .vcard__art {
    object-fit: contain;
    padding: 8%;
}

.vcard--back::after {
    background: linear-gradient(0deg, rgba(8, 8, 13, 0.85) 0%, transparent 32%);
}

.vcard__hidden {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding-bottom: 0.7rem;
    text-align: center;
    font-size: 0.6rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ---------- Décrets ultimes (illustrations) ---------- */
.decrees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 1.1rem;
}

.decree {
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: border-color var(--transition), transform var(--transition);
}

.decree:hover {
    border-color: color-mix(in srgb, var(--accent) 45%, transparent);
    transform: translateY(-3px);
}

.decree__img {
    width: 100%;
    aspect-ratio: 1000 / 571;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border);
}

.decree__body {
    padding: 1.2rem 1.3rem 1.4rem;
}

.decree__title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.decree__text {
    color: var(--muted);
    font-size: 0.92rem;
}

/* Pastilles de couleur des rôles. */
.role-swatch { width: 18px; height: 18px; border-radius: 4px; display: inline-block; }
.role-swatch--protagonist { background: #1a365d; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25); }
.role-swatch--protector { background: #2d6a4f; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25); }
.role-swatch--conspirator { background: #4a1942; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25); }

/* ---------- Plateaux Voltrine (joueur + Jardins, distincts) ---------- */
.boards {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    max-width: 720px;
    margin-inline: auto;
}

.board__label {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-align: center;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.board {
    display: grid;
    gap: 0.7rem;
    padding: 1.1rem;
    border-radius: 18px;
    background: #14161c;
    border: 1px solid var(--border);
}

/* Les Jardins : plateau partagé, grille 3×3 à part. */
.garden-board {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.1rem;
    border-radius: 18px;
    background: #10140e;
    border: 1px solid color-mix(in srgb, #2d6a4f 45%, var(--border));
}

.garden-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    aspect-ratio: 1;
}

.garden-grid i {
    border-radius: 6px;
    background: color-mix(in srgb, #1a3d1a 45%, #0e1016);
    border: 1px solid color-mix(in srgb, #2d6a4f 45%, transparent);
}

.board__zone-desc--garden {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.74rem;
    margin-top: auto;
}

@media (max-width: 600px) {
    .boards {
        grid-template-columns: 1fr;
    }
}

.board__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

.board__zone {
    --zc: #2b2f3a;
    padding: 0.9rem;
    border-radius: 10px;
    text-align: center;
    background: color-mix(in srgb, var(--zc) 22%, #0e1016);
    border: 1px solid color-mix(in srgb, var(--zc) 55%, transparent);
}

.board__zone--wide {
    grid-column: 1 / -1;
}

.board__zone--protagonist { --zc: #1a365d; }
.board__zone--protector { --zc: #2d6a4f; }
.board__zone--conspirator { --zc: #4a1942; }
.board__zone--hand { --zc: #b89020; }
.board__zone--hero { --zc: #00c4cc; }
.board__zone--garden { --zc: #1a3d1a; }

.board__zone-name {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.84rem;
    color: #f4f5fb;
}

.board__zone-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
}

.board__slots {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.board__slots i {
    width: 16px;
    height: 22px;
    border-radius: 3px;
    border: 1px solid color-mix(in srgb, var(--zc) 70%, #ffffff 20%);
    background: color-mix(in srgb, var(--zc) 40%, transparent);
}

.board__caption {
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 1rem;
}

/* ---------- Bloc de questions (Sohnaris) ---------- */
.questions {
    display: grid;
    gap: 1rem;
    max-width: 760px;
    margin-inline: auto;
}

.question {
    padding: 1.6rem 1.7rem;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
}

.question__q {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: clamp(1.15rem, 1rem + 0.8vw, 1.5rem);
    color: var(--accent-2);
    line-height: 1.35;
}

.question__a {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.sohnaris-verse {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-title);
    font-weight: 300;
    font-size: clamp(1.3rem, 1.1rem + 1.4vw, 2rem);
    line-height: 1.5;
    color: var(--text);
}

.sohnaris-verse em {
    color: var(--accent);
    font-style: normal;
}

/* ---------- Liste de points cochés ---------- */
.checklist {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.checklist li {
    position: relative;
    padding-left: 1.9rem;
    color: var(--muted);
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 1px solid var(--accent);
}

.checklist li::after {
    content: '✓';
    position: absolute;
    left: 0.24rem;
    top: 0.28rem;
    font-size: 0.72rem;
    color: var(--accent);
}

/* ---------- Bandeau de chiffres-clés ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    gap: 1rem;
    text-align: center;
}

.stat__num {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.6rem);
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat__label {
    color: var(--muted);
    font-size: 0.86rem;
    margin-top: 0.2rem;
}

/* ---------- Appel à l'action final ---------- */
.promo__cta {
    text-align: center;
    padding-block: clamp(3rem, 8vw, 5rem);
    border-top: 1px solid var(--seam);
}

.promo__cta-title {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: clamp(1.6rem, 1.3rem + 1.6vw, 2.3rem);
    color: var(--text);
}

.promo__cta-text {
    margin: 0.9rem auto 0;
    max-width: 52ch;
    color: var(--muted);
}

.promo__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.8rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    color: #08080d;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    transition: transform var(--transition), box-shadow var(--transition);
}

.promo__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px var(--glow);
}

/* ---------- Entrée en fondu ---------- */
@media (prefers-reduced-motion: no-preference) {
    .promo__hero,
    .promo section {
        opacity: 0;
        animation: promo-rise 0.7s ease forwards;
    }

    @keyframes promo-rise {
        from { opacity: 0; transform: translateY(14px); }
        to { opacity: 1; transform: none; }
    }
}
