/*=============================================
=            Font Face                         =
=============================================*/
@font-face {
  font-family: 'Vinila';
  src: url('/static/fonts/Vinila-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body.need-nav-offset{
  padding-top:100px;
}

/*=============================================
=            Hero Section                      =
=============================================*/
.hero {
  position: relative;
  margin-top: -60px;
  width: calc(100vw - 50px);
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
  border-radius: 58px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero__text {
  position: absolute;
  bottom: 5%;
  left: 5%;
  color: #fff;
}

.hero__text h1 {
  font-family: 'Vinila', sans-serif;
  font-weight: 700;
  font-size: 5.5rem;
  line-height: 1.1;
  margin: 0;
}

/*=============================================
=        "As Seen On" Carousel                 =
=============================================*/
.seen-on {
  margin: 60px 0;
  text-align: center;
}

.seen-on__title {
  font-family: Poppins, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  color: #777b7e;
  margin-bottom: 1rem;
}

.seen-on__carousel {
  overflow: hidden;
}

.seen-on__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.seen-on__track img {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 76px;
  object-fit: contain;
}

.seen-on__track img[src*="spotlight-logo"] {
  width: 190px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/*=============================================
=        Two-Column Grid - What is GR?                   =
=============================================*/
.two-col-grid {
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 2rem;
  align-items: start;
}

.full-bleed.two-col-wrapper {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3rem 30px;
  box-sizing: border-box;
}

.box {
  padding: 1rem 50px;
}

.box--label {
  align-self: center;
}


.box--label h3 {
  font-family: 'Vinila', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
  color: #0b0b0c;
}

.box--content p {
  font-family: 'Vinila', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  text-align: justify;
  margin: 0;
  color: #333;
}

/*=============================================
=            Button & Slogan                  =
=============================================*/
.get-repped-button {
  margin-top: 60px;
}

.two-col-grid .box--slogan {
  grid-column: 1 / -1;
  padding: 2rem 50px;
  margin-top: 3rem;
}

.box--slogan h2 {
  font-family: 'Vinila', sans-serif;
  font-size: 4.5rem;
  line-height: 1.2;
  text-align: justify;
  color: #0b0b0c;
  margin-bottom: 80px;
}

/*=============================================
=            Testimonials                      =
=============================================*/
.full-bleed.testimonials {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: var(--bs-emphasis-color);
  padding: 60px 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background: transparent;
  padding: 2rem;
  border-radius: 8px;
  color: #fff;
  font-family: Poppins, sans-serif;
}

.testimonial-text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #000;
}

.testimonial-name {
  margin: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

.testimonial-role {
  margin: 0;
  font-size: 0.9rem;
  color: #ddd;
}

/*=============================================
=            4 Card Grid                      =
=============================================*/
.info-cards-heading {
  margin-bottom: 30px;
  padding: 0 30px 30px;
  box-sizing: border-box;
}

.info-cards-heading__title {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
  color: #0b0b0c;
  text-align: left;
}

.info-cards.full-bleed {
  margin-top: 100px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 30px;
  box-sizing: border-box;
}

.info-cards .card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 450px;
  padding: 1rem;
  cursor: pointer;
  transition: flex-basis 0.8s ease, background 0.4s ease;
  display: flex;
  flex-direction: column;
}

.card--image .card__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  pointer-events: none;
}

.card__heading {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  z-index: 1;
}
.card__text {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 50%;
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
  z-index: 1;
}
.card:hover .card__text {
  opacity: 1;
}

.cards.row-1 {
  display: flex;
  gap: 20px;
}
.cards.row-1 .card:nth-child(1) { flex-basis: 60%; }
.cards.row-1 .card:nth-child(2) { flex-basis: 40%; }
.cards.row-1 .card:nth-child(1):hover { flex-basis: 85%; }
.cards.row-1 .card:nth-child(2):hover { flex-basis: 65%; }

.cards.row-2 {display: flex;gap: 20px;margin-top: 20px;}
.cards.row-2 .card:nth-child(1) { flex-basis: 40%; }
.cards.row-2 .card:nth-child(2) { flex-basis: 60%; }
.cards.row-2 .card:nth-child(1):hover { flex-basis: 65%; }
.cards.row-2 .card:nth-child(2):hover { flex-basis: 85%; }

.card--image {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.card--dark-bg {background-color: #000;color: rgb(226,254,169);}
.card--green-bg {background-color: rgb(226,254,169);color: #0b0b0c;border: none;outline: none;box-shadow: none;}
/*=============================================
=        The PLatform - How it Works          =
=============================================*/

.the-platform.full-bleed {
  margin-top: 120px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 30px;
  box-sizing: border-box;
}

.the-platform__header {
  text-align: center;
  margin-bottom: 20px;
}
.the-platform__header h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.5rem;
  color: #333;
}
.the-platform__header h2 {
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 8px 0 0;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 auto;
  width: 45vw;
  margin: 0 25px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.slide.active {
  opacity: 1;
}

.slide video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.slide-caption {
  padding: 1rem 0;
  text-align: left;
}
.slide-caption h3 {
  font-family: Poppins, sans-serif;
  font-size: 1.5rem;
  margin: 0 0 .5rem;
}
.slide-caption p {
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  margin: 0;
}

.carousel-nav {
  position: absolute;
  top: 0; bottom: 0;
  width: 15%;
  z-index: 2;
}
.nav-left  { left: 0; }
.nav-right { right: 0; }
.carousel-nav::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 2rem;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity .2s;
}
.nav-left:hover::after  { content: '‹'; left: 50%; opacity: 1; }
.nav-right:hover::after { content: '›'; right: 50%; opacity: 1; }

/* custom green circle cursors for fine pointers */
@media (pointer: fine) {
  .nav-left:hover {
    cursor: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41'%3E%3Ccircle cx='20' cy='20' r='19' fill='%23E2FEA9' fill-opacity='0.8'/%3E%3Cpath d='M25 12 L15 20 L25 28' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") 20 20, auto;
  }
  .nav-right:hover {
    cursor: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='41'%3E%3Ccircle cx='20' cy='20' r='19' fill='%23E2FEA9' fill-opacity='0.8'/%3E%3Cpath d='M15 12 L25 20 L15 28' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") 20 20, auto;
  }
}

.carousel-nav::after {
  transition: opacity 0.5s ease 2s;
}

.carousel-container,
.carousel-track,
.slide,
.slide * {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
/*=============================================
=   3 Way Card Split (We are Expanding)       =
=============================================*/
.three-split-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 100px 30px;
  box-sizing: border-box;
}
.three-split-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.three-split-section {
  margin-top: 80px;
}

.action-card {
  position: relative;
  flex: 0 0 45%;
  min-height: 800px;
  overflow: hidden;
  border-radius: 12px;
}

.action-card__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.action-card__cta {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  margin: 0;
  max-width: 60%;
  text-align: right;
  font-family: 'Vinila', sans-serif;
  font-size: 3.5rem;
  color: #ffffff;
  z-index: 2;
}

.action-card__subtitle {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  margin: 0;
  font-family: 'Vinila', sans-serif;
  font-size: 1.8rem;
  max-width: 60%;
  line-height: 1.2;
  color: #ffffff;
  z-index: 2;
}

.stack-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 700px;
}

.stack-card {
  flex: 1;
  border-radius: 12px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: flex 0.6s ease;
  cursor: pointer;
}
.stack-card__heading {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 2rem;
  z-index: 1;
}
.stack-card__text {
  margin-top: auto;
  opacity: 0;
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.stack-card__text + .stack-card__text {
  margin-top: 1rem;
}

.stack-card:hover .stack-card__text {
  opacity: 1;
}

.agent-card {background: #16153f;color: #ffffff;}
.expanding-card {background: #FDFBD4;color: #16153f;}

/* Vertical grow on hover */
.stack-card:hover {
  flex: 1.25;
}
.stack-cards:hover .stack-card:not(:hover) {
  flex: 1;
}
/*=============================================
=     Call Tp Action - Text Scroll            =
=============================================*/
.newsletter-section {
  margin-top: 3rem;   /* bump as needed */
}

/* Newsletter card tweaks */
.box--newsletter {
  border-radius: var(--card-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 3.5rem;
  text-align: center;
}

/* bigger title spacing */
.box--newsletter .box__title {
  margin-bottom: .75rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b0b0c;
}

/* subtitle */
.box--newsletter .box__subtitle {
  color: #8b8888;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

/* pill-shaped input with extra bottom margin */
.box--newsletter input[type="email"] {
  width: 100%;
  max-width: 400px;
  margin: 0 0 1.2rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid #aaa;
  font-size: 1.1rem;
  box-sizing: border-box;
}

.box--newsletter .get-repped-button {
  margin: 0 0 1rem;
}
.get-repped-button {
  font-size: 1.2rem;
}

#newsletter-feedback {margin-top: .75rem;font-size: 1rem;}
#newsletter-feedback.success { color: #0b0b0c; }
#newsletter-feedback.error   { color: #ee7e73; }
/*=============================================
=     Call Tp Action - Text Scroll            =
=============================================*/
.scroll-reveal-text.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 60px;
  padding: 4rem 80px;
  box-sizing: border-box;
  background: #fff;
}

.scroll-reveal-text .sr-lines {
  font-family: 'Vinila', sans-serif;
  font-size: 4.5rem;
  line-height: 1.2;
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
}

.scroll-reveal-text .sr-line {
  display: inline;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1.6s ease-out, transform 2.6s ease-out;
  margin-right: 0.5rem;
}

/* colors per sentence */
.sr-line--1 { color: #a5a5b8; }
.sr-line--2 { color: #797986; }
.sr-line--3 { color: #5a5a66; }
.sr-line--4 { color: #0b0b0c; }
.scroll-reveal-text .sr-line.visible {opacity: 1;transform: translateY(0);}
/*=============================================
=              Pricing Section               =
=============================================*/
.pricing {
  margin-top: 90px;
  margin-bottom: 120px;
  background: #fff;
}

.pricing__header {
  text-align: center;
}
.pricing__header h2 {
  font-family: Poppins, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: #0b0b0c;
}
.pricing__header p {
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
  padding-bottom: 2rem;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pricing__card {
  background: #16153f;
  color: #fff;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pricing__card h3 {
  font-family: 'Vinila', sans-serif;
  font-size: 1.5rem;
  margin: 0 0 1rem;
}
.pricing__price {
  font-family: 'Vinila', sans-serif;
  font-size: 2.5rem;
  margin: 0 0 1.5rem;
  color: #fff;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.pricing__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-family: Poppins, sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
}
.pricing__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #e2fea9;
  font-weight: bold;
}

.get-repped-button.small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
