/* ── Players page ── */
body.activ-players { background: #0f0f0f; font-family: 'Urbanist', sans-serif; }

/* ── Grid background ── */
.grid-bg {
  background-color: #0f0f0f;
  background-image:
    repeating-linear-gradient(90deg, rgba(32,38,21,0.9) 0px, rgba(32,38,21,0.9) 1px, transparent 1px, transparent 90px),
    repeating-linear-gradient(0deg,  rgba(32,38,21,0.9) 0px, rgba(32,38,21,0.9) 1px, transparent 1px, transparent 65px);
}

/* ── Hero ── */
.vp-hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-start;
  padding: 204px 80px 80px;
  margin-top: -88px;
  overflow: hidden;
  background: #0E1006;
}
.vp-hero-photo { position: absolute; inset: 0; overflow: hidden; background: #0a0d05; }
.vp-hero-photo video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.vp-hero-content { position: relative; z-index: 2; max-width: 685px; }
.vp-badge {
  display: inline-flex;
  align-items: center;
  background: #242b0d;
  border: 1px solid #505147;
  border-radius: 24px;
  padding: 8px 16px;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #bbd864;
  margin-bottom: 24px;
}
.vp-hero h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 96px;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 24px;
}
.vp-hero h1 .lime { color: #bbd864; }
.vp-hero-sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0;
  color: #FFFFFF;
  max-width: 649px;
  margin-bottom: 48px;
}
.vp-hero-btns { display: flex; gap: 34px; flex-wrap: wrap; }

/* CTA Button with dot-grid icon */
.vp-cta-btn { display: inline-flex; align-items: center; gap: 0; background: #000; border-radius: 24px; padding: 3px; text-decoration: none; cursor: pointer; }
.vp-cta-icon { width: 57px; height: 54px; background: #bbd864; border-radius: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vp-cta-text { font-family: 'Urbanist', sans-serif; font-size: 20px; font-weight: 700; color: #fff; padding: 0 20px 0 16px; white-space: nowrap; }

/* ── Why ACTIV Section ── */
.vp-features { min-height: 820px; padding: 64px 80px 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.vp-features .vp-badge { margin-bottom: 24px; font-weight: 600; font-size: 16px; letter-spacing: 0.02em; }
.vp-features h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 77px;
  letter-spacing: -0.05em;
  text-align: center;
  color: #fff;
  max-width: 992px;
  margin-bottom: 24px;
}
.vp-features h2 .lime { color: #bbd864; }
.vp-features-sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: -0.05em;
  color: #E6ECD7;
  text-align: center;
  max-width: 752px;
  margin-bottom: 64px;
}
.vp-cards { display: grid; grid-template-columns: repeat(4, minmax(240px, 1fr)); gap: 32px; justify-content: center; }
.vp-card {
  background: #000;
  border: 1px solid #1d1d1d;
  box-shadow: 0px 2px 8px 2px rgba(122,122,122,0.14);
  border-radius: 24px;
  padding: 22px 24px 24px;
  position: relative;
  min-height: 365px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s;
}
.vp-card:hover { border-color: #3a4a15; }
.vp-card-icon {
  width: 73px;
  height: 59px;
  background: rgba(39,34,34,0.2);
  border: 1px solid #252622;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(21px);
  margin-bottom: 32px;
}
.vp-card:hover .vp-card-icon { border-color: #BBD864; }
.vp-card h3 { font-family: 'Urbanist', sans-serif; font-size: 28px; font-weight: 500; line-height: 35px; letter-spacing: -0.05em; color: #FFFFFF; margin-bottom: 16px; }
.vp-card-body { font-family: 'Urbanist', sans-serif; font-size: 18px; font-weight: 400; line-height: 28px; color: #999D8C; }
.vp-card-star { position: absolute; top: 29px; right: 24px; width: 32px; height: 32px; opacity: 0.6; }

/* ── Step Sections ── */
.vp-step { min-height: 820px; padding: 0 80px; display: flex; align-items: center; position: relative; overflow: hidden; background: #0F0F0F; }
.vp-step-inner { max-width: 1280px; width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1fr 59px 1fr; gap: 40px; align-items: center; }
.vp-step-content { max-width: 508px; }
.vp-step-content .vp-badge { margin-bottom: 24px; font-size: 16px; font-weight: 600; letter-spacing: 0.02em; }
.vp-step-content h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 77px;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 20px;
}
.vp-step-content h2 .lime { color: #bbd864; display: block; }
.vp-step-content p { font-family: 'Urbanist', sans-serif; font-size: 24px; font-weight: 400; line-height: 34px; letter-spacing: -0.05em; color: #E6ECD7; margin-bottom: 36px; }
.vp-step-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #e6ecd7;
  color: #1a1313;
  padding: 16px 47px;
  border-radius: 24px;
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}
.vp-step-btn:hover { opacity: 0.88; }
.vp-phone-img-wide { position: relative; z-index: 2; width: 540px; height: 555px; object-fit: contain; }

/* Diamond step number */
.vp-diamond-wrap { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.vp-diamond {
  width: 84px; height: 84px; border: 1px solid #202615; transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; background: #0f0f0f;
}
.vp-diamond span { transform: rotate(-45deg); font-family: 'Urbanist', sans-serif; font-size: 38px; font-weight: 500; color: #bbd864; line-height: 35px; }
.vp-diamond-line { width: 1px; height: 320px; background: #202615; }

/* Phone mockup */
.vp-phone-wrap { display: flex; align-items: center; justify-content: center; position: relative; min-height: 560px; }
.vp-arch-img { position: absolute; right: 0; bottom: 0; width: 360px; height: 568px; object-fit: contain; z-index: 0; }
.vp-phone-img { position: relative; z-index: 2; width: 260px; height: 528px; object-fit: contain; }

/* ── Who it's for ── */
.vp-who { padding: 100px 80px; background: #0F0F0F; }
.vp-who-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vp-who-content .vp-badge { margin-bottom: 24px; font-size: 16px; font-weight: 600; letter-spacing: 0.02em; }
.vp-who-content h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 77px;
  letter-spacing: -0.05em;
  color: #fff;
  margin-bottom: 20px;
}
.vp-who-content h2 .lime { color: #bbd864; }
.vp-who-content p { font-family: 'Urbanist', sans-serif; font-size: 24px; font-weight: 400; line-height: 34px; letter-spacing: -0.05em; color: #E6ECD7; }
.vp-who-list { display: flex; flex-direction: column; gap: 16px; }
.vp-who-item { background: #000; border: 1px solid #1d1d1d; border-radius: 20px; padding: 20px 24px; cursor: pointer; transition: border-color 0.25s; }
.vp-who-item.active { border-color: #3a4a15; }
.vp-who-item-head { display: flex; align-items: center; gap: 16px; }
.vp-who-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(39,34,34,0.2);
  border: 1px solid #252622;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp-who-item.active .vp-who-item-icon { border-color: #BBD864; }
.vp-who-item h4 { font-family: 'Urbanist', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: -0.03em; color: #fff; }
.vp-who-item-body {
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #999D8C;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.35s ease, margin-top 0.25s ease;
}
.vp-who-item.active .vp-who-item-body { max-height: 160px; margin-top: 14px; }

/* ── Download CTA ── */
.vp-download {
  position: relative;
  min-height: 756px;
  padding: 100px 60px 120px;
  text-align: center;
  overflow: hidden;
  background: url('../images/4689587144a8bdacab6d7838d59f191c1ca0cf3e.png') center/cover no-repeat;
  border-radius: 0 0 78px 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.vp-download::before { content: ''; position: absolute; inset: 0; background: rgba(15,15,15,0.55); border-radius: 0 0 78px 78px; pointer-events: none; }
.vp-download > * { position: relative; z-index: 1; }
.vp-download h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: 96px;
  font-weight: 700;
  line-height: 115px;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}
.vp-download h2 .lime { color: #bbd864; font-style: italic; display: block; }
.vp-download-tagline {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  color: #ffffff;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.vp-download-tagline::before, .vp-download-tagline::after { content: ''; width: 278px; height: 1px; background: #ffffff; flex-shrink: 0; }
.vp-dl-btns { display: flex; gap: 18px; justify-content: center; }
.vp-dl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 265px;
  height: 56px;
  background: #E6ECD7;
  border: none;
  color: #1A1313;
  padding: 16px 34px;
  border-radius: 4px;
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  font-weight: 700;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.vp-dl-btn:hover { opacity: 0.88; }

/* ── Tablet landscape ≤1100px ── */
@media (max-width: 1100px) {
  .vp-hero { padding: 140px 40px 60px; min-height: 600px; }
  .vp-hero h1 { font-size: 56px; line-height: 1.15; }
  .vp-hero-sub { font-size: 20px; }
  .vp-features { padding: 60px 40px; min-height: auto; }
  .vp-features h2 { font-size: 44px; line-height: 1.15; }
  .vp-features-sub { font-size: 20px; }
  .vp-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .vp-card { min-height: auto; }
  .vp-step { padding: 60px 40px; min-height: auto; }
  .vp-step-inner { grid-template-columns: 1fr; gap: 32px; }
  .vp-diamond-wrap { flex-direction: row; }
  .vp-diamond-line { width: 80px; height: 1px; }
  .vp-step-content h2 { font-size: 44px; line-height: 1.1; }
  .vp-step-content p { font-size: 20px; }
  .vp-phone-wrap { justify-content: flex-start; }
  .vp-who { padding: 60px 40px; }
  .vp-who-inner { grid-template-columns: 1fr; gap: 40px; }
  .vp-who-content h2 { font-size: 44px; line-height: 1.1; }
  .vp-who-content p { font-size: 20px; }
  .vp-download { padding: 80px 40px 100px; }
  .vp-download h2 { font-size: 64px; line-height: 1.1; }
}

/* ── Tablet portrait ≤768px ── */
@media (max-width: 768px) {
  .vp-hero { padding: 100px 20px 48px; min-height: 480px; }
  .vp-hero h1 { font-size: 40px; line-height: 1.05; letter-spacing: -0.03em; text-align: center; }
  .vp-hero-sub { font-size: 17px; line-height: 26px; text-align: center; }
  .vp-cta-text { font-size: 17px; }
  .vp-hero-content { display: flex; flex-direction: column; align-items: center; }
  .vp-hero-btns { flex-direction: column; gap: 12px; align-items: center; }

  .vp-features { padding: 60px 20px; }
  .vp-features h2 { font-size: 34px; line-height: 1.1; letter-spacing: -0.03em; text-align: center; }
  .vp-features-sub { font-size: 17px; line-height: 26px; text-align: center; }
  .vp-cards { grid-template-columns: 1fr; }

  .vp-step { padding: 48px 20px; }
  .vp-step-content h2 { font-size: 34px; line-height: 1.15; letter-spacing: -0.03em; text-align: center; }
  .vp-step-content p { font-size: 17px; line-height: 26px; text-align: center; }
  .vp-step-btn { font-size: 17px; padding: 14px 24px; }
  .vp-step-content { display: flex; flex-direction: column; align-items: center; }
  .vp-phone-img { width: 100%; max-width: 260px; height: auto; }
  .vp-phone-img-wide { width: 100%; max-width: 100%; height: auto; }
  .vp-arch-img { display: none; }
  .vp-phone-wrap { min-height: auto; justify-content: center; overflow: hidden; }

  .vp-who { padding: 48px 20px; }
  .vp-who-content h2 { font-size: 34px; line-height: 1.15; letter-spacing: -0.03em; text-align: center; }
  .vp-who-content p { font-size: 17px; line-height: 26px; text-align: center; }
  .vp-who-content { display: flex; flex-direction: column; align-items: center; }

  .vp-download { padding: 60px 20px 80px; border-radius: 0 0 40px 40px; }
  .vp-download h2 { font-size: 44px; line-height: 1.1; letter-spacing: -0.03em; }
  .vp-download-tagline { font-size: 17px; gap: 12px; }
  .vp-download-tagline::before, .vp-download-tagline::after { width: 60px; }
  .vp-dl-btns { flex-direction: column; align-items: center; }
  .vp-dl-btn { width: 100%; max-width: 320px; }
}

/* ── Mobile ≤480px ── */
@media (max-width: 480px) {
  .vp-hero h1 { font-size: 30px; line-height: 1.05; }
  .vp-hero-sub { font-size: 15px; line-height: 24px; margin-bottom: 32px; }
  .vp-badge { font-size: 13px; padding: 6px 12px; }
  .vp-features h2 { font-size: 26px; line-height: 1.15; }
  .vp-features-sub { font-size: 15px; line-height: 24px; margin-bottom: 40px; }
  .vp-step-content h2 { font-size: 26px; line-height: 1.2; }
  .vp-step-content p { font-size: 15px; line-height: 24px; }
  .vp-step-content .vp-badge { font-size: 12px; padding: 5px 10px; }
  .vp-step-btn { font-size: 15px; padding: 12px 20px; width: 100%; text-align: center; justify-content: center; }
  .vp-who-content h2 { font-size: 26px; line-height: 1.2; }
  .vp-who-content p { font-size: 15px; line-height: 24px; }
  .vp-who-item h4 { font-size: 18px; }
  .vp-who-item-body { font-size: 15px; line-height: 24px; }
  .vp-download h2 { font-size: 32px; line-height: 1.15; }
  .vp-download-tagline { font-size: 14px; }
  .vp-card h3 { font-size: 22px; }
  .vp-card-body { font-size: 15px; line-height: 24px; }
  .vp-step-inner { gap: 20px; }
  .vp-phone-img-wide { max-width: 100%; }
  .vp-diamond-wrap { flex-direction: row; align-items: center; }
  .vp-diamond-line { width: 40px; height: 1px; }
  .vp-diamond { width: 60px; height: 60px; }
  .vp-diamond span { font-size: 28px; }
}
