/* ============================================================
   GREYOPS LANDER v4 — Credible Urgency, B2B Calibrated
   Dark hero, white sections, red only on CTAs + hero accents
   ============================================================ */
:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --bg3: #1c1c1c;
  --red: #c8102e;
  --red2: #e01230;
  --white: #fff;
  --off: #f5f4f2;
  --ink: #1a1a1a;
  --text: rgba(255, 255, 255, 0.95);
  --sub: rgba(255, 255, 255, 0.88);
  --dim: rgba(255, 255, 255, 0.58);
  --border-d: rgba(255, 255, 255, 0.08);
  --border-l: rgba(0, 0, 0, 0.09);
  --font-d: "Bebas Neue", "Impact", sans-serif;
  --font: "Inter", system-ui, sans-serif;
  --max: 900px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.c {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Nav */
.ln-nav {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-d);
  padding: 0.95rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
.ln-nav__i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
}
.btn-main {
  background: var(--red);
  color: #fff;
  padding: 0.82rem 2rem;
  font-size: 0.82rem;
}
.btn-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 3s ease infinite;
}
.btn-main:hover {
  background: var(--red2);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(200, 16, 46, 0.4);
}
.btn-xl {
  padding: 1rem 2.5rem;
  font-family: var(--font-d);
  letter-spacing: 0.08em;
  font-size: 1.15rem;
}
.btn-sm {
  padding: 0.58rem 1.2rem;
  font-size: 0.72rem;
}

/* Pulse rings */
.pulse-wrap {
  position: relative;
  display: inline-flex;
}
.pulse-wrap::before,
.pulse-wrap::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1.5px solid rgba(200, 16, 46, 0.5);
  border-radius: 5px;
  opacity: 0;
  animation: pulse-ring 2.2s ease-out infinite;
}
.pulse-wrap::after {
  animation-delay: 1.1s;
}

@keyframes shine {
  0% {
    left: -120%;
  }
  100% {
    left: 220%;
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.14);
    opacity: 0;
  }
}
@keyframes play-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(200, 16, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0);
  }
}
@keyframes bounce-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  background: var(--bg);
  text-align: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 2px;
  padding: 0.32rem 0.85rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.6rem;
}
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.hero h1 .hi {
  color: var(--red);
}
.hero__sub {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  color: var(--sub);
  max-width: 580px;
  margin: 0 auto 2.2rem;
  line-height: 1.8;
}
.hero__proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__proof-strip .tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border: 1px solid var(--border-d);
  color: var(--dim);
  border-radius: 2px;
}

/* Video */
.vsl-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border-d),
    0 28px 70px rgba(0, 0, 0, 0.65);
}
.vsl-wrap video {
  width: 100%;
  display: block;
}
.vsl-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
  transition: background 0.2s;
}
.vsl-overlay:hover {
  background: rgba(0, 0, 0, 0.18);
}
.vsl-play {
  width: 76px;
  height: 76px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: play-pulse 1.8s ease infinite;
}
.vsl-play svg {
  margin-left: 5px;
}
.vsl-label {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  white-space: nowrap;
}

/* CTA below video */
.hero-cta {
  padding: 2rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.bounce-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.3rem;
  animation: bounce-y 1.5s ease infinite;
  margin-top: 0.2rem;
}

/* Stats */
.stats {
  background: var(--bg2);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: center;
  gap: 0;
}
.stat-box {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border-d);
}
.stat-box:last-child {
  border-right: none;
}
.stat-box__num {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.stat-box__label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 0.45rem;
}

/* Sections */
.sec {
  padding: 4.5rem 0;
}
.sec--dark {
  background: var(--bg2);
}
.sec--white {
  background: var(--off);
}
.sec--white h2,
.sec--white .sec__kicker {
  color: var(--ink);
}
.sec--white .sec__sub {
  color: #4a4846;
}
.sec__kicker {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.55rem;
}
.sec--white .sec__kicker {
  color: var(--red);
}
.sec h2 {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
}
.sec h2 .hi {
  color: var(--red);
}
.sec--white h2 .hi {
  color: var(--red);
}
.sec__sub {
  font-size: 0.88rem;
  color: var(--sub);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

/* Result cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border-d);
  margin-top: 2.2rem;
}
.card {
  background: var(--bg3);
  padding: 1.85rem 1.65rem;
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}
.card__num {
  font-family: var(--font-d);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.card__desc {
  font-size: 0.82rem;
  color: var(--sub);
  line-height: 1.72;
  margin-bottom: 1.1rem;
}
.card__tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--border-d);
  padding: 0.22rem 0.6rem;
  display: inline-block;
  border-radius: 2px;
}

/* Steps (used on white bg) */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 2.2rem;
}
.step__n {
  font-family: var(--font-d);
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}
.sec--white .step__n {
  color: rgba(0, 0, 0, 0.1);
}
.step h4 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--white);
}
.sec--white .step h4 {
  color: var(--ink);
}
.step p {
  font-size: 0.82rem;
  color: var(--sub);
  line-height: 1.75;
}
.sec--white .step p {
  color: #4a4846;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border-d);
  margin-top: 2.2rem;
}
.price-card {
  background: var(--bg3);
  padding: 2.2rem 1.75rem;
  text-align: center;
  position: relative;
}
.price-card--hot {
  background: var(--red);
}
.price-card--hot * {
  color: #fff !important;
}
.price-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd600;
  color: #000;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.8rem;
  white-space: nowrap;
}
.price-card__tier {
  font-family: var(--font-d);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--dim);
  margin-bottom: 0.4rem;
}
.price-card__cpl {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.price-card__cpl span {
  font-size: 0.9rem;
  font-family: var(--font);
  font-weight: 400;
}
.price-card__total {
  font-size: 0.72rem;
  color: var(--dim);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}
.price-card p {
  font-size: 0.78rem;
  color: var(--sub);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

/* FAQ (white bg) */
.faq {
  margin-top: 2.2rem;
}
.faq__item {
  border-bottom: 1px solid var(--border-l);
}
.sec--dark .faq__item {
  border-color: var(--border-d);
}
.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  gap: 1rem;
}
.sec--dark .faq__q {
  color: var(--white);
}
.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--ink);
}
.sec--dark .faq__icon {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.32s ease,
    padding-bottom 0.32s ease;
}
.faq__item.open .faq__a {
  max-height: 400px;
  padding-bottom: 1.1rem;
}
.faq__a p {
  font-size: 0.84rem;
  color: #4a4846;
  line-height: 1.82;
}
.sec--dark .faq__a p {
  color: var(--sub);
}

/* Final CTA */
.cta-bar {
  background: var(--red);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-bar h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.7rem;
}
.cta-bar p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-bar .btn-main {
  background: #fff;
  color: var(--red);
}
.cta-bar .btn-main:hover {
  background: #ffe8ec;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}
.cta-bar .btn-main::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 16, 46, 0.12),
    transparent
  );
}

/* Footer */
.ln-foot {
  background: #080808;
  padding: 2.2rem 0;
  border-top: 1px solid var(--border-d);
}
.ln-foot__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
}
.ln-foot__compliance {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.ln-foot__compliance .sep {
  opacity: 0.2;
}
.ln-foot__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
}
.ln-foot__links a:hover {
  color: var(--white);
}
.ln-foot__copy {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.22);
}
.ln-foot__disclaimer {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.65;
  max-width: 580px;
  text-align: center;
}

/* Mobile */
@media (max-width: 640px) {
  .hero {
    padding: 2.5rem 0 2rem;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 9vw, 5rem);
  }
  .hero__sub {
    font-size: 0.95rem;
  }
  .hero__proof-strip {
    gap: 0.5rem;
  }
  .sec {
    padding: 3rem 0;
  }
  .stats {
    padding: 2.5rem 0;
  }
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--border-d);
    padding: 1.5rem 1rem;
  }
  .stat-box:nth-child(odd) {
    border-right: 1px solid var(--border-d);
  }
  .stat-box:last-child,
  .stat-box:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }
  .btn-xl {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  .vsl-label {
    display: none;
  }
  .cta-bar {
    padding: 3.2rem 0;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .price-card__badge {
    font-size: 0.48rem;
  }
  .pulse-wrap {
    width: 100%;
  }
}
