:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* Tipografía actualizada */
  font-family: "Righteous", sans-serif;
  background: #090b0d;
  color: white;
}

.poster-bg {
  background:
    radial-gradient(circle at top, rgba(143, 219, 82, 0.08), transparent 18%),
    linear-gradient(180deg, #090b0d 0%, #0b0d10 100%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 0.6px,
    transparent 0.6px
  );
  background-size: 13px 13px;
}

.poster-shell {
  position: relative;
  overflow: hidden;
}

.cut-top::before,
.cut-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px;
  background: #f6f4ef;
  z-index: 4;
}

.cut-top::before {
  top: -1px;
  clip-path: polygon(0 58%, 100% 0, 100% 100%, 0 100%);
}

.cut-bottom::after {
  bottom: -1px;
  clip-path: polygon(0 0, 100% 42%, 100% 100%, 0 100%);
}

.phone-shell {
  position: relative;
  width: min(100%, 320px);
  margin: 0 auto;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(180deg, #15191d 0%, #0b0d10 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

.phone-shell::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 22px;
  border-radius: 999px;
  background: #050607;
  z-index: 2;
}

.phone-screen {
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(143, 219, 82, 0.08), transparent 20%),
    linear-gradient(180deg, #0f1316 0%, #090b0d 100%);
}

.placeholder-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.lime-band {
  background: linear-gradient(100deg, #16456d 0%, #2f6f44 48%, #6ea93e 100%);
}

.soft-copy {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

.outline-copy {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  color: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #090b0d;
}

::-webkit-scrollbar-thumb {
  background: #2f363d;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8ff60;
}
