/* ================================================================
   Mr Alayman Hassan — Landing v5  Light arena
   DESIGN: Full-bleed cinematic hero · Light navy/sky page
   ================================================================ */
:root {
    --ah-navy:       #000B1E;
    --ah-blue:       #0056B3;
    --ah-blue-deep:  #003d82;
    --ah-sky:        #4DAFFF;
    --ah-sky-dim:    rgba(77,175,255,0.14);
    --ah-ink:        #000B1E;
    --ah-paper:      #f4f7fb;
    --ah-surface:    #ffffff;
    --ah-muted:      #5b6b7f;
    --ah-border:     #d0dcea;
    --ah-font:       "Cairo", system-ui, sans-serif;
    --ah-display:    "Aref Ruqaa", "Cairo", serif;
    --ah-glow:       0 0 60px rgba(77,175,255,0.18);
}

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

body.ep-public:has(.ah-hero-cinema) {
    background:
        radial-gradient(ellipse 90% 50% at 10% -10%, rgba(77,175,255,0.16), transparent 55%),
        radial-gradient(ellipse 70% 40% at 100% 20%, rgba(0,86,179,0.08), transparent 50%),
        var(--ah-paper);
    color: var(--ah-ink);
}

body.ep-public:has(.ah-hero-cinema) .ep-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid rgba(0,86,179,0.1);
    box-shadow: 0 2px 18px rgba(0,11,30,0.06);
    transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}

body.ep-public:has(.ah-hero-cinema) .ep-header.ah-header--scrolled {
    background: rgba(255,255,255,0.94);
    box-shadow: 0 6px 28px rgba(0,11,30,0.1);
    border-bottom-color: rgba(0,86,179,0.14);
}

body.ep-public:has(.ah-hero-cinema) .ep-nav-links a {
    color: var(--ah-ink);
}

body.ep-public:has(.ah-hero-cinema) .ep-nav-links a:hover,
body.ep-public:has(.ah-hero-cinema) .ep-nav-links a.active {
    color: var(--ah-blue);
    background: rgba(0,86,179,0.07);
}

body.ep-public:has(.ah-hero-cinema) .ep-btn-outline {
    color: var(--ah-ink);
    border-color: var(--ah-border);
    background: rgba(255,255,255,0.7);
}

body.ep-public:has(.ah-hero-cinema) .ep-btn-outline:hover {
    color: var(--ah-blue);
    border-color: var(--ah-blue);
}

body.ep-public:has(.ah-hero-cinema) .ep-menu-toggle {
    color: var(--ah-ink);
    border-color: var(--ah-border);
}

/* Light footer on landing */
body.ep-public:has(.ah-hero-cinema) .ep-footer {
    background: var(--ah-surface);
    color: var(--ah-muted);
    border-top: 3px solid var(--ah-blue);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer-grid {
    border-bottom-color: var(--ah-border);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer-grid > div:not(:last-child) {
    border-inline-end-color: var(--ah-border);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer h4 {
    color: var(--ah-blue);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer a {
    color: var(--ah-muted);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer a:hover {
    color: var(--ah-blue);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer-social a {
    border-color: var(--ah-border);
    color: var(--ah-blue);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer-social a:hover {
    background: var(--ah-blue);
    border-color: var(--ah-blue);
    color: #fff;
}

body.ep-public:has(.ah-hero-cinema) .ep-footer-contact i {
    color: var(--ah-blue);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer-contact a {
    color: var(--ah-ink);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer-contact a:hover {
    color: var(--ah-blue);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer-bottom {
    border-top-color: var(--ah-border);
    color: var(--ah-muted);
}

body.ep-public:has(.ah-hero-cinema) .ep-footer-bottom a {
    color: var(--ah-blue);
}

/* ================================================================
   SECTION UTILS
   ================================================================ */
.ah-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 4vw, 3rem);
}

/* ================================================================
   HERO — CINEMATIC FULLSCREEN
   ================================================================ */
.ah-hero-cinema {
    position: relative;
    width: 100%;
    height: 100svh;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: var(--ah-navy);
}

/* Scrolling background: 4 images crossfade */
.ah-hero-cinema__slides {
    position: absolute;
    inset: 0;
}

.ah-hero-cinema__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: ah-slide-show 24s infinite;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: none;
}

.ah-hero-cinema__slide:nth-child(1) { animation-delay: 0s; }
.ah-hero-cinema__slide:nth-child(2) { animation-delay: 6s; }
.ah-hero-cinema__slide:nth-child(3) { animation-delay: 12s; }
.ah-hero-cinema__slide:nth-child(4) { animation-delay: 18s; }

@keyframes ah-slide-show {
    0%   { opacity: 0; transform: scale(1.06); }
    5%   { opacity: 1; transform: scale(1.03); }
    25%  { opacity: 1; transform: scale(1.0); }
    30%  { opacity: 0; transform: scale(1.0); }
    100% { opacity: 0; transform: scale(1.06); }
}

/* Multi-layer overlay: deep vignette from bottom */
.ah-hero-cinema__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0,11,30,0.98) 0%, rgba(0,11,30,0.6) 40%, rgba(0,11,30,0.2) 70%, transparent 100%),
        linear-gradient(to right, rgba(0,11,30,0.4) 0%, transparent 50%);
    z-index: 1;
}

/* Scanline texture overlay */
.ah-hero-cinema__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.04) 2px,
        rgba(0,0,0,0.04) 4px
    );
    pointer-events: none;
}

/* Glowing blue horizon line */
.ah-hero-cinema::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--ah-sky) 30%, var(--ah-blue) 70%, transparent 100%);
    z-index: 3;
    opacity: 0.7;
}

/* HERO CONTENT */
.ah-hero-cinema__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: clamp(3rem, 7vh, 5rem);
}

.ah-hero-cinema__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.2rem;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ah-sky);
    font-family: var(--ah-font);
    opacity: 0;
    animation: ah-rise-up 0.9s 0.2s ease forwards;
}

.ah-hero-cinema__eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--ah-sky);
    border-radius: 1px;
}

.ah-hero-cinema__title {
    margin: 0 0 1rem;
    font-family: var(--ah-display);
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 4px 40px rgba(0,11,30,0.8);
    opacity: 0;
    animation: ah-rise-up 0.9s 0.35s ease forwards;
}

.ah-hero-cinema__title em {
    font-style: normal;
    color: var(--ah-sky);
    position: relative;
}

/* Underline glow on em */
.ah-hero-cinema__title em::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: -4px;
    height: 3px;
    background: var(--ah-sky);
    border-radius: 2px;
    box-shadow: 0 0 16px var(--ah-sky);
    opacity: 0.7;
}

.ah-hero-cinema__tagline {
    margin: 0 0 2rem;
    max-width: 42ch;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    font-family: var(--ah-font);
    opacity: 0;
    animation: ah-rise-up 0.9s 0.5s ease forwards;
}

.ah-hero-cinema__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: ah-rise-up 0.9s 0.65s ease forwards;
}

.ah-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: var(--ah-blue);
    color: #fff;
    font-family: var(--ah-font);
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    box-shadow: 0 8px 32px rgba(0,86,179,0.5), 0 0 0 0 rgba(77,175,255,0);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ah-cta-primary:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 14px 40px rgba(0,86,179,0.55), 0 0 0 4px rgba(77,175,255,0.15);
}

.ah-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.08);
    font-family: var(--ah-font);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 3px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.ah-cta-secondary:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,0.16);
}

/* Scroll indicator */
.ah-hero-cinema__scroll {
    position: absolute;
    bottom: 2rem;
    inset-inline-end: 2rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--ah-font);
    opacity: 0;
    animation: ah-rise-up 1s 1s ease forwards;
}

.ah-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--ah-sky), transparent);
    animation: ah-scroll-pulse 2s ease-in-out infinite;
}

@keyframes ah-scroll-pulse {
    0%,100% { opacity: 0.4; transform: scaleY(1); }
    50%      { opacity: 1; transform: scaleY(0.7); }
}

/* ================================================================
   TICKER / MARQUEE STRIP
   ================================================================ */
.ah-ticker {
    background: var(--ah-blue);
    overflow: hidden;
    padding: 0.6rem 0;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.ah-ticker__track {
    display: inline-flex;
    animation: ah-ticker-scroll 30s linear infinite;
}

.ah-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2.5rem;
    font-family: var(--ah-font);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

.ah-ticker__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

@keyframes ah-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================================================================
   STATS SCOREBOARD
   ================================================================ */
.ah-scoreboard {
    background: var(--ah-navy);
    padding: clamp(4rem, 9vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}

/* Grid glow background */
.ah-scoreboard::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,86,179,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.ah-scoreboard__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(77,175,255,0.08);
    border: 1px solid rgba(77,175,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}

.ah-stat-card {
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(0,11,30,0.6);
    position: relative;
    transition: background 0.3s;
}

.ah-stat-card:hover {
    background: rgba(0,56,120,0.2);
}

.ah-stat-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 20%; right: 20%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--ah-sky), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.ah-stat-card:hover::after { opacity: 1; }

.ah-stat-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    background: rgba(77,175,255,0.1);
    border: 1px solid rgba(77,175,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ah-sky);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.ah-stat-card__num {
    font-family: var(--ah-font);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.03em;
}

.ah-stat-card__num span {
    color: var(--ah-sky);
}

.ah-stat-card__label {
    margin-top: 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-family: var(--ah-font);
}

/* ================================================================
   SECTION HEADER UTIL
   ================================================================ */
.ah-section-hd {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ah-section-hd__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ah-blue);
    font-family: var(--ah-font);
    margin-bottom: 0.75rem;
}

.ah-section-hd__eyebrow::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--ah-blue);
    border-radius: 1px;
}

.ah-section-hd__title {
    margin: 0;
    font-family: var(--ah-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    font-weight: 700;
}

.ah-section-hd__title--light { color: #fff; }
.ah-section-hd__title--dark  { color: var(--ah-ink); }

.ah-section-hd__lead {
    margin: 0.8rem 0 0;
    max-width: 44ch;
    font-size: 1.02rem;
    line-height: 1.7;
}

.ah-section-hd__lead--light { color: rgba(255,255,255,0.5); }
.ah-section-hd__lead--dark  { color: var(--ah-muted); }

/* ================================================================
   PHOTO MOSAIC — Asymmetric grid
   ================================================================ */
.ah-mosaic {
    background: transparent;
    padding: clamp(4rem, 9vw, 7rem) 0;
    position: relative;
}

.ah-mosaic__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.ah-mosaic__cell {
    overflow: hidden;
    position: relative;
    background: var(--ah-ink);
}

.ah-mosaic__cell--tall {
    grid-row: 1 / span 2;
}

.ah-mosaic__cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 200px;
}

.ah-mosaic__cell:hover img {
    transform: scale(1.06);
}

.ah-mosaic__cell--tall img {
    min-height: 500px;
}

.ah-mosaic__cell--sm img {
    min-height: 240px;
}

/* Soft tint overlay per cell */
.ah-mosaic__cell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,11,30,0.12);
    transition: background 0.3s;
    pointer-events: none;
}

.ah-mosaic__cell:hover::after {
    background: rgba(0,86,179,0.08);
}

/* Caption badge */
.ah-mosaic__badge {
    position: absolute;
    bottom: 1rem;
    inset-inline-start: 1rem;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,86,179,0.14);
    backdrop-filter: blur(8px);
    padding: 0.4rem 0.85rem;
    border-radius: 3px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ah-blue);
    font-family: var(--ah-font);
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0,11,30,0.12);
}

/* ================================================================
   FEATURES — 3-column icon cards on light
   ================================================================ */
.ah-features {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 100%),
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(77,175,255,0.12), transparent 60%);
    padding: clamp(4rem, 9vw, 7rem) 0;
    border-top: 1px solid var(--ah-border);
    border-bottom: 1px solid var(--ah-border);
}

.ah-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ah-feat-card {
    background: var(--ah-surface);
    border: 1px solid var(--ah-border);
    border-radius: 12px;
    padding: 2.25rem 1.75rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,11,30,0.05);
}

.ah-feat-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--ah-blue), var(--ah-sky));
    opacity: 0;
    transition: opacity 0.3s;
}

.ah-feat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,86,179,0.28);
    box-shadow: 0 18px 40px rgba(0,11,30,0.1);
}

.ah-feat-card:hover::before { opacity: 1; }

.ah-feat-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    background: rgba(0,86,179,0.08);
    border: 1px solid rgba(0,86,179,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ah-blue);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.ah-feat-card__title {
    margin: 0 0 0.6rem;
    font-family: var(--ah-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ah-ink);
}

.ah-feat-card__body {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--ah-muted);
    font-family: var(--ah-font);
}

/* ================================================================
   CTA FINALE — dramatic split
   ================================================================ */
.ah-finale {
    background: transparent;
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.ah-finale__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.ah-finale__card {
    border-radius: 8px;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.ah-finale__card:hover {
    transform: translateY(-6px);
    color: inherit;
}

.ah-finale__card--new {
    background: linear-gradient(140deg, var(--ah-navy) 0%, var(--ah-blue-deep) 100%);
    box-shadow: 0 16px 48px rgba(0,11,30,0.25);
}

.ah-finale__card--new:hover {
    box-shadow: 0 24px 64px rgba(0,11,30,0.35);
}

.ah-finale__card--login {
    background: linear-gradient(140deg, var(--ah-blue) 0%, #1a7fd4 100%);
    box-shadow: 0 16px 48px rgba(0,86,179,0.3);
}

.ah-finale__card--login:hover {
    box-shadow: 0 24px 64px rgba(0,86,179,0.45);
}

/* Decorative circle in corner */
.ah-finale__card::before {
    content: "";
    position: absolute;
    top: -3rem;
    inset-inline-end: -3rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.ah-finale__card__tag {
    font-family: var(--ah-font);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ah-sky);
    margin-bottom: 0.25rem;
}

.ah-finale__card__title {
    margin: 0;
    font-family: var(--ah-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.ah-finale__card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff;
    margin-top: auto;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
    align-self: flex-start;
}

.ah-finale__card:hover .ah-finale__card__arrow {
    background: var(--ah-sky);
    border-color: var(--ah-sky);
    color: var(--ah-navy);
    transform: translateX(4px);
}

/* ================================================================
   FOOTER MARK
   ================================================================ */
.ah-foot {
    background: var(--ah-navy);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(77,175,255,0.08);
}

.ah-foot__text {
    font-family: var(--ah-font);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
}

.ah-foot__text a {
    color: var(--ah-sky);
    opacity: 0.6;
    text-decoration: none;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes ah-rise-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
}

/* Intersection-observer driven reveals */
.ah-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ah-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.ah-reveal--delay-1 { transition-delay: 0.1s; }
.ah-reveal--delay-2 { transition-delay: 0.2s; }
.ah-reveal--delay-3 { transition-delay: 0.3s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
    .ah-scoreboard__grid { grid-template-columns: repeat(3, 1fr); }
    .ah-features__grid   { grid-template-columns: 1fr; }
    .ah-finale__inner    { grid-template-columns: 1fr; }
    .ah-mosaic__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .ah-mosaic__cell--tall { grid-row: auto; }
    .ah-mosaic__cell--tall img { min-height: 55vw; }
    .ah-mosaic__cell--sm img   { min-height: 45vw; }
}

@media (max-width: 600px) {
    .ah-scoreboard__grid { grid-template-columns: 1fr; }
    .ah-hero-cinema__title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
    .ah-hero-cinema__actions { flex-direction: column; }
    .ah-cta-primary, .ah-cta-secondary { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .ah-hero-cinema__slide,
    .ah-hero-cinema__eyebrow,
    .ah-hero-cinema__title,
    .ah-hero-cinema__tagline,
    .ah-hero-cinema__actions,
    .ah-hero-cinema__scroll,
    .ah-reveal { animation: none; opacity: 1; transform: none; transition: none; }
    .ah-ticker__track { animation: none; }
}
