/* ---------------------------       first Landing page CSS       -------------------------      */

* {
    box-sizing: border-box;
  }

  html, body {
    margin: 0;
    padding: 0;
  }

  body {
    background: #d8d6c9;
    color: #111;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.4;
  }

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

  .landing-page {
    width: 100%;
  }

  .container {
    width: min(1280px, calc(100% - 64px));
    margin: 0 auto;
  }

  .hero {
    padding: 42px 0 56px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 48px;
    align-items: start;
  }

  .hero-media,
  .card-media {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .hero-media {
    aspect-ratio: 16 / 9.5;
  }

  .card-media {
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
  }

  .hero-media iframe,
  .card-media iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-title {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: clamp(2.2rem, 3vw, 4.2rem);
    line-height: 1.06;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 26px;
    letter-spacing: 0.2px;
  }

  .hero-text {
    font-size: clamp(1rem, 1.05vw, 1.35rem);
    margin: 0 0 28px;
    max-width: 360px;
  }

  .hero-btn {
    display: inline-block;
    background: #c7904b;
    color: #fff;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: opacity 0.2s ease;
  }

  .hero-btn:hover {
    opacity: 0.9;
  }

  .section-intro {
    text-align: center;
    padding: 8px 0 34px;
  }

  .section-title {
    font-family: 'Oswald', Arial, sans-serif;
    font-size: clamp(2rem, 2.4vw, 3.6rem);
    line-height: 1.05;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 14px;
  }

  .section-subtitle {
    font-size: clamp(0.98rem, 1vw, 1.2rem);
    margin: 0;
  }

  .cards-section {
    padding-bottom: 60px;
  }
	  
  .cards-section2 {
    padding-bottom: 120px;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
  }

  .card {
    width: 100%;
  }

  .card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
  }

  .card-text {
    font-size: 1rem;
    margin: 0;
    max-width: 320px;
  }

  .footer {
    background: linear-gradient(90deg, #231e1b 0%, #2b2521 100%);
    color: #fff;
    padding: 56px 20px 58px;
    text-align: center;
  }

  .footer-title {
    font-size: 1rem;
    margin: 0 0 22px;
  }

  .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
    margin-bottom: 84px;
  }

  .social-links a {
    color: #fff;
    font-size: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
  }

  .social-links a:hover {
    opacity: 0.8;
  }

  .footer-copy {
    font-size: 0.95rem;
    margin: 0;
  }

  @media (max-width: 800px) {
    .container {
      width: min(1280px, calc(100% - 40px));
    }

    .hero-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .hero-copy {
      padding-top: 0;
      max-width: 700px;
    }

    .cards-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .container {
      width: calc(100% - 24px);
    }

    .hero {
      padding: 20px 0 36px;
    }

    .hero-grid {
      gap: 22px;
    }

    .hero-media {
      aspect-ratio: 16 / 10;
    }

    .hero-title {
      margin-bottom: 18px;
    }

    .hero-text {
      margin-bottom: 20px;
    }

    .hero-btn {
      width: 100%;
      text-align: center;
    }

    .section-intro {
      padding: 0 0 24px;
    }

    .cards-section {
      padding-bottom: 35px;
    }
	  
	.cards-section2 {
      padding-bottom: 70px;
    }

    .cards-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .social-links {
      gap: 22px;
      margin-bottom: 54px;
    }

    .social-links a {
      font-size: 1.8rem;
    }
  }



/* ---------------------------       Pens Start with Good Decisions Lander       -------------------------      */



.PSI-pens-start-video-landing {
  background: #f7f7f4;
  padding: 42px 18px 90px;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
}

.PSI-pens-start-vl-container {
  max-width: 980px;
  margin: 0 auto;
}

.PSI-pens-start-vl-header {
  text-align: center;
  margin-bottom: 40px;
}

.PSI-pens-start-vl-header h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .92;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888079;
  font-weight: 900;
}

.PSI-pens-start-vl-header h1 span {
  color: #BF8E53;
}

.PSI-pens-start-vl-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.35;
}

.PSI-pens-start-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.PSI-pens-start-video-card h3 {
  margin: 26px 0 10px;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}

.PSI-pens-start-video-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.28;
  min-height: 100px;
}

.PSI-pens-start-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 14px;
  background: #ddd;
}

.PSI-pens-start-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.PSI-pens-start-product-box {
  margin-top: 40px;
  background: #f4ecdc;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 14px;
  align-items: center;
}

.PSI-pens-start-thumb {
  width: 70px;
  height: 70px;
  background: #d8d8d8;
}

.PSI-pens-start-product-box span {
  display: block;
  color: #BF8E53;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.PSI-pens-start-product-box strong {
  display: block;
  font-size: 12px;
  line-height: 1.15;
  margin: 2px 0 4px;
}

.PSI-pens-start-product-box a {
  color: #b00020;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}


/* Tablet */
@media (max-width: 1024px) {
  .PSI-pens-start-vl-container {
    max-width: 820px;
  }

  .PSI-pens-start-video-grid {
    gap: 32px;
  }
}


/* Mobile */
@media (max-width: 767px) {
  .PSI-pens-start-PSI-pens--video-landing {
    padding: 34px 18px 60px;
  }

  .PSI-pens-start-vl-header {
    margin-bottom: 32px;
  }

  .PSI-pens-start-vl-header h1 {
    font-size: 38px;
  }

  .PSI-pens-start-video-grid {
    grid-template-columns: 1fr;
    gap: 54px;
    max-width: 360px;
    margin: 0 auto;
  }

  .PSI-pens-start-video-card h3 {
    margin-top: 22px;
	text-align: center;
  }

  .PSI-pens-start-product-box {
    margin-top: 28px;
  }
}



/*////////////////// ----------- Pens Start with Good Decisions B test ------------ /////////////////////// */


.PSI-pens-start-single-video-landing {
  background: #fff;
  padding: 44px 18px 110px;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
}

.PSI-pens-start-sv-container {
  max-width: 900px;
  margin: 0 auto;
}

.PSI-pens-start-sv-header {
  text-align: center;
  margin-bottom: 42px;
}

.PSI-pens-start-sv-header h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .92;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888079;
  font-weight: 900;
}

.PSI-pens-start-sv-header h1 span {
  color: #BF8E53;
}

.PSI-pens-start-sv-header p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.35;
}

.PSI-pens-start-sv-row {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(260px, 360px);
  gap: 56px;
  justify-content: center;
  align-items: start;
}

.PSI-pens-start-sv-video-wrap {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd;
}

.PSI-pens-start-sv-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.PSI-pens-start-sv-copy-col {
  padding-top: 12px;
}

.PSI-pens-start-sv-copy-col h2 {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1.12;
  text-transform: uppercase;
  font-weight: 900;
}

.PSI-pens-start-sv-copy-col p {
  max-width: 330px;
  margin: 0 0 52px;
  font-size: 15px;
  line-height: 1.35;
}

.PSI-pens-start-sv-product-box {
  width: 230px;
  background: #f4ecdc;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding: 14px;
  align-items: center;
  text-decoration: none;
  color: #111;
}

.PSI-pens-start-sv-thumb {
  width: 70px;
  height: 70px;
  background: #d8d8d8;
  display: block;
}

.PSI-pens-start-sv-kicker {
  display: block;
  color: #BF8E53;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.PSI-pens-start-sv-product-copy strong {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  margin: 4px 0;
}

.PSI-pens-start-sv-link {
  color: #b00020;
  font-size: 12px;
  font-weight: 900;
}


/* Tablet */
@media (max-width: 1024px) {
  .PSI-pens-start-sv-container {
    max-width: 760px;
  }

  .PSI-pens-start-sv-row {
    gap: 42px;
  }
}


/* Mobile: 350px–430px */
@media (max-width: 767px) {
  .PSI-pens-start-single-video-landing {
    padding: 34px 18px 70px;
  }

  .PSI-pens-start-sv-header {
    margin-bottom: 32px;
  }

  .PSI-pens-start-sv-header h1 {
    font-size: 38px;
  }

  .PSI-pens-start-sv-row {
    grid-template-columns: 1fr;
    max-width: 330px;
    margin: 0 auto;
    gap: 28px;
  }

  .PSI-pens-start-sv-copy-col {
    padding-top: 0;
  }
	
  .PSI-pens-start-sv-copy-col h2 {
    margin-bottom: 28px;
	text-align: center;
  }

  .PSI-pens-start-sv-copy-col p {
    margin-bottom: 28px;
	text-align: center;
  }

  .PSI-pens-start-sv-product-box {
    width: 100%;
    max-width: 250px;
  }
}

/* ---------------------------      END of Pens Start with Good Decisions Lander       -------------------------      */



/* ---------------------------     START of WATCH FIRST. TURN BETTER. LANDING PAGE     -------------------------      */

.psi-vid-lander-psi-video-page,
  .psi-vid-lander-psi-video-page * {
  font-family: "Inter", Arial, Helvetica, sans-serif;
}
	
	.psi-vid-lander-psi-video-page {
  background: #fff;
  font-family: "Inter", sans-serif;
  color: #241d18;
  padding: 28px 16px 42px;
  border-radius: 15px;
  margin-bottom: 30px
}

.psi-vid-lander-video-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.psi-vid-lander-video-hero {
  display: block;
  max-width: 1000px;
  margin: 0 auto 34px;
  text-align: center;
}

.psi-vid-lander-eyebrow {
  font-family: "Inter", sans-serif;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 0px;
  padding: 8px 0px;
  color: #BF8E53;
  font-weight: 300;
  letter-spacing: .125em;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
}

.psi-vid-lander-image-title {
  margin: 10px auto 18px;
  text-align: center;
  line-height: 1;
}

.psi-vid-lander-image-title picture {
  display: block;
}

.psi-vid-lander-image-title img {
  display: block;
  width: min(100%, 1000px);
  height: auto;
  margin: 0 auto;
}
		
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.psi-vid-lander-hero em {
  color: #a6192e;
  font-style: italic;
  border-bottom: 5px solid #a6192e;
}

.psi-vid-lander-hero p {
  text-align: center;
  font-weight: 200;
}

.psi-vid-lander-primary-btn,
.psi-vid-lander-video-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #a6192e;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 16px 28px;
  margin-top: 16px;
}

.psi-vid-lander-start-note {
  color: #4a2b1b;
  font-style: italic;
  font-weight: 700;
  margin: 16px 0 0 210px;
}

.psi-vid-lander-featured-video,
.psi-vid-lander-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #ddd;
}

.psi-vid-lander-featured-video img,
.psi-vid-lander-thumb img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
		
.psi-vid-lander-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #ddd;
}

.psi-vid-lander-thumb iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.psi-vid-lander-featured-video {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
}

.psi-vid-lander-video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.psi-vid-lander-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.psi-vid-lander-video-title {
  position: absolute;
  left: 28px;
  bottom: 34px;
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 900;
  text-shadow: 0 3px 9px rgba(0,0,0,.65);
}

.psi-vid-lander-play-btn,
.psi-vid-lander-play-small {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border: 4px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 34px;
  background: rgba(0,0,0,.28);
}

.psi-vid-lander-play-small {
  width: 66px;
  height: 66px;
  font-size: 25px;
}

.psi-vid-lander-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 14px;
}

.psi-vid-lander-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
}

.psi-vid-lander-section-title::before,
.psi-vid-lander-section-title::after {
  content: "";
  height: 1px;
  background: #c98d52;
  flex: 1;
}

.psi-vid-lander-featured-grid,
.psi-vid-lander-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.psi-vid-lander-video-card {
  position: relative;
  background: #fffaf3;
  border: 1px solid #e3d5c4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(70, 45, 24, .12);
}

.psi-vid-lander-rank {
  position: absolute;
  z-index: 2;
  top: -4px;
  left: -4px;
  background: #a6192e;
  color: #fff;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
}

.psi-vid-lander-card-body {
  padding: 18px 18px 20px;
}

.psi-vid-lander-card-body h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.08;
  font-weight: 600;
}

.psi-vid-lander-card-body p {
  margin: 0 0 14px;
  line-height: 1.35;
  font-weight: 200;
}

.psi-vid-lander-card-body a {
  color: #a6192e;
  font-weight: 900;
  text-decoration: none;
}

.psi-vid-lander-video-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px auto;
  padding: 14px;
  background: rgba(255,255,255,.65);
  border: 1px solid #e5d5c3;
  border-radius: 14px;
}

.psi-vid-lander-video-filters a {
  background: #fff;
  color: #211915;
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  padding: 14px 28px;
}

.psi-vid-lander-video-filters a.active {
  background: #a6192e;
  color: #fff;
}

.psi-vid-lander-tag {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  padding: 8px 12px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.psi-vid-lander-gold { background: #c57a00; }
.psi-vid-lander-green { background: #638015; }
.psi-vid-lander-blue { background: #1f6385; }

.psi-vid-lander-video-cta {
  margin-top: 34px;
  background: #f1dfc5;
  border: 1px solid #dfc5a5;
  border-radius: 14px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.psi-vid-lander-video-cta strong {
  font-size: 26px;
}

.psi-vid-lander-video-cta p {
  margin: 4px 0 0;
}

.psi-vid-lander-video-cta a {
  margin: 0;
}
		
		
/* Featured product box inside each video card */
.psi-vid-lander-product-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px;
  padding: 12px;
  border: 1px solid #e0d2c1;
  border-radius: 15px;
  background: #fff;
  text-decoration: none;
  color: #241d18;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.psi-vid-lander-product-box:hover {
  border-color: #c9a06f;
  box-shadow: 0 8px 18px rgba(70, 45, 24, .12);
  transform: translateY(-1px);
}

.psi-vid-lander-product-thumb {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  background: #f1eadf;
}

.psi-vid-lander-product-thumb img {
  max-width: 80px;
  max-height: 80px;
  display: block;
  object-fit: cover;
}

.psi-vid-lander-product-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.15;
}

.psi-vid-lander-product-kicker {
  color: #8a6a45;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.psi-vid-lander-product-info strong {
  color: #241d18;
  font-size: 16px;
  font-weight: 700;
}

.psi-vid-lander-product-cta {
  color: #a6192e;
  font-size: 14px;
  font-weight: 900;
}
		
/* RESPONSIVE STUFF */	

@media (max-width: 620px) {
  .PSI-pens-start-content {
    align-items: flex-start;
  }
}

/* Tablet */
@media (max-width: 950px) {
  .psi-vid-lander-video-hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .psi-vid-lander-hero {
    text-align: center;
  }

  .psi-vid-lander-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .start-note {
    margin-left: 0;
  }

  .psi-vid-lander-featured-grid,
  .psi-vid-lander-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
		
		

/* Mobile */
@media (max-width: 620px) {
  .psi-vid-lander-psi-video-page {
    padding: 18px 12px 30px;
  }

  .psi-vid-lander-image-title {
    margin: 8px auto 16px;
  }

  .psi-vid-lander-image-title img {
    width: min(100%, 420px);
  }

  .psi-vid-lander-primary-btn {
    width: 80%;
    padding: 15px 18px;
  }

  .psi-vid-lander-video-title {
    font-size: 28px;
    left: 18px;
    bottom: 22px;
  }

  .psi-vid-lander-play-btn {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }

  .psi-vid-lander-featured-grid,
  .psi-vid-lander-video-grid {
    grid-template-columns: 1fr;
  }

  .psi-vid-lander-section-title {
    font-size: 23px;
    text-align: center;
  }

  .psi-vid-lander-video-filters {
    align-items: stretch;
  }

  .psi-vid-lander-video-filters a {
    width: 100%;
    text-align: center;
  }

  .psi-vid-lander-video-cta {
    flex-direction: column;
    text-align: center;
  }

  .psi-vid-lander-video-cta a {
    width: 80%;
  }
}

/* ---------------------------     END of WATCH FIRST. TURN BETTER. LANDING PAGE     -------------------------      */




