﻿

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
    width: 100%;
}

.brand-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.brand-logo {
    height: 56px;
    width: auto;
    margin: 0;
}

.brand-title {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
}

.brand-main {
    margin: 0;
    font-family: "PokemonSolid","InterTight",system-ui,sans-serif;
    font-size: clamp(2.4rem,4vw,3.2rem);
    letter-spacing: -0.02em;
}

.brand-tagline {
    display: grid;
    justify-items: center;
    gap: 0.15rem;
}

.tagline-main {
    margin: 0;
    font-family: "InterTight",system-ui,sans-serif;
    font-size: clamp(1.25rem,2vw,1.7rem);
    color: rgba(255,255,255,0.74);
}

.brand-unown,
.tagline-unown {
    margin: 0;
    font-family: "UnownTCG","InterTight",system-ui,sans-serif;
    font-size: clamp(0.75rem,1.2vw,0.9rem);
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.18em;
    line-height: 1.05;
}

/* --- Hero --- */
.landing-hero {
    max-width: 1400px;
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    /* animated “electric” sheen */
    .landing-hero::after {
        content: "";
        position: absolute;
        inset: -80px;
        pointer-events: none;
        opacity: 0.9;
    }

.landing-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

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

.landing-left {
    padding: 0.5rem;
}

.landing-right {
    display: grid;
    place-items: center;
    padding: 0.25rem;
}

.logo-title-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(255,212,0,0.25));
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,212,0,0.28);
    background: rgba(255,212,0,0.08);
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    width: fit-content;
    box-shadow: 0 0 24px rgba(255,212,0,0.10);
}

.landing-left h1 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    letter-spacing: -0.02em;
    margin-top: 0.65rem;
    text-shadow: 0 0 18px rgba(255,42,61,0.14);
}

.landing-left h2 {
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    color: var(--muted);
    margin-top: 0.4rem;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
    justify-self: center;
}

/* bullets */
.image-bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0 0;
    display: grid;
    gap: 0.9rem;
}

    .image-bullet-list li {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        padding: 0.9rem 1rem;
        border-radius: var(--r16);
        border: 1px solid rgba(255,255,255,0.11);
        background: rgba(0,0,0,1);
        box-shadow: 0 0 22px rgba(255,42,61,0.06);
    }

.bullet-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255,212,0,0.16));
}

.bullet-icon-inline {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    justify-self: center;
}

.card-icon {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255,212,0,0.16));
}

/* CTA row */
.cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.35rem;
}

.primary-button, .secondary-button {
    padding: 12px 18px;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    user-select: none;
}

.primary-button {
    background: linear-gradient(135deg, var(--red), var(--red2));
    color: white;
    box-shadow: 0 0 0 rgba(255,0,51,0.0), 0 14px 30px rgba(255,0,51,0.18);
}

    .primary-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 0 26px rgba(255,0,51,0.28), 0 18px 40px rgba(0,0,0,0.40);
    }

.secondary-button {
    background: rgba(255,212,0,0.06);
    border-color: rgba(255,212,0,0.35);
    color: rgba(255,255,255,0.88);
}

    .secondary-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 0 26px rgba(255,212,0,0.18);
        border-color: rgba(255,212,0,0.55);
    }

/* store badges */
.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.store-badge {
    width: 170px;
    height: auto;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.25);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    transition: transform 0.18s ease, box-shadow 0.2s ease;
}

    .store-badge:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 0 28px rgba(255,212,0,0.12), 0 18px 40px rgba(0,0,0,0.45);
    }

/* right image */
.landing-right {
    display: grid;
    place-items: center;
    padding: 0.5rem;
}

.screenshot-img {
    width: min(440px, 100%);
    height: auto;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 0 34px rgba(255,42,61,0.10), 0 26px 60px rgba(0,0,0,0.55);
    transform: translateZ(0);
}

/* feature grid cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

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

.features-item {
    border-radius: var(--r22);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,1);
    padding: 1.2rem;
    box-shadow: 0 0 26px rgba(255,212,0,0.06);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .features-item > a {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .features-item::before {
        content: "";
        position: absolute;
        inset: -1px;
        background: linear-gradient(135deg, rgba(255,212,0,0.10), transparent 40%), linear-gradient(315deg, rgba(255,42,61,0.10), transparent 45%);
        opacity: 0.7;
        pointer-events: none;
    }

    .features-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.85rem;
        color: rgba(255,255,255,0.92);
    }

.features-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.45;
    margin-top: 0.85rem;
}

/* socials */
.social-img.clickable {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: transform 0.18s ease, box-shadow 0.2s ease;
}

    .social-img.clickable:hover {
        transform: translateY(-2px) scale(1.06);
        box-shadow: 0 0 24px rgba(255,212,0,0.12), 0 18px 40px rgba(0,0,0,0.55);
    }

/* footer */
.main-footer {
    max-width: 1200px;
    margin: 3.5rem auto 2rem auto;
    padding: 2.25rem;
    border-radius: var(--r22);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,1);
    box-shadow: var(--soft);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 980px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-column {
    display: grid;
    gap: 0.75rem;
}

    .footer-column a {
        text-decoration: none;
        color: rgba(255,255,255,0.70);
        transition: color 0.15s ease;
    }

        .footer-column a:hover {
            color: var(--yellow);
        }

.footer-bottom {
    align-self: center;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

/* motion accessibility */
@media (prefers-reduced-motion: reduce) {
    html, body {
        animation: none;
    }

    .features-item, .store-badge, .primary-button, .secondary-button, .social-img.clickable {
        transition: none;
    }
}

.brand-lockup {
    display: block;
    margin: 0 auto 1.25rem auto;
    width: min(720px, 100%);
    height: auto;
}

.brand-lockup-small {
    display: block;
    margin: 0 auto 1.25rem auto;
    width: min(720px, 100%);
    height: auto;
}