@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

:root {
    --bg: #080b07;
    --surface: #10150e;
    --surface-2: #151b12;
    --line: rgba(218, 255, 169, .12);
    --text: #f4f7ef;
    --muted: #98a391;
    --acid: #b9ff67;
    --acid-soft: #ddffb5;
    --font-display: 'Oswald', Impact, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .055;
    z-index: 10;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.ambient { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; opacity: .12; }
.ambient-one { width: 560px; height: 560px; background: var(--acid); top: 80px; right: -240px; }
.ambient-two { width: 360px; height: 360px; background: #577c32; top: 700px; left: -250px; }

.site-header, main, footer { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.site-header {
    height: 78px;
    display: grid;
    grid-template-columns: 1fr minmax(300px, 480px) 1fr;
    align-items: center;
    position: relative;
    z-index: 4;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; font: 700 1.45rem/1 var(--font-display); letter-spacing: .12em; }
.brand img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.site-header nav { display: flex; justify-content: flex-end; gap: 20px; font-size: .76rem; font-weight: 600; }
.site-header nav a { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); transition: color .2s; }
.site-header nav a:hover { color: var(--text); }
.site-header nav svg { width: 15px; height: 15px; flex: 0 0 auto; }
.social-short { display: none; }
.status-pill {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(15, 20, 13, .8);
    font-size: .72rem;
    white-space: nowrap;
    backdrop-filter: blur(12px);
}
.status-pill strong { color: var(--acid-soft); margin-right: 5px; }
.status-pill svg { width: 14px; flex: 0 0 auto; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(185,255,103,.09), 0 0 14px var(--acid); flex: 0 0 auto; }

.hero { min-height: 470px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; padding: 22px 0 36px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-label { color: var(--acid); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 11px; }
.eyebrow span { width: 28px; height: 1px; background: var(--acid); }
h1, h2 { font-family: var(--font-display); text-transform: uppercase; margin: 0; line-height: .98; letter-spacing: -.035em; }
h1 { font-size: clamp(3.8rem, 6.5vw, 6rem); max-width: 720px; letter-spacing: .012em; }
h1 br + * { color: var(--acid); }
.intro { max-width: 570px; margin: 21px 0 27px; color: #b6bfb0; font-size: .9rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 46px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--line); font-size: .76rem; font-weight: 700; transition: transform .2s, border-color .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; }
.button-primary { background: var(--acid); color: #10160b; border-color: var(--acid); }
.button-primary:hover { background: var(--acid-soft); }
.button-ghost:hover { border-color: rgba(218, 255, 169, .35); }
.hero-art { position: relative; display: grid; place-items: center; align-self: center; justify-self: center; width: min(100%, 420px); min-width: 0; min-height: 0; padding: 18px; border: 1px solid rgba(185,255,103,.08); border-radius: 36px; background: linear-gradient(145deg, rgba(185,255,103,.07), rgba(255,255,255,.012)); }
.hero-art img { display: block; width: auto; max-width: 100%; height: auto; max-height: 390px; object-fit: contain; border-radius: 24px; opacity: .97; filter: drop-shadow(0 0 24px rgba(185,255,103,.14)); }
.logo-glow { position: absolute; width: 62%; aspect-ratio: 1; border-radius: 50%; background: rgba(185, 255, 103, .18); filter: blur(70px); }
.hero-art p { position: absolute; bottom: 7%; right: 2%; margin: 0; color: var(--muted); font-size: .65rem; letter-spacing: .17em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-art p span { color: var(--acid); }

.news-card { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 20px 24px; border: 1px solid var(--line); background: linear-gradient(100deg, rgba(185,255,103,.075), rgba(255,255,255,.018)); scroll-margin-top: 24px; }
.news-icon { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--acid); background: rgba(185,255,103,.1); }
.news-icon svg { width: 22px; }
.news-card p { margin: 0 0 4px; }
.news-card h2 { font-family: var(--font-body); font-size: 1rem; text-transform: none; letter-spacing: 0; line-height: 1.4; }
.news-card time { color: var(--muted); font-size: .72rem; white-space: nowrap; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 9%; padding: 58px 5%; border-bottom: 1px solid var(--line); }
.about h2, .section-heading h2 { font-size: clamp(2.5rem, 4.2vw, 4rem); }
.about-copy { padding-top: 24px; }
.about-copy > p { color: #b6bfb0; font-size: .9rem; margin: 0 0 22px; max-width: 520px; }
.values { display: flex; flex-wrap: wrap; gap: 8px; }
.values span { padding: 8px 13px; border: 1px solid var(--line); color: var(--acid-soft); font-size: .69rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }

.connect, .soundboard { padding: 58px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 20px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.section-heading p:last-child { margin: 0 0 6px; color: var(--muted); text-align: right; font-size: .83rem; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.social { min-height: 112px; display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 20px; border: 1px solid var(--line); background: var(--surface); position: relative; overflow: hidden; transition: transform .25s, border-color .25s; }
.social::before { content: ''; position: absolute; inset: auto -20% -80% 20%; height: 100%; border-radius: 50%; background: currentColor; filter: blur(70px); opacity: .05; transition: opacity .25s; }
.social:hover { transform: translateY(-4px); border-color: rgba(218,255,169,.27); }
.social:hover::before { opacity: .12; }
.social-icon { width: 45px; height: 45px; display: grid; place-items: center; color: var(--acid-soft); border: 1px solid var(--line); border-radius: 50%; }
.social-icon svg { width: 22px; }
.social-icon svg:first-child { fill: currentColor; stroke: none; }
.social-icon svg path:last-child:not(:first-child) { fill: var(--surface); stroke: currentColor; }
.social small, .social strong { display: block; }
.social small { color: var(--muted); font-size: .68rem; }
.social strong { font: 600 1.2rem/1.25 var(--font-display); text-transform: uppercase; letter-spacing: .02em; }
.social .arrow { width: 19px; color: var(--muted); transition: transform .25s, color .25s; }
.social:hover .arrow { transform: translate(2px, -2px); color: var(--text); }

.soundboard { padding-top: 58px; }
.suno-player { margin-bottom: 24px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(120deg, rgba(185,255,103,.055), rgba(255,255,255,.018)); }
.suno-player-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.suno-player-head > div, .suno-player-head > a { display: flex; align-items: center; gap: 10px; }
.suno-player-head small, .suno-player-head strong { display: block; }
.suno-player-head small { color: var(--acid); font-size: .57rem; letter-spacing: .14em; text-transform: uppercase; }
.suno-player-head strong { font-size: .78rem; }
.suno-player-head > a { color: var(--muted); font-size: .7rem; transition: color .2s; }
.suno-player-head > a:hover { color: var(--text); }
.suno-player-head > a svg { width: 15px; }
.suno-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #0a0a0a; background: var(--acid); font: 700 .9rem/1 var(--font-display); }
.suno-player iframe { display: block; width: 100%; height: 240px; border: 0; border-radius: 12px; background: #111; }
.track-list { border-top: 1px solid var(--line); }
.track { width: 100%; min-height: 76px; padding: 0 18px; display: grid; grid-template-columns: 42px 44px 1fr auto; align-items: center; gap: 12px; color: var(--text); text-align: left; border: 0; border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; transition: background .2s; }
.track:hover, .track.active { background: rgba(185,255,103,.045); }
.track-number, .track-size { color: var(--muted); font-size: .68rem; }
.track-play { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--acid); }
.track-play svg, .player-toggle svg { width: 18px; }
.track-name { font-size: .88rem; font-weight: 600; }
.pause-shape { display: none; }
.playing .play-shape { display: none; }
.playing .pause-shape { display: block; }
.empty-state { min-height: 180px; display: flex; align-items: center; justify-content: center; gap: 22px; border: 1px dashed rgba(218,255,169,.18); color: var(--muted); text-align: left; }
.empty-state > svg { width: 30px; color: var(--acid); }
.empty-state strong, .empty-state span { display: block; }
.empty-state strong { color: var(--text); margin-bottom: 4px; }
.empty-state span { font-size: .8rem; }
.empty-state code { color: var(--acid-soft); }
.player { position: sticky; bottom: 14px; z-index: 5; margin-top: 24px; padding: 15px 20px; display: grid; grid-template-columns: auto minmax(130px, .7fr) auto 1fr auto; align-items: center; gap: 14px; border: 1px solid rgba(185,255,103,.23); background: rgba(15,20,13,.93); box-shadow: 0 18px 50px rgba(0,0,0,.38); backdrop-filter: blur(16px); }
.player[hidden] { display: none; }
.player-toggle { width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--acid); color: #10160b; cursor: pointer; }
.player-meta { min-width: 0; }
.player-meta small, .player-meta strong { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-meta small { color: var(--acid); text-transform: uppercase; letter-spacing: .12em; font-size: .57rem; }
.player-meta strong { font-size: .76rem; }
.player-time { color: var(--muted); font-size: .65rem; }
.player-progress { width: 100%; accent-color: var(--acid); cursor: pointer; }

footer { min-height: 105px; display: flex; align-items: center; justify-content: space-between; gap: 25px; color: var(--muted); font-size: .68rem; }
footer .brand { color: var(--text); }
footer .brand img { width: 38px; height: 38px; }
footer > a:last-child { color: var(--text); }
footer > a:last-child span { color: var(--acid); margin-left: 8px; }

@media (max-width: 900px) {
    .site-header { grid-template-columns: auto 1fr; }
    .status-pill { order: 3; grid-column: 1 / -1; position: absolute; top: 78px; width: 100%; justify-content: center; }
    .site-header nav { display: flex; }
    .hero { grid-template-columns: 1fr .65fr; padding-top: 82px; min-height: 490px; }
    .hero-art { margin-left: -100px; opacity: .65; }
    .social-grid { grid-template-columns: 1fr; }
    .social { min-height: 110px; }
}

@media (max-width: 680px) {
    .site-header, main, footer { width: min(100% - 30px, 1180px); }
    .site-header { height: 78px; }
    .site-header nav { gap: 7px; }
    .site-header nav a { min-width: 34px; height: 30px; display: flex; justify-content: center; gap: 3px; padding: 0 5px; border: 1px solid var(--line); border-radius: 999px; color: var(--acid-soft); font-size: .52rem; letter-spacing: .02em; }
    .site-header nav svg { width: 12px; height: 12px; }
    .social-long { display: none; }
    .social-short { display: inline; }
    .status-pill { top: 70px; padding-inline: 12px; justify-content: flex-start; }
    .status-pill span:nth-child(2) { overflow: hidden; text-overflow: ellipsis; }
    .hero { display: block; min-height: auto; padding: 100px 0 44px; position: relative; }
    h1 { font-size: clamp(3.2rem, 14vw, 4.2rem); letter-spacing: 0; }
    .hero-copy { z-index: 2; }
    .hero-art { position: absolute; width: 75%; right: -36%; top: 20%; margin: 0; opacity: .25; z-index: 0; }
    .hero-art p { display: none; }
    .intro { font-size: .92rem; max-width: 92%; }
    .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 280px; }
    .button { width: 100%; }
    .news-card { grid-template-columns: auto 1fr; padding: 22px 18px; gap: 14px; }
    .news-card time { grid-column: 2; }
    .news-icon { width: 40px; height: 40px; }
    .about { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
    .about-copy { padding: 0; }
    .connect, .soundboard { padding: 48px 0; }
    .section-heading { display: block; margin-bottom: 26px; }
    .section-heading p:last-child { text-align: left; margin-top: 18px; }
    .social { padding: 20px; }
    .suno-player { padding: 10px; border-radius: 14px; }
    .suno-player iframe { height: 240px; border-radius: 10px; }
    .track { grid-template-columns: 30px 38px 1fr; padding-inline: 6px; }
    .track-size { display: none; }
    .player { grid-template-columns: auto 1fr auto; padding: 12px; gap: 10px; }
    .player-progress { grid-column: 1 / -1; grid-row: 2; }
    .player-time.current { display: none; }
    footer { min-height: 145px; flex-direction: column; justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
