:root {
  --bg: #030303;
  --text: #f5f7fb;
  --muted: #9ba3af;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --hero-max-width: 1440px;
  --hero-copy-width: 360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100dvh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: #000000;
}

.page-shell {
  width: 100%;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 28px clamp(20px, 3.5vw, 48px) 24px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, var(--hero-max-width));
  margin: 0 auto 18px;
}

.wordmark {
  margin: 0;
  color: rgba(245, 247, 251, 0.9);
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

.topbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.topbar-actions .button {
  width: 100px;
  min-width: 100px;
  height: 2.05rem;
  min-height: 2.05rem;
}

.hero {
  display: grid;
  grid-template-columns: var(--hero-copy-width) minmax(0, 1fr);
  gap: 64px;
  width: min(100%, var(--hero-max-width));
  margin: 0 auto;
  padding: 0;
  align-items: center;
  align-self: center;
}

.hero-copy {
  display: grid;
  align-content: center;
  width: var(--hero-copy-width);
}

.hero-side {
  display: grid;
  align-content: center;
}

.slogan span {
  font-family: "Sora", sans-serif;
}

.slogan {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 4.5rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: none;
}

.slogan span {
  display: block;
}

.hero-text {
  max-width: 100%;
  margin: 46px 0 0;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-points {
  margin: 18px 0 0;
  padding-left: 1.1rem;
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-points li + li {
  margin-top: 4px;
}

.media-column {
  display: grid;
  align-content: center;
}

.media-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1), transparent 25%),
    linear-gradient(135deg, #111111 0%, #070707 55%, #121212 100%);
}

.media-rotator {
  isolation: isolate;
}

.media-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 1100ms ease;
}

.media-slide.is-active {
  opacity: 1;
}

.media-slide-video {
  background: #000000;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
}

.media-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.media-fallback {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #c8ced8;
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.05rem;
  padding: 0 18px;
  border-radius: 32px;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  color: #f5f7fb;
  background: #2b2f36;
}

.button-blue {
  color: #ffffff;
  background: #2563eb;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    width: 100%;
    order: 2;
  }

  .hero-side {
    order: 1;
  }

  .media-frame {
    width: 100%;
  }
}

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

  .topbar-actions {
    gap: 8px;
  }

  .hero {
    gap: 24px;
  }

}
