:root {
  --bg: #090909;
  --bg-soft: #121212;
  --panel: rgba(28, 28, 28, 0.78);
  --panel-strong: rgba(35, 35, 35, 0.94);
  --red: #e91546;
  --red-deep: #8d001d;
  --gold: #f0c84b;
  --green: #58c268;
  --blue: #2f84d8;
  --white: #f8f3ec;
  --muted: rgba(248, 243, 236, 0.62);
  --line: rgba(248, 243, 236, 0.14);
  --shadow-red: 0 0 45px rgba(233, 21, 70, 0.34);
  --shadow-gold: 0 0 45px rgba(240, 200, 75, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --font-main:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 5%, rgba(233, 21, 70, 0.16), transparent 32%),
    radial-gradient(
      circle at 80% 20%,
      rgba(240, 200, 75, 0.09),
      transparent 30%
    ),
    linear-gradient(180deg, #120305 0%, var(--bg) 38%, #050505 100%);
  color: var(--white);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.is-scrolling .blood-glow,
body.is-scrolling .hero-bg-ring,
body.is-scrolling .phone-shell,
body.is-scrolling .phone-shine,
body.is-scrolling .floating-chip,
body.is-scrolling .marquee-track,
body.is-scrolling .orbit-center,
body.is-scrolling .arena-orbit span {
  animation-play-state: paused;
}

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

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

.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

.blood-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

.blood-glow-one {
  background: rgba(233, 21, 70, 0.35);
  top: 10%;
  left: -180px;
  animation: floatGlow 10s ease-in-out infinite;
}

.blood-glow-two {
  background: rgba(240, 200, 75, 0.18);
  right: -180px;
  top: 620px;
  animation: floatGlow 13s ease-in-out infinite reverse;
}

.site-header {
  width: min(1180px, calc(100% - 36px));
  height: 78px;
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.44);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
  will-change: transform;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.9);
  border-color: rgba(240, 200, 75, 0.22);
}

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

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(233, 21, 70, 0.28),
    rgba(240, 200, 75, 0.16)
  );
  border: 1px solid rgba(240, 200, 75, 0.35);
  box-shadow: var(--shadow-red);
}

.logo strong {
  display: block;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo small {
  color: var(--muted);
  font-size: 11px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: 0.25s ease;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.header-download {
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--red);
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow-red);
  transition: 0.25s ease;
}

.header-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 55px rgba(233, 21, 70, 0.55);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.burger span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--white);
  border-radius: 99px;
}

.hero {
  min-height: 100vh;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  position: relative;
}

.hero-bg-ring {
  position: absolute;
  border: 1px solid rgba(240, 200, 75, 0.14);
  border-radius: 50%;
  pointer-events: none;
  animation: rotateSoft 22s linear infinite;
}

.ring-one {
  width: 520px;
  height: 520px;
  right: -160px;
  top: 160px;
}

.ring-two {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: 50px;
  animation-direction: reverse;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  max-width: 780px;
}

.hero-text {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
  max-width: 620px;
  margin: 28px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions.center {
  justify-content: center;
}

.btn {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.03em;
  transition: 0.28s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff2455, #ba001f);
  color: white;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-ghost {
  border: 1px solid rgba(240, 200, 75, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
}

.btn-ghost:hover {
  background: rgba(240, 200, 75, 0.1);
  transform: translateY(-3px);
}

.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 14px;
  max-width: 540px;
}

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.hero-stats strong {
  display: block;
  font-size: 34px;
  color: var(--gold);
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-phone {
  position: relative;
  display: grid;
  place-items: center;
}

.phone-shell {
  position: relative;
  width: min(360px, 82vw);
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.7),
    0 0 65px rgba(233, 21, 70, 0.24);
  overflow: hidden;
  transform-style: preserve-3d;
  animation: phoneFloat 5s ease-in-out infinite;
}

.phone-shell img {
  width: 100%;
  border-radius: 32px;
}

.phone-shine {
  position: absolute;
  inset: 12px;
  border-radius: 32px;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 42%,
    transparent 60%
  );
  transform: translateX(-130%);
  animation: shine 4.5s ease-in-out infinite;
  pointer-events: none;
}

.floating-chip {
  position: absolute;
  padding: 12px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(20, 20, 20, 0.84);
  backdrop-filter: blur(15px);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
}

.chip-red {
  top: 18%;
  left: -10px;
  color: var(--red);
  animation: chipFloat 4s ease-in-out infinite;
}

.chip-gold {
  right: -10px;
  top: 38%;
  color: var(--gold);
  animation: chipFloat 5s ease-in-out infinite reverse;
}

.chip-blue {
  bottom: 20%;
  left: 4px;
  color: var(--blue);
  animation: chipFloat 4.6s ease-in-out infinite;
}

.marquee-section {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 46px;
  animation: marqueeMove 24s linear infinite;
}

.marquee-track span {
  color: rgba(248, 243, 236, 0.35);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.25em;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 110px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.section-copy h2,
.section-head h2,
.arena-panel h2,
.final-card h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-copy p,
.section-head p,
.arena-panel p,
.final-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin-top: 22px;
}

.dna-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at top left,
      rgba(233, 21, 70, 0.18),
      transparent 35%
    ),
    rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --spot-x: 50%;
  --spot-y: 50%;
}

.dna-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.dna-top span {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.dna-top strong {
  font-size: 42px;
}

.dna-line {
  display: grid;
  grid-template-columns: 120px 1fr 38px;
  gap: 14px;
  align-items: center;
  margin: 20px 0;
}

.dna-line span {
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
}

.dna-line i {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  overflow: hidden;
  position: relative;
}

.dna-line i::after {
  content: '';
  position: absolute;
  inset: 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: inherit;
}

.dna-line b {
  color: var(--red);
}

.screens-section {
  overflow: hidden;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.carousel-wrap {
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  gap: 18px;
  align-items: center;
}

.carousel-btn {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(240, 200, 75, 0.38);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  font-size: 38px;
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-btn:hover {
  background: rgba(240, 200, 75, 0.14);
  transform: scale(1.08);
}

.premium-carousel {
  position: relative;
  min-height: 720px;
  border-radius: 44px;
  border: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(233, 21, 70, 0.25),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
}

.carousel-stage {
  position: relative;
  height: 680px;
  perspective: 1300px;
}

.screen-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 315px;
  transform: translate(-50%, -50%) scale(0.64);
  opacity: 0;
  filter: blur(4px);
  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  will-change: transform, opacity;
}

.screen-card img {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.66);
}

.screen-card.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotateY(0);
  z-index: 5;
  filter: blur(0);
}

.screen-card.prev-card {
  opacity: 0.55;
  transform: translate(-118%, -50%) scale(0.76) rotateY(24deg);
  z-index: 3;
}

.screen-card.next-card {
  opacity: 0.55;
  transform: translate(18%, -50%) scale(0.76) rotateY(-24deg);
  z-index: 3;
}

.screen-card.far-prev {
  opacity: 0.18;
  transform: translate(-168%, -50%) scale(0.58) rotateY(35deg);
  z-index: 1;
}

.screen-card.far-next {
  opacity: 0.18;
  transform: translate(68%, -50%) scale(0.58) rotateY(-35deg);
  z-index: 1;
}

.carousel-meta {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: 0.16em;
}

.current-slide {
  color: var(--gold);
}

.slide-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.slide-line i {
  display: block;
  height: 100%;
  width: 12.5%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: transform 0.55s ease;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.25s ease;
}

.carousel-dots button.active {
  width: 34px;
  background: var(--red);
  box-shadow: var(--shadow-red);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.025)
  );
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --spot-x: 50%;
  --spot-y: 50%;
}

.feature-card::before,
.dna-card::before,
.arena-panel::before,
.final-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--spot-x) var(--spot-y),
    rgba(233, 21, 70, 0.16),
    transparent 34%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.feature-card > *,
.dna-card > *,
.arena-panel > *,
.final-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover::before,
.dna-card:hover::before,
.arena-panel:hover::before,
.final-card:hover::before {
  opacity: 1;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(233, 21, 70, 0.28), transparent 70%);
  opacity: 0;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(233, 21, 70, 0.45);
  box-shadow: var(--shadow-red);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(233, 21, 70, 0.12);
  border: 1px solid rgba(233, 21, 70, 0.24);
  font-size: 30px;
  margin-bottom: 70px;
}

.feature-card h3 {
  font-size: 27px;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}

.arena-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.arena-panel {
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(240, 200, 75, 0.25);
  background:
    radial-gradient(
      circle at top right,
      rgba(240, 200, 75, 0.13),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.045);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --spot-x: 50%;
  --spot-y: 50%;
}

.arena-panel .btn {
  margin-top: 32px;
}

.arena-orbit {
  position: relative;
  height: 420px;
  display: grid;
  place-items: center;
}

.orbit-center {
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(233, 21, 70, 0.35),
    rgba(240, 200, 75, 0.18)
  );
  border: 1px solid rgba(240, 200, 75, 0.36);
  font-size: 54px;
  box-shadow: var(--shadow-red);
  animation: pulseCenter 3s ease-in-out infinite;
}

.arena-orbit span {
  position: absolute;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.86);
  border: 1px solid var(--line);
  font-size: 28px;
  animation: orbit 12s linear infinite;
}

.arena-orbit span:nth-child(2) {
  animation-delay: 0s;
}
.arena-orbit span:nth-child(3) {
  animation-delay: -3s;
}
.arena-orbit span:nth-child(4) {
  animation-delay: -6s;
}
.arena-orbit span:nth-child(5) {
  animation-delay: -9s;
}

.final-cta {
  padding-top: 40px;
}

.final-card {
  text-align: center;
  padding: 70px 28px;
  border-radius: 44px;
  border: 1px solid rgba(233, 21, 70, 0.34);
  background:
    radial-gradient(circle at 50% 0%, rgba(233, 21, 70, 0.24), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --spot-x: 50%;
  --spot-y: 50%;
}

.final-card p {
  max-width: 720px;
  margin: 22px auto 34px;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
}

.site-footer span {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(40px, -30px, 0) scale(1.1);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes shine {
  0%,
  45% {
    transform: translateX(-130%);
  }
  65%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes rotateSoft {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marqueeMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(160px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(160px) rotate(-360deg);
  }
}

@keyframes pulseCenter {
  0%,
  100% {
    box-shadow: 0 0 34px rgba(233, 21, 70, 0.3);
  }
  50% {
    box-shadow: 0 0 70px rgba(233, 21, 70, 0.58);
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
  }

  .nav,
  .header-download {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav.open {
    position: fixed;
    top: 92px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(22px);
  }

  .nav.open a {
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    gap: 50px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .split-section,
  .arena-section {
    grid-template-columns: 1fr;
  }

  .carousel-wrap {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .premium-carousel {
    min-height: 650px;
  }

  .carousel-stage {
    height: 610px;
  }

  .screen-card {
    width: 270px;
  }

  .screen-card.prev-card {
    transform: translate(-105%, -50%) scale(0.68) rotateY(22deg);
  }

  .screen-card.next-card {
    transform: translate(5%, -50%) scale(0.68) rotateY(-22deg);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-text,
  .section-copy p,
  .section-head p,
  .arena-panel p,
  .final-card p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .phone-shell {
    width: min(315px, 88vw);
  }

  .floating-chip {
    display: none;
  }

  .premium-carousel {
    border-radius: 28px;
    min-height: 590px;
  }

  .carousel-stage {
    height: 550px;
  }

  .screen-card {
    width: 245px;
  }

  .screen-card.prev-card,
  .screen-card.next-card,
  .screen-card.far-prev,
  .screen-card.far-next {
    opacity: 0;
  }

  .dna-card,
  .arena-panel {
    padding: 24px;
  }

  .dna-line {
    grid-template-columns: 1fr;
  }

  .arena-orbit {
    height: 330px;
  }

  .arena-orbit span {
    animation-name: orbitMobile;
  }

  .blood-glow,
  .hero-bg-ring,
  .phone-shine,
  .arena-orbit span,
  .orbit-center {
    animation: none;
  }

  .noise {
    display: none;
  }
}

@keyframes orbitMobile {
  from {
    transform: rotate(0deg) translateX(115px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(115px) rotate(-360deg);
  }
}
