:root {
  --bg: #0a1729;
  --accent: #4dc9f0;
  --accent2: #ff1494;
  --lime: #38ff14;
  --violet: #9e4dde;
  --text: #fcfcfc;
  --muted: #a6b8c9;
  --card: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.14);
  --dock-h: 4.25rem;
  --max: 68rem;
  font-family: "SF Pro Text", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(ellipse 120% 80% at 20% -10%, #142848 0%, var(--bg) 45%, #050b14 100%);
  line-height: 1.55;
  padding-bottom: calc(var(--dock-h) + 1.5rem);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #051018;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.page-main {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

section {
  margin-bottom: 4rem;
}

.section-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
}

.section-intro p {
  color: var(--muted);
  max-width: 38rem;
  margin: 0;
}

.section-intro--right {
  text-align: right;
  margin-left: auto;
}

.section-intro--right p {
  margin-left: auto;
}

.hero--split-asymmetric {
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: min(70vh, 640px);
}

@media (min-width: 860px) {
  .hero--split-asymmetric {
    grid-template-columns: 1fr 1.15fr;
  }
}

.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  background: linear-gradient(90deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tagline {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 32rem;
}

.hero__visual img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(77, 201, 240, 0.12);
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.timeline {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0 0 0 1.5rem;
  border-left: 2px solid var(--stroke);
  position: relative;
}

.timeline__node {
  position: relative;
  padding: 0 0 2.5rem 1.75rem;
}

.timeline__marker {
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 12px var(--accent2);
}

.timeline__body h3 {
  margin: 0 0 0.35rem;
  color: var(--accent);
}

.timeline__body p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-row img {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--stroke);
  aspect-ratio: 1;
  object-fit: cover;
}

.film-strip {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 1.5rem;
  margin-top: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.film-strip__frame {
  flex: 0 0 min(280px, 78vw);
  scroll-snap-align: start;
  margin: 0;
}

.film-strip__frame img {
  width: 100%;
  border-radius: 1.25rem;
  border: 3px solid #1a2a40;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  display: block;
}

.film-strip__frame figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.accordion__panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion__panel summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  list-style: none;
}

.accordion__panel summary::-webkit-details-marker {
  display: none;
}

.accordion__content {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.accordion__content a {
  color: var(--accent);
}

.dock-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--dock-h);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.25rem;
  padding: 0.35rem 0.75rem calc(0.35rem + env(safe-area-inset-bottom));
  background: rgba(5, 11, 20, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--stroke);
  z-index: 50;
}

.dock-nav a {
  flex: 1;
  max-width: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.72rem;
  text-decoration: none;
  color: var(--muted);
  border-radius: 0.65rem;
  padding: 0.25rem;
}

.dock-nav a:hover,
.dock-nav a:focus-visible {
  color: var(--text);
  background: rgba(77, 201, 240, 0.12);
}
