/**
 * Project - Hera landing — presentation palette (#14100e, #c5a059, #e6d4a8)
 */
:root {
    --hera-bg-deep: #14100e;
    --hera-gold: #c5a059;
    --hera-gold-soft: #e6d4a8;
    --hera-gold-dim: #8a7038;
    --hera-ink: #e8dcc4;
    --hera-cream: #fdf6e9;
    --hera-teal-glow: rgba(45, 120, 115, 0.35);
    --hera-font-ui: "Montserrat", system-ui, sans-serif;
    --hera-font-display: "Cinzel", Georgia, "Times New Roman", serif;
}

body.hera-landing {
    --hera-dock-w: clamp(220px, 25vw, 312px);
    min-height: 100vh;
    font-family: var(--hera-font-ui);
    color: var(--hera-ink);
    background-color: var(--hera-bg-deep);
    background-image:
        radial-gradient(ellipse 90% 50% at 50% -10%, var(--hera-teal-glow), transparent 55%),
        radial-gradient(ellipse 70% 40% at 100% 80%, rgba(90, 70, 35, 0.18), transparent),
        linear-gradient(180deg, #0f0c0a 0%, #1a130f 40%, #0f0c0a 100%);
}

.hera-landing .main {
    background: transparent;
}

@media (max-width: 991px) {
    .hera-landing .main {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
}

/* ——— Hero — panel between left countdown & right announcement ——— */
.hera-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
    min-height: 100dvh;
    /* No bottom padding — it sat below the affiliate bar and showed hero bg before the footer */
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 0;
    overflow: hidden;
}

.hera-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(105deg, rgba(10, 8, 7, 0.96) 0%, rgba(16, 13, 11, 0.82) 45%, rgba(12, 10, 8, 0.65) 100%),
        radial-gradient(ellipse 75% 60% at 88% 32%, rgba(197, 160, 89, 0.12), transparent 55%),
        url("../assets/images/landing-hero-bg.webp") center top / cover no-repeat;
    background-color: #0f0c0a;
}

/* Rising ember dots: fixed overlay above docks, hero, footer (decorative; clicks pass through) */
.hera-embers-overlay {
    position: fixed;
    inset: 0;
    z-index: 10050;
    pointer-events: none;
    overflow: hidden;
}

.hera-hero__ember {
    position: absolute;
    bottom: -5%;
    left: var(--hera-ember-x, 50%);
    width: var(--hera-ember-s, 5px);
    height: var(--hera-ember-s, 5px);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff8e8 0%, rgba(255, 200, 120, 0.95) 35%, rgba(197, 160, 89, 0.35) 70%, transparent 100%);
    box-shadow:
        0 0 11px rgba(255, 210, 140, 0.65),
        0 0 24px rgba(197, 160, 89, 0.34);
    opacity: 0;
    animation: hera-ember-rise var(--hera-ember-dur, 14s) ease-in infinite;
    animation-delay: var(--hera-ember-delay, 0s);
    animation-fill-mode: backwards;
    will-change: transform, opacity;
}

@keyframes hera-ember-rise {
    0% {
        transform: translate3d(0, 0, 0) scale(0.75);
        opacity: 0.5;
    }
    4% {
        opacity: 0.6;
    }
    50% {
        transform: translate3d(var(--hera-ember-drift, 12px), -50vh, 0) scale(1);
        opacity: 0.48;
    }
    100% {
        transform: translate3d(calc(var(--hera-ember-drift, 12px) * -0.4), -118vh, 0) scale(0.5);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hera-hero__ember {
        animation: none;
        opacity: 0;
        display: none;
    }
}

.hera-hero__container {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop: full width between fixed docks, then center the stack — avoids drift inside a narrow .container */
@media (min-width: 992px) {
    .hera-landing .hera-hero .hera-hero__container.container {
        max-width: none;
    }

    .hera-hero__container {
        padding-left: calc(var(--hera-dock-w) + var(--bs-gutter-x, 1.5rem) * 0.5);
        padding-right: calc(var(--hera-dock-w) + var(--bs-gutter-x, 1.5rem) * 0.5);
        box-sizing: border-box;
    }
}

.hera-hero__stack {
    display: flex;
    flex-direction: column;
    gap: clamp(0.85rem, 2vw, 1.15rem);
    width: 100%;
}

@media (min-width: 992px) {
    .hera-hero__stack {
        max-width: min(42rem, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .hera-hero__shell {
        margin-top: clamp(1.75rem, 4.5vh, 3.25rem);
    }
}

.hera-hero__shell {
    width: 100%;
    margin-inline: auto;
}

.hera-hero__panel {
    position: relative;
    overflow: hidden;
    padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.35rem, 3vw, 2rem) clamp(1.45rem, 3vw, 1.95rem);
    text-align: left;
    border-radius: 16px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    background:
        linear-gradient(165deg, rgba(22, 18, 15, 0.94) 0%, rgba(10, 8, 7, 0.92) 55%, rgba(14, 11, 9, 0.95) 100%);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 40px rgba(197, 160, 89, 0.04);
}

.hera-hero__panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--hera-gold-dim), var(--hera-gold) 40%, var(--hera-gold-soft));
    opacity: 0.95;
}

@media (max-width: 991px) {
    .hera-hero {
        min-height: 0;
    }

    .hera-hero__container {
        padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
        padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
        box-sizing: border-box;
    }

    .hera-hero__stack {
        max-width: min(32rem, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .hera-hero__panel {
        text-align: center;
    }
}

.hera-hero__panel-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem 1rem;
    margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
}

.hera-hero__panel-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    flex: 1 1 auto;
    min-width: 0;
}

.hera-hero__panel-top .lang-menu {
    flex: 0 0 auto;
    align-self: flex-start;
}

@media (max-width: 991px) {
    .hera-hero__panel-top {
        flex-direction: column;
        align-items: center;
    }

    .hera-hero__panel-brand {
        align-items: center;
    }

    .hera-hero__panel-top .lang-menu {
        align-self: center;
    }
}

/* Language switcher (same pattern as presentation) */
.hera-landing .lang-menu {
    position: relative;
    flex-shrink: 0;
    z-index: 1600;
}

.hera-landing .lang-menu__trigger {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.6rem 0.4rem 0.45rem;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--hera-gold-soft);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(197, 160, 89, 0.32);
    border-radius: 10px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    max-width: min(240px, 72vw);
}

.hera-landing .lang-menu__trigger:hover,
.hera-landing .lang-menu.is-open .lang-menu__trigger {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--hera-gold);
    color: #fff;
}

.hera-landing .lang-menu__trigger-flag {
    display: flex;
    align-items: center;
    line-height: 0;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.hera-landing .lang-menu__trigger-flag .lang-flag {
    display: block;
    width: 26px;
    height: auto;
}

.hera-landing .lang-menu__trigger-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.hera-landing .lang-menu__caret {
    flex-shrink: 0;
    opacity: 0.85;
    margin-left: 0.1rem;
    transition: transform 0.2s ease;
}

.hera-landing .lang-menu.is-open .lang-menu__caret {
    transform: rotate(180deg);
}

.hera-landing .lang-menu__panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: min(100vw - 24px, 260px);
    max-height: min(70vh, 420px);
    overflow-y: auto;
    padding: 0.35rem;
    border-radius: 10px;
    background: linear-gradient(180deg, #1e1814 0%, #14100e 100%);
    border: 1px solid rgba(197, 160, 89, 0.45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hera-landing .lang-menu__item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.55rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--hera-ink);
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.15s, color 0.15s;
}

.hera-landing .lang-menu__item:hover {
    background: rgba(197, 160, 89, 0.18);
    color: #fff;
}

.hera-landing .lang-menu__item.is-active {
    background: rgba(197, 160, 89, 0.28);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.4);
}

.hera-landing .lang-menu__item-flag {
    flex-shrink: 0;
    line-height: 0;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.hera-landing .lang-menu__item-flag .lang-flag {
    display: block;
    width: 28px;
    height: auto;
}

.hera-landing .lang-menu__item-text {
    flex: 1;
    min-width: 0;
}

@media (max-width: 991px) {
    .hera-landing .lang-menu--landing-hero .lang-menu__panel {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

.hera-hero__logo {
    display: block;
    max-width: min(220px, 62vw);
    width: auto;
    height: auto;
    margin: 0;
    filter: drop-shadow(0 4px 18px rgba(197, 160, 89, 0.22));
}

.hera-hero__eyebrow {
    margin: 0;
    padding: 0.28rem 0.7rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #1a1511;
    background: linear-gradient(165deg, #f2e8d0, var(--hera-gold) 50%, #8a7038);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.hera-hero__title {
    margin: 0 0 clamp(0.65rem, 1.5vw, 0.95rem);
    max-width: 36ch;
    font-family: var(--hera-font-display);
    font-size: clamp(1rem, 2.4vw, 1.45rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--hera-cream);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.85);
}

@media (max-width: 991px) {
    .hera-hero__title {
        margin-left: auto;
        margin-right: auto;
    }
}

.hera-hero__deck {
    margin: 0 0 clamp(1.1rem, 2.2vw, 1.45rem);
    max-width: 48ch;
    font-size: clamp(0.68rem, 1.35vw, 0.78rem);
    font-weight: 600;
    line-height: 1.65;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(230, 212, 168, 0.88);
}

@media (max-width: 991px) {
    .hera-hero__deck {
        margin-left: auto;
        margin-right: auto;
    }
}

.hera-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: stretch;
    max-width: 100%;
}

.hera-hero__actions-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

@media (min-width: 560px) {
    .hera-hero__actions-row {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }
}

/* Shared button base (hero + elsewhere) */
.hera-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 48px;
    padding: 0.6rem 1.2rem;
    font-family: var(--hera-font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.hera-btn__label {
    display: block;
    line-height: 1.2;
}

.hera-btn__sub {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: none;
    line-height: 1.35;
    opacity: 0.92;
}

/* Primary CTA — full width, largest */
.hera-btn--hero-primary {
    width: 100%;
    min-height: 3.85rem;
    padding: 0.85rem 1.25rem;
    font-size: clamp(0.88rem, 2.1vw, 1.05rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #161210;
    background: linear-gradient(165deg, #faf3e0 0%, var(--hera-gold) 38%, #7d6328 100%);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    border-radius: 12px;
}

.hera-btn--hero-primary .hera-btn__sub {
    margin-top: 0.32rem;
    font-size: clamp(0.72rem, 1.65vw, 0.82rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    color: rgba(22, 18, 14, 0.82);
    opacity: 1;
}

.hera-btn--hero-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

.hera-btn--hero-primary:active {
    transform: translateY(-1px);
}

/* Secondary row — large but calmer */
.hera-btn--hero-secondary {
    min-height: 3.45rem;
    padding: 0.72rem 0.95rem;
    font-size: clamp(0.78rem, 1.85vw, 0.9rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--hera-cream);
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(197, 160, 89, 0.45);
    border-radius: 11px;
}

.hera-btn--hero-secondary .hera-btn__sub {
    font-size: clamp(0.65rem, 1.5vw, 0.74rem);
    color: rgba(230, 212, 168, 0.78);
}

.hera-btn--hero-secondary:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--hera-gold-soft);
    color: #fff;
}

.hera-btn--hero-secondary--plain .hera-btn__sub {
    color: rgba(230, 212, 168, 0.7);
}

/* Legacy compact buttons (footer / other) */
.hera-btn--gold {
    color: #1c1612;
    background: linear-gradient(165deg, #f0e4c8 0%, var(--hera-gold) 42%, #9a7a3d 100%);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hera-btn--gold:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.hera-btn--outline {
    color: var(--hera-gold-soft);
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(197, 160, 89, 0.45);
}

.hera-btn--outline:hover {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--hera-gold);
    color: #fff;
}

.hera-btn--solid {
    color: #1a130f;
    background: linear-gradient(180deg, #ddd2b8 0%, var(--hera-gold) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hera-btn--solid:hover {
    filter: brightness(1.07);
}

/* ——— Right announcement dock (Beginner event) ——— */
.hera-announce-dock {
    position: fixed;
    z-index: 8990;
    right: clamp(8px, 1.5vw, 16px);
    top: clamp(88px, 14vh, 180px);
    width: 278px;
    pointer-events: none;
    scroll-margin-top: 6rem;
}

.hera-announce-dock__ribbon {
    pointer-events: none;
    position: relative;
    z-index: 2;
    margin: 0 auto -7px;
    width: max-content;
    max-width: 94%;
    padding: 0.48rem 1.15rem;
    font-family: var(--hera-font-ui);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1c1612;
    text-align: center;
    background: linear-gradient(165deg, #d4f0e8 0%, rgba(45, 120, 115, 0.55) 38%, #1a5c56 100%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    transform: rotate(0.5deg);
}

.hera-announce-dock__panel {
    pointer-events: auto;
    position: relative;
    padding: 1.35rem 1.05rem 1.25rem;
    border-radius: 14px 6px 8px 16px;
    border: 2px solid rgba(197, 160, 89, 0.48);
    border-right: 5px solid var(--hera-gold);
    background: linear-gradient(205deg, rgba(32, 26, 22, 0.96) 0%, rgba(14, 12, 10, 0.98) 100%);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 0 40px rgba(45, 120, 115, 0.06);
    transform: rotate(0.9deg);
    text-align: center;
    color: var(--hera-ink);
}

.hera-announce-dock__title {
    margin: 0 0 0.5rem;
    font-family: var(--hera-font-display);
    font-size: clamp(0.92rem, 2vw, 1.08rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hera-cream);
    text-shadow: 0 0 14px rgba(45, 120, 115, 0.2), 0 2px 10px rgba(0, 0, 0, 0.75);
}

.hera-announce-dock__status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0 0 0.75rem;
    padding: 0.28rem 0.65rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b8e8d4;
    background: rgba(45, 120, 115, 0.22);
    border: 1px solid rgba(45, 120, 115, 0.45);
    border-radius: 999px;
}

.hera-announce-dock__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5fd4a0;
    box-shadow: 0 0 10px rgba(95, 212, 160, 0.85);
    animation: hera-announce-pulse 1.8s ease-in-out infinite;
}

@keyframes hera-announce-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.65;
        transform: scale(0.92);
    }
}

.hera-announce-dock__lead {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(232, 220, 196, 0.92);
}

.hera-announce-dock__body {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.55;
    color: rgba(232, 220, 196, 0.78);
}

.hera-announce-dock__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.65rem;
    padding: 0.55rem 1rem;
    font-family: var(--hera-font-ui);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #161210;
    background: linear-gradient(165deg, #faf3e0 0%, var(--hera-gold) 42%, #7d6328 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.hera-announce-dock__cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

@media (max-width: 991px) {
    .hera-announce-dock {
        position: relative;
        right: auto;
        top: auto;
        width: min(328px, calc(100% - 2rem));
        margin: 0.75rem auto 0;
        padding: 0 max(1rem, env(safe-area-inset-left, 0px)) 0 max(1rem, env(safe-area-inset-right, 0px));
        transform: none;
        z-index: 2;
    }

    .hera-announce-dock__ribbon {
        transform: none;
    }

    .hera-announce-dock__panel {
        transform: none;
        border-radius: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hera-announce-dock__dot {
        animation: none;
    }
}

/* Bottom — creator / affiliate banner */
.hera-affiliate {
    position: relative;
    padding: clamp(1.75rem, 4vw, 2.5rem) 0;
    border-top: 2px solid rgba(197, 160, 89, 0.35);
    background:
        linear-gradient(180deg, rgba(22, 18, 15, 0.98) 0%, rgba(12, 10, 8, 0.99) 100%),
        radial-gradient(ellipse 90% 80% at 50% 0%, rgba(197, 160, 89, 0.08), transparent 55%);
    scroll-margin-top: 5rem;
}

.hera-affiliate__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hera-affiliate__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.35rem;
}

@media (min-width: 768px) {
    .hera-affiliate__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.hera-affiliate__copy {
    flex: 1;
    min-width: 0;
}

.hera-affiliate__title {
    margin: 0 0 0.65rem;
    font-family: var(--hera-font-display);
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hera-cream);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hera-affiliate__lead {
    margin: 0 0 0.5rem;
    font-size: clamp(0.88rem, 1.8vw, 0.98rem);
    font-weight: 600;
    line-height: 1.55;
    color: rgba(232, 220, 196, 0.92);
}

.hera-affiliate__body {
    margin: 0 0 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(232, 220, 196, 0.72);
    max-width: 42rem;
}

.hera-affiliate__platforms-label {
    margin: 0 0 0.4rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.75);
}

.hera-affiliate__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hera-affiliate__platforms li {
    padding: 0.32rem 0.65rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hera-gold-soft);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 6px;
}

.hera-affiliate__platforms-more {
    color: rgba(232, 220, 196, 0.55);
    border-style: dashed;
}

.hera-affiliate__action {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .hera-affiliate__action {
        justify-content: flex-end;
    }
}

.hera-affiliate__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 220px);
    min-height: 3.1rem;
    padding: 0.85rem 1.5rem;
    font-family: var(--hera-font-ui);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: #161210;
    background: linear-gradient(165deg, #faf3e0 0%, var(--hera-gold) 40%, #7d6328 100%);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 12px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
    transition: transform 0.15s ease, filter 0.15s ease;
}

.hera-affiliate__cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

/* Affiliate pinned to bottom of hero (same bg image as .hera-hero__bg) */
.hera-hero > .hera-affiliate {
    margin-top: auto;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    align-self: stretch;
    border-top: 1px solid rgba(197, 160, 89, 0.42);
    /* Bottom stops more opaque so the bg photo doesn’t read through the strip */
    background: linear-gradient(180deg, rgba(10, 8, 7, 0.5) 0%, rgba(12, 10, 9, 0.88) 55%, rgba(8, 7, 6, 0.96) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.35);
}

/* Footer — clear tiers: brand → nav pills → meta (partners + legal) */
.hera-landing .footer {
    margin-top: 0;
    padding: 3rem 0 3.25rem;
    border-top: 1px solid rgba(197, 160, 89, 0.18);
    background: linear-gradient(180deg, #17120f 0%, #0c0a08 100%);
}

.hera-landing .footer::before {
    display: none;
}

.hera-landing .footer .footer__inner {
    align-items: center;
}

/* Reset main.css generic child margins (and mobile !important) */
.hera-landing .footer .footer__inner > *:not(:first-child) {
    margin-top: 0 !important;
}

.hera-landing .footer .footer__inner > .footer__quicknav {
    margin-top: 1.65rem !important;
}

.hera-landing .footer .footer__inner > .footer__meta {
    margin-top: 2.35rem !important;
}

.hera-landing .footer .logo {
    display: flex;
    justify-content: center;
}

.hera-landing .footer .logo__img {
    animation: none;
    width: auto;
    height: auto;
    max-width: min(200px, 52vw);
    max-height: 112px;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(197, 160, 89, 0.3));
}

.hera-landing .footer__quicknav {
    width: 100%;
    max-width: 56rem;
}

.hera-landing .footer .footer__list {
    margin: 0 !important;
    padding: 0 0.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
}

.hera-landing .footer .footer__list-item {
    margin: 0;
}

.hera-landing .footer__list-link {
    font-family: var(--hera-font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--hera-gold-soft);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 10px;
    min-width: 0;
    padding: 0.6rem 0.95rem;
    text-shadow: none;
    background-size: auto;
    background-image: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hera-landing .footer__list-link:hover {
    filter: none;
    background: rgba(197, 160, 89, 0.15);
    border-color: var(--hera-gold);
    color: #fff;
}

/* Secondary strip: listings + copyright */
.hera-landing .footer__meta {
    width: 100%;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 1.25rem 0;
    border-top: 1px solid rgba(197, 160, 89, 0.24);
    text-align: center;
}

.hera-landing .footer__meta .footer-backlinks {
    margin: 0;
    padding: 0;
    max-width: none;
}

.hera-landing .footer-backlinks__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0 auto;
    padding: 0.35rem 0.5rem;
    width: fit-content;
    max-width: 100%;
    list-style: none;
    cursor: pointer;
    font-family: var(--hera-font-ui);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.45);
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.hera-landing .footer-backlinks__summary::-webkit-details-marker,
.hera-landing .footer-backlinks__summary::marker {
    display: none;
}

.hera-landing .footer-backlinks__summary:hover,
.hera-landing .footer-backlinks__summary:focus-visible {
    color: rgba(230, 212, 168, 0.9);
    outline: none;
}

.hera-landing .footer-backlinks__summary:focus-visible {
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.35);
    border-radius: 4px;
}

.hera-landing .footer-backlinks__summary-text {
    user-select: none;
}

.hera-landing .footer-backlinks__chevron {
    flex-shrink: 0;
    color: rgba(197, 160, 89, 0.55);
    transition: transform 0.25s ease, color 0.2s;
}

.hera-landing .footer-backlinks[open] .footer-backlinks__chevron {
    transform: rotate(180deg);
    color: rgba(230, 212, 168, 0.85);
}

.hera-landing .footer-backlinks__panel {
    padding: 0.85rem 0.25rem 0;
}

.hera-landing .footer-backlinks__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.5;
}

.hera-landing .footer-backlinks__item {
    margin: 0;
    display: inline;
}

.hera-landing .footer-backlinks__item:not(:last-child)::after {
    content: "·";
    margin-left: 0.65rem;
    color: rgba(197, 160, 89, 0.3);
    font-weight: 400;
    pointer-events: none;
}

.hera-landing .footer-backlinks__link {
    display: inline;
    padding: 0;
    font-family: var(--hera-font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(230, 212, 168, 0.88);
    transition: color 0.2s;
}

.hera-landing .footer-backlinks__link:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.hera-landing .footer__meta .footer-backlinks + .footer__text {
    margin-top: 1.4rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.hera-landing .footer__meta > .footer__text:only-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    opacity: 0.92;
}

.hera-landing .footer__text {
    margin: 0;
    font-family: var(--hera-font-ui);
    color: rgba(197, 160, 89, 0.42);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

/* ——— Left hanging countdown (presentation colours) ——— */
.hera-countdown-dock {
    position: fixed;
    z-index: 9000;
    left: clamp(8px, 1.5vw, 16px);
    top: clamp(88px, 14vh, 180px);
    width: 278px;
    pointer-events: none;
}

.hera-countdown-dock__ribbon {
    pointer-events: none;
    position: relative;
    z-index: 2;
    margin: 0 auto -7px;
    width: max-content;
    max-width: 94%;
    padding: 0.48rem 1.15rem;
    font-family: var(--hera-font-ui);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1c1612;
    text-align: center;
    background: linear-gradient(165deg, #f0e4c8 0%, var(--hera-gold) 48%, #8a7038 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    transform: rotate(-0.5deg);
}

.hera-countdown-dock__panel {
    pointer-events: auto;
    position: relative;
    padding: 1.45rem 1.1rem 1.2rem;
    border-radius: 6px 16px 14px 8px;
    border: 2px solid rgba(197, 160, 89, 0.48);
    border-left: 5px solid var(--hera-gold);
    background: linear-gradient(155deg, rgba(32, 26, 22, 0.96) 0%, rgba(14, 12, 10, 0.98) 100%);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        inset 0 0 48px rgba(197, 160, 89, 0.04);
    transform: rotate(-1.1deg);
    text-align: center;
    color: var(--hera-ink);
}

.hera-countdown-dock__title {
    margin: 0 0 0.5rem;
    font-family: var(--hera-font-display);
    font-size: clamp(0.88rem, 2.2vw, 1.12rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.04em;
    color: var(--hera-cream);
    text-shadow: 0 0 18px rgba(197, 160, 89, 0.25), 0 2px 10px rgba(0, 0, 0, 0.75);
}

.hera-countdown-dock__meta {
    margin: 0 0 0.72rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.78);
}

.hera-countdown-dock__timer {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.95rem;
}

.hera-countdown-dock__unit {
    flex: 1;
    min-width: 0;
    padding: 0.48rem 0.28rem;
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.28);
}

.hera-countdown-dock__unit span {
    display: block;
    font-family: var(--hera-font-ui);
    font-size: 1.22rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: #f5efe4;
    line-height: 1.1;
}

.hera-countdown-dock__unit small {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.68);
}

.hera-countdown-dock__social {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
}

.hera-countdown-dock__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: rgba(230, 212, 168, 0.9);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.38);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hera-countdown-dock__social a:hover {
    background: rgba(197, 160, 89, 0.18);
    border-color: var(--hera-gold);
    color: #fff;
}

.hera-countdown-dock__social svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

/* Kum saati — altın / krem palet */
.hera-countdown-dock__hourglass {
    pointer-events: none;
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    padding: 0.25rem 0 0.2rem;
}

.hera-hourglass {
    display: block;
    width: 76px;
    height: auto;
    max-width: 82%;
    filter: drop-shadow(0 2px 10px rgba(197, 160, 89, 0.25));
}

/* Üst ampul: belden boşalır (drain). Alt ampul: dibe doğru dolar (fill). */
.hera-hourglass__sand--top {
    transform-box: fill-box;
    transform-origin: 50% 100%;
    animation: hera-hourglass-drain 3.8s ease-in-out infinite;
}

.hera-hourglass__sand--bot {
    transform-box: fill-box;
    transform-origin: 50% 100%;
    animation: hera-hourglass-fill 3.8s ease-in-out infinite;
}

.hera-hourglass__grain {
    animation: hera-hourglass-grain 1.15s ease-in-out infinite;
}

.hera-hourglass__outline--upper,
.hera-hourglass__outline--lower {
    animation: hera-hourglass-frame 3.8s ease-in-out infinite;
}

@keyframes hera-hourglass-drain {
    0%,
    5% {
        transform: scaleY(1);
    }

    45% {
        transform: scaleY(0.1);
    }

    55% {
        transform: scaleY(0.1);
    }

    95%,
    100% {
        transform: scaleY(1);
    }
}

@keyframes hera-hourglass-fill {
    0%,
    5% {
        transform: scaleY(0.12);
    }

    45% {
        transform: scaleY(1);
    }

    55% {
        transform: scaleY(1);
    }

    95%,
    100% {
        transform: scaleY(0.12);
    }
}

@keyframes hera-hourglass-grain {
    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.35;
        transform: translateY(5px);
    }
}

@keyframes hera-hourglass-frame {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.78;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hera-hourglass__sand--top,
    .hera-hourglass__sand--bot,
    .hera-hourglass__grain,
    .hera-hourglass__outline--upper,
    .hera-hourglass__outline--lower {
        animation: none;
    }

    .hera-hourglass__sand--top {
        transform: scaleY(0.88);
    }

    .hera-hourglass__sand--bot {
        transform: scaleY(0.22);
    }
}

/* Mobile: countdown in document flow (no fixed overlay on hero / affiliate / footer) */
@media (max-width: 991px) {
    .hera-countdown-dock {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: min(328px, calc(100% - 2rem));
        max-width: 100%;
        margin: 0.85rem auto 0;
        padding: 0 max(1rem, env(safe-area-inset-left, 0px)) 1.25rem max(1rem, env(safe-area-inset-right, 0px));
        z-index: 2;
        flex-shrink: 0;
    }

    .hera-countdown-dock__ribbon {
        transform: none;
    }

    .hera-countdown-dock__panel {
        transform: none;
        border-radius: 14px;
    }

    .hera-hourglass {
        width: 64px;
    }

    .hera-hero > .hera-affiliate {
        padding-top: clamp(1.15rem, 3.5vw, 1.65rem);
        padding-bottom: clamp(1.15rem, 3.5vw, 1.65rem);
    }

    .hera-affiliate__inner {
        gap: 1rem;
    }
}

/* Page guard: sağ tık, seçim/kopya sürtünmesi, görsel sürükleme (presentation ile aynı davranış) */
body.hera-landing.landing-page-guard {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

body.hera-landing.landing-page-guard input,
body.hera-landing.landing-page-guard textarea,
body.hera-landing.landing-page-guard select,
body.hera-landing.landing-page-guard [contenteditable="true"] {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
}

body.hera-landing.landing-page-guard img {
    -webkit-user-drag: none;
    user-drag: none;
}
