:root {
  --bg: #000000;
  --red: #e10600;
  --red-bright: #ff1410;
  --white: #ffffff;
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Manrope", sans-serif;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  position: relative;
  min-height: 100svh;
  font-family: var(--font-body);
  color: var(--white);
  background: #020202;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, #2a0505 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 100% 100%, #1a0303 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 0% 80%, #120202 0%, transparent 45%),
    linear-gradient(165deg, #0a0a0a 0%, #050505 40%, #0d0404 100%);
}

.bg__grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(225, 6, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 6, 0, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(500px) rotateX(58deg) scale(1.35);
  transform-origin: center top;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 72%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 72%);
  opacity: 0.7;
}

.bg__beams {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 38%, rgba(225, 6, 0, 0.08) 46%, transparent 52%),
    linear-gradient(155deg, transparent 55%, rgba(255, 40, 30, 0.06) 62%, transparent 70%),
    linear-gradient(25deg, transparent 0%, rgba(225, 6, 0, 0.05) 28%, transparent 40%);
  animation: beamsShift 10s ease-in-out infinite alternate;
}

.bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  will-change: transform;
}

.bg__orb--1 {
  top: -8%;
  left: 50%;
  width: 280px;
  height: 280px;
  margin-left: -140px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.55) 0%, rgba(225, 6, 0, 0) 70%);
  animation: orbFloat1 7s ease-in-out infinite;
}

.bg__orb--2 {
  right: -12%;
  bottom: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(180, 0, 0, 0.4) 0%, transparent 70%);
  animation: orbFloat2 9s ease-in-out infinite;
}

.bg__orb--3 {
  left: -18%;
  top: 42%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 50, 40, 0.22) 0%, transparent 70%);
  animation: orbFloat3 8s ease-in-out infinite;
}

.bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

.bg__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 70% at 50% 45%, transparent 35%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 20%, transparent 75%, rgba(0, 0, 0, 0.55) 100%);
}

.screen {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding:
    calc(1.25rem + var(--safe-top))
    1.15rem
    calc(1.5rem + var(--safe-bottom));
  animation: fadeUp 0.55s ease both;
}

.title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  line-height: 0.9;
}

.title__white,
.title__red {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.title__white {
  font-size: clamp(2.4rem, 11vw, 3.4rem);
}

.title__red {
  position: relative;
  width: fit-content;
  color: var(--red);
  font-size: clamp(2.55rem, 12vw, 3.7rem);
  animation: titleGlow 2.6s ease-in-out infinite;
}

.sparks {
  position: absolute;
  top: -0.28em;
  right: -0.08em;
  width: 0.72em;
  height: 0.5em;
  background:
    linear-gradient(128deg, transparent 42%, var(--red) 42% 48%, transparent 48%),
    linear-gradient(128deg, transparent 54%, var(--red) 54% 60%, transparent 60%),
    linear-gradient(128deg, transparent 66%, var(--red) 66% 72%, transparent 72%);
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  margin-bottom: 1.35rem;
  padding: 0.42rem 0.9rem 0.42rem 0.7rem;
  border: 1.5px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.location svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.benefits {
  list-style: none;
  display: grid;
  gap: 0.95rem;
  margin-bottom: 1.6rem;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.1rem, 4.6vw, 1.3rem);
  font-weight: 800;
  line-height: 1.2;
}

.icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  color: var(--red);
  flex-shrink: 0;
}

.icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 3.4rem;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, var(--red-bright), var(--red));
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 4.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(225, 6, 0, 0.4);
  transition: transform 0.2s ease, filter 0.2s ease;
  animation: ctaPulse 2.3s ease-in-out infinite;
}

.cta:active {
  transform: scale(0.98);
  filter: brightness(0.96);
}

.cta__bag {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
}

.cta__bag svg {
  width: 100%;
  height: 100%;
}

.note {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3.8vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

.slash,
.red {
  color: var(--red);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes beamsShift {
  from {
    transform: translateX(-2%) translateY(0);
    opacity: 0.85;
  }
  to {
    transform: translateX(3%) translateY(-1%);
    opacity: 1;
  }
}

@keyframes orbFloat1 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(18px) scale(1.08);
  }
}

@keyframes orbFloat2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-16px, -22px);
  }
}

@keyframes orbFloat3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 12px) scale(1.12);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(225, 6, 0, 0.4);
  }
  50% {
    box-shadow: 0 12px 34px rgba(225, 6, 0, 0.62), 0 0 20px rgba(225, 6, 0, 0.25);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.14);
  }
}

@media (min-width: 768px) {
  .screen {
    max-width: 520px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .title__white {
    font-size: 3.6rem;
  }

  .title__red {
    font-size: 4rem;
  }

  .cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
  }
}

@media (max-height: 640px) {
  .screen {
    justify-content: flex-start;
    padding-top: calc(0.9rem + var(--safe-top));
  }

  .title {
    margin-bottom: 0.75rem;
  }

  .location {
    margin-bottom: 1rem;
  }

  .benefits {
    gap: 0.7rem;
    margin-bottom: 1.15rem;
  }

  .title__white {
    font-size: 2.1rem;
  }

  .title__red {
    font-size: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
