/* ════════════════════════════════════════════════════════════════════════
   Home — Variant A ("Thunder" landing)

   Page-specific styles for the whole-page A/B variant Views/Home/Index.a.cshtml.
   Loaded via @@section Styles, scoped under .home-a so nothing leaks elsewhere.

   Uses the shared design tokens (--accent-blue, --accent-yellow, --bg-*),
   so it inherits whatever theme is active — and lights up fully under the
   "Thunder" theme (html[data-theme="a"]). Modern, clean, semi-futuristic,
   gaming: frosted blur, rounded corners, raised-on-hover soft shadows.
   ════════════════════════════════════════════════════════════════════════ */

.home-a {
    --ha-radius: 1.25rem;
    --ha-glow: rgba(42, 212, 255, 0.30);
    --ha-glow-soft: rgba(42, 212, 255, 0.12);
    --ha-bolt: rgba(255, 210, 63, 0.45);
    --ha-grad: linear-gradient(120deg, var(--accent-blue), #5b8cff);
    /* Primary CTA: cyan-blue in the family of the "billed by the hour" headline, readable on white text */
    --ha-btn-grad: linear-gradient(120deg, #1c87c8 0%, #3a64e6 100%);
    color: var(--text-primary);
    /* Clip the soft hero orbs' sideways bleed (they sit at left/right: -10rem) so they
       never widen the page — kills the horizontal scrollbar. overflow-x: clip leaves the
       vertical axis untouched, so the glow still continues down into the next section. */
    overflow-x: clip;
}

.home-a .ha-display { font-family: var(--font-display); letter-spacing: -0.02em; }

/* Hero content eases in on load, continuing the cascade that starts in the header. */
@keyframes ha-rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.home-a .ha-hero h1 { animation: ha-rise-in 0.7s ease both; animation-delay: 0.2s; }
.home-a .ha-hero .ha-sub { animation: ha-rise-in 0.7s ease both; animation-delay: 0.32s; }
.home-a .ha-hero .ha-cta-row { animation: ha-rise-in 0.7s ease both; animation-delay: 0.44s; }

/* Scroll-reveal: fade + small rise as elements enter the viewport (one-way) */
html { scroll-behavior: smooth; }
.home-a #ha-step1 { scroll-margin-top: 5.5rem; }
.home-a .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.home-a .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .home-a .reveal { opacity: 1; transform: none; transition: none; }
    .home-a .ha-hero h1,
    .home-a .ha-hero .ha-sub,
    .home-a .ha-hero .ha-cta-row { animation: none; }
}

/* ───────────────────────── Hero ───────────────────────── */
.home-a .ha-hero {
    position: relative;
    /* No overflow:hidden — let the soft thunder orbs bleed past the section
       seam so the glow continues into the next section instead of being cropped. */
    /* extra top padding clears the fixed, transparent theme-a header on the landing page */
    padding: clamp(6.5rem, 10vw, 9rem) 0 clamp(2.5rem, 6vw, 5rem);
    background:
        radial-gradient(80% 120% at 100% -20%, rgba(91, 140, 255, 0.16), transparent 55%),
        radial-gradient(70% 110% at -10% 0%, rgba(42, 212, 255, 0.16), transparent 55%),
        linear-gradient(180deg, var(--bg-dark), var(--bg-primary));
}

/* Soft floating thunder orbs behind the hero content */
.home-a .ha-hero::before,
.home-a .ha-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.home-a .ha-hero::before {
    width: 30rem; height: 30rem;
    top: -10rem; right: -8rem;
    background: radial-gradient(circle, rgba(42, 212, 255, 0.45), transparent 70%);
}
.home-a .ha-hero::after {
    width: 26rem; height: 26rem;
    bottom: -12rem; left: -10rem;
    background: radial-gradient(circle, rgba(255, 210, 63, 0.22), transparent 70%);
}

.home-a .ha-hero > .container { position: relative; z-index: 1; }

/* Hero game art — blended into the header on the right edge (desktop), fading into the bg */
.home-a .ha-hero-art {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 62%;
    max-width: 980px;
    background: url('../images/hero/viking-hero.jpg') center right / cover no-repeat;
    z-index: 0;
    pointer-events: none;
    /* Mask the image itself (not a color overlay) so the real hero gradient shows through
       with no vertical color seam. The two masks intersect: visible only where BOTH are opaque. */
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 32%, #000 74%),
        linear-gradient(to bottom, transparent 0%, #000 16%, #000 80%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.35) 32%, #000 74%),
        linear-gradient(to bottom, transparent 0%, #000 16%, #000 80%, transparent 100%);
    mask-composite: intersect;
}
@media (max-width: 991.98px) {
    .home-a .ha-hero-art { display: none; }
}
@media (min-width: 992px) {
    .home-a .ha-hero { min-height: clamp(34rem, 62vh, 44rem); display: flex; align-items: center; }
    .home-a .ha-hero > .container { width: 100%; }
}

.home-a .ha-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-blue);
    background: rgba(42, 212, 255, 0.10);
    border: 1px solid rgba(42, 212, 255, 0.28);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.home-a .ha-eyebrow .ha-dot {
    width: 0.5rem; height: 0.5rem; border-radius: 50%;
    background: var(--accent-yellow);
    box-shadow: 0 0 10px var(--ha-bolt);
}

.home-a .ha-hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-size: clamp(2.4rem, 6vw, 4.25rem);
    margin: 1.1rem 0 1rem;
}
.home-a .ha-hero h1 .ha-grad-text {
    background: var(--ha-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.home-a .ha-hero .ha-sub {
    color: var(--text-muted);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    max-width: 34rem;
    margin-bottom: 1.75rem;
}

.home-a .ha-cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.home-a .ha-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.home-a .ha-btn-primary {
    position: relative;
    overflow: hidden;
    background: var(--ha-btn-grad);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 8, 20, 0.35);
    border: 1px solid rgba(150, 215, 255, 0.45);
    box-shadow: 0 12px 30px -14px rgba(40, 130, 220, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -1px 0 rgba(0, 20, 50, 0.25);
}
/* Glossy light streak that sweeps across once on hover */
.home-a .ha-btn-primary::before {
    content: "";
    position: absolute;
    top: 0; left: -135%;
    width: 55%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}
.home-a .ha-btn-primary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 20px 42px -16px rgba(42, 212, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -1px 0 rgba(0, 20, 50, 0.25);
}
.home-a .ha-btn-primary:hover::before { animation: ha-btn-shimmer 0.85s ease; }
@keyframes ha-btn-shimmer { 0% { left: -135%; } 100% { left: 135%; } }
.home-a .ha-btn-ghost {
    color: var(--accent-yellow);
    border: 1.5px solid rgba(255, 210, 63, 0.6);
    background: rgba(255, 210, 63, 0.04);
}
.home-a .ha-btn-ghost:hover { transform: translateY(-2px); background: var(--accent-yellow); color: #1a1300; box-shadow: 0 16px 30px -14px var(--ha-bolt); }

/* Hero stat chips */
.home-a .ha-stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2.25rem; }
.home-a .ha-stat .ha-stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--text-primary);
}
.home-a .ha-stat .ha-stat-num span { color: var(--accent-blue); }
.home-a .ha-stat .ha-stat-label { color: var(--text-muted); font-size: 0.85rem; }

/* Glassy hero showcase panel */
.home-a .ha-showcase {
    position: relative;
    border-radius: var(--ha-radius);
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(20, 30, 52, 0.55), rgba(12, 19, 34, 0.7));
    border: 1px solid rgba(42, 212, 255, 0.18);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
}
.home-a .ha-showcase img { border-radius: 0.9rem; width: 100%; height: auto; display: block; }
.home-a .ha-showcase-badge {
    position: absolute;
    bottom: -0.9rem; left: 50%;
    transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #04121b;
    background: var(--ha-grad);
    box-shadow: 0 12px 26px -10px var(--ha-glow);
    white-space: nowrap;
}

/* ─────────────────────── Feature cards ─────────────────────── */
.home-a .ha-section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.home-a .ha-section-head { text-align: center; max-width: 42rem; margin: 0 auto 2.5rem; }
.home-a .ha-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-yellow);
}
.home-a .ha-section-head h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    margin: 0.5rem 0 0.5rem;
}
.home-a .ha-section-head p { color: var(--text-muted); margin: 0; }

.home-a .ha-card {
    height: 100%;
    border-radius: var(--ha-radius);
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(20, 30, 52, 0.5), rgba(12, 19, 34, 0.65));
    border: 1px solid rgba(42, 212, 255, 0.12);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-a .ha-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 212, 255, 0.45);
    box-shadow: 0 24px 50px -24px var(--ha-glow);
}
.home-a .ha-card .ha-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 3rem; height: 3rem;
    border-radius: 0.9rem;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: rgba(42, 212, 255, 0.12);
    border: 1px solid rgba(42, 212, 255, 0.25);
}
.home-a .ha-card h5 { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.5rem; }
.home-a .ha-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ─────────────────────── Games section (Step 1) ─────────────────────── */
.home-a .ha-games-copy { max-width: 26rem; }
.home-a .ha-games-copy h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    margin: 0.5rem 0 0.85rem;
    text-wrap: balance;
}
.home-a .ha-games-copy p { color: var(--text-muted); margin: 0 0 1.5rem; }

/* ─────────────────────── Step 2 · Regions globe ─────────────────────── */
.home-a .ha-step2 { position: relative; overflow: hidden; }
.home-a .ha-step2-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 5vw, 4.5rem);
}
.home-a .ha-globe-col { position: relative; min-width: 0; }
.home-a .ha-step2-copy { max-width: 28rem; }
.home-a .ha-step2-copy h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    margin: 0.5rem 0 0.85rem;
}
.home-a .ha-step2-copy p { color: var(--text-muted); margin: 0; font-size: clamp(1rem, 1.6vw, 1.12rem); }

.home-a .ha-globe-wrap {
    position: relative;
    width: clamp(24rem, 60vw, 56rem);
    aspect-ratio: 1 / 1;
    margin-left: clamp(-8rem, -6vw, -2rem); /* bleed toward the left edge of the viewport */
}
.home-a .ha-globe { position: absolute; inset: 0; cursor: grab; }
.home-a .ha-globe:active { cursor: grabbing; }
.home-a .ha-globe canvas { display: block; outline: none; }

/* Hover tooltip injected by globe.gl */
.home-a .ha-globe-tip {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-primary);
    background: rgba(8, 12, 22, 0.92);
    border: 1px solid rgba(42, 212, 255, 0.35);
    padding: 0.3rem 0.6rem;
    border-radius: 0.5rem;
    white-space: nowrap;
}

/* Clicked-region popup — available server tiers */
.home-a .ha-globe-popup {
    position: absolute;
    left: clamp(1.5rem, 24%, 18rem); bottom: 7%;
    width: min(17rem, 78%);
    padding: 1rem 1.1rem 1.15rem;
    border-radius: var(--ha-radius);
    background: linear-gradient(180deg, rgba(18, 27, 47, 0.94), rgba(10, 16, 30, 0.97));
    border: 1px solid rgba(42, 212, 255, 0.25);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.9);
    opacity: 0;
    transform: translateY(10px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 4;
}
.home-a .ha-globe-popup.is-open { opacity: 1; transform: none; pointer-events: auto; }
.home-a .ha-globe-popup-close {
    position: absolute; top: 0.35rem; right: 0.5rem;
    background: none; border: none; color: var(--text-muted);
    font-size: 1.3rem; line-height: 1; cursor: pointer; padding: 0.2rem;
}
.home-a .ha-globe-popup-close:hover { color: var(--text-primary); }
.home-a .ha-globe-popup-head { display: flex; align-items: center; gap: 0.5rem; padding-right: 1rem; }
.home-a .ha-globe-popup-flag { font-size: 1.4rem; line-height: 1; }
.home-a .ha-globe-popup-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.home-a .ha-globe-popup-continent {
    color: var(--accent-blue);
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.home-a .ha-globe-popup-tiers { margin-top: 0.85rem; display: flex; flex-direction: column; gap: 0.5rem; }
.home-a .ha-globe-tier {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.home-a .ha-globe-tier:last-child { border-bottom: none; padding-bottom: 0; }
.home-a .ha-globe-tier-name { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--text-primary); }
.home-a .ha-globe-tier-specs { font-size: 0.72rem; color: var(--text-muted); }
.home-a .ha-globe-tier-price { font-size: 0.8rem; font-weight: 700; color: var(--accent-yellow); white-space: nowrap; }
.home-a .ha-globe-tier-empty { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.6rem; }

@media (max-width: 991.98px) {
    .home-a .ha-step2-grid {
        grid-template-columns: 1fr;
        padding-right: 0;
        gap: 1.5rem;
    }
    .home-a .ha-step2-copy { order: -1; max-width: none; text-align: center; margin-inline: auto; }
    .home-a .ha-globe-wrap { width: min(100%, 30rem); margin: 0 auto; }
    .home-a .ha-globe-popup { left: 1rem; bottom: 1rem; }
}

/* ─────────────────────── Step 3 · Play & pay (billing widget) ─────────────────────── */
/* Let the short copy fill its half so it sits nearer the card on wide screens. */
.home-a .ha-step3 .ha-games-copy { max-width: 33rem; }
.home-a .ha-bill {
    width: 100%;
    max-width: 30rem;
    margin-right: auto;
    border-radius: var(--ha-radius);
    padding: 1.5rem 1.6rem;
    background: linear-gradient(180deg, rgba(20, 30, 52, 0.6), rgba(12, 19, 34, 0.74));
    border: 1px solid rgba(42, 212, 255, 0.18);
    box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.9);
}
.home-a .ha-bill-top { display: flex; justify-content: space-between; align-items: center; }
.home-a .ha-bill-status { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.home-a .ha-bill-dot {
    width: 0.6rem; height: 0.6rem; border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
    animation: ha-bill-pulse 1.4s ease-in-out infinite;
}
.home-a .ha-bill[data-state="stopped"] .ha-bill-dot { background: var(--text-muted); box-shadow: none; animation: none; }
.home-a .ha-bill-timer { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; color: var(--text-muted); }

.home-a .ha-bill-gauges { margin: 1.35rem 0 1.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.home-a .ha-gauge { text-align: center; }
.home-a .ha-gauge-dial { width: 100%; max-width: 8.5rem; display: inline-block; overflow: visible; }
.home-a .ha-gauge-track,
.home-a .ha-gauge-arc { fill: none; stroke-width: 7; stroke-linecap: round; }
.home-a .ha-gauge-track { stroke: rgba(255, 255, 255, 0.08); }
.home-a .ha-gauge-arc { stroke: var(--accent-blue); transition: stroke-dashoffset 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.home-a .ha-gauge-arc--mem { stroke: var(--accent-green); }
.home-a .ha-gauge-needle {
    stroke: var(--text-primary);
    stroke-width: 2.2;
    stroke-linecap: round;
    transform-box: view-box;
    transform-origin: 50px 56px;
    transform: rotate(-90deg);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-a .ha-gauge-hub { fill: var(--text-primary); }
.home-a .ha-gauge-readout { font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; color: var(--text-primary); line-height: 1; margin-top: 0.1rem; }
.home-a .ha-gauge-readout small { font-size: 0.72rem; color: var(--text-muted); margin-left: 0.12rem; font-weight: 700; }
.home-a .ha-gauge-name { font-size: 0.72rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.3rem; }

.home-a .ha-bill-players { display: flex; align-items: center; gap: 0.4rem; color: var(--text-muted); font-size: 0.82rem; }
.home-a .ha-bill-players [data-players] { color: var(--text-primary); font-weight: 700; }
.home-a .ha-bill-note { color: var(--text-muted); font-size: 0.78rem; margin: 0.45rem 0 0; }

.home-a .ha-bill-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.home-a .ha-bill-toggle {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.05rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
    cursor: pointer; white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.home-a .ha-bill-toggle:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(42, 212, 255, 0.4); }
/* Stop = square (running); Play = triangle (stopped) */
.home-a .ha-bill-toggle-ico { width: 0.62rem; height: 0.62rem; border-radius: 1px; background: currentColor; }
.home-a .ha-bill[data-state="stopped"] .ha-bill-toggle-ico {
    width: 0; height: 0; border-radius: 0; background: transparent;
    border-left: 0.7rem solid currentColor;
    border-top: 0.42rem solid transparent;
    border-bottom: 0.42rem solid transparent;
}

@keyframes ha-bill-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.35); opacity: 0.55; } }

@media (max-width: 991.98px) {
    .home-a .ha-bill { margin: 0 auto; }
}

/* ─────────────────────── How it works ─────────────────────── */
.home-a .ha-step {
    height: 100%;
    text-align: center;
    padding: 1.75rem 1.25rem;
    border-radius: var(--ha-radius);
    background: linear-gradient(180deg, rgba(20, 30, 52, 0.4), rgba(12, 19, 34, 0.55));
    border: 1px solid rgba(42, 212, 255, 0.10);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-a .ha-step:hover { transform: translateY(-4px); box-shadow: 0 22px 46px -24px var(--ha-glow); }
.home-a .ha-step .ha-step-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    width: 3rem; height: 3rem;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.9rem;
    color: #04121b;
    background: var(--ha-grad);
    box-shadow: 0 12px 26px -12px var(--ha-glow);
}
.home-a .ha-step h6 { font-family: var(--font-display); font-weight: 700; margin-bottom: 0.4rem; }
.home-a .ha-step p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ─────────────────────── Final CTA band ─────────────────────── */
.home-a .ha-cta-band {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 1.75rem;
    padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
    background:
        radial-gradient(80% 140% at 50% -20%, rgba(42, 212, 255, 0.2), transparent 60%),
        linear-gradient(180deg, rgba(20, 30, 52, 0.88), rgba(10, 14, 27, 0.94)),
        url('../images/hero/footer-hero.jpeg') center 60% / cover no-repeat;
    border: 1px solid rgba(42, 212, 255, 0.2);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 70px -34px var(--ha-glow);
}
.home-a .ha-cta-band h2 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    margin-bottom: 0.75rem;
}
.home-a .ha-cta-band p { color: var(--text-muted); margin-bottom: 1.75rem; }

@media (max-width: 767.98px) {
    .home-a .ha-stats { gap: 1rem 2rem; }
    .home-a .ha-showcase { margin-top: 2.5rem; }
}

/* ─────────────────────── Tier comparison (Step 4) ─────────────────────── */
/* "Live pricing for {game}" line + pause/resume control under the section head. */
.home-a .ha-tiers-live {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.home-a .ha-tiers-live-game {
    color: var(--accent-blue);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.01em;
}
.home-a .ha-tiers-live-region {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--text-secondary, var(--text-muted));
    background: rgba(42, 212, 255, 0.06);
    border: 1px solid rgba(42, 212, 255, 0.16);
}
.home-a .ha-tiers-pause {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary, var(--text-muted));
    background: rgba(42, 212, 255, 0.08);
    border: 1px solid rgba(42, 212, 255, 0.22);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.home-a .ha-tiers-pause:hover {
    color: var(--text-primary);
    background: rgba(42, 212, 255, 0.16);
    border-color: rgba(42, 212, 255, 0.45);
}

/* Cards grid — 1 col on mobile, 3 on desktop, equal height. */
.home-a .ha-tiers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 70rem;
    margin: 0 auto;
    align-items: stretch;
}
@media (min-width: 992px) {
    .home-a .ha-tiers-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.home-a .ha-tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--ha-radius);
    padding: 1.75rem 1.5rem;
    background: linear-gradient(180deg, rgba(20, 30, 52, 0.5), rgba(12, 19, 34, 0.65));
    border: 1px solid rgba(42, 212, 255, 0.12);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.home-a .ha-tier-card:hover {
    transform: translateY(-5px);
    border-color: rgba(42, 212, 255, 0.45);
    box-shadow: 0 24px 50px -24px var(--ha-glow);
}
.home-a .ha-tier-card--featured {
    border-color: rgba(42, 212, 255, 0.4);
    box-shadow: 0 24px 50px -28px var(--ha-glow);
}
.home-a .ha-tier-badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #04121b;
    background: var(--ha-grad);
    box-shadow: 0 10px 22px -12px var(--ha-glow);
    white-space: nowrap;
}

.home-a .ha-tier-head {
    text-align: center;
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.home-a .ha-tier-icon { font-size: 2rem; line-height: 1; display: block; }
.home-a .ha-tier-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0.4rem 0 0.15rem;
    letter-spacing: 0.01em;
}
.home-a .ha-tier-tagline {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.home-a .ha-tier-specs { margin: 0; flex-grow: 1; }
.home-a .ha-tier-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.home-a .ha-tier-row:last-child { border-bottom: none; }
.home-a .ha-tier-row-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    margin: 0;
}
.home-a .ha-tier-row-value {
    color: var(--text-primary);
    font-size: 0.9rem;
    text-align: right;
    font-weight: 600;
    margin: 0;
}

.home-a .ha-tier-price { margin-top: 1.4rem; text-align: center; }
.home-a .ha-tier-price-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.home-a .ha-tier-price-amount { display: block; margin-top: 0.2rem; }
.home-a .ha-tier-price-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.85rem;
    color: var(--accent-blue);
}
.home-a .ha-tier-price-unit { color: var(--text-muted); font-size: 0.85rem; margin-left: 0.15rem; }

.home-a .ha-tier-cta { width: 100%; justify-content: center; margin-top: 1.4rem; }

/* Brief crossfade as the live-pricing slideshow swaps games. */
.home-a .ha-tiers-live-game,
.home-a .ha-tiers-live-region,
.home-a .ha-tier-price-value { transition: opacity 0.25s ease; }
.home-a .ha-tier-fading { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
    .home-a .ha-tier-fading { opacity: 1; }
}
