* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  background: #050505;
  color: #f5f5f5;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1) brightness(0.75);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72)),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(860px, calc(100% - 40px));
  text-align: center;
  padding: 32px 20px;
}

.vhs-osd {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  color: #d7d7d7;
}

.play {
  position: relative;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4040;
  box-shadow: 0 0 12px rgba(255, 64, 64, 0.75);
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.subtitle {
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
  color: #d8d8d8;
}

.description {
  max-width: 700px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #b8b8b8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta.primary {
  border-radius: 10px;
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f3f3f3;

  border-radius: 10px; /* 👈 match badge style */
}

.cta-final-inner a {
  margin-top: 20px;
  display: inline-block;
}
.scanlines,
.noise {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.scanlines {
  z-index: 2;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 3px
  );
  opacity: 0.35;
}

.noise {
  z-index: 3;
  background-image:
    radial-gradient(rgba(255,255,255,0.055) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  opacity: 0.12;
}

.section {
  padding: 88px 20px;
}

.section-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: #9d9d9d;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-copy {
  max-width: 760px;
  margin-top: 16px;
  color: #b8b8b8;
  line-height: 1.75;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.card,
.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 20px;
}

.card {
  position: relative;
  height: 300px;
  border-radius: 18px;
  background: black;
  overflow: hidden;
}

.compare-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center; /* THIS fixes centering */
  display: block;
}

.card-label {
  position: absolute;
  top: 10px;
  left: 10px;

  background: rgba(0, 0, 0, 0.6);
  padding: 6px 10px;
  border-radius: 8px;

  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  z-index: 2;
}

.placeholder {
  min-height: 280px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: #8e8e8e;
  border: 1px dashed rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: #b8b8b8;
  line-height: 1.65;
}

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

.cta-final-inner {
  text-align: center;
  padding: 44px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 760px) {
  .compare-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 16px;
  }

  .hero-content {
    width: calc(100% - 28px);
  }

  .placeholder {
    min-height: 220px;
  }
}

.appstore-btn {
  display: inline-flex;
  align-items: center;
}

.appstore-btn img {
  height: 50px;
  width: auto;
  display: block;
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: #888;
  font-size: 0.9rem;
}