:root {
  --bg: #070708;
  --bg-soft: #0e0e11;
  --text: #f3efe7;
  --muted: #a7a29a;
  --orange: #ff6500;
  --orange-light: #ff9a3c;
  --line: rgba(255,255,255,.11);
  --max: 1220px;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 20%, rgba(50,93,160,.12), transparent 28rem),
    radial-gradient(circle at 12% 55%, rgba(255,75,0,.09), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .03;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem clamp(1.25rem, 4vw, 4rem);
  background: linear-gradient(to bottom, rgba(0,0,0,.82), transparent);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: .16em;
}

.brand-ai { color: var(--orange); }

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.4rem);
}

.nav a {
  color: #ddd7ce;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: url("assets/aistnr-banner.webp") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.52), rgba(0,0,0,.78)),
    linear-gradient(to top, var(--bg) 0%, rgba(0,0,0,.18) 28%, transparent 52%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at center, transparent 0, rgba(0,0,0,.08) 35%, rgba(0,0,0,.44) 100%);
}

.hero-content {
  width: min(1000px, calc(100% - 2.5rem));
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
}

.hero-panel {
  width: min(680px, 100%);
  margin-inline: auto;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(0,0,0,.48), rgba(0,0,0,.62));
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange-light);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 5.4rem);
  line-height: .92;
  letter-spacing: -.05em;
  font-weight: 950;
  text-shadow: 0 6px 50px rgba(0,0,0,.55);
}

.accent {
  color: var(--orange);
  text-shadow: 0 0 38px rgba(255,101,0,.3);
}

.hero-copy {
  margin: 1rem auto 0;
  color: #f2ede5;
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  letter-spacing: .03em;
}

.hero-subcopy {
  margin: .55rem auto 0;
  max-width: 34rem;
  color: #d6d0c8;
  font-size: clamp(1rem, 1.9vw, 1.22rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  padding: .95rem 1.35rem;
  border: 1px solid var(--line);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: .25s ease;
}

.btn-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #111;
}

.btn-secondary {
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}

.claim {
  margin-top: 1.35rem;
  color: #bdb7af;
  font-size: .82rem;
  letter-spacing: .08em;
}

.scroll-mark {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  width: 1px;
  height: 58px;
  background: rgba(255,255,255,.17);
}

.scroll-mark span {
  display: block;
  width: 1px;
  height: 22px;
  background: var(--orange);
  animation: scrollpulse 1.8s ease-in-out infinite;
}

@keyframes scrollpulse {
  0% { transform: translateY(0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(36px); opacity: 0; }
}

.section {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section h2,
.manifesto strong {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.section-heading > p:last-child,
.about-copy > p,
.connect-copy { color: var(--muted); }

.releases { border-bottom: 1px solid var(--line); }

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.release-card {
  min-height: 210px;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  background: var(--bg-soft);
  transition: background .25s ease;
}

.release-card:hover {
  background: #16161a;
}

.release-card:hover h3 {
  color: var(--orange-light);
}

.release-card .number {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.release-card h3 {
  margin: 2.6rem 0 .3rem;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -.03em;
}

.release-card p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

.spotify-embed {
  margin-top: 2.6rem;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
}

.spotify-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}

.platforms,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2.6rem;
}

.platforms a,
.socials a {
  position: relative;
  padding-bottom: .3rem;
  color: #d8d2c9;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.platforms a::after,
.socials a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--orange);
  transition: right .25s ease;
}

.platforms a:hover::after,
.socials a:hover::after { right: 0; }

.about {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.about-art { position: relative; }

.about-art::before {
  content: "";
  position: absolute;
  inset: -1px;
  transform: translate(18px, 18px);
  border: 1px solid rgba(255,101,0,.45);
  z-index: -1;
}

.about-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-copy p { max-width: 650px; }

.genres {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 2rem;
}

.genres span {
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  color: #cfc9c0;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.manifesto {
  min-height: 58vh;
  display: grid;
  place-items: center;
  padding: 5rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.72)),
    url("assets/aistnr-banner.webp") center 74% / cover no-repeat;
  border-block: 1px solid var(--line);
}

.manifesto div {
  display: grid;
  gap: .7rem;
}

.manifesto span {
  color: #ddd6cd;
  font-size: clamp(.7rem, 1.6vw, 1rem);
  font-weight: 800;
  letter-spacing: .45em;
}

.manifesto strong { color: var(--orange-light); }

.connect {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.connect h2 { max-width: 900px; }
.connect-copy { margin: 1.2rem 0 0; }

footer {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.4rem 0 3.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
  color: #817d77;
  font-size: .75rem;
}

.footer-brand { font-size: 1rem; }
.copyright { text-align: right; }

@media (max-width: 820px) {
  .site-header { padding: 1rem 1.25rem; }
  .nav { gap: .9rem; }
  .nav a { font-size: .64rem; }
  .hero-content {
    width: min(100%, calc(100% - 1.4rem));
    padding-top: 4.6rem;
  }
  .hero-panel { padding: 1.15rem; }
  .release-grid, .about { grid-template-columns: 1fr; }
  .release-card { min-height: 170px; }
  .about-art { max-width: 620px; }
  footer { grid-template-columns: 1fr; gap: .65rem; }
  .copyright { text-align: left; }
}

@media (max-width: 540px) {
  .nav a:nth-child(2) { display: none; }
  .hero-panel { padding: 1rem; }
  .hero h1 { font-size: clamp(3rem, 18vw, 4.5rem); }
  .hero-copy, .hero-subcopy { font-size: .98rem; }
  .section { width: min(100% - 1.6rem, var(--max)); }
  .release-card {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }
  .release-card h3 { margin-top: 1.6rem; }
}

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