:root {
  --ink: #1a1a1a;
  --ink-soft: #202020;
  --paper: #f2f2f2;
  --accent: #f2f2f2;
  --accent-deep: #cfcfcf;
  --cool: #2a2a2a;
  --line: rgba(255, 255, 255, 0.15);
  --shadow: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Arial', sans-serif;
  color: var(--paper);
  background: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.page-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-header .brand span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}

.btn.primary:hover {
  background: transparent;
  color: var(--paper);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--paper);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--paper);
}

.landing {
  scroll-behavior: auto;
  scroll-snap-type: y mandatory;
}

.landing .hero,
.landing .cta {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6vw;
  background: #000;
  position: relative;
  overflow: hidden;
}

.ripple-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.logo-wrap {
  text-align: center;
  max-width: 1000px;
  perspective: 1000px;
  position: relative;
  z-index: 1;
}

.logo-wrap img {
  width: min(900px, 92vw);
  margin: 0 auto 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.4))
    drop-shadow(0 0 70px rgba(255, 255, 255, 0.2));
  will-change: transform, opacity;
}

.logo-caption {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 48px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-tagline {
  margin-top: 12px;
  font-size: clamp(14px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.6);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.scroll-hint::after {
  display: none;
}

@keyframes hint {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.cta {
  min-height: 100vh;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta::before {
  display: none;
}

.cta-video,
.snow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cta-video {
  object-fit: cover;
  object-position: center 0%;
  transform: translateY(6%) scale(1.06);
  transform-origin: center top;
  z-index: 0;
  display: block;
}

.snow-canvas {
  z-index: 1;
}

.media-ticker {
  --ticker-gap: 4px;
  --tile-unit: clamp(20px, 4vw, 36px);
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  display: grid;
  gap: var(--ticker-gap);
  padding: 0 6vw;
  z-index: 2;
  user-select: none;
}

.media-ticker.is-empty {
  display: none;
}

.media-ticker.is-paused .ticker-track {
  animation-play-state: paused;
}

.ticker-row {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: flex-end;
  gap: var(--ticker-gap);
  width: max-content;
  animation: ticker var(--duration, 34s) linear infinite;
}

.ticker-row.reverse .ticker-track {
  animation-direction: reverse;
}

.ticker-item {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ticker-item:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.ticker-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ticker-item.size-s {
  width: calc(var(--tile-unit) * 3);
  height: calc(var(--tile-unit) * 2);
}

.ticker-item.size-m {
  width: calc(var(--tile-unit) * 4);
  height: calc(var(--tile-unit) * 3);
}

.ticker-item.size-l {
  width: calc(var(--tile-unit) * 5);
  height: calc(var(--tile-unit) * 4);
}

.ticker-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
  z-index: 999;
}

.ticker-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-media {
  max-width: min(92vw, 900px);
  max-height: 82vh;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: scale(0.96);
  transition: transform 0.2s ease;
}

.ticker-lightbox.is-open .lightbox-media {
  transform: scale(1);
}

.cta-inner {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 6vw;
}

.cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  margin: 0 0 12px;
  letter-spacing: 0.12em;
}

.cta p {
  margin: 0 0 32px;
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.cta-actions .btn {
  width: clamp(220px, 28vw, 340px);
  padding: 16px 0;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-actions .btn:hover {
  transform: translateY(-2px);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


@media (max-width: 720px) {
  .page-header {
    padding: 20px 24px;
  }

  .cta-inner {
    padding: 100px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .media-ticker {
    top: 16px;
    padding: 0 24px;
    --ticker-gap: 3px;
    --tile-unit: clamp(18px, 6vw, 30px);
  }
}
