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

:root {
  --green: #3fb343;
  --green-hover: #4dd952;
  --green-glow: rgba(63, 179, 67, 0.4);
  --lime: #baf703;
  --lime-glow: rgba(186, 247, 3, 0.3);
  --black: #060606;
  --dark: #0e0e0e;
  --dark2: #151515;
  --dark3: #1c1c1c;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --text: #d4d4d4;
  --muted: #666;
  --white: #fff;
  --max-w: 1340px;
  --nav-h: 64px;
  --px: clamp(16px, 4vw, 48px);
  --r: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ════════════════════════════════════════
    NAV
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 6px;
  transition:
    color 0.2s,
    background 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-badge {
  font-family: "Inter", sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--lime);
  color: #000;
  padding: 2px 5px;
  border-radius: 3px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 9px 18px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.btn-primary {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  padding: 9px 22px;
  border: none;
  border-radius: 8px;
  background: var(--green);
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 16px var(--green-glow);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* ════════════════════════════════════════
    HERO — full-screen cinematic, Dropout style
════════════════════════════════════════ */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 850px;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, #00000000 20%, #060606d4 100%),
    linear-gradient(
      to bottom,
      rgb(6 6 6) 0%,
      rgb(6 6 6 / 83%) 15%,
      rgb(6 6 6 / 51%) 85%,
      #060606de 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 60px var(--px);
}

.hero-eyebrow {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  /* color: var(--green); */
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--green);
  opacity: 0.4;
}

.hero-tagline {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-tagline .g {
  color: var(--green);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

@media (max-width: 768px) {
  .hero-sub {
    margin: 0 20px 20px 20px;
  }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 18px 44px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
}

.hero-btn-primary {
  background: var(--green);
  color: #000;
  box-shadow:
    0 0 40px var(--green-glow),
    0 8px 30px rgba(0, 0, 0, 0.5);
}

.hero-btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 60px var(--green-glow),
    0 12px 40px rgba(0, 0, 0, 0.6);
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* stats bar */
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 56px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 480px) {
  .hero-overlay {
    background: #000000a6;
  }
}

/* ════════════════════════════════════════
    BIG QUOTE BAND — Dropout-style large text section
════════════════════════════════════════ */
.quote-band {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 480px) {
  .quote-band {
    padding: 40px 0;
  }
}

.quote-band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(63, 179, 67, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.quote-text {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 20px;
  position: relative;
}

.quote-text .g {
  color: var(--green);
}

.quote-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ════════════════════════════════════════
    FEATURE PILLS — scrolling ticker
════════════════════════════════════════ */
.feature-strip {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.feature-pills-track {
  display: flex;
  width: max-content;
  animation: ticker-slide-pills 20s linear infinite;
}

.feature-pills-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-slide-pills {
  to {
    transform: translateX(-50%);
  }
}

.feature-pills-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 48px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  background: var(--dark2);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: all 0.25s;
  white-space: nowrap;
}

.feature-pill:hover {
  border-color: var(--green);
  background: rgba(63, 179, 67, 0.05);
  color: var(--white);
  transform: translateY(-2px);
}

.feature-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(63, 179, 67, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-pill-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ════════════════════════════════════════
    CONTENT SECTIONS
════════════════════════════════════════ */
.content-section {
  padding: 32px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.section-link {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-link:hover {
  color: var(--green-hover);
}

.section-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Carousel */
.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 9px 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(6, 6, 6, 0.9);
  border: 1px solid var(--border-light);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}

.carousel-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: #000;
  box-shadow: 0 0 20px var(--green-glow);
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.carousel-btn.prev {
  left: -14px;
  transform: translateY(-60%);
}

.carousel-btn.next {
  right: -14px;
  transform: translateY(-60%);
}

/* ─── VIDEO CARD ─── */
.vcard {
  flex-shrink: 0;
  width: clamp(260px, 28vw, 360px);
  scroll-snap-align: start;
  cursor: pointer;
}

.vcard-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  background: var(--dark2);
  border: 1px solid transparent;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s,
    border-color 0.3s;
}

.vcard:hover .vcard-thumb {
  transform: scale(1.04);
  border-color: var(--green);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(63, 179, 67, 0.1);
}

.vcard-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vcard:hover .vcard-play {
  opacity: 1;
}

.vcard-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.vcard:hover .vcard-thumb img {
  opacity: 0;
}

.vcard-play-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px var(--green-glow);
  transition: transform 0.2s;
}

.vcard:hover .vcard-play-icon {
  transform: scale(1.1);
}

.vcard-play-icon svg {
  width: 20px;
  height: 20px;
  fill: #000;
  margin-left: 2px;
}

.vcard-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-family: "Oswald", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 4px;
}

.vcard-badge.new {
  background: var(--green);
  color: #000;
}

.vcard-badge.soon {
  background: rgba(186, 247, 3, 0.12);
  color: var(--lime);
  border: 1px solid rgba(186, 247, 3, 0.25);
}

.vcard-badge.prem {
  background: rgba(186, 247, 3, 0.12);
  color: var(--lime);
  border: 1px solid rgba(186, 247, 3, 0.25);
}

.vcard-dur {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 3;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(0, 0, 0, 0.8);
  padding: 2px 8px;
  border-radius: 4px;
}

.vcard-info {
  padding: 12px 2px 0;
}

.vcard-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 6px;
}

.vcard-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.vcard-series {
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
}

.vcard-sep {
  display: none;
}

.vcard-views {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* ─── SERIES CARD (portrait / Dropout show-card style) ─── */
.scard {
  flex-shrink: 0;
  width: clamp(170px, 20vw, 240px);
  scroll-snap-align: start;
  cursor: pointer;
}

.scard-thumb {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  background: var(--dark2);
  border: 1px solid transparent;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s,
    border-color 0.3s;
}

.scard:hover .scard-thumb {
  transform: scale(1.05);
  border-color: var(--green);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(63, 179, 67, 0.1);
}

.scard-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scard-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.scard-grad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    transparent 65%
  );
}

.scard-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  z-index: 2;
}

.scard-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 4px;
}

.scard-count {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ════════════════════════════════════════
    TESTIMONIAL
════════════════════════════════════════ */
.testimonial-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.testi-quote {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.15;
}

.testi-quote .g {
  color: var(--green);
}

.testi-author {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

/* ════════════════════════════════════════
    PRICING
════════════════════════════════════════ */
.pricing-section {
  padding: 45px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(
    ellipse,
    rgba(63, 179, 67, 0.04),
    transparent 60%
  );
  pointer-events: none;
}

.pricing-header {
  text-align: center;
  margin-bottom: 52px;
}

.pricing-header h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-header p {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  color: var(--muted);
  font-weight: 300;
}

.pricing-layout {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 769px) {
  .plan-group {
    display: contents;
  }

  .pricing-layout {
    grid-template-rows: auto auto;
  }

  /* Explicit Grid Positioning */
  .plan-group:nth-child(1) .plan-card {
    grid-column: 1;
    grid-row: 1;
  }

  .plan-group:nth-child(1) .plan-features {
    grid-column: 1;
    grid-row: 2;
  }

  .plan-group:nth-child(2) .plan-card {
    grid-column: 2;
    grid-row: 1;
  }

  .plan-group:nth-child(2) .plan-features {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 768px) {
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    display: flex;
    flex-direction: column;
  }

  .plan-group {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
}

.plan-card {
  border: 1px solid var(--border);
  background: var(--dark2);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    border-color 0.3s;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card.premium {
  border-color: rgba(186, 247, 3, 0.4);
  background: linear-gradient(170deg, #182008, var(--dark2));
}

.plan-card.premium:hover {
  border-color: rgba(186, 247, 3, 0.7);
}

.pcard-stripe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--lime);
}

.plan-card-tier {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 24px;
}

.plan-card-logo {
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}

.plan-card-logo.ts-logo {
  height: 32px;
}

.pcard-tagline {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}

.plan-card-price {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 30px;
}

.pcard-cta {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: auto;
}

.pcard-cta.std {
  background: var(--green);
  color: #000;
  box-shadow: 0 4px 24px var(--green-glow);
}

.pcard-cta.std:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--green-glow);
}

.pcard-cta.prm {
  background: var(--lime);
  color: #000;
  box-shadow: 0 4px 20px rgba(186, 247, 3, 0.3);
  position: relative;
  overflow: hidden;
}

.pcard-cta.prm::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  animation: prm-gleam 4s infinite;
}

@keyframes prm-gleam {
  0% {
    left: -150%;
  }

  20% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

.pcard-cta.prm:hover {
  background: #cdff20;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(186, 247, 3, 0.4);
}

.pricing-features-row {
  display: contents;
}

.plan-features {
  padding: 0 20px;
}

.pcard-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pcard-features li {
  font-size: 0.95rem;
  color: var(--white);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.4;
}

.pcard-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(63, 179, 67, 0.15);
  margin-top: 2px;
}

.pcard-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--green);
  fill: none;
  stroke-width: 3;
}

.premium-features .pcard-check {
  background: rgba(186, 247, 3, 0.15);
}

.premium-features .pcard-check svg {
  stroke: var(--lime);
}

.pcard-networks {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(186, 247, 3, 0.15);
}

.pcard-networks-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 16px;
}

.pcard-network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

.pcard-network-grid img {
  width: 100%;
  height: auto;
  max-height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.85);
  transition: opacity 0.2s;
}

.pcard-network-grid img:hover {
  opacity: 1;
}

/* ════════════════════════════════════════
    FAQ SECTION
════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.faq-header p {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 300;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(63, 179, 67, 0.4);
  background: #1a1a1a;
}

.faq-item.active {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(63, 179, 67, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 20px;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--green);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  margin-top: -1px;
}

.faq-icon::after {
  height: 100%;
  width: 2px;
  left: 50%;
  top: 0;
  margin-left: -1px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer-content {
  padding: 0 30px 24px 30px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-question {
    padding: 20px;
    font-size: 1.1rem;
  }

  .faq-answer-content {
    padding: 0 20px 20px 20px;
  }
}

/* ════════════════════════════════════════
    AWARDS
════════════════════════════════════════ */
.awards {
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Side Fade Mask */
.awards::before,
.awards::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.awards::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.awards::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.awards-label {
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--muted);
  margin-bottom: 30px;
}

.awards-track {
  display: flex;
  width: max-content;
  animation: awards-scroll 40s linear infinite;
  align-items: center;
  gap: 40px;
  padding: 15px 0;
}

.awards-track img {
  height: 48px;
}

@media (min-width: 1024px) {
  .awards-track img {
    height: 80px;
  }

  .awards-track {
    gap: 80px;
  }
}

.awards-track img:hover {
  opacity: 1;
}

@keyframes awards-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% / 3));
  }
}

.award {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 10px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--dark2);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
}

.award:hover {
  border-color: rgba(255, 215, 0, 0.3);
  color: var(--white);
}

.award span {
  color: #ffd700;
}

/* ════════════════════════════════════════
    FOOTER — Dropout-style bold green
════════════════════════════════════════ */
footer {
  background: var(--green);
  color: #000;
  padding: 56px 0 36px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 28px;
}

.footer-brand {
  max-width: 260px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-sq {
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-sq svg {
  width: 13px;
  height: 13px;
  fill: var(--green);
}

.footer-brand-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.5;
}

.footer-cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.75);
}

.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 7px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #000;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.35);
}

.footer-copy a {
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.68rem;
  color: rgba(0, 0, 0, 0.3);
  max-width: 480px;
  line-height: 1.5;
  text-align: right;
}

/* ════════════════════════════════════════
    ANIMATIONS
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ════════════════════════════════════════
    RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .feature-pills {
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .carousel-btn {
    display: none;
  }

  .hero-stats {
    gap: 28px;
  }

  .footer-cols {
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 16px 0;
  }

  .nav-logo img {
    height: 28px;
  }

  .nav-right {
    gap: 6px;
  }

  .btn-ghost {
    padding: 8px 14px;
  }

  .btn-primary {
    padding: 8px 14px;
  }

  .hero-tagline {
    font-size: 2.6rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .feature-strip {
    padding: 36px 0;
  }

  .feature-pill {
    padding: 10px 18px;
    font-size: 0.75rem;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-disclaimer {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .nav-logo img {
    height: 22px;
  }
}

/* ════════════════════════════════════════
    MOBILE MENU
════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-inner {
  padding: 40px var(--px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: auto;
}

.mobile-nav-links a {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-links a:hover {
  color: var(--green);
}

.mobile-nav-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 40px;
}

.mobile-nav-footer .btn-ghost,
.mobile-nav-footer .btn-primary {
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 1.1rem;
}

/* Hamburger Animation */
.nav-hamburger {
  z-index: 1000;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════
    AGE VERIFICATION MODAL
════════════════════════════════════════ */
.age-verification-container {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  display: none; /* Flex when active via JS */
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-verification-description {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.description-wrapper {
  overflow-y: auto;
  flex: 1;
  padding: 25px 25px 0px 25px;
}

.dismiss-modal-btn-container {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 20px 40px 40px 40px;
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  bottom: 0;
  z-index: 10;
}

.enter-verification-btn,
.dismiss-exit-btn {
  border: none;
  cursor: pointer;
  font-size: 14px;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-verification-logo {
  text-align: center;
  margin-bottom: 24px;
}

.age-verification-logo img {
  width: 180px;
  /* filter: brightness(0) invert(1); */
}

.verification-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.verification-paragraph p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.verification-paragraph a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.verification-paragraph a:hover {
  text-decoration: underline;
}

.agree-terms h3 {
  font-size: 16px;
  color: #fff;
  margin: 32px 0 16px;
  font-weight: 600;
}

.bullet-points {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}

.bullet-points li {
  color: var(--gray);
  margin-bottom: 8px;
}

.bullet-points p {
  margin: 0;
  font-size: 14px;
}

.disagree-note {
  font-size: 14px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 32px;
}

.dismiss-modal-btn-container {
  display: flex;
  gap: 8px; /* Reduced gap slightly for mobile screens */
  justify-content: center;
  flex-wrap: nowrap;
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: var(--dark2);
  padding: 16px 20px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.enter-verification-btn,
.dismiss-exit-btn {
  border: none;
  cursor: pointer;
  font-size: 14px;
  flex: 1;
  text-align: center;
  padding: 12px 16px; /* explicitly set padding to fit nicely */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .age-verification-description {
    padding: 24px 24px 0 24px;
  }

  .dismiss-modal-btn-container {
    padding: 24px 0px;
  }

  .hero-btn-primary {
    box-shadow: none;
  }

  .description-wrapper {
    overflow-y: auto;
    flex: 1;
    padding: 0;
  }
}
