:root {
  --bg: #050505;
  --surface: #12100d;
  --surface-2: #1b1712;
  --gold: #f6c65b;
  --gold-soft: #ffe7a1;
  --red: #ff334e;
  --green: #25d366;
  --text: #fff7e8;
  --muted: #b9aa90;
  --line: rgba(246, 198, 91, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(255, 51, 78, 0.1) 43%, transparent 58%),
    linear-gradient(245deg, transparent 0 30%, rgba(246, 198, 91, 0.12) 48%, transparent 62%),
    linear-gradient(180deg, #080706 0%, var(--bg) 48%, #0e0908 100%);
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.cinema-lights {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.cinema-lights span {
  position: absolute;
  left: -16vw;
  width: 132vw;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(246, 198, 91, 0.18),
    rgba(255, 51, 78, 0.16),
    transparent
  );
  filter: blur(1px);
  opacity: 0.7;
  transform-origin: center;
  animation: lightSweep 9s ease-in-out infinite;
}

.cinema-lights span:nth-child(1) {
  top: 16%;
  transform: rotate(8deg);
}

.cinema-lights span:nth-child(2) {
  top: 52%;
  animation-delay: -3s;
  transform: rotate(-7deg);
}

.cinema-lights span:nth-child(3) {
  top: 82%;
  animation-delay: -6s;
  transform: rotate(4deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding: 12px 0;
  border-bottom: 1px solid rgba(246, 198, 91, 0.16);
  background: rgba(5, 5, 5, 0.72);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(246, 198, 91, 0.24);
  animation: logoPulse 4s ease-in-out infinite;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
}

.brand em {
  color: var(--gold-soft);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.top-nav a,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease,
    background 180ms ease;
}

.top-nav a:hover,
.whatsapp-link:hover {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.whatsapp-link {
  gap: 8px;
  color: #dfffea;
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
}

.whatsapp-link img {
  width: 22px;
  height: 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 48px;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 88px);
  margin: 0 auto;
  padding: 36px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--gold-soft);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.94;
  font-weight: 900;
}

h1 span {
  display: block;
  margin-top: 18px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.08;
}

.hero-text,
.split-copy p,
.updates-panel p,
.download-inner p,
.feature-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
}

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

.primary-action,
.secondary-action,
.updates-panel a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-action::after,
.secondary-action::after,
.updates-panel a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0 35%,
    rgba(255, 255, 255, 0.34) 46%,
    transparent 58% 100%
  );
  transform: translateX(-120%);
  transition: transform 620ms ease;
  content: "";
}

.primary-action {
  color: #260507;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 18px 40px rgba(246, 198, 91, 0.22);
}

.download-action {
  min-height: 62px;
  padding: 0 34px;
  border: 1px solid rgba(255, 247, 232, 0.46);
  font-size: 18px;
  box-shadow:
    0 20px 44px rgba(246, 198, 91, 0.3),
    0 0 0 4px rgba(246, 198, 91, 0.1);
}

.secondary-action {
  color: #fff;
  background: rgba(255, 51, 78, 0.16);
  border: 1px solid rgba(255, 51, 78, 0.38);
}

.primary-action:hover,
.secondary-action:hover,
.updates-panel a:hover {
  transform: translateY(-2px);
}

.primary-action:hover::after,
.secondary-action:hover::after,
.updates-panel a:hover::after {
  transform: translateX(120%);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 28px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(246, 198, 91, 0.2);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 900;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats span {
  min-width: 146px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease;
}

.hero-stats span:hover {
  border-color: rgba(246, 198, 91, 0.4);
  transform: translateY(-3px);
}

.hero-stats strong {
  color: var(--gold-soft);
  font-size: 24px;
}

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

.hero-showcase::before,
.hero-showcase::after {
  position: absolute;
  width: 560px;
  height: 120px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(246, 198, 91, 0.32),
    rgba(255, 51, 78, 0.18),
    transparent
  );
  filter: blur(24px);
  opacity: 0.62;
  content: "";
  animation: showcaseBeam 6s ease-in-out infinite;
}

.hero-showcase::before {
  transform: rotate(-18deg);
}

.hero-showcase::after {
  animation-delay: -3s;
  transform: rotate(18deg);
}

.phone-frame {
  position: relative;
  width: min(390px, 100%);
  padding: 12px;
  border: 1px solid rgba(246, 198, 91, 0.35);
  border-radius: 34px;
  background: linear-gradient(145deg, #221a12, #050505 42%, #231108);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.58);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
  animation: phoneFloat 5.4s ease-in-out infinite;
}

.phone-frame:hover {
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.66),
    0 0 50px rgba(246, 198, 91, 0.18);
}

.phone-screen {
  position: relative;
  min-height: 680px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    #090807;
  overflow: hidden;
}

.phone-screen::before {
  position: absolute;
  inset: -30% -60%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.11) 48%,
    transparent 61%
  );
  transform: translateX(-45%);
  animation: screenGlint 5.8s ease-in-out infinite;
  content: "";
}

.phone-screen > * {
  position: relative;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-topbar span {
  color: var(--red);
  font-weight: 900;
}

.app-topbar strong {
  display: block;
  color: var(--gold-soft);
  font-size: 20px;
}

.app-topbar img {
  width: 34px;
  height: 34px;
  animation: whatsappBounce 2.8s ease-in-out infinite;
}

.feature-poster {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0e0b08;
  overflow: hidden;
}

.feature-poster img {
  width: 114%;
  max-width: none;
  transform: translateY(-8px);
  animation: posterBreath 6s ease-in-out infinite;
}

.section-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
  padding: 16px;
  border-radius: 8px;
  background: var(--surface-2);
  animation: previewSlide 4.8s ease-in-out infinite;
}

.section-preview span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.section-preview strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.section-preview button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.unlock-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(246, 198, 91, 0.22);
  border-radius: 8px;
  background: rgba(246, 198, 91, 0.08);
  animation: unlockPulse 3.6s ease-in-out infinite;
}

.unlock-preview div {
  display: grid;
  gap: 8px;
  flex: 1;
}

.unlock-preview span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(246, 198, 91, 0.24), rgba(255, 255, 255, 0.5), rgba(246, 198, 91, 0.24));
  background-size: 220% 100%;
  animation: shimmerLine 1.7s linear infinite;
}

.unlock-preview span:nth-child(2) {
  width: 68%;
  animation-delay: -0.5s;
}

.unlock-preview strong {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
}

.movie-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.movie-strip span {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(246, 198, 91, 0.16), transparent 40%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent),
    var(--surface);
  animation: cardRise 4.2s ease-in-out infinite;
}

.movie-strip span:nth-child(2) {
  animation-delay: -1.2s;
}

.movie-strip span:nth-child(3) {
  animation-delay: -2.4s;
}

.feature-band,
.split-section,
.updates,
.download {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

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

.feature-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(246, 198, 91, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(246, 198, 91, 0.1), transparent);
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 220ms ease, transform 520ms ease;
  content: "";
}

.feature-card:hover {
  border-color: rgba(246, 198, 91, 0.42);
  background:
    linear-gradient(150deg, rgba(246, 198, 91, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
}

.feature-card:hover::before {
  opacity: 1;
  transform: translateX(80%);
}

.feature-card > * {
  position: relative;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(255, 51, 78, 0.16);
  font-weight: 900;
}

.feature-card h2,
.split-copy h2,
.updates-panel h2,
.download-inner h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.04;
  font-weight: 900;
}

.feature-card h2 {
  font-size: 24px;
}

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

.section-stack {
  display: grid;
  gap: 14px;
}

.section-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.section-stack div:hover {
  border-color: rgba(255, 51, 78, 0.36);
  background: #18110e;
  transform: translateX(8px);
}

.section-stack div:nth-child(2) {
  transition-delay: 35ms;
}

.section-stack div:nth-child(3) {
  transition-delay: 70ms;
}

.section-stack div:nth-child(4) {
  transition-delay: 105ms;
}

.section-stack span {
  color: var(--gold-soft);
  font-size: 22px;
  font-weight: 900;
}

.section-stack strong {
  color: var(--muted);
  font-size: 14px;
}

.updates-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.14), transparent 48%),
    var(--surface);
  overflow: hidden;
}

.updates-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.14), transparent);
  transform: translateX(-100%);
  animation: whatsappSweep 6s ease-in-out infinite;
  content: "";
}

.updates-panel > * {
  position: relative;
}

.updates-panel img {
  width: 76px;
  height: 76px;
}

.updates-panel a {
  color: #021c0c;
  background: var(--green);
}

.download {
  padding-bottom: 96px;
}

.download-inner {
  position: relative;
  display: grid;
  place-items: center;
  padding: 54px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(246, 198, 91, 0.18), transparent 34%),
    var(--surface);
  overflow: hidden;
}

.download-inner::before {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 20%, rgba(246, 198, 91, 0.18), transparent 80%);
  opacity: 0.8;
  animation: borderGlow 5s ease-in-out infinite;
  content: "";
}

.download-inner > * {
  position: relative;
}

.download-inner img {
  width: 128px;
  height: 128px;
  margin-bottom: 22px;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(246, 198, 91, 0.2);
  animation: logoLift 4.8s ease-in-out infinite;
}

.download-inner p {
  max-width: 560px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 760ms ease, transform 760ms ease;
}

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

@keyframes lightSweep {
  0%,
  100% {
    opacity: 0.22;
    translate: -7vw 0;
  }
  50% {
    opacity: 0.76;
    translate: 7vw 0;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    box-shadow: 0 0 22px rgba(246, 198, 91, 0.22);
  }
  50% {
    box-shadow: 0 0 38px rgba(246, 198, 91, 0.38);
  }
}

@keyframes showcaseBeam {
  0%,
  100% {
    opacity: 0.24;
    translate: -24px 0;
  }
  50% {
    opacity: 0.7;
    translate: 24px 0;
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes screenGlint {
  0%,
  48% {
    transform: translateX(-48%);
  }
  72%,
  100% {
    transform: translateX(48%);
  }
}

@keyframes whatsappBounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.04);
  }
}

@keyframes posterBreath {
  0%,
  100% {
    transform: translateY(-8px) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.025);
  }
}

@keyframes previewSlide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

@keyframes unlockPulse {
  0%,
  100% {
    border-color: rgba(246, 198, 91, 0.22);
    box-shadow: none;
  }
  50% {
    border-color: rgba(246, 198, 91, 0.46);
    box-shadow: 0 0 24px rgba(246, 198, 91, 0.08);
  }
}

@keyframes shimmerLine {
  to {
    background-position: -220% 0;
  }
}

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

@keyframes whatsappSweep {
  0%,
  45% {
    transform: translateX(-100%);
  }
  75%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.22;
  }
  50% {
    opacity: 0.8;
  }
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .top-nav {
    display: none;
  }

  .hero,
  .split-section,
  .updates-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    padding-top: 24px;
  }

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

  .updates-panel {
    justify-items: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 24px, 1180px);
    gap: 12px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong,
  .brand em {
    font-size: 13px;
  }

  .whatsapp-link span {
    display: none;
  }

  .hero,
  .feature-band,
  .split-section,
  .updates,
  .download,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .hero-actions,
  .hero-badges,
  .hero-stats,
  .site-footer {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action,
  .updates-panel a {
    width: 100%;
  }

  .phone-screen {
    min-height: 590px;
  }

  .feature-poster {
    min-height: 300px;
  }

  .section-stack div,
  .section-preview {
    align-items: flex-start;
    flex-direction: column;
  }
}

.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {
  animation-duration: 1ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 1ms !important;
}
