
:root {
  --ink: #edf5f1;
  --muted: #edf5f1;
  --green: #77c9a6;
  --green-bright: #b6f0d5;
  --line: rgba(220, 241, 231, 0.14);
  --shadow: 0 28px 85px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 7%, rgba(74, 145, 114, 0.18), transparent 32rem),
    radial-gradient(circle at 90% 20%, rgba(192, 216, 205, 0.08), transparent 30rem),
    linear-gradient(180deg, #0a0f0d 0%, #0e1512 54%, #080c0b 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 4px; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(8,12,11,.96), rgba(8,12,11,.75));
  backdrop-filter: blur(18px);
}
.nav-bar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.wordmark { display: inline-flex; align-items: center; gap: 12px; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 700; letter-spacing: .035em; }
.scar-mark { width: 2px; height: 30px; background: linear-gradient(#d8e3de, var(--green)); box-shadow: 7px 3px 0 rgba(119,201,166,.34); transform: rotate(13deg); }
.nav-links { display: flex; align-items: center; gap: 30px; color: #c4d1cb; font-size: .86rem; font-weight: 750; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--green-bright); }
.menu-button { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.04); }
.menu-button span { display: block; height: 1px; margin: 5px 0; background: white; }

.hero { min-height: 100vh; display: grid; align-items: center; padding: 132px 0 76px; }
.hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 15px; color: var(--green); font-size: .72rem; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
.hero .eyebrow { display: flex; align-items: center; gap: 10px; color: #d8e3de; }
.hero .eyebrow span { width: 28px; height: 1px; background: var(--green); }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; }
h1 { margin: 21px 0 24px; font-size: clamp(4.5rem, 9vw, 8rem); line-height: .79; letter-spacing: -.065em; font-weight: 500; }
h1 em { padding-left: .35em; color: var(--green-bright); font-weight: 500; }
.hero-statement { max-width: 630px; margin: 0 0 15px; color: #edf5f1; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 2.4vw, 2rem); line-height: 1.35; }
.hero-intro { max-width: 570px; margin: 0; color: var(--muted); line-height: 1.8; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 49px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: .83rem; font-weight: 850; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #08100c; background: linear-gradient(110deg, #b7eed6, #70bd9d); box-shadow: 0 14px 38px rgba(82, 164, 130, .2); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.04); }
.button-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(182,240,213,.34); }
.hero-art { position: relative; }
.hero-art::before { content: ""; position: absolute; inset: -12% -8%; z-index: -1; background: radial-gradient(ellipse at center, rgba(105,190,153,.15), transparent 66%); filter: blur(22px); }
.hero-image-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid rgba(216,227,222,.2); border-radius: 26px; box-shadow: var(--shadow); background: #15201c; }
.hero-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,9,7,.16), transparent 40%), linear-gradient(180deg, transparent 62%, rgba(4,9,7,.44)); pointer-events: none; }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: saturate(.7) contrast(1.06) brightness(1.03); transform: scale(1.015); }

.section { padding: 108px 0; scroll-margin-top: 70px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.section-heading h2, .about h2, .storm h2 { margin: 0; font-size: clamp(2.7rem, 5vw, 5rem); line-height: .96; letter-spacing: -.055em; font-weight: 500; }
.section-heading > p { max-width: 490px; margin: 0; color: var(--muted); line-height: 1.7; }
.latest { border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); background: linear-gradient(135deg, rgba(255,255,255,.025), rgba(68,125,101,.045)); }
.latest-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; padding: 35px; border: 1px solid var(--line); border-radius: 32px; background: rgba(17,24,22,.88); box-shadow: 0 30px 90px rgba(0,0,0,.26); }
.cover-frame { padding: 8px; border: 1px solid rgba(182,240,213,.28); border-radius: 22px; background: linear-gradient(145deg, rgba(182,240,213,.13), rgba(255,255,255,.025)); }
.cover-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.035); color: var(--ink); font-size: .66rem; font-weight: 850; letter-spacing: .075em; text-transform: uppercase; }
.latest-content h3 { margin: 21px 0 15px; font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: .96; letter-spacing: -.055em; font-weight: 500; }
.latest-content > p { max-width: 580px; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
blockquote { margin: 23px 0 27px; padding: 17px 20px; border-left: 2px solid var(--green); background: linear-gradient(90deg, rgba(119,201,166,.09), transparent); color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; font-style: italic; line-height: 1.5; }
.latest-content small { display: flex; align-items: center; width: max-content; margin-top: 14px; padding: 8px 12px; border: 1px solid rgba(182,240,213,.42); border-radius: 999px; background: rgba(119,201,166,.12); color: var(--green-bright); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.latest-socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.latest-socials a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.035); color: var(--ink); font-size: .74rem; font-weight: 850; letter-spacing: .035em; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.latest-socials a:hover { border-color: rgba(182,240,213,.52); background: rgba(119,201,166,.12); color: var(--green-bright); transform: translateY(-1px); }
.latest-socials a:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 3px; }
.latest-socials svg { width: 16px; height: 16px; flex: 0 0 auto; fill: currentColor; }
.latest-socials rect, .latest-socials circle { fill: none; stroke: currentColor; stroke-width: 1.8; }
.latest-socials .latest-socials-dot { fill: currentColor; stroke: none; }
.latest-socials .latest-socials-play { fill: #101714; }

.music-section { background: radial-gradient(circle at 90% 40%, rgba(54,105,84,.1), transparent 30rem); }
.music-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; }
.track-card { position: relative; min-height: 510px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: #18231f; box-shadow: 0 20px 60px rgba(0,0,0,.22); }
.track-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.track-card:hover > img { transform: scale(1.035); filter: saturate(1.08); }
.track-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 18%, rgba(4,8,7,.12) 40%, rgba(5,10,8,.96) 92%); }
.track-content { position: absolute; inset: auto 29px 28px; z-index: 2; }
.track-content > span { color: var(--green); font-size: .7rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.track-content h3 { margin: 8px 0 10px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.045em; font-weight: 500; }
.track-content p { max-width: 530px; margin: 0; color: var(--ink); line-height: 1.55; }
.track-content a { display: inline-flex; gap: 9px; margin-top: 18px; padding: 10px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(7,13,10,.64); font-size: .76rem; font-weight: 850; }
.track-content a:hover { border-color: rgba(182,240,213,.48); background: rgba(119,201,166,.12); }
.track-content a b { color: var(--green-bright); }
.pagination { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 38px; }
.pagination button { min-width: 44px; height: 44px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); color: var(--ink); font-size: .78rem; font-weight: 850; cursor: pointer; }
.pagination button[aria-current="page"] { color: #07100c; background: var(--green-bright); }
.pagination button:disabled { opacity: .35; cursor: not-allowed; }

.radio-promo-section { padding-top: 70px; border-top: 1px solid rgba(255,255,255,.06); background: radial-gradient(circle at 80% 50%, rgba(67,135,106,.13), transparent 32rem); }
.radio-promo { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 64px; align-items: center; overflow: hidden; padding: 54px; border: 1px solid rgba(182,240,213,.24); border-radius: 34px; background: linear-gradient(135deg, #192821, #101714); box-shadow: var(--shadow); }
.radio-promo-copy h2 { margin: 0; font-size: clamp(3.2rem, 6vw, 6rem); line-height: .92; letter-spacing: -.06em; font-weight: 500; }
.radio-promo-copy h2 em { color: var(--green-bright); font-weight: 500; }
.radio-promo-copy > p:not(.eyebrow) { max-width: 590px; margin: 24px 0 0; color: var(--ink); font-size: 1.03rem; line-height: 1.78; }
.radio-promo-copy .button { margin-top: 29px; }
.radio-promo-mark { position: relative; display: grid; justify-items: center; align-content: center; min-height: 360px; overflow: hidden; border: 1px solid rgba(182,240,213,.2); border-radius: 27px; background: radial-gradient(circle at center, rgba(119,201,166,.16), transparent 56%), rgba(5,10,8,.38); text-align: center; }
.radio-promo-mark::before, .radio-promo-mark::after { content: ""; position: absolute; width: 1px; height: 130%; background: linear-gradient(transparent, rgba(182,240,213,.24), transparent); transform: rotate(24deg); }
.radio-promo-mark::before { left: 30%; }
.radio-promo-mark::after { right: 30%; }
.radio-signal { display: inline-flex; align-items: center; gap: 9px; z-index: 1; padding: 9px 13px; border: 1px solid rgba(182,240,213,.3); border-radius: 999px; color: var(--green-bright); font-size: .68rem; font-style: normal; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.radio-signal i { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 6px rgba(182,240,213,.09), 0 0 19px rgba(182,240,213,.65); }
.radio-promo-mark strong { z-index: 1; margin-top: 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(6rem, 12vw, 10rem); font-weight: 500; line-height: .68; letter-spacing: -.08em; }
.radio-promo-mark em { z-index: 1; color: var(--green-bright); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; line-height: 1; }
.radio-promo-mark p { z-index: 1; margin: 20px 0 0; color: var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.about { border-top: 1px solid rgba(255,255,255,.06); }
.about-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 65px; align-items: start; }
.about-panel { padding: 32px; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(145deg, rgba(119,201,166,.07), rgba(255,255,255,.025)); }
.about-panel > p { margin: 0; color: var(--muted); font-size: 1.07rem; line-height: 1.86; }
.about-panel strong { color: var(--ink); }
.about-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.about-details div { padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.about-details span, .about-details b { display: block; }
.about-details span { margin-bottom: 7px; color: var(--green); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.about-details b { color: var(--ink); font-size: .78rem; line-height: 1.45; }

.storm { padding-top: 70px; }
.storm-panel { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; padding: 45px; border: 1px solid rgba(182,240,213,.22); border-radius: 30px; background: linear-gradient(135deg, #17241f, #111916); box-shadow: var(--shadow); }
.storm-panel > div > p:last-child { max-width: 520px; color: var(--muted); line-height: 1.7; }
.storm form { align-self: center; }
.storm form > label:first-child { display: block; margin-bottom: 8px; color: #dfe9e5; font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.form-row input { min-width: 0; height: 52px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: #0a110e; color: white; }
.form-row input::placeholder { color: #75847e; }
.form-row button { min-height: 52px; padding: 0 20px; border: 0; border-radius: 999px; background: var(--green-bright); color: #07100c; font-weight: 900; cursor: pointer; }
.honeypot { position: absolute !important; left: -9999px !important; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 15px; color: var(--ink); font-size: .82rem; line-height: 1.45; }
.consent input { width: 17px; height: 17px; margin-top: 1px; accent-color: var(--green); }
.storm form small { display: block; margin-top: 11px; color: var(--ink); }

footer { margin-top: 104px; padding: 45px 0 54px; border-top: 1px solid rgba(255,255,255,.08); color: var(--ink); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-grid .wordmark { color: #dfe9e5; font-size: 1.2rem; }
.footer-grid p { font-size: .8rem; }
.social-links { display: flex; gap: 18px; font-size: .8rem; font-weight: 800; }
.social-links a:hover { color: var(--green-bright); }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav-links { position: absolute; inset: 78px 0 auto; display: none; flex-direction: column; gap: 0; padding: 10px 20px 20px; border-bottom: 1px solid var(--line); background: rgba(8,12,11,.98); }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; padding: 14px; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid, .latest-card, .radio-promo, .about-grid, .storm-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 54px; }
  .hero-copy { text-align: center; }
  .hero .eyebrow, .button-row { justify-content: center; }
  .hero-statement, .hero-intro { margin-inline: auto; }
  .hero-art { width: min(680px, 100%); margin: 0 auto; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 16px; }
  .latest-card { gap: 37px; }
  .radio-promo { gap: 40px; }
  .music-grid { grid-template-columns: 1fr; }
  .about-details { grid-template-columns: 1fr; }
  .storm-panel { gap: 35px; }
  .footer-grid { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 26px, 1180px); }
  .nav-bar { min-height: 70px; }
  .nav-links { top: 70px; }
  .hero { padding: 112px 0 65px; }
  h1 { font-size: clamp(4rem, 22vw, 6rem); }
  .hero-image-frame { border-radius: 20px; }
  .section { padding: 78px 0; }
  .section-heading h2, .about h2, .storm h2 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .latest-card { padding: 15px; border-radius: 24px; }
  .latest-content { padding: 7px 8px 12px; }
  .latest-socials a { flex: 1 1 120px; }
  .radio-promo { padding: 26px 20px; border-radius: 25px; }
  .radio-promo-mark { min-height: 310px; border-radius: 21px; }
  .track-card { min-height: 420px; }
  .track-content { inset: auto 20px 21px; }
  .storm-panel { padding: 27px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-row button { width: 100%; }
}

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