:root {
  --bg: #06090f;
  --bg-soft: #0d1424;
  --surface: rgba(11, 18, 34, 0.8);
  --surface-strong: rgba(17, 27, 49, 0.95);
  --line: rgba(129, 156, 197, 0.26);
  --text: #edf3ff;
  --muted: #abc0df;
  --accent: #46d7ff;
  --accent-2: #7ef0c8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 6%, #122748 0%, transparent 34%),
    radial-gradient(circle at 84% 9%, #102b30 0%, transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, #0a1323 55%, #05080e 100%);
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(55px);
  opacity: 0.4;
}

.bg-shape-a {
  width: 380px;
  height: 380px;
  left: -120px;
  top: 30vh;
  background: #1589ff;
}

.bg-shape-b {
  width: 440px;
  height: 440px;
  right: -140px;
  top: -90px;
  background: #00c2a8;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5vw;
  background: rgba(5, 10, 20, 0.65);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--accent);
}

main {
  width: min(1150px, 92vw);
  margin: 6.8rem auto 3rem;
  display: grid;
  gap: 1.2rem;
}

.hero,
.panel {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.hero {
  background:
    linear-gradient(145deg, rgba(70, 215, 255, 0.1), rgba(126, 240, 200, 0.05)),
    var(--surface-strong);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  margin: 0.55rem 0 0.7rem;
  font-size: clamp(2.2rem, 5.7vw, 4.8rem);
  max-width: 18ch;
}

h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.5rem, 3.8vw, 2rem);
}

.hero-text {
  max-width: 64ch;
  color: var(--muted);
}

.hero-quickfacts {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-quickfacts span {
  border: 1px solid rgba(126, 240, 200, 0.35);
  color: var(--accent-2);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(126, 240, 200, 0.06);
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

article {
  border: 1px solid rgba(166, 195, 235, 0.18);
  border-radius: 1rem;
  background: rgba(14, 21, 39, 0.75);
  padding: 1rem;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

.section-intro {
  color: var(--muted);
  margin-top: 0;
}

.timeline {
  display: grid;
  gap: 0.8rem;
}

.year {
  margin: 0;
  color: var(--accent);
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid rgba(177, 206, 242, 0.24);
  min-height: 190px;
}

.gallery-grid img:nth-child(1) { grid-column: span 3; }
.gallery-grid img:nth-child(2) { grid-column: span 5; }
.gallery-grid img:nth-child(3) { grid-column: span 4; }
.gallery-grid img:nth-child(4) { grid-column: span 4; }
.gallery-grid img:nth-child(5) { grid-column: span 3; }
.gallery-grid img:nth-child(6) { grid-column: span 5; }

.video-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-grid video {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(177, 206, 242, 0.24);
  background: #000;
}

.press-list {
  display: grid;
  gap: 0.7rem;
}

.press-list a {
  display: grid;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(126, 240, 200, 0.28);
  background: linear-gradient(120deg, rgba(70, 215, 255, 0.07), rgba(126, 240, 200, 0.03));
  border-radius: 0.9rem;
  padding: 0.9rem;
}

.press-list a:hover {
  border-color: var(--accent-2);
}

.press-source {
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-links a {
  text-decoration: none;
  color: #08121c;
  background: var(--accent);
  font-weight: 800;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.qr-link {
  display: inline-block;
  margin-top: 1rem;
}

.qr-label {
  margin: 0.35rem 0 0;
  font-weight: 700;
  color: var(--accent-2);
}

.qr-link img {
  width: min(220px, 62vw);
  height: auto;
  border-radius: 0.9rem;
  border: 1px solid rgba(177, 206, 242, 0.35);
  background: #fff;
  padding: 0.45rem;
}

.qr-note {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

footer {
  text-align: center;
  color: var(--muted);
  padding: 0 1rem 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid img {
    grid-column: span 1 !important;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 0.75rem 4vw;
  }

  nav {
    gap: 0.6rem;
  }

  nav a {
    font-size: 0.86rem;
  }

  main {
    margin-top: 7.7rem;
  }
}
