/* ===================================================================
   homepage_v2.css — conversion-first homepage styles
   Loaded after base.css / phase styles. Scoped with .hero-cc, .showcase-strip,
   .how-cc, .mobile-upload-cta, .showcase-video-modal so it never bleeds.
   =================================================================== */

/* HERO ------------------------------------------------------------- */

.hero-cc { min-height: clamp(540px, 78vh, 760px); padding-bottom: 24px; }

.hero-cc-content {
  max-width: 880px;
  text-align: center;
  padding: 0 20px;
}

.hero-cc-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 45, 120, 0.18);
  border: 1px solid rgba(255, 45, 120, 0.45);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #ff2d78;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-cc-title {
  font-size: clamp(38px, 6.2vw, 76px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.55);
}

.hero-cc-accent {
  background: linear-gradient(90deg, #ff2d78 0%, #ff7a3d 60%, #ffd166 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-cc-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
  max-width: 680px;
  margin: 0 auto 26px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cc-cta { max-width: 560px; margin: 0 auto; }

.hero-cc-joinbar {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 8px;
  margin-bottom: 12px;
}

.hero-cc-joinbar .join-input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 16px;
  font-size: 16px;
  color: #fff;
  outline: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-cc-joinbar .join-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
  text-transform: none;
  letter-spacing: 0;
}

.hero-cc-joinbar .btn-primary {
  flex: 0 0 auto;
  padding: 0 22px;
  height: 48px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-cc-helper {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.hero-cc-link {
  color: #ffd166;
  text-decoration: none;
  font-weight: 600;
}
.hero-cc-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .hero-cc { min-height: 78vh; padding-bottom: 80px; }
  .hero-cc-joinbar { flex-direction: column; padding: 10px; gap: 10px; }
  .hero-cc-joinbar .btn-primary { width: 100%; height: 50px; }
  .hero-cc-title { font-size: 38px; }
  .hero-cc-sub { font-size: 15px; }
}

/* SHOWCASE STRIP --------------------------------------------------- */

.showcase-strip {
  max-width: 1280px;
  margin: -48px auto 0;
  padding: 32px 20px 48px;
  position: relative;
  z-index: 2;
}

.showcase-strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.showcase-strip-title {
  font-size: clamp(22px, 2.4vw, 30px);
  margin: 4px 0 0;
}

.showcase-strip-all { font-size: 14px; }

.showcase-strip-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 14px;
}

/* When we only have 3 items: equal row of 3 cards */
.showcase-strip-grid.showcase-strip-grid--even {
  grid-template-columns: repeat(3, 1fr);
}

.showcase-card {
  background: var(--surface-2, #141414);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
  cursor: pointer;
}

.showcase-card:hover { transform: translateY(-2px); border-color: rgba(255, 45, 120, 0.5); }

.showcase-card-featured {
  grid-row: span 2;
  grid-column: 1 / 2;
}

.showcase-card-media {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
}

.showcase-card-featured .showcase-card-media {
  aspect-ratio: 4 / 3;
}

.showcase-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease;
}
.showcase-card-play:hover { background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%); }
.showcase-card-play svg { transition: transform .2s ease; }
.showcase-card-play:hover svg { transform: scale(1.06); }

.showcase-card-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.showcase-card-soon span {
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.showcase-card-kind {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.showcase-card-dur {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 45, 120, 0.92);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.showcase-card-info {
  padding: 14px 16px 16px;
}
.showcase-card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}
.showcase-card-featured .showcase-card-title { font-size: 22px; }
.showcase-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 8px;
}
.showcase-card-link {
  font-size: 13px;
  color: #ff2d78;
  text-decoration: none;
  font-weight: 600;
}
.showcase-card-link:hover { text-decoration: underline; }

.showcase-card-proof {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 4px 0 8px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.showcase-card-featured .showcase-card-proof {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .showcase-strip-grid { grid-template-columns: 1fr 1fr; }
  .showcase-card-featured { grid-row: span 1; grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .showcase-strip { margin-top: -32px; padding: 22px 16px 36px; }
  .showcase-strip-grid { grid-template-columns: 1fr; gap: 12px; }
  .showcase-card-featured { grid-column: auto; }
  .showcase-card-featured .showcase-card-media { aspect-ratio: 16 / 9; }
  .showcase-card-info { padding: 12px 14px 14px; }
}

/* HOW IT WORKS V2 -------------------------------------------------- */

.how-cc { padding: 64px 0 56px; }
.how-cc .step-card { transition: transform .2s ease, border-color .2s ease; }
.how-cc .step-card:hover { transform: translateY(-2px); border-color: rgba(255, 45, 120, 0.4); }
.how-cc .step-card-accent {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.06), rgba(255, 122, 61, 0.02));
  border-color: rgba(255, 45, 120, 0.35);
}
.how-cc .step-card-accent .step-number { color: #ff2d78; }

/* MOBILE STICKY CTA ------------------------------------------------ */

.mobile-upload-cta {
  display: none;
}

@media (max-width: 720px) {
  .mobile-upload-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    /* Lifted above the existing mobile bottom-nav (~64px tall) */
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    right: 12px;
    z-index: 60;
    background: linear-gradient(90deg, #ff2d78, #ff7a3d);
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: 0 10px 32px rgba(255, 45, 120, 0.45);
    font-weight: 700;
    font-size: 14px;
    border: 0;
    line-height: 1.2;
  }
  .mobile-upload-cta-icon { display: inline-flex; flex: 0 0 auto; }
  .mobile-upload-cta-label { flex: 1; }
  .mobile-upload-cta-arrow { font-size: 16px; flex: 0 0 auto; }
}

/* SHOWCASE VIDEO MODAL --------------------------------------------- */

.showcase-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.showcase-video-modal-inner {
  position: relative;
  max-width: min(960px, 100%);
  width: 100%;
}
.showcase-video-modal-video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: 12px;
  background: #000;
  display: block;
}
.showcase-video-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
}
.showcase-video-modal-close:hover { background: rgba(255, 255, 255, 0.22); }
.showcase-video-modal-title {
  color: #fff;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
  opacity: 0.85;
}
