* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #eef2ff;
    min-height: 100vh;
    background: radial-gradient(circle at top, #0a203f 0%, #05091d 40%, #02040d 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

.hero {
    background: linear-gradient(145deg, rgba(3, 15, 37, 0.85), rgba(14, 35, 73, 0.65)),
        url('https://unblast.com/wp-content/uploads/2021/01/Space-Background-Image-8.jpg') center/cover no-repeat;
    padding: 5rem 1.5rem;
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #95a1c4;
    font-size: 0.85rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-copy {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #dae4ff;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.4rem;
}

@media (min-width: 641px) {
    .grid {
        display: grid;
    }

    .card-photo {
        order: 999;
    }
}

.card {
    background: rgba(9, 17, 34, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 1.75rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
    min-height: 160px;
}

.card-photo {
    padding: 1.75rem;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(63, 22, 112, 0.95), rgba(13, 27, 58, 0.96));
    border: 1px solid rgba(111, 73, 255, 0.18);
    grid-column: 1 / -1;
}

.art-card-header {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.art-card-header p {
    color: #c7d0ef;
    line-height: 1.9;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 1rem;
}

.art-grid figure {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.art-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.art-grid figcaption {
    padding: 0.95rem 1rem;
    color: #b2b9d8;
    font-size: 0.95rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.08);
}

.card h2 {
    margin-bottom: 0.9rem;
    font-size: 1.45rem;
    color: #b38bff;
}

.card p,
.card ol {
    line-height: 1.8;
    color: #d7dbe9;
    font-size: 1rem;
}

.card ol {
    padding-left: 1.2rem;
}

.presence-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.presence-card img {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 22px;
}

.social-footer {
    background: rgba(14, 35, 70, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 1.5rem 3rem;
    text-align: center;
}

.social-footer p {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9fb4db;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(64px, 1fr));
    gap: 1rem;
    max-width: 860px;
    margin: 0 auto;
    align-items: center;
}

.social-links a {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.14);
}

/* Touch-friendly interactions for mobile */
@media (hover: none) and (pointer: coarse) {
    .social-links a:hover {
        transform: none;
    }

    .social-links a:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.2);
    }
}

.social-links img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: invert(1);
}

.card iframe {
    width: 100%;
    height: 352px;
    border-radius: 12px;
    border: none;
}

@media (max-width: 768px) {
    .card-photo {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 3.5rem 1.25rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .hero-copy {
        font-size: 0.95rem;
    }

    .page-wrapper {
        padding: 1.5rem 1rem 2rem;
        max-width: 100%;
    }

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

    .card {
        padding: 1.25rem;
        min-height: auto;
    }

    .card h2 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .card p,
    .card ol {
        font-size: 0.9rem;
    }

    .card-photo {
        padding: 1.25rem;
    }

    .art-card-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .art-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 0.75rem;
    }

    .art-grid img {
        height: 160px;
    }

    .presence-card img {
        max-width: 100%;
    }

    .presence-card {
        min-height: 320px;
    }

    .social-links {
        grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
        gap: 0.75rem;
    }

    .social-links a {
        width: 56px;
        height: 56px;
    }

    .social-links img {
        width: 28px;
        height: 28px;
    }

    .social-footer {
        padding: 2rem 1.25rem 2.5rem;
    }

    .eyebrow {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 0.75rem;
    }

    .hero-copy {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .page-wrapper {
        padding: 1rem 0.75rem 1.5rem;
    }

    .card {
        padding: 1rem;
        border-radius: 16px;
    }

    .card h2 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .card p,
    .card ol {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .art-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .art-grid img {
        height: 200px;
    }

    .card iframe {
        height: 160px;
    }

    .presence-card {
        gap: 0.75rem;
        min-height: 280px;
    }

    .social-links {
        grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
        gap: 0.5rem;
    }

    .social-links a {
        width: 52px;
        height: 52px;
    }

    .social-links img {
        width: 26px;
        height: 26px;
    }

    .social-footer {
        padding: 1.5rem 1rem 2rem;
    }

    .social-footer p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

/* Tablet styles */
@media (max-width: 768px) and (min-width: 641px) {
    .hero {
        padding: 4rem 1.5rem;
    }

    .page-wrapper {
        padding: 2rem 1.5rem 2.5rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }

    .card {
        padding: 1.5rem;
    }

    .art-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

    .art-grid img {
        height: 210px;
    }

    .social-footer {
        padding: 2.5rem 1.5rem 3rem;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .hero {
        padding: 3.5rem 1rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-copy {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .page-wrapper {
        padding: 1rem 0.75rem 1.5rem;
    }

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

    .card {
        padding: 1rem;
        min-height: auto;
    }

    .card-photo {
        grid-column: span 1;
    }

    .art-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }

    .art-grid img {
        height: 170px;
    }

    .art-grid figcaption {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .presence-card img {
        max-width: 280px;
    }

    .social-footer {
        padding: 2rem 1.25rem 2.5rem;
    }

    .social-links {
        grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
        gap: 0.5rem;
    }

    .social-links a {
        width: 44px;
        height: 44px;
    }

    .social-links img {
        width: 20px;
        height: 20px;
    }
}
/* ha gay */