@import url('https://fonts.googleapis.com/css2?family=Anton&family=Share+Tech+Mono&display=swap');

:root {
  --bg: #030303;
  --white: #f2f2f2;
  --muted: #8b8b8b;
  --red: #b63838;
  --border: rgba(255, 255, 255, 0.22);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Share Tech Mono", monospace;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #030303;
  min-height: 100vh;
  position: relative;
}

/* cinematic overlays */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 30%, white 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, white 0 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: screen;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 101;
  opacity: 0.08;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(255, 255, 255, 0.08) 4px
  );
}

/* HERO */
.hero {
  height: 760px;
  position: relative;
  overflow: hidden;
  background: #050505;
}

.top-bar {
  position: absolute;
  top: 38px;
  left: 42px;
  right: 42px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d6d6d6;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.crosshair {
  font-size: 2.4rem;
  color: #aaa;
  opacity: 0.8;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15), #030303 96%),
    linear-gradient(to right, #030303 0%, rgba(0,0,0,0.4) 38%, transparent 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: contrast(1.15) saturate(0.8) brightness(0.72);
  transform: scale(1.03);
}

.hero-content {
  position: absolute;
  z-index: 4;
  left: 44px;
  bottom: 230px;
}

.file-label {
  color: var(--red);
  letter-spacing: 0.22em;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.hero h1 {
  font-family: "Anton", sans-serif;
  font-size: clamp(4.2rem, 14vw, 7.7rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #e8e8e8;
  text-shadow: 0 0 16px rgba(255,255,255,0.15);
}

.subtitle {
  color: var(--red);
  letter-spacing: 0.35em;
  margin-top: 20px;
  font-size: 1.05rem;
}

.coords {
  position: absolute;
  z-index: 4;
  right: 54px;
  bottom: 85px;
  color: #dadada;
  opacity: 0.8;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0 4px;
  margin-top: -4px;
}

.gallery-card {
  height: 390px;
  overflow: hidden;
  background: #080808;
  position: relative;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, #030303 100%);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) brightness(0.78) saturate(0.85);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
  filter: contrast(1.25) brightness(0.95);
}

/* CTA */
.cta {
  padding: 95px 38px 45px;
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(150,0,0,0.12), transparent 40%),
    #030303;
}

.line-text {
  font-size: clamp(1.1rem, 3.5vw, 1.65rem);
  letter-spacing: 0.34em;
  margin-bottom: 16px;
  color: #efefef;
}

.line-text.red {
  color: var(--red);
}

.buttons {
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.action-btn {
  min-height: 74px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  color: #f5f5f5;
  letter-spacing: 0.28em;
  font-size: clamp(1.3rem, 4vw, 2rem);
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.015);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.action-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(182,56,56,0.2), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.action-btn:hover {
  border-color: rgba(182,56,56,0.8);
  background: rgba(182,56,56,0.08);
  transform: translateY(-2px);
}

.action-btn:hover::before {
  transform: translateX(120%);
}

.btn-icon {
  color: var(--red);
  font-size: 1.25rem;
}

.btn-icon.spotify {
  color: #1db954;
}

.arrow {
  color: var(--red);
  font-size: 2rem;
}

.under-text {
  color: var(--muted);
  letter-spacing: 0.32em;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* FOOTER */
.footer {
  padding: 40px 38px 70px;
  text-align: center;
}

.divider {
  display: grid;
  grid-template-columns: 1fr 55px 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 42px;
}

.divider span {
  height: 1px;
  background: rgba(255,255,255,0.22);
}

.divider img {
  width: 42px;
  margin: 0 auto;
  opacity: 0.85;
}

.artists {
  display: flex;
  justify-content: center;
  gap: 44px;
  color: #f1f1f1;
  font-size: 1.45rem;
  letter-spacing: 0.38em;
}

.recorded {
  margin-top: 24px;
  color: var(--red);
  letter-spacing: 0.4em;
  font-size: 1.05rem;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 38px;
}

.socials a {
  color: #f2f2f2;
  font-size: 1.05rem;
  opacity: 0.85;
  transition: color 0.25s ease, transform 0.25s ease;
}

.socials a:hover {
  color: var(--red);
  transform: translateY(-3px);
}

/* intro animation */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 700px) {
  .site {
    max-width: 100%;
  }

  .hero {
    height: 660px;
  }

  .top-bar {
    top: 24px;
    left: 22px;
    right: 22px;
    font-size: 0.68rem;
  }

  .crosshair {
    font-size: 1.7rem;
  }

  .hero-bg img {
    object-position: 62% center;
  }

  .hero-content {
    left: 26px;
    bottom: 205px;
  }

  .subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.28em;
  }

  .coords {
    right: 24px;
    bottom: 62px;
    font-size: 0.62rem;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }

  .gallery-card {
    height: 250px;
  }

  .cta {
    padding: 75px 22px 35px;
  }

  .line-text {
    letter-spacing: 0.22em;
    font-size: 1rem;
  }

  .action-btn {
    grid-template-columns: 52px 1fr 52px;
    min-height: 67px;
    font-size: 1.25rem;
    letter-spacing: 0.22em;
  }

  .under-text {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
  }

  .footer {
    padding-inline: 22px;
  }

  .artists {
    gap: 24px;
    font-size: 1.05rem;
    letter-spacing: 0.3em;
  }

  .recorded {
    font-size: 0.8rem;
    letter-spacing: 0.32em;
  }
}

@media (max-width: 430px) {
  .hero {
    height: 610px;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .gallery-card {
    height: 205px;
  }

  .action-btn {
    font-size: 1rem;
    letter-spacing: 0.18em;
  }

}

.spotify-split {
  position: relative;
  width: 100%;
  min-height: 74px;
}

.spotify-main {
  min-height: 74px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  color: #f5f5f5;
  letter-spacing: 0.28em;
  font-size: clamp(1.3rem, 4vw, 2rem);
  background: rgba(255,255,255,0.015);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.spotify-options {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.spotify-options a {
  border: 1px solid rgba(182, 56, 56, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  color: #f5f5f5;
  background: rgba(182, 56, 56, 0.12);
  letter-spacing: 0.22em;
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  transition: background 0.25s ease, transform 0.25s ease;
}

.spotify-options a:hover {
  background: rgba(182, 56, 56, 0.26);
  transform: translateY(-2px);
}

.spotify-split:hover .spotify-main {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.spotify-split:hover .spotify-options {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

@media (max-width: 500px) {
  .spotify-options {
    gap: 8px;
  }

  .spotify-options a {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    padding: 0 8px;
  }
}

.instagram-split {
  position: relative;
  width: 100%;
  min-height: 74px;
}

.instagram-main {
  min-height: 74px;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  align-items: center;
  color: #f5f5f5;
  letter-spacing: 0.28em;
  font-size: clamp(1.3rem, 4vw, 2rem);
  background: rgba(255,255,255,0.015);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.instagram-options {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.instagram-options a {
  border: 1px solid rgba(182, 56, 56, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  color: #f5f5f5;
  background: rgba(182, 56, 56, 0.12);
  letter-spacing: 0.16em;
  font-size: clamp(0.72rem, 2vw, 1.05rem);
  transition: background 0.25s ease, transform 0.25s ease;
  text-align: center;
  padding: 0 8px;
}

.instagram-options a:hover {
  background: rgba(182, 56, 56, 0.26);
  transform: translateY(-2px);
}

.instagram-split:hover .instagram-main {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.instagram-split:hover .instagram-options {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.btn-icon.instagram {
  color: var(--red);
}

@media (max-width: 600px) {
  .instagram-options {
    gap: 6px;
  }

  .instagram-options a {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    padding: 0 5px;
  }
}

.header-icon,
.site-icon,
.logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: inline-block;
}

/* Middle Icaros logo between the divider lines */
.icaros-logo,
.divider-logo img,
.logo-divider img {
  width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}

/* The divider area around the middle logo */
.divider-logo,
.logo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 90px auto 55px;
  width: 100%;
  max-width: 820px;
}

/* Left and right lines */
.divider-logo::before,
.divider-logo::after,
.logo-divider::before,
.logo-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}