/* ============================================================
   ASTRA IONO — Feel the Frequency
   Premium cinematic landing page styles
   ============================================================ */

:root {
  /* Palette */
  --navy-900: #050816;
  --navy-800: #070b22;
  --navy-700: #0a1233;
  --navy-600: #0d1b3e;
  --ink: #03040d;

  --cyan: #3fd6ff;
  --cyan-bright: #9af0ff;
  --blue: #2a7bff;
  --purple: #7b5cff;
  --pink: #ff2d9b;
  --pink-soft: #ff5bc0;
  --gold: #ffb86b;

  --white: #eafaff;
  --text: #c6d4ec;
  --muted: #8b9bc4;

  --glass: rgba(18, 28, 60, 0.45);
  --glass-line: rgba(120, 170, 255, 0.16);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: rgba(63, 214, 255, 0.3); color: var(--white); }

/* ---------- Cinematic intro veil ---------- */
.intro-veil {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(circle at 50% 45%, #0a1640, var(--navy-900) 70%);
  display: grid; place-items: center;
  transition: opacity 1s var(--ease), visibility 1s;
}
.intro-veil.is-gone { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-core {
  position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 30px 8px rgba(63,214,255,0.8);
  animation: introPulse 2.2s var(--ease) forwards;
}
.intro-word {
  font-family: var(--font-head); font-weight: 700;
  letter-spacing: 0.5em; font-size: clamp(0.9rem, 3vw, 1.6rem);
  color: var(--white); text-indent: 0.5em;
  opacity: 0; transform: translateY(12px);
  animation: introWord 2.2s var(--ease) 0.5s forwards;
  text-shadow: 0 0 24px rgba(63,214,255,0.7);
}
@keyframes introPulse {
  0% { transform: scale(0.4); opacity: 0; }
  35% { transform: scale(1); opacity: 1; }
  100% { transform: scale(36); opacity: 0; }
}
@keyframes introWord {
  0%, 25% { opacity: 0; transform: translateY(12px); }
  55% { opacity: 1; transform: translateY(0); }
  85% { opacity: 1; }
  100% { opacity: 0; }
}

/* ---------- Ambient background ---------- */
.bg-field { position: fixed; inset: 0; z-index: -2; overflow: hidden; }
#particleCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.bg-aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(40% 35% at 18% 22%, rgba(43,123,255,0.20), transparent 60%),
    radial-gradient(45% 40% at 82% 30%, rgba(123,92,255,0.18), transparent 60%),
    radial-gradient(50% 45% at 60% 88%, rgba(255,45,155,0.12), transparent 60%),
    radial-gradient(35% 30% at 30% 80%, rgba(255,184,107,0.10), transparent 60%);
  filter: blur(20px);
  animation: auroraDrift 26s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(3%, 2%, 0) scale(1.08); }
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(120,170,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,170,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black, transparent 75%);
}
.bg-fog {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5,8,22,0.0) 40%, rgba(5,8,22,0.6) 100%);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}
.nav.is-scrolled {
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-line);
  padding-top: 12px; padding-bottom: 12px;
}
.nav__brand img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.nav__links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  letter-spacing: 0.04em; position: relative; transition: color .25s;
}
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--cyan); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(63,214,255,0.4);
  color: var(--cyan-bright) !important;
  background: rgba(63,214,255,0.06);
  transition: background .25s, box-shadow .25s, transform .25s;
}
.nav__cta:hover { background: rgba(63,214,255,0.16); box-shadow: 0 0 22px rgba(63,214,255,0.35); transform: translateY(-1px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--cyan);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em; padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent; position: relative;
  transition: transform .25s var(--ease), box-shadow .3s, background .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }

.btn--primary {
  color: #04101f;
  background: linear-gradient(135deg, var(--cyan-bright), var(--cyan) 55%, var(--blue));
  box-shadow: 0 8px 30px -8px rgba(63,214,255,0.6), inset 0 0 0 1px rgba(255,255,255,0.2);
}
.btn--primary:hover { box-shadow: 0 12px 40px -8px rgba(63,214,255,0.85); }

.btn--spotify {
  color: var(--white); background: rgba(30, 215, 96, 0.12);
  border-color: rgba(30, 215, 96, 0.5);
}
.btn--spotify svg { fill: #1ed760; }
.btn--spotify:hover { background: rgba(30, 215, 96, 0.22); box-shadow: 0 10px 34px -10px rgba(30,215,96,0.6); }

.btn--ghost {
  color: var(--white); background: rgba(255,255,255,0.04);
  border-color: rgba(150, 190, 255, 0.28);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(150,190,255,0.5); }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: grid; place-items: center; text-align: center;
  padding: 120px 20px 80px;
}
.hero__halo {
  position: absolute; top: 38%; left: 50%; transform: translate(-50%, -50%);
  width: min(90vw, 900px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,214,255,0.16), rgba(123,92,255,0.08) 40%, transparent 70%);
  filter: blur(10px); z-index: -1;
  animation: haloBreath 7s ease-in-out infinite alternate;
}
@keyframes haloBreath { 0% { transform: translate(-50%,-50%) scale(0.95); opacity:.8;} 100% { transform: translate(-50%,-50%) scale(1.08); opacity:1; } }

.hero__inner { max-width: 880px; }
.hero__eyebrow {
  font-size: 0.85rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 26px; font-weight: 500;
}
.hero__logo img {
  width: min(82vw, 560px); margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(63,214,255,0.35));
  animation: logoFloat 8s ease-in-out infinite alternate;
}
@keyframes logoFloat { 0% { transform: translateY(-6px); } 100% { transform: translateY(8px); } }

.hero__tagline {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 26px;
  margin: 18px 0 38px; font-family: var(--font-head);
  font-size: clamp(0.95rem, 2.4vw, 1.3rem); letter-spacing: 0.12em;
  color: var(--white); text-transform: uppercase;
}
.hero__tagline span { position: relative; }
.hero__tagline span:not(:last-child)::after {
  content: '·'; position: absolute; right: -16px; color: var(--cyan); opacity: .7;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll-dot {
  width: 22px; height: 38px; border: 1px solid rgba(150,190,255,0.4); border-radius: 14px;
  position: relative;
}
.hero__scroll-dot::after {
  content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 7px; border-radius: 4px; background: var(--cyan);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 7px; } 30% { opacity: 1; } 60% { opacity: 1; top: 20px; } 100% { opacity: 0; top: 22px; } }

/* ---------- Section scaffolding ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 12vh, 150px) clamp(20px, 5vw, 40px); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vh, 70px); }
.kicker {
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px; font-weight: 600;
}
.section__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 3.3rem); line-height: 1.08; color: var(--white);
  letter-spacing: -0.01em;
}
.section__sub { margin-top: 16px; font-size: clamp(1rem, 2vw, 1.15rem); color: var(--muted); }
.section__action { text-align: center; margin-top: 48px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Songs (Feel the Frequency) ---------- */
.songs { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 26px; }
.song-card {
  position: relative; padding: 28px; border-radius: 22px;
  background: linear-gradient(160deg, rgba(20,32,68,0.6), rgba(8,12,32,0.5));
  border: 1px solid var(--glass-line); backdrop-filter: blur(10px);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.song-card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, rgba(63,214,255,0.14), transparent 60%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.song-card:hover { transform: translateY(-8px); border-color: rgba(63,214,255,0.4); box-shadow: 0 26px 60px -24px rgba(63,214,255,0.4); }
.song-card:hover::before { opacity: 1; }

.song-card__wave { display: flex; align-items: flex-end; gap: 4px; height: 42px; margin-bottom: 22px; }
.song-card__wave span {
  flex: 1; background: linear-gradient(180deg, var(--cyan-bright), var(--blue));
  border-radius: 3px; height: 30%; opacity: .55; transform-origin: bottom;
}
.song-card:hover .song-card__wave span { animation: wave 1.1s ease-in-out infinite; opacity: 1; }
.song-card__wave span:nth-child(2n) { animation-delay: .15s; }
.song-card__wave span:nth-child(3n) { animation-delay: .3s; }
.song-card__wave span:nth-child(4n) { animation-delay: .45s; }
.song-card__wave span:nth-child(5n) { animation-delay: .6s; }
@keyframes wave { 0%,100% { height: 22%; } 50% { height: 95%; } }

.song-card__genre { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.song-card__title { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }
.song-card__desc { font-size: 0.95rem; color: var(--muted); margin-bottom: 18px; }
.song-card__body, .song-card__wave, .song-card__link { position: relative; z-index: 1; }
.song-card__embed:empty { display: none; }
.song-card__embed { position: relative; z-index: 1; margin-bottom: 18px; border-radius: 14px; overflow: hidden; }
.song-card__embed iframe { display: block; width: 100%; border: 0; border-radius: 14px; }
.song-card__link { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--cyan-bright); transition: gap .25s, color .25s; }
.song-card__link:hover { color: var(--white); }

/* ---------- Watch the Vision ---------- */
.feature-video { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--glass-line); margin-bottom: 30px; }
.feature-video__frame {
  position: relative; aspect-ratio: 16 / 8.2; display: flex; align-items: flex-end;
  background:
    radial-gradient(80% 120% at 70% 20%, rgba(123,92,255,0.35), transparent 60%),
    radial-gradient(70% 100% at 20% 80%, rgba(255,45,155,0.3), transparent 60%),
    linear-gradient(135deg, #0a1640, #060a1e);
  cursor: pointer;
}
.feature-video__frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3,4,13,0.85));
}
.feature-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 6; }
.feature-video.is-playing .feature-video__play,
.feature-video.is-playing .feature-video__meta { display: none; }
.feature-video.is-playing .feature-video__frame::after { opacity: 0; }
.feature-video__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; border-radius: 50%; border: 0; cursor: pointer; z-index: 4;
  background: rgba(63,214,255,0.16); backdrop-filter: blur(6px);
  box-shadow: 0 0 0 1px rgba(63,214,255,0.5), 0 0 40px rgba(63,214,255,0.5);
  display: grid; place-items: center; transition: transform .3s, box-shadow .3s;
}
.feature-video__play svg { width: 34px; height: 34px; fill: var(--white); margin-left: 4px; }
.feature-video__play::before {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 1px solid rgba(63,214,255,0.4); animation: ping 2.4s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.feature-video__frame:hover .feature-video__play { transform: translate(-50%,-50%) scale(1.08); box-shadow: 0 0 0 1px rgba(63,214,255,0.8), 0 0 60px rgba(63,214,255,0.7); }
.feature-video__meta { position: relative; z-index: 4; padding: 28px clamp(20px, 4vw, 40px); }
.feature-video__tag { font-size: 0.74rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); }
.feature-video__title { font-family: var(--font-head); font-size: clamp(1.2rem, 3vw, 1.9rem); color: var(--white); margin-top: 6px; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.video-tile {
  position: relative; aspect-ratio: 16/10; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--glass-line); display: flex; align-items: flex-end; padding: 18px;
  background: linear-gradient(135deg, #0c1740, #070b22);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.video-tile::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 70% 10%, rgba(123,92,255,0.4), transparent 60%);
  transition: transform .6s var(--ease);
}
.video-tile:hover { transform: translateY(-6px); border-color: rgba(123,92,255,0.5); box-shadow: 0 24px 50px -22px rgba(123,92,255,0.6); }
.video-tile:hover::before { transform: scale(1.15); }
.video-tile__play {
  position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(8,12,32,0.5); border: 1px solid rgba(63,214,255,0.4);
  display: grid; place-items: center; backdrop-filter: blur(6px);
}
.video-tile__play svg { width: 18px; height: 18px; fill: var(--white); margin-left: 2px; }
.video-tile__title { position: relative; z-index: 2; font-family: var(--font-head); font-weight: 600; color: var(--white); font-size: 1.05rem; }
.video-tile iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 5; border-radius: inherit; }
.video-tile.is-playing { transform: none; }
.video-tile.is-playing::before { opacity: 0; }
.video-tile.is-playing .video-tile__play, .video-tile.is-playing .video-tile__title { display: none; }
/* thumbnail-backed tiles: darken slightly for title legibility */
.video-tile[style*="background-image"]::before { background: linear-gradient(180deg, rgba(3,4,13,0.1), rgba(3,4,13,0.75)); }
.feature-video__frame[style*="background-image"] { background-size: cover; background-position: center; }

/* "Soon" placeholder tiles */
.video-tile--soon { cursor: default; }
.video-tile--soon:hover { transform: none; border-color: var(--glass-line); box-shadow: none; }
.video-tile--soon:hover::before { transform: none; }
.video-tile__soon {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--font-head); font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan-bright);
  padding: 5px 13px; border-radius: 999px;
  border: 1px solid rgba(63,214,255,0.4); background: rgba(63,214,255,0.08);
}
.video-tile--soon .video-tile__title { color: var(--muted); }

/* ---------- Story ---------- */
.story__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.story__lead { font-size: 1.15rem; color: var(--text); margin-top: 26px; }
.story__lead strong { color: var(--white); }
.story__body { margin-top: 18px; color: var(--muted); }

.meaning { display: grid; gap: 18px; }
.meaning__card {
  padding: 24px 26px; border-radius: 18px; border: 1px solid var(--glass-line);
  background: linear-gradient(160deg, rgba(20,32,68,0.5), rgba(8,12,32,0.4));
  display: flex; align-items: center; gap: 22px;
}
.meaning__sym {
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; letter-spacing: 0.12em;
  color: var(--cyan-bright); text-shadow: 0 0 18px rgba(63,214,255,0.6); min-width: 96px;
}
.meaning__card p { font-size: 0.95rem; color: var(--text); }
.meaning__card em { color: var(--cyan); font-style: italic; }
.meaning__fuse {
  padding: 22px 26px; border-radius: 18px; text-align: center; color: var(--text);
  background: linear-gradient(135deg, rgba(63,214,255,0.1), rgba(255,45,155,0.08));
  border: 1px solid rgba(63,214,255,0.22);
}
.meaning__fuse strong { color: var(--white); }

.balance {
  margin-top: clamp(50px, 8vh, 90px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px);
  padding: clamp(32px, 5vw, 54px); border-radius: 26px;
  background: linear-gradient(135deg, rgba(123,92,255,0.12), rgba(5,8,22,0.4));
  border: 1px solid rgba(123,92,255,0.25); align-items: center;
}
.balance h3 { font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--white); margin: 6px 0 16px; }
.balance__text p { color: var(--text); }
.balance__list { list-style: none; display: grid; gap: 12px; }
.balance__list li {
  position: relative; padding-left: 28px; color: var(--text); font-size: 0.98rem;
}
.balance__list li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
}

/* ---------- Visual Universe (gallery) ---------- */
.universe { max-width: 1320px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 18px; }
.gallery__item {
  position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--glass-line);
  display: flex; align-items: flex-end; padding: 18px; cursor: default;
  transition: box-shadow .5s, border-color .5s;
  transform: translate3d(0, var(--py, 0), 0);
  will-change: transform;
}
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(3,4,13,0.8));
}
.gallery__label {
  position: relative; z-index: 2; font-family: var(--font-head); font-weight: 600;
  color: var(--white); font-size: 1rem; letter-spacing: 0.02em;
  opacity: 0; transform: translateY(10px); transition: opacity .4s, transform .4s;
}
.gallery__item:hover { transform: translate3d(0, var(--py, 0), 0) scale(1.02); border-color: rgba(63,214,255,0.45); box-shadow: 0 24px 60px -26px rgba(63,214,255,0.5); z-index: 3; }
.gallery__item:hover .gallery__label { opacity: 1; transform: none; }

.g1 { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg,#123, #2a7bff 140%), radial-gradient(circle at 30% 30%, rgba(63,214,255,0.5), transparent 60%); background-blend-mode: screen; }
.g2 { grid-column: span 2; background: linear-gradient(135deg,#1a0f3a,#7b5cff); }
.g3 { background: linear-gradient(135deg,#3a1530,var(--gold) 160%); }
.g4 { background: linear-gradient(135deg,#06223a,var(--cyan) 170%); }
.g5 { grid-column: span 2; background: linear-gradient(135deg,#2a0f33,var(--pink) 170%); }
.g6 { grid-column: span 2; background: linear-gradient(135deg,#06121f,#0d1b3e), radial-gradient(circle at 70% 40%, rgba(123,92,255,0.5), transparent 60%); background-blend-mode: screen; }

/* ---------- Releases ---------- */
.releases { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.release {
  border-radius: 22px; overflow: hidden; border: 1px solid var(--glass-line);
  background: linear-gradient(160deg, rgba(20,32,68,0.5), rgba(8,12,32,0.4));
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.release:hover { transform: translateY(-8px); border-color: rgba(63,214,255,0.4); box-shadow: 0 28px 60px -26px rgba(63,214,255,0.5); }
.release__art { position: relative; aspect-ratio: 1; display: flex; align-items: flex-start; padding: 14px; background: #0a1230 center/cover no-repeat; }
.release__art::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 30% 20%, rgba(255,255,255,0.18), transparent 60%);
  mix-blend-mode: overlay;
}
.art-1 { background: linear-gradient(135deg, #0a1f4a, var(--cyan)); }
.art-2 { background: linear-gradient(135deg, #2a0f4a, var(--pink)); }
.art-3 { background: linear-gradient(135deg, #3a2410, var(--gold)); }
.art-4 { background: linear-gradient(135deg, #0a1230, var(--purple)); }
.release__badge {
  position: relative; z-index: 2; font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: #04101f;
  background: var(--cyan-bright); padding: 5px 12px; border-radius: 999px;
}
.release__badge--soon { background: var(--white); }
.release__info { padding: 20px 22px 24px; }
.release__info h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--white); }
.release__mood { font-size: 0.82rem; color: var(--muted); margin: 6px 0 16px; letter-spacing: 0.02em; }
.release__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- The Belief ---------- */
.belief {
  max-width: 900px; margin: 0 auto; text-align: center;
  padding: clamp(80px, 14vh, 160px) clamp(20px, 5vw, 40px);
}
.belief__mantra p {
  font-family: var(--font-head); font-weight: 300;
  font-size: clamp(1.8rem, 6vw, 3.4rem); line-height: 1.25; color: var(--white);
  letter-spacing: 0.01em;
}
.belief__highlight {
  font-weight: 700 !important;
  background: linear-gradient(120deg, var(--cyan-bright), var(--pink-soft));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(63,214,255,0.3);
}
.belief__line { margin-top: 30px; font-size: 1.1rem; color: var(--muted); }

/* ---------- Final CTA ---------- */
.connect {
  position: relative; text-align: center; overflow: hidden;
  padding: clamp(90px, 16vh, 180px) clamp(20px, 5vw, 40px);
}
.connect__core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(120vw, 1000px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,214,255,0.18), rgba(123,92,255,0.1) 35%, transparent 65%);
  animation: coreExpand 9s ease-in-out infinite alternate;
}
@keyframes coreExpand { 0% { transform: translate(-50%,-50%) scale(0.85); opacity: .7; } 100% { transform: translate(-50%,-50%) scale(1.12); opacity: 1; } }
.connect__inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.connect h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 6vw, 3.6rem); line-height: 1.1; color: var(--white); }
.connect__cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }

/* ---------- Newsletter ---------- */
.signup { max-width: 520px; margin: 46px auto 0; }
.signup__label { display: block; font-size: 0.92rem; color: var(--muted); margin-bottom: 14px; }
.signup__row { display: flex; gap: 10px; flex-wrap: wrap; }
.signup__row input {
  flex: 1; min-width: 200px; padding: 14px 18px; border-radius: 999px;
  background: rgba(8,12,32,0.6); border: 1px solid var(--glass-line); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem; outline: none; transition: border-color .25s, box-shadow .25s;
}
.signup__row input:focus { border-color: rgba(63,214,255,0.6); box-shadow: 0 0 0 3px rgba(63,214,255,0.12); }
.signup__row input::placeholder { color: var(--muted); }
.signup__note { min-height: 1.2em; margin-top: 12px; font-size: 0.86rem; color: var(--cyan-bright); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--glass-line); padding: 48px clamp(20px,5vw,56px) 40px;
  display: grid; gap: 26px; text-align: center; background: rgba(3,4,13,0.5);
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer__brand img { height: 30px; }
.footer__brand p { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); }
.footer__social { display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: center; }
.footer__social a { font-size: 0.9rem; color: var(--text); position: relative; transition: color .25s; }
.footer__social a:hover { color: var(--cyan-bright); }
.footer__copy { font-size: 0.82rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .story__grid { grid-template-columns: 1fr; }
  .balance { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g1, .g2, .g5, .g6 { grid-column: span 2; }
  .g1 { grid-row: span 1; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column;
    background: rgba(5,8,22,0.96); backdrop-filter: blur(16px);
    padding: 90px 30px 40px; gap: 26px; transform: translateY(-110%);
    transition: transform .45s var(--ease); height: 100vh; justify-content: flex-start;
    border-bottom: 1px solid var(--glass-line);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { font-size: 1.2rem; }
  .nav__toggle { display: flex; z-index: 101; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g1, .g2, .g5, .g6 { grid-column: span 1; }
  .hero__tagline span:not(:last-child)::after { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .intro-veil { display: none; }
}
