:root {
    --bg: #07101d;
    --bg-deep: #050b14;
    --bg-soft: #0d2d56;
    --panel: rgba(10, 24, 41, 0.9);
    --panel-strong: #0d2340;
    --panel-border: rgba(255, 255, 255, 0.08);
    --text: #f3f7fc;
    --muted: #b4c7da;
    --muted-strong: #eef6ff;
    --accent: #42a5ff;
    --accent-soft: #b9dbff;
    --accent-cool: #7ae5ff;
    --success: #8be6ba;
    --warning: #ffe19a;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow-lg: 0 28px 64px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(122, 229, 255, 0.16), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(66, 165, 255, 0.18), transparent 20%),
        linear-gradient(180deg, #091628 0%, #07111e 48%, #040a12 100%);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
}

img {
    display: block;
    max-width: 100%;
}

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

p,
li {
    color: var(--muted);
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(7, 19, 33, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 34px rgba(66, 165, 255, 0.24);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 22px;
}

.nav-links a {
    color: var(--muted);
    font-weight: 700;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--muted-strong);
}

.hero {
    padding: 88px 0 54px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(126, 199, 255, 0.12);
    color: var(--muted-strong);
    border: 1px solid rgba(126, 199, 255, 0.24);
    text-transform: uppercase;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-copy h1,
.page-hero h1,
.section-header h2,
.legal-hero h1,
.contact-hero h1 {
    margin: 18px 0 18px;
    font-family: var(--font-display);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    font-size: clamp(3.2rem, 7vw, 6.1rem);
    max-width: 10ch;
}

.hero-copy p,
.section-header p,
.page-hero p,
.legal-hero p,
.contact-hero p {
    margin: 0;
    font-size: 1.08rem;
    max-width: 62ch;
}

.cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #102133;
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent) 100%);
    box-shadow: 0 16px 34px rgba(66, 165, 255, 0.3);
}

.button-secondary {
    color: var(--muted-strong);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
}

.hero-list,
.pill-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-list li,
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted-strong);
    font-weight: 700;
    font-size: 0.93rem;
}

.hero-visual {
    position: relative;
    min-height: 680px;
}

.visual-mark {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 124px;
    height: 124px;
    padding: 16px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.visual-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.poster-card {
    position: absolute;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.04);
}

.poster-card img,
.poster-frame img {
    width: 100%;
    aspect-ratio: 1242 / 2688;
    object-fit: cover;
}

.poster-card.primary {
    width: min(320px, 78vw);
    right: 28px;
    top: 96px;
    transform: rotate(2deg);
    animation: drift 9s ease-in-out infinite;
}

.poster-card.secondary {
    width: min(245px, 58vw);
    left: 16px;
    bottom: 54px;
    transform: rotate(-5deg);
    animation: drift 11s ease-in-out infinite reverse;
}

.note-card {
    position: absolute;
    left: 14px;
    top: 112px;
    max-width: 250px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(11, 24, 40, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
}

.note-card strong {
    display: block;
    color: var(--muted-strong);
    margin-bottom: 6px;
}

.note-card p {
    margin: 0;
    font-size: 0.96rem;
}

.section {
    padding: 54px 0;
}

.section-header {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.section-header h2,
.page-hero h1,
.legal-hero h1,
.contact-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.feature-card,
.poster-panel,
.detail-card,
.legal-card,
.contact-card {
    border-radius: var(--radius-lg);
    background: var(--panel);
    border: 1px solid var(--panel-border);
    box-shadow: var(--shadow-md);
}

.feature-card {
    grid-column: span 4;
    padding: 24px;
}

.feature-card.wide,
.poster-panel {
    grid-column: span 6;
}

.feature-icon,
.detail-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255, 122, 109, 0.12);
    color: var(--accent-soft);
    font-size: 1.45rem;
    margin-bottom: 18px;
}

.feature-card h3,
.poster-panel h3,
.detail-copy h3,
.contact-card h3,
.legal-card h2 {
    margin: 0 0 12px;
    color: var(--muted-strong);
}

.feature-card p,
.poster-panel p,
.detail-copy p {
    margin: 0;
}

.poster-panel {
    padding: 18px;
}

.poster-panel img {
    width: 100%;
    aspect-ratio: 1242 / 2688;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 16px;
}

.band {
    padding: 30px 0 54px;
}

.band-panel {
    padding: 28px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 122, 109, 0.18), rgba(126, 199, 255, 0.1)),
        rgba(14, 35, 57, 0.9);
    border: 1px solid rgba(255, 209, 180, 0.18);
    box-shadow: var(--shadow-md);
}

.band-panel p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 1.05rem;
}

.band-panel strong {
    color: var(--text);
}

.contact-section {
    padding: 64px 0 82px;
}

.contact-card,
.legal-card {
    padding: 30px;
}

.contact-card p {
    margin: 0 0 16px;
}

.email-link {
    display: inline-block;
    margin: 8px 0 10px;
    font-size: clamp(1.55rem, 4vw, 2.35rem);
    color: var(--muted-strong);
    font-weight: 800;
    word-break: break-word;
}

.contact-meta {
    color: var(--muted);
    font-size: 0.95rem;
}

.site-footer {
    padding: 0 0 40px;
}

.footer-row {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-row p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--muted-strong);
}

.page-hero,
.legal-hero,
.contact-hero {
    padding: 82px 0 24px;
}

.detail-stack,
.legal-stack,
.support-grid {
    display: grid;
    gap: 24px;
    padding-bottom: 54px;
}

.detail-card {
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.detail-card.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
}

.poster-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-md);
}

.detail-copy {
    padding: 6px 6px 6px 2px;
}

.detail-copy p,
.legal-card p,
.legal-card li,
.contact-card li {
    margin: 0 0 12px;
}

.detail-copy ul,
.legal-card ul,
.contact-card ul {
    margin: 0;
    padding-left: 22px;
}

.support-grid .card-grid > .contact-card {
    grid-column: span 6;
}

.inline-link {
    color: var(--muted-strong);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.28);
}

.callout {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 225, 154, 0.1);
    border: 1px solid rgba(255, 225, 154, 0.28);
    color: var(--muted-strong);
}

@keyframes drift {
    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-12px) rotate(3deg);
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .detail-card,
    .detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card.wide,
    .poster-panel,
    .support-grid .card-grid > .contact-card {
        grid-column: span 12;
    }

    .hero-visual {
        min-height: 610px;
    }

    .note-card {
        top: 66px;
    }
}

@media (max-width: 720px) {
    .nav {
        padding: 16px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        gap: 14px 18px;
    }

    .hero {
        padding-top: 44px;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .hero-visual {
        min-height: 560px;
    }

    .visual-mark {
        width: 96px;
        height: 96px;
        top: 0;
        right: 8px;
    }

    .poster-card.primary {
        width: min(280px, 76vw);
        right: 0;
        top: 94px;
    }

    .poster-card.secondary {
        width: min(210px, 56vw);
        left: 0;
        bottom: 60px;
    }

    .note-card {
        position: static;
        max-width: none;
        margin-top: 18px;
    }

    .footer-row {
        align-items: flex-start;
        flex-direction: column;
    }
}
