/* Sound Of World — shared styles */
:root {
    --bg: #05060a;
    --bg-2: #0b0d14;
    --panel: rgba(11, 13, 20, 0.72);
    --ink: #eef0f6;
    --soft: #c3c7d4;
    --muted: #868b9c;
    --faint: #474b5a;
    --line: #181b25;
    --line-2: #2a2e3b;
    --acc: #d4ff3a;
    --acc-ink: #0a0c05;
    --wide: 'Archivo', 'Arial Black', system-ui, sans-serif;
    --sans: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --mono: 'Space Mono', ui-monospace, Consolas, monospace;
    --wrap: 1320px;
    --gutter: clamp(1.25rem, 3vw, 2.25rem);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--acc); color: var(--acc-ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

/* Globe background: fixed behind every page */
.globe { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; transition: opacity 0.6s ease; }
main, footer { position: relative; z-index: 1; }

/* Soft grain + vignette on top of the globe */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 120%, rgba(212, 255, 58, 0.06), transparent 55%),
                radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.tag {
    font-family: var(--mono);
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.tag .blip { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--acc); margin-right: 0.55rem; vertical-align: 1px; box-shadow: 0 0 12px var(--acc); animation: blip 2s ease-in-out infinite; }
@keyframes blip { 50% { opacity: 0.35; } }

.wide {
    font-family: var(--wide);
    font-weight: 900;
    font-stretch: 125%;
    font-variation-settings: 'wdth' 125;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.02em;
}

.acc { color: var(--acc); }

/* ---------- Buttons ---------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.35rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid var(--line-2);
    border-radius: 4px;
    background: rgba(5, 6, 10, 0.5);
    overflow: hidden;
    isolation: isolate;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--acc);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.45s var(--ease);
}

.btn:hover { color: var(--acc-ink); border-color: var(--acc); box-shadow: 0 0 24px rgba(212, 255, 58, 0.25); }
.btn:hover::before { clip-path: inset(0 0 0 0); }
.btn .arr { transition: transform 0.3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-acc { background: var(--acc); color: var(--acc-ink); border-color: var(--acc); }
.btn-acc::before { background: var(--ink); }
.btn-sm { padding: 0.6rem 0.95rem; font-size: 0.72rem; }
.btn[aria-pressed="true"] { background: var(--acc); color: var(--acc-ink); border-color: var(--acc); }

.actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 2rem; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.45s var(--ease);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled { background: rgba(5, 6, 10, 0.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.site-header.hidden { transform: translateY(-100%); }

.header-inner { display: flex; align-items: center; gap: 2rem; height: 74px; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand .mark { width: 30px; height: 30px; }
.brand .name { font-family: var(--wide); font-weight: 900; font-stretch: 125%; font-variation-settings: 'wdth' 125; font-size: 0.95rem; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; }
.brand .name small { display: block; font-family: var(--mono); font-weight: 400; font-stretch: 100%; font-variation-settings: normal; font-size: 0.58rem; letter-spacing: 0.14em; color: var(--muted); margin-top: 3px; }

.site-header nav[aria-label="Main"] { margin-left: auto; }
.nav { display: flex; gap: 0.25rem; list-style: none; }

.nav a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-family: var(--mono);
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--soft);
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.nav a[aria-current="page"] { color: var(--acc); }
.nav a[aria-current="page"]::before { content: '['; margin-right: 2px; }
.nav a[aria-current="page"]::after { content: ']'; margin-left: 2px; }

.menu-btn { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 4px; border: 1px solid var(--line-2); background: none; cursor: pointer; }
.menu-btn span { display: block; width: 16px; height: 1.5px; background: var(--ink); margin: 4px auto; transition: transform 0.35s var(--ease), opacity 0.2s ease; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-nav { position: fixed; inset: 74px 0 0 0; background: var(--bg); padding: 1rem var(--gutter) 2rem; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { font-family: var(--wide); font-weight: 900; font-stretch: 125%; font-variation-settings: 'wdth' 125; text-transform: uppercase; font-size: clamp(1.8rem, 8vw, 2.6rem); padding: 0.6rem 0; border-bottom: 1px solid var(--line); transform: translateX(-16px); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.4s ease; }
.mobile-nav.open a { transform: none; opacity: 1; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.04s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.08s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.12s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.16s; }
.mobile-nav a[aria-current="page"] { color: var(--acc); }
.mobile-nav .btn { margin-top: 1.5rem; align-self: flex-start; font-family: var(--mono); font-weight: 400; font-stretch: 100%; font-variation-settings: normal; font-size: 0.85rem; border-bottom: 1px solid var(--acc); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); filter: blur(6px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.d1 { transition-delay: 0.08s !important; }
.d2 { transition-delay: 0.16s !important; }
.d3 { transition-delay: 0.24s !important; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(100svh, 960px); display: flex; align-items: flex-end; padding: 140px 0 70px; }
.hero .wrap { width: 100%; }

.hero h1 { font-size: min(10.2vw, 9.4rem); margin-top: 1.5rem; }
.hero h1 .l2 { display: block; color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.hero h1 .l3 { display: block; }

.hero-bottom { display: grid; grid-template-columns: 1.15fr 1fr; gap: 2rem; align-items: end; margin-top: clamp(2rem, 4vw, 3rem); }
.hero-lead { max-width: 46ch; color: var(--soft); font-size: clamp(1rem, 1.5vw, 1.14rem); }
.hero-bottom .actions { justify-content: flex-end; margin-top: 0; }

.coords { position: absolute; right: var(--gutter); top: 130px; text-align: right; line-height: 1.8; }

/* ---------- Ticker ---------- */
.ticker { position: relative; z-index: 1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(6px); overflow: hidden; padding: 0.95rem 0; }
.ticker-track { display: flex; width: max-content; animation: ticker 55s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track > div { display: flex; }
.ticker-track span, .ticker-track a { display: inline-flex; align-items: center; gap: 1.1rem; padding-right: 2.25rem; font-family: var(--mono); font-size: 0.82rem; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.ticker-track b { color: var(--ink); font-weight: 700; }
.ticker-track span::before, .ticker-track a::before { content: '▶'; font-size: 0.6rem; color: var(--acc); }
.ticker-track a:hover b { color: var(--acc); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { padding: clamp(5rem, 11vw, 8.5rem) 0; }
section.bt { border-top: 1px solid var(--line); }

.head { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: end; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.head h2 { font-size: clamp(2.1rem, 5.4vw, 4.4rem); margin-top: 0.9rem; }
.head p { color: var(--muted); max-width: 42ch; }
.head .actions { margin-top: 1.25rem; }

/* ---------- Panels / cells ---------- */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.panel { position: relative; padding: clamp(1.4rem, 2.5vw, 2rem); background: var(--panel); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); overflow: hidden; }
.panel::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 255, 58, 0.09), transparent 60%); opacity: 0; transition: opacity 0.3s ease; }
.panel:hover::after { opacity: 1; }
.panel .num { font-family: var(--mono); font-size: 0.75rem; color: var(--acc); }
.panel h3 { font-family: var(--wide); font-weight: 800; font-stretch: 115%; font-variation-settings: 'wdth' 115; font-size: 1.2rem; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.15; margin: 1.4rem 0 0.6rem; }
.panel p { color: var(--muted); font-size: 0.97rem; }

.stat .v { font-family: var(--wide); font-weight: 900; font-stretch: 125%; font-variation-settings: 'wdth' 125; font-size: clamp(2.2rem, 4.4vw, 3.8rem); line-height: 1; letter-spacing: -0.03em; white-space: nowrap; }
.stat .v .acc { font-size: 0.6em; vertical-align: 0.5em; }
.stat .l { margin-top: 0.8rem; }

/* ---------- Release cards ---------- */
.releases { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1.5rem, 2.6vw, 2.2rem) clamp(0.9rem, 1.6vw, 1.25rem); }

.rel { display: block; perspective: 700px; }
.rel .art { position: relative; aspect-ratio: 1; border-radius: 6px; overflow: hidden; transform-style: preserve-3d; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); background: var(--bg-2); }
.rel .art img { width: 100%; height: 100%; object-fit: cover; }
.rel .art::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.16) 48%, transparent 60%); transform: translateX(-120%); transition: transform 0.8s var(--ease); }
.rel .play { position: absolute; right: 10px; bottom: 10px; width: 40px; height: 40px; border-radius: 50%; background: var(--acc); color: var(--acc-ink); display: grid; place-items: center; font-size: 0.8rem; transform: translateY(12px) scale(0.8); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.3s ease; }
.rel:hover .art { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 255, 58, 0.5); }
.rel:hover .art::after { transform: translateX(120%); }
.rel:hover .play { transform: none; opacity: 1; }
.rel h3 { font-size: 1rem; font-weight: 700; line-height: 1.25; margin-top: 0.9rem; }
.rel .by { color: var(--muted); font-size: 0.88rem; margin-top: 0.1rem; }
.rel .meta { margin-top: 0.45rem; font-size: 0.68rem; }
.rel[hidden] { display: none; }

.filters { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 2.25rem; }
.filters-wrap { margin-bottom: 1rem; }
.search { width: min(100%, 320px); padding: 0.65rem 0.9rem; font-family: var(--mono); font-size: 0.8rem; color: var(--ink); background: var(--panel); border: 1px solid var(--line-2); border-radius: 4px; outline: none; margin-bottom: 0.75rem; }
.search:focus { border-color: var(--acc); }
.count-line { margin-bottom: 1.5rem; }

/* ---------- Featured ---------- */
.feature { display: grid; grid-template-columns: minmax(0, 470px) 1fr; border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(8px); }
.feature .art { position: relative; overflow: hidden; }
.feature .art img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.feature .art .spin { position: absolute; left: 14px; top: 14px; width: 56px; height: 56px; animation: rot 9s linear infinite; }
@keyframes rot { to { transform: rotate(360deg); } }
.feature-body { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; padding: clamp(1.75rem, 4vw, 2.75rem); border-left: 1px solid var(--line); }
.feature-body h2 { font-size: clamp(2.4rem, 6vw, 4.8rem); margin: 0.9rem 0 0.8rem; overflow-wrap: anywhere; }
.feature-body .credits { color: var(--soft); font-size: 1.05rem; }
.feature-body iframe { width: 100%; height: 80px; border: 0; border-radius: 12px; margin-top: 1.5rem; }

.spec { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-top: 1.75rem; }
.spec div { border-top: 1px solid var(--line-2); padding-top: 0.7rem; }
.spec span { display: block; font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase; color: var(--faint); }
.spec b { font-weight: 500; }

/* ---------- Artists ---------- */
.artist-card { display: block; padding: 0.9rem 0.9rem 1.2rem; }
.artist-card figure { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 4px; background: var(--bg-2); }
.artist-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); transition: filter 0.5s ease, transform 0.8s var(--ease); }
.artist-card figure::after { content: ''; position: absolute; inset: 0; background: var(--acc); mix-blend-mode: multiply; opacity: 0; transition: opacity 0.4s ease; }
.artist-card:hover img { filter: grayscale(1) contrast(1.2); transform: scale(1.06); }
.artist-card:hover figure::after { opacity: 1; }
.artist-card h3 { font-family: var(--wide); font-weight: 800; font-stretch: 115%; font-variation-settings: 'wdth' 115; font-size: 1.05rem; text-transform: uppercase; margin-top: 1rem; }
.artist-card .tag { margin-top: 0.25rem; }

.profile { display: grid; grid-template-columns: minmax(0, 400px) 1fr; border: 1px solid var(--line); background: var(--panel); backdrop-filter: blur(8px); margin-bottom: 1.25rem; scroll-margin-top: 100px; }
.profile > * { min-width: 0; }
.profile figure { aspect-ratio: 4 / 5; overflow: hidden; }
.profile figure img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.1); transition: filter 0.6s ease; }
.profile:hover figure img { filter: none; }
.profile-body { display: flex; flex-direction: column; padding: clamp(1.5rem, 4vw, 2.5rem); border-left: 1px solid var(--line); }
.profile-body h2 { font-size: clamp(2rem, 6vw, 4.6rem); margin: 0.8rem 0 1rem; overflow-wrap: anywhere; }
.profile-body .sum { color: var(--soft); margin-bottom: 1.25rem; max-width: 60ch; }
.profile-body .links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.on-label { margin-top: auto; padding-top: 2.25rem; }
.on-label .tag { margin-bottom: 0.9rem; display: block; }
.minis { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 0.55rem; }
.mini { display: flex; align-items: center; gap: 0.7rem; padding: 0.4rem; border: 1px solid var(--line); border-radius: 6px; transition: border-color 0.2s ease, background 0.2s ease; }
.mini:hover { border-color: var(--acc); background: rgba(212, 255, 58, 0.04); }
.mini img { width: 44px; height: 44px; object-fit: cover; border-radius: 4px; }
.mini span { font-size: 0.9rem; font-weight: 500; line-height: 1.3; }
.mini small { display: block; font-family: var(--mono); font-size: 0.66rem; color: var(--muted); font-weight: 400; }

/* ---------- Page head ---------- */
.page-head { padding: clamp(9rem, 17vw, 12rem) 0 clamp(3rem, 7vw, 4.5rem); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: min(9vw, 8rem); margin-top: 1.25rem; }
.page-head-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-top: 2rem; }
.page-head .lead { max-width: 46ch; color: var(--soft); font-size: clamp(1rem, 1.5vw, 1.12rem); }
.jump { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; border-left: 1px solid var(--line-2); margin-left: 0.5rem; }
.timeline li { position: relative; padding: 0 0 2.25rem 2rem; }
.timeline li::before { content: ''; position: absolute; left: -5px; top: 0.45rem; width: 9px; height: 9px; border-radius: 50%; background: var(--bg); border: 1px solid var(--acc); }
.timeline li.in::before { background: var(--acc); box-shadow: 0 0 14px var(--acc); transition: background 0.4s ease 0.3s, box-shadow 0.4s ease 0.3s; }
.timeline .y { font-family: var(--wide); font-weight: 900; font-stretch: 125%; font-variation-settings: 'wdth' 125; font-size: 1.6rem; line-height: 1; }
.timeline h3 { font-weight: 700; font-size: 1.05rem; margin: 0.5rem 0 0.3rem; }
.timeline p { color: var(--muted); max-width: 58ch; }

/* ---------- Accordion ---------- */
.acc-list { border-top: 1px solid var(--line); }
.acc-list details { border-bottom: 1px solid var(--line); }
.acc-list summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 0; cursor: pointer; list-style: none; font-weight: 700; font-size: clamp(1.02rem, 1.8vw, 1.2rem); }
.acc-list summary::-webkit-details-marker { display: none; }
.acc-list summary .pm { flex: none; font-family: var(--mono); color: var(--acc); transition: transform 0.35s var(--ease); }
.acc-list details[open] .pm { transform: rotate(45deg); }
.acc-list p { color: var(--muted); padding: 0 3rem 1.4rem 0; max-width: 62ch; }

/* ---------- Contact ---------- */
.mail-rows { border-top: 1px solid var(--line); }
.mail-row { position: relative; display: grid; grid-template-columns: 1fr 1.8fr auto; align-items: center; gap: 1.5rem; padding: clamp(1.4rem, 3vw, 2rem) 0; border-bottom: 1px solid var(--line); overflow: hidden; }
.mail-row::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(212, 255, 58, 0.08), transparent 70%); transform: translateX(-100%); transition: transform 0.6s var(--ease); }
.mail-row:hover::before { transform: none; }
.mail-row .what b { display: block; font-weight: 700; }
.mail-row .mail { font-family: var(--wide); font-weight: 800; font-stretch: 112%; font-variation-settings: 'wdth' 112; font-size: clamp(1rem, 2.6vw, 1.9rem); letter-spacing: -0.01em; word-break: break-word; transition: color 0.3s ease; }
.mail-row:hover .mail { color: var(--acc); }
.mail-row .go { width: 46px; height: 46px; border: 1px solid var(--line-2); border-radius: 4px; display: grid; place-items: center; transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease); }
.mail-row:hover .go { background: var(--acc); color: var(--acc-ink); border-color: var(--acc); transform: rotate(-45deg); }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta h2 { font-size: min(9vw, 7rem); }
.cta p { color: var(--muted); max-width: 44ch; margin: 1.5rem auto 0; }
.cta .actions { justify-content: center; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: clamp(3.5rem, 8vw, 5rem) 0 2rem; overflow: hidden; background: linear-gradient(transparent, rgba(5, 6, 10, 0.9) 30%); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.footer-grid p { color: var(--muted); font-size: 0.95rem; max-width: 32ch; margin-top: 1rem; }
.footer-grid h4 { font-family: var(--mono); font-size: 0.72rem; font-weight: 400; text-transform: uppercase; color: var(--faint); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li + li { margin-top: 0.5rem; }
.footer-grid li a { color: var(--soft); transition: color 0.2s ease; }
.footer-grid li a:hover { color: var(--acc); }

.footer-mark { font-family: var(--wide); font-weight: 900; font-stretch: 125%; font-variation-settings: 'wdth' 125; text-transform: uppercase; text-align: center; white-space: nowrap; font-size: min(calc((100vw - 2 * var(--gutter)) / 9.6), 8.4rem); line-height: 0.85; letter-spacing: -0.03em; color: transparent; -webkit-text-stroke: 1px #1d2130; margin: clamp(3rem, 7vw, 4.5rem) 0 1.5rem; user-select: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
.footer-bottom a:hover { color: var(--acc); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .releases { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1000px) {
    .g4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .releases { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
    .nav, .header-cta { display: none; }
    .menu-btn { display: block; }
    .head, .hero-bottom { grid-template-columns: 1fr; }
    .hero-bottom .actions { justify-content: flex-start; }
    .g3 { grid-template-columns: 1fr; }
    .feature, .profile { grid-template-columns: 1fr; }
    .feature-body, .profile-body { border-left: 0; border-top: 1px solid var(--line); }
    .coords { display: none; }
    .mail-row { grid-template-columns: 1fr auto; gap: 0.5rem 1rem; }
    .mail-row .what { grid-column: 1 / -1; }
    .releases { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .g2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-bottom .actions .btn { flex: 1 1 100%; justify-content: center; }
    .hero h1 .l2 { -webkit-text-stroke-width: 1px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .js .reveal { opacity: 1; transform: none; filter: none; }
}
