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

:root {
  --bg-900: #050506;
  --bg-800: #0a0a0c;
  --bg-700: #111114;
  --red-500: #e20a14;
  --red-400: #ff2732;
  --text-100: #f2f2f2;
  --text-200: rgba(242, 242, 242, 0.7);
  --text-300: rgba(242, 242, 242, 0.5);
  --stroke: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

html, body {
  height: 100%;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-100);
  background: radial-gradient(circle at top, #181216 0%, #0b0b0d 50%, #050506 100%);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

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

.page__bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(226, 10, 20, 0.16), transparent 70%),
    radial-gradient(70% 70% at 80% 60%, rgba(226, 10, 20, 0.1), transparent 75%),
    linear-gradient(180deg, rgba(14, 10, 12, 0.9), rgba(5, 5, 6, 0.95));
  filter: blur(26px);
  z-index: 0;
}

.page__grid {
  position: fixed;
  inset: 0;
  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: 120px 120px;
  opacity: 0.18;
  z-index: 1;
}

.page__vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 78%);
  z-index: 2;
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;

  gap: 16px;
  padding: 18px 8vw;
  background: rgba(6, 6, 8, 0.85);
  border-bottom: 1px solid rgba(226, 10, 20, 0.25);
  backdrop-filter: blur(14px);
}

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

.brand__logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(226, 10, 20, 0.4);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-weight: 600;
  font-size: 1.1rem;
}


.nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--text-300);
}


.nav__link {
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background: var(--text-100);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.btn {
  border: none;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, #ff2c35, #99040b);
  color: #fff;
  box-shadow: 0 12px 30px rgba(226, 10, 20, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 16px 38px rgba(226, 10, 20, 0.45);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-100);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.main {
  position: relative;
  z-index: 3;
  padding: 80px 8vw 120px;
  display: grid;
  gap: 110px;
  flex: 1 0 auto;
}

.hero {
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.hero--split {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  text-align: left;
  justify-items: stretch;
  gap: 32px;
  width: 100%;
}

.hero--split .hero__content {
  display: grid;
  gap: 16px;
}

.hero--split .hero__actions {
  justify-content: flex-start;
}

.hero--split .hero__stats {
  width: 100%;
}

.hero__media {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
}

.hero__media .video__poster {
  width: 100%;
  max-width: 100%;
}


.hero__title {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
}

.hero__subtitle {
  color: var(--text-200);
  font-weight: 500;
}

.hero__desc {
  color: var(--text-300);
  max-width: 640px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  width: min(640px, 100%);
  margin-top: 24px;
}

.stat {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(226, 10, 20, 0.22);
  padding: 18px 16px;
}

.stat__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(226, 10, 20, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.stat__icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.stat__value {
  font-weight: 600;
  font-size: 1.2rem;
}

.stat__label {
  color: var(--text-300);
  font-size: 0.8rem;
}


.video__poster {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 10, 20, 0.22);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.92), rgba(6, 6, 7, 0.92)),
    url("assets/hq720.avif") center/cover no-repeat;
}

.video__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}

.video__content {
  position: absolute;
  left: 8%;
  bottom: 12%;
  max-width: 420px;
  z-index: 2;
}

.video__title {
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.video__text {
  color: var(--text-300);
  margin-bottom: 14px;
}

.video__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-300);
  margin-bottom: 6px;
}

.video__play {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(226, 10, 20, 0.25);
  border: 1px solid rgba(226, 10, 20, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  z-index: 2;
  box-shadow: 0 0 30px rgba(226, 10, 20, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video__poster:hover .video__play {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 0 40px rgba(226, 10, 20, 0.6);
}

.section {
  display: grid;
  gap: 28px;
}

.section__title {
  text-align: center;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.section__subtitle {
  text-align: center;
  color: var(--text-300);
}

.policy {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.policy__body {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(226, 10, 20, 0.2);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  gap: 16px;
}

.policy__list {
  padding-left: 20px;
  color: var(--text-200);
  display: grid;
  gap: 10px;
}

.policy__note {
  color: var(--text-300);
  font-size: 0.9rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(226, 10, 20, 0.15);
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 10, 20, 0.55);
  box-shadow: 0 0 24px rgba(226, 10, 20, 0.25);
}

.feature__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(226, 10, 20, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.feature__icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.feature__title {
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature__text {
  color: var(--text-300);
  font-size: 0.9rem;
}

.plan-group {
  display: grid;
  gap: 18px;
}

.plan-group__title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.plan {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  border: 1px solid rgba(226, 10, 20, 0.2);
  padding: 20px;
  display: grid;
  gap: 12px;
  position: relative;
}

.plan--featured {
  border-color: rgba(226, 10, 20, 0.55);
  background: linear-gradient(180deg, rgba(226, 10, 20, 0.2), rgba(0, 0, 0, 0.2));
}

.plan__ring {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
}

.plan__ring svg {
  width: 100%;
  height: 100%;
  display: block;
}

.plan__ring rect {
  fill: none;
  stroke: var(--red-400);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 0.06 0.94;
  stroke-dashoffset: 0;
  animation: neonDash 3.2s linear infinite;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 6px rgba(226, 10, 20, 0.55))
          drop-shadow(0 0 14px rgba(226, 10, 20, 0.35));
}

.plan__badge {
  position: absolute;
  top: -14px;
  left: 18px;
  background: var(--red-500);
  color: #fff;
  font-size: 0.7rem;
  padding: 5px 12px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
}

.plan__name {
  font-weight: 600;
}

.plan__price {
  font-size: 1.6rem;
  font-weight: 600;
}

.plan__note {
  color: var(--text-300);
  font-size: 0.8rem;
}

.plan__discount {
  color: var(--red-400);
  font-size: 0.8rem;
}

.plan__list {
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--text-300);
  font-size: 0.85rem;
}

.spoofer-note {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(226, 10, 20, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.spoofer-note__title {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.spoofer-note__text {
  color: var(--text-300);
  line-height: 1.6;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.review {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(226, 10, 20, 0.18);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review__name {
  font-weight: 600;
}

.review__text {
  color: var(--text-200);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer {
  display: grid;
  gap: 16px;
  padding: 40px 8vw 60px;
  border-top: 1px solid rgba(226, 10, 20, 0.2);
  color: var(--text-200);
  background: rgba(6, 6, 8, 0.9);
  position: relative;
  z-index: 4;
  margin-top: auto;
}


.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 24px;
}

.footer__col h4 {
  font-size: 0.85rem;
  color: var(--text-100);
  margin-bottom: 8px;
}
.reveal {
  opacity: 1;
  transform: none;
}

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

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

@keyframes neonDash {
  to {
    stroke-dashoffset: -1;
  }
}

@media (max-width: 980px) {
  .header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
  }

  .hero--split {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero__media {
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 14px 6vw;
    gap: 12px;
  }

  .header__brand {
    width: 100%;
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .header__cta {
    width: 100%;
    text-align: center;
  }

  .main {
    padding: 70px 6vw 90px;
    gap: 90px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .video__poster {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .video__content {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    padding: 18px;
  }

  .video__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
  }

  .video__title {
    font-size: 1rem;
  }

  .video__text {
    font-size: 0.6rem;
  }

  .video__play {
    right: 16px;
    top: 16px;
    transform: none;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

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

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

  .plan__badge {
    top: -12px;
    left: 12px;
  }

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

  .footer {
    gap: 12px;
    padding: 28px 6vw 36px;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .nav__link {
    font-size: 0.8rem;
  }

  .brand__name {
    font-size: 1rem;
  }


  .section__title {
    font-size: 1.8rem;
  }

  .plan__price {
    font-size: 1.4rem;
  }
}
