:root {
  --bg:#07111f;
  --bg2:#0b1730;
  --panel:rgba(255,255,255,.08);
  --panel-2:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.13);
  --text:#eff6ff;
  --muted:#b6c4dc;
  --accent:#67e4ff;
  --accent2:#9078ff;
  --accent3:#ff7ac3;
  --ok:#94f5b6;
  --radius:28px;
  --shadow:0 24px 70px rgba(0,0,0,.35);
}

* { box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(103,228,255,.16), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(144,120,255,.16), transparent 24%),
    radial-gradient(circle at 50% 110%, rgba(255,122,195,.10), transparent 30%),
    linear-gradient(180deg,#09111f 0%,#08101d 40%,#050b15 100%);
  min-height:100vh;
  overflow-x:hidden;
}

body::before,
body::after {
  content:"";
  position:fixed;
  width:30rem;
  height:30rem;
  border-radius:50%;
  filter:blur(90px);
  opacity:.22;
  pointer-events:none;
  z-index:0;
}

body::before { left:-10rem; top:-8rem; background:var(--accent); }
body::after { right:-10rem; bottom:-8rem; background:var(--accent2); }

.noise {
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.05;
  z-index:0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.4) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.3) 0 1px, transparent 1px);
  background-size:20px 20px, 24px 24px;
}

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

.wrap {
  position:relative;
  z-index:1;
  width:100%;
  padding:0 24px;
}

.nav {
  position:sticky;
  top:16px;
  z-index:50;
  margin:16px auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:12px 14px;
  border-radius:999px;
  backdrop-filter:blur(18px);
  background:rgba(7,16,31,.62);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.brand {
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.18em;
  font-size:.92rem;
}

.brand-badge {
  width:40px;
  height:40px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:#06111c;
  font-weight:900;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 10px 30px rgba(103,228,255,.25);
}

.nav-links { display:flex; flex-wrap:wrap; gap:8px; }
.nav-links a { color:var(--muted); padding:10px 14px; border-radius:999px; transition:.25s ease; }
.nav-links a:hover { color:var(--text); background:rgba(255,255,255,.08); }

.hero {
  padding:78px 0 54px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
  align-items:stretch;
}

.panel {
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px);
}

.hero-copy { padding:36px; position:relative; overflow:hidden; }
.hero-copy::after {
  content:"";
  position:absolute;
  right:-15%;
  bottom:-20%;
  width:22rem;
  height:22rem;
  border-radius:50%;
  background:radial-gradient(circle, rgba(103,228,255,.20), transparent 60%);
}

.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
  font-size:.88rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  background:rgba(255,255,255,.07);
  border:1px solid var(--line);
}

.dot { width:8px; height:8px; border-radius:50%; background:var(--ok); box-shadow:0 0 16px var(--ok); }
h1 { margin:0; font-size:clamp(3rem, 7vw, 6rem); line-height:.93; letter-spacing:-.055em; }
.lead { margin:20px 0 0; max-width:60ch; color:var(--muted); font-size:1.08rem; line-height:1.8; }
.actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.btn { display:inline-flex; align-items:center; justify-content:center; padding:14px 18px; border-radius:16px; font-weight:800; transition:.25s ease; border:1px solid var(--line); }
.btn.primary { color:#07111f; background:linear-gradient(135deg,var(--accent),#b6f2ff); }
.btn.secondary { background:rgba(255,255,255,.06); }
.btn:hover { transform:translateY(-2px); }

.hero-visual { padding:18px; display:grid; grid-template-rows:1fr auto; gap:16px; }
.hero-shot { min-height:420px; border-radius:24px; overflow:hidden; position:relative; border:1px solid rgba(255,255,255,.14); }
.hero-shot img { width:100%; height:100%; object-fit:contain; background:rgba(7,16,31,.32); }
.hero-slides { position:relative; width:100%; height:100%; }
.hero-slide {
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .45s ease;
}
.hero-slide.is-active { opacity:1; }
.hero-control {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:rgba(7,16,31,.55);
  color:#fff;
  font-size:1.5rem;
  line-height:1;
  cursor:pointer;
  backdrop-filter:blur(12px);
}
.hero-control.prev { left:14px; }
.hero-control.next { right:14px; }
.hero-dots {
  position:absolute;
  left:50%;
  bottom:14px;
  z-index:2;
  display:flex;
  gap:7px;
  transform:translateX(-50%);
}
.hero-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(255,255,255,.36);
}
.hero-dot.is-active { background:#fff; }
.hero-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.stat { padding:18px; border-radius:20px; background:var(--panel-2); border:1px solid var(--line); }
.stat strong { display:block; font-size:1.4rem; margin-bottom:6px; }
.stat span { color:var(--muted); font-size:.95rem; line-height:1.4; }

section { padding:26px 0; }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:18px; margin-bottom:18px; }
.section-head h2 { margin:0; font-size:clamp(1.7rem, 4vw, 2.7rem); letter-spacing:-.03em; }
.section-head p { margin:0; color:var(--muted); max-width:60ch; line-height:1.7; }

.timeline-shell {
  padding:32px 30px;
  overflow:hidden;
}

.timeline {
  position:relative;
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(120px, 160px);
  gap:20px;
  align-items:start;
  padding:8px 0 28px;
  overflow-x:auto;
  scrollbar-width:thin;
}

.timeline::before {
  content:"";
  position:absolute;
  left:4%;
  right:4%;
  top:19px;
  border-top:3px dotted rgba(255,255,255,.35);
}

.timeline-point {
  position:relative;
  z-index:1;
  display:grid;
  justify-items:center;
  gap:14px;
  padding:0;
  border:0;
  background:transparent;
  color:var(--text);
  cursor:pointer;
}

.timeline-dot {
  width:22px;
  height:22px;
  border-radius:50%;
  border:3px solid rgba(255,255,255,.7);
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:0 0 0 8px rgba(103,228,255,.08);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.timeline-point .year {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:72px;
  padding:9px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  font-size:1.22rem;
  font-weight:900;
  line-height:1;
  color:var(--accent);
  transform:rotate(-9deg);
  transition:transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.timeline-point:hover .timeline-dot,
.timeline-point:focus-visible .timeline-dot,
.timeline-point.is-active .timeline-dot {
  transform:scale(1.16);
  border-color:#fff;
  box-shadow:0 0 0 12px rgba(103,228,255,.16);
}

.timeline-point:hover .year,
.timeline-point:focus-visible .year,
.timeline-point.is-active .year {
  background:linear-gradient(135deg, rgba(255,122,195,.22), rgba(103,228,255,.22));
  border-color:rgba(255,255,255,.36);
  color:#fff7b8;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
  transform:rotate(-9deg) translateY(-4px) scale(1.18);
}

.timeline-point:focus-visible {
  outline:0;
}

.timeline-detail {
  margin-top:8px;
  padding:24px;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.07);
}

.timeline-detail-year {
  display:inline-flex;
  margin-bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--accent);
  font-size:.88rem;
  font-weight:800;
  letter-spacing:.08em;
}

.timeline-detail h3 {
  margin:0 0 10px;
  font-size:1.45rem;
}

.timeline-detail-body {
  color:var(--muted);
  line-height:1.8;
}

.timeline-detail-body ul {
  margin:14px 0 0;
  padding-left:20px;
}

.timeline-detail-body li + li {
  margin-top:6px;
}

.albums { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px; }
.album { overflow:hidden; }
.album-cover { aspect-ratio:1/1; overflow:hidden; border-bottom:1px solid var(--line); position:relative; display:block; }
.album-cover img { width:100%; height:100%; object-fit:cover; }
.album-body { padding:20px; }
.chip { display:inline-flex; padding:8px 12px; border-radius:999px; background:rgba(255,255,255,.07); border:1px solid var(--line); color:var(--muted); font-size:.84rem; margin-bottom:12px; }
.album h3 { margin:0 0 10px; font-size:1.35rem; }
.album p { margin:0; color:var(--muted); line-height:1.75; }

.gallery-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:14px; }
.photo { position:relative; overflow:hidden; border-radius:24px; border:1px solid var(--line); background:var(--panel); min-height:220px; box-shadow:var(--shadow); }
.photo img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.photo:hover img { transform:scale(1.04); }
.span-4 { grid-column:span 4; }
.span-5 { grid-column:span 5; }
.span-6 { grid-column:span 6; }
.span-7 { grid-column:span 7; }
.span-8 { grid-column:span 8; }

.links-grid { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.link-card {
  min-width:190px;
  padding:16px 18px;
  border-radius:18px;
  background:var(--panel);
  border:1px solid var(--line);
  transition:.25s ease;
  display:flex;
  align-items:center;
  gap:14px;
}
.link-card:hover { transform:translateY(-3px); background:rgba(255,255,255,.11); }
.link-icon {
  flex:0 0 auto;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  color:#fff;
}
.link-icon svg {
  width:20px;
  height:20px;
}
.link-icon.youtube { background:#ff0033; }
.link-icon.instagram { background:linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); }
.link-icon.facebook { background:#1877f2; }
.link-icon.spotify { background:#1db954; }
.link-icon.apple { background:#111827; }
.link-icon.amazon { background:#ff9900; color:#111827; }
.link-card h3 { margin:0; font-size:1.02rem; }
.link-card p { display:none; }

.footer {
  margin:32px 0 40px;
  padding:24px;
  text-align:center;
  color:var(--muted);
  border:1px solid var(--line);
  border-radius:24px;
  background:rgba(255,255,255,.05);
}

.footer strong { color:var(--text); }

@media (max-width: 980px) {
  .hero,
  .albums,
  .links-grid { gap:12px; }

  .hero-shot { min-height:320px; }
  .hero-stats { grid-template-columns:1fr 1fr 1fr; }
  .timeline-shell { padding:24px 20px; }
  .timeline {
    grid-auto-columns:minmax(120px, 180px);
    padding-bottom:24px;
  }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .span-4,
  .span-5,
  .span-6,
  .span-7,
  .span-8 { grid-column:span 1; }
}

@media (max-width: 640px) {
  .wrap { padding:0 14px; }
  .nav { border-radius:28px; }
  .hero { padding-top:56px; }
  .hero-copy,
  .hero-visual { padding:18px; }
  .hero-stats { grid-template-columns:1fr; }
  .timeline-shell { padding:20px 16px; }
  .timeline {
    gap:18px;
    grid-auto-columns:minmax(110px, 150px);
  }
  .timeline::before {
    left:24px;
    right:24px;
  }
  .timeline-point .year {
    min-width:66px;
    font-size:1.05rem;
  }
  .gallery-grid { grid-template-columns:1fr; }
  .links-grid {
    display:grid;
    grid-template-columns:1fr;
  }
  .link-card { min-width:0; }
}
