/* ================================================================
   Mr Al-Amir Hassan — Landing  Dark studio + electric cyan
   ================================================================ */
:root {
    --ah-void:       #05070c;
    --ah-ink:        #070B14;
    --ah-panel:      #0d1420;
    --ah-cyan:       #00B8D4;
    --ah-cyan-hot:   #22D3EE;
    --ah-paper:      #f4f7fb;
    --ah-muted:      #94a3b8;
    --ah-line:       rgba(34, 211, 238, 0.18);
    --ah-font:       "Cairo", system-ui, sans-serif;
    --ah-display:    "Outfit", "Cairo", sans-serif;
}

.ah-flash {
    position: relative;
    z-index: 200;
    padding: 1rem 1.5rem;
    background: rgba(7, 11, 20, 0.92);
}

.ah-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 22px;
}

body.ep-public:has(.ah-hero) {
    background: var(--ah-void);
    color: #e2e8f0;
}

body.ep-public:has(.ah-hero) .ep-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(7, 11, 20, 0.72);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid var(--ah-line);
    box-shadow: none;
}

body.ep-public:has(.ah-hero) .ep-header.ah-header--scrolled {
    background: rgba(7, 11, 20, 0.94);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

body.ep-public:has(.ah-hero) .ep-nav-links a,
body.ep-public:has(.ah-hero) .mh-brand__name,
body.ep-public:has(.ah-hero) .mh-brand__prefix {
    color: #f8fafc;
}

body.ep-public:has(.ah-hero) .ep-nav-links a:hover,
body.ep-public:has(.ah-hero) .ep-nav-links a.active {
    color: var(--ah-cyan-hot);
    background: rgba(0, 184, 212, 0.12);
}

body.ep-public:has(.ah-hero) .ep-btn-outline {
    color: #f8fafc;
    border-color: rgba(255,255,255,0.2);
    background: transparent;
}

body.ep-public:has(.ah-hero) .ep-btn-outline:hover {
    color: var(--ah-ink);
    background: var(--ah-cyan-hot);
    border-color: var(--ah-cyan-hot);
}

body.ep-public:has(.ah-hero) .ep-btn-primary {
    background: var(--ah-cyan);
    border-color: var(--ah-cyan);
    color: #041016;
}

body.ep-public:has(.ah-hero) .ep-menu-toggle {
    color: #f8fafc;
    border-color: rgba(255,255,255,0.2);
}

body.ep-public:has(.ah-hero) .ep-footer {
    background: #05070c;
    color: #cbd5e1;
    border-top: 1px solid var(--ah-line);
}

body.ep-public:has(.ah-hero) .ep-footer-bottom {
    color: #94a3b8;
}

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

/* Hero */
.ah-hero {
    position: relative;
    min-height: 100vh;
    padding: 8.5rem 0 5rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 80% 20%, rgba(0,184,212,0.18), transparent 58%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(34,211,238,0.08), transparent 55%),
        var(--ah-void);
}

.ah-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34,211,238,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 75%);
    pointer-events: none;
}

.ah-hero__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: 8%;
    top: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,184,212,0.28), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}

.ah-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.ah-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
    color: var(--ah-cyan-hot);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.ah-kicker__dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--ah-cyan-hot);
    box-shadow: 0 0 0 6px rgba(34,211,238,0.18);
}

.ah-hero__title {
    margin: 0 0 0.85rem;
    font-family: var(--ah-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
}

.ah-hero__tagline {
    margin: 0 0 0.85rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ah-cyan-hot);
}

.ah-hero__lede {
    margin: 0 0 1.75rem;
    max-width: 38rem;
    color: #cbd5e1;
    font-size: 1.05rem;
}

.ah-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.ah-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.ah-cta--primary {
    background: linear-gradient(135deg, #22D3EE, #00B8D4);
    color: #041016;
    box-shadow: 0 10px 28px rgba(0,184,212,0.35);
}

.ah-cta--ghost {
    border: 1px solid rgba(255,255,255,0.18);
    color: #f8fafc;
}

.ah-cta:hover {
    transform: translateY(-2px);
    color: inherit;
}

.ah-hero__stats {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ah-hero__stats strong {
    display: block;
    font-size: 1.35rem;
    color: #fff;
    font-family: "JetBrains Mono", ui-monospace, monospace;
}

.ah-hero__stats span {
    color: var(--ah-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.ah-portrait {
    position: relative;
    max-width: 420px;
    margin-inline-start: auto;
}

.ah-portrait img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.4rem;
    border: 1px solid rgba(34,211,238,0.35);
    box-shadow: 0 0 0 12px rgba(0,184,212,0.08), 0 30px 80px rgba(0,0,0,0.5);
    object-fit: contain;
    background: #05070c;
}

.ah-section {
    padding: 5.5rem 0;
}

.ah-tracks { background: #081018; }
.ah-features { background: #0b1220; }
.ah-finale { background: linear-gradient(180deg, #081018, #05070c); }

.ah-section-hd { margin-bottom: 2.4rem; }
.ah-section-hd__eyebrow {
    margin: 0 0 0.5rem;
    color: var(--ah-cyan-hot);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.ah-section-hd__title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.25;
}

.ah-tracks__grid,
.ah-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.ah-track,
.ah-feat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--ah-line);
    border-radius: 1.1rem;
    padding: 1.4rem 1.25rem;
}

.ah-track h3,
.ah-feat h3 {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.ah-track p,
.ah-feat p {
    margin: 0;
    color: #94a3b8;
}

.ah-track__icon,
.ah-feat__icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(0,184,212,0.14);
    color: var(--ah-cyan-hot);
}

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

.ah-finale__card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1.6rem 1.4rem;
    border-radius: 1.2rem;
    text-decoration: none;
    border: 1px solid var(--ah-line);
    background: rgba(255,255,255,0.03);
    color: #fff;
    position: relative;
}

.ah-finale__card--new {
    background: linear-gradient(145deg, rgba(0,184,212,0.2), rgba(255,255,255,0.03));
}

.ah-finale__tag {
    color: var(--ah-cyan-hot);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ah-finale__card h3 {
    margin: 0;
    font-size: 1.45rem;
}

.ah-finale__arrow {
    position: absolute;
    inset-inline-end: 1.2rem;
    bottom: 1.2rem;
    color: var(--ah-cyan-hot);
}

.ah-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.ah-reveal.is-visible {
    opacity: 1;
    transform: none;
}
.ah-reveal--delay-1 { transition-delay: 0.08s; }
.ah-reveal--delay-2 { transition-delay: 0.16s; }

@media (max-width: 900px) {
    .ah-hero { padding-top: 7rem; }
    .ah-hero__inner,
    .ah-tracks__grid,
    .ah-features__grid,
    .ah-finale__inner {
        grid-template-columns: 1fr;
    }
    .ah-portrait { margin: 0 auto; max-width: 280px; }
}
