@font-face {
  font-family: "Inter";
  src: url("Fonts/Inter/static/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("Fonts/Inter/static/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --accent: #46a4ff;
  --zoom: 1;
  --title-delay: 0s;
  --caption-delay: 0.95s;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  overflow: hidden;
}

.stage {
  width: min(100vw, 2000px);
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  transform: scale(var(--zoom));
  transform-origin: center;
  transition: transform 0.35s ease;
}

.title {
  position: relative;
  top: clamp(20px, 3vw, 60px);
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #000000;
  opacity: 0;
  animation: titleFly 0.9s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
  animation-delay: var(--title-delay);
}

.hero {
  width: min(110vw, 1900px);
  max-width: 130vh;
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.1));
}

.caption {
  position: relative;
  top: clamp(-60px, -4vw, -20px);
  display: inline-block;
  margin: 0 auto;
  width: auto;
  text-align: center;
  font-size: clamp(30px, 3vw, 60px);
  font-weight: 500;
  color: var(--accent);
  opacity: 0;
  animation:
    fadeIn 1.5s ease forwards,
    pulse 1.4s ease-in-out infinite alternate;
  animation-delay: var(--caption-delay), var(--caption-delay);
  transform-origin: center;
}

.actions {
  position: absolute;
  right: clamp(24px, 3vw, 48px);
  bottom: clamp(24px, 3vw, 48px);
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.download {
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(70, 164, 255, 0.2);
  background: linear-gradient(135deg, #52b2ff, #2d8fe3);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(45, 143, 227, 0.25);
  transition:
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.3s ease;
}

.download:hover,
.download:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 38px rgba(45, 143, 227, 0.3),
    0 10px 20px rgba(45, 143, 227, 0.18);
  filter: saturate(1.05);
  outline: none;
}

.download:active {
  transform: translateY(0) scale(0.99);
}

@keyframes titleFly {
  0% {
    transform: translateX(80px);
    filter: blur(14px);
    opacity: 0;
  }
  60% {
    filter: blur(6px);
  }
  100% {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  from {
    transform: scale(0.92);
  }
  to {
    transform: scale(1.05);
  }
}

@media (max-width: 600px) {
  .stage {
    width: 100vw;
    height: 100vh;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  .hero {
    width: min(90vw, 520px);
  }
}

@media (min-width: 1025px) {
}
