/* ------------------------------------------------------------------
 * early-access-preserve.css
 *
 * TEMPORARY snapshot of the original bundle.css, frozen at the moment
 * the styles/ directory was reorganized. Loaded ONLY on the page at
 * "/" (early-access landing) and AFTER the new bundle.css. Because it
 * arrives later in document order at equal specificity, every rule
 * here wins over any same-specificity rule in the new bundle — which
 * preserves the pixel-perfect look of the early-access page while the
 * rest of the site moves to the new style guide.
 *
 * REMOVAL when ready:
 *   1. Delete this file.
 *   2. Remove the addPassthroughCopy line in eleventy.config.js.
 *   3. Remove the {% if page.url == "/" %} <link> block in head.njk.
 * ------------------------------------------------------------------ */






  html {
  scroll-behavior: smooth; /* optional, just for smooth scrolling */
  /* newfooterfix */
  height: 100%;
}
body {
  font-family: Helvetica, Roboto, Arial, sans-serif;

  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #1a1a2e;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
* {
  box-sizing: border-box;
}

.focus-forbidden {
  /* no blue highlighting on mobile & no selecting or copypaste, MAY prevent click events*/
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.transparent-mobile-clicks {
  /* no blue highlighting on mobile  only */
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
p,
strong,
span {
  margin: 0;
}
h1 {
  font-size: clamp(24px, 3vw, 48px);
}
h2 {
  font-size: clamp(22px, 5vw, 24px);
}
h3 {
  font-size: clamp(20px, 5vw, 22px);
}
h4 {
  font-size: 18px;
}
p {
  font-size: 14px;
}
.small {
  font-size: 12px;
}
.white {
  color: white;
}
.black {
  color: black;
}
.grey {
  color: #b4b4b4;
}
.green {
  color: #3ab549;
}
.dark-blue {
  color: #1a1a2e;
}
.italic {
  font-style: italic;
}
.fnt-wt-400 {
  font-weight: 400;
}
.background-white {
  background-color: white;
}
.background-med-blue {
  background-color: #0f3460;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-centered {
  text-align: center;
}
.inline-padding {
  padding-inline: 5rem;
}
.fluid {
  width: 100%;
}
.vert-fluid {
  height: 100%;
}
/* .wrapper{

} */
.vert-padding {
  padding: 3rem 0;
}
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-ac {
  align-items: center;
}
.flex-as {
  align-items: flex-start;
}
.flex-ae {
  align-items: flex-end;
}
.flex-jc {
  justify-content: center;
}
.flex-jb {
  justify-content: space-between;
}

.flex-je {
  justify-content: space-evenly;
}

.flex-ja {
  justify-content: space-around;
}
.flex-js {
  justify-content: flex-start;
}
.flex-jend {
  justify-content: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex-gap {
  gap: 1rem;
}
.flex-rgap {
  row-gap: 1rem;
}
.flex-cgap {
  column-gap: 1rem;
}
.flex-gap-2 {
  gap: 2rem;
}
.flex-rgap-2 {
  row-gap: 2rem;
}
.flex-cgap-2 {
  column-gap: 2rem;
}
.flex-gap-3 {
  gap: 3rem;
}
.flex-rgap-3 {
  row-gap: 3rem;
}
.flex-cgap-3 {
  column-gap: 3rem;
}
.flex-gap-half {
  gap: 0.5rem;
}
.flex-rgap-half {
  row-gap: 0.5rem;
}
.flex-cgap-half {
  column-gap: 0.5rem;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.relative {
  position: relative;
}
.z0 {
  z-index: 0;
}
.z1 {
  z-index: 1;
}
.z2 {
  z-index: 2;
}
.z3 {
  z-index: 3;
}
.top-right {
  position: absolute;
  top: 0;
  right: 0;
}

.top-left {
  position: absolute;
  top: 0;
  left: 0;
}

.bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.pad {
  padding: 1rem;
}

.pad-inline {
  padding-inline: 1rem;
}

.pad-vert {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pad-top {
  padding-top: 1rem;
}

.pad-bot {
  padding-bottom: 1rem;
}

.pad-left {
  padding-left: 1rem;
}

.pad-right {
  padding-right: 1rem;
}

.pad-2 {
  padding: 2rem;
}

.pad-inline-2 {
  padding-inline: 2rem;
}

.pad-vert-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pad-top-2 {
  padding-top: 2rem;
}

.pad-bot-2 {
  padding-bottom: 2rem;
}

.pad-left-2 {
  padding-left: 2rem;
}

.pad-right-2 {
  padding-right: 2rem;
}

.pad-half {
  padding: 0.5rem;
}

.pad-inline-half {
  padding-inline: 0.5rem;
}

.pad-vert-half {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pad-top-half {
  padding-top: 0.5rem;
}

.pad-bot-half {
  padding-bottom: 0.5rem;
}

.pad-left-half {
  padding-left: 0.5rem;
}

.pad-right-half {
  padding-right: 0.5rem;
}

.mar {
  margin: 1rem;
}

.mar-inline {
  margin-inline: 1rem;
}

.mar-vert {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mar-top {
  margin-top: 1rem;
}

.mar-bot {
  margin-bottom: 1rem;
}

.mar-left {
  margin-left: 1rem;
}

.mar-right {
  margin-right: 1rem;
}

.mar-2 {
  margin: 2rem;
}

.mar-inline-2 {
  margin-inline: 2rem;
}

.mar-vert-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mar-top-2 {
  margin-top: 2rem;
}

.mar-bot-2 {
  margin-bottom: 2rem;
}

.mar-left-2 {
  margin-left: 2rem;
}

.mar-right-2 {
  margin-right: 2rem;
}
.mar-half {
  margin: 0.5rem;
}

.mar-inline-half {
  margin-inline: 0.5rem;
}

.mar-vert-half {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mar-top-half {
  margin-top: 0.5rem;
}

.mar-bot-half {
  margin-bottom: 0.5rem;
}

.mar-left-half {
  margin-left: 0.5rem;
}

.mar-right-half {
  margin-right: 0.5rem;
}

.component-text {
  h1 {
    color: white;
  }
  h3 {
    color: #b4b4b4;
    text-transform: uppercase;
  }
  h4 {
    color: white;
  }
  ul {
    color: white;
  }
  li {
    margin: 1rem 0;
    p {
      font-size: 16px;
    }
  }
  p {
    margin: 1.5rem 0;
    font-size: 16px;
    color: white;
  }
}

  .bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.not-mobile--block {
  display: block;
}

.not-mobile--inline-bock {
  display: inline-block;
}

.not-mobile--flex {
  display: flex;
}

.not-mobile--grid {
  display: grid;
}

.not-tablet--block {
  display: block;
}

.not-tablet--inline-bock {
  display: inline-block;
}

.not-tablet--flex {
  display: flex;
}

.not-tablet--grid {
  display: grid;
}
[class*="not-desktop--"] {
  display: none;
}
.only-mobile {
  display: none;
}
.default-text-shadow {
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.425);
}
.default-box-shadow {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.233);
}
.indent {
  margin-left: 2rem;
}
@media (max-width: 1000px) {
  .bottom-right {
    display: none;
  }
  [class*="not-tablet--"] {
    display: none;
  }

  .not-desktop--block {
    display: block;
  }

  .not-desktop--inline-bock {
    display: inline-block;
  }

  .not-desktop--flex {
    display: flex;
  }

  .not-desktop--grid {
    display: grid;
  }
}
@media (max-width: 750px) {
  .hz-to-col {
    flex-direction: column;
    .img-par-text-box {
      width: 95%;
      /* text-align: left; */
    }
    .img-par-image-box {
      width: 95%;
      text-align: left;
    }
  }
  .hz-to-col-reverse {
    flex-direction: column-reverse;
    .img-par-text-box {
      width: 95%;
      /* text-align: left; */
    }
    .img-par-image-box {
      width: 95%;
      text-align: left;
    }
  }
  .never-mobile {
    display: none !important;
  }
  .mobile-centered {
    text-align: center !important;
  }
  .only-mobile {
    display: flex;
  }
}
@media (max-width: 500px) {
  [class*="not-mobile--"] {
    display: none;
  }
}


  .gradient-background {
  background: radial-gradient(#0f3460, #1a1a2e);
}

.spinner-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.button-primary {
  background-color: #39b54a;
  /* color: #16213E; */
  color: white;
  font-size: 16px;
  padding: 12px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  transition: 0.2s;
}
.button-secondary {
  background-color: transparent;
  border: 2px solid #39b54a;
  color: #39b54a;
  font-size: 16px;
  padding: 12px;
  border-radius: 30px;
  font-weight: 700;
  transition: 0.2s;
}

.hg-primary-button-link {
  width: fit-content;

  font-size: 16px;
  padding: 12px 40px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  text-decoration: none;
  background-color: #39b54a;
  color: white;
  transition: 0.2s;
}
.hg-primary-button-link:active {
  background-color: #319e40;
}
.row-to-col {
  flex-direction: row;
}
.card {
  background-color: #16213e;
  border-radius: 12px;
}
.tech-card {
  border-radius: 40px;
  padding: 2rem 2.15rem;
  flex: 1 1 0;
  h2 {
    font-size: clamp(1.25rem, 1.0769rem + 0.7692vw, 2rem);
  }
  h3 {
    font-size: clamp(1rem, 0.9712rem + 0.1282vw, 1.125rem);
  }
  p {
    font-size: clamp(0.875rem, 0.8421rem + 0.1316vw, 1rem);
  }
  img {
    border-radius: 20px;
    max-height: 385px;
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 820px) {
  .row-to-col {
    flex-direction: column;
  }
  .tech-card-container-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .tech-card {
    img {
      max-height: none;
    }
  }
}


  .logo-img{
    width: 208px;
}

.green-gradient-bg{
    /* height:800px; */
    background: linear-gradient(180deg, rgba(58, 181, 73, 1) 0%, rgba(46, 139, 63, 1) 100%);
}
main{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
article{
    width: 100%;
}

.section-content{
    display: flex;
    justify-content: center;
    width: 100%;
   }
   
 
 
  footer {
  width: 100%;
  background-color: #1a1a2e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.footer-links {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 60%;
  padding: 4rem 0 2rem 0;
}
.footer-divider {
  width: 90%;
  max-width: 1588px;
  border: 1px solid #76768029;
}
.footer-copyright {
  padding-bottom: 2rem;
}

  header {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
}
.header-hero-video {
  position: relative;
  padding-bottom: 20%;
  background: linear-gradient(180deg, #00000077 10%, #00000000 60%);
}
.hero-cta-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 77%;
}
.hero-free-trial {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* text-align: left; */
  padding-left: 5rem;
  padding-right: 2rem;
  width: 100%;
  max-width: 570px;
  /* gap: 1rem; */
  color: white;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.425);
  button {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.233);
    padding-inline: 4rem;
    margin: 2rem 0 0.5rem 0;
  }
  h1 {
    font-size: clamp(2rem, 1.6053rem + 1.5789vw, 3.5rem);
  }
  h2 {
    font-weight: 400;
    font-size: clamp(1.5rem, 1.2368rem + 1.0526vw, 2.5rem);
    /* width:90%; */
    max-width: 400px;
  }
}

.hero-video {
  position: absolute;
  z-index: -1;
  width: 100%;
}
.header-large-background {
  position: relative;
  width: 100%;
  /* height: 90vh; */
  /* new foot fix */
  min-height: 100vh;
  overflow: hidden;
  --word-animation-length: 35s;
  /* background: linear-gradient(180deg, #000000a4 0%, #00000000 30%),
    linear-gradient(90deg, #00000077 10%, #00000000 40%); */
  background: linear-gradient(270.01deg, rgba(15, 52, 96, 0) 37.81%, rgba(25, 26, 46, 0.8) 99.99%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.71) 0%, rgba(0, 0, 0, 0) 31.18%);
  background-blend-mode: multiply;
}
.header-background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  z-index: -1;
}

/* @media (max-width: 1600px) {
} */

/* @media (max-width: 1500px) {
} */

/* @media (max-width: 1400px) {
} */

/* @media (max-width: 1300px) {
} */

/* @media (max-width: 1200px) {
} */

/* @media (max-width: 1100px) {
} */

/* @media (max-width: 1000px) {
} */

/* @media (max-width: 900px) {
} */

/* @media (max-width: 800px) {
} */

@media (max-width: 750px) {
  .header-large-background {
    background: 
    /* Top Shadow (Smaller) */ linear-gradient(
        180deg,
        #1a1a2e 0%,
        rgba(26, 26, 46, 0) 25.96%
      ),
      /* Bottom Shadow (Larger) */ linear-gradient(0deg, #1a1a2e 20.09%, rgba(26, 26, 46, 0) 41.96%);
    background-blend-mode: multiply;
    background-color: transparent;
    .header-background-img {
      height: 80%;
    }
  }
}
/* background: linear-gradient(180.3deg, rgba(15, 52, 96, 0) 76.89%, #191A2E 99.84%),
linear-gradient(180deg, #1A1A2E 0%, rgba(26, 26, 46, 0) 25.62%); */

/* @media (max-width: 600px) {
} */

/* @media (max-width: 500px) {
} */

/* @media (max-width: 400px) {
} */

/* @media (max-width: 300px) {
} */
 
  nav {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.wide-nav {
  display: flex;
  width: 90%;
  max-width: 1200px;
  justify-content: space-between;
}
.narrow-nav {
  display: none;
  /* background: linear-gradient(180deg, #1a1a2e 8.09%, rgba(26, 26, 46, 0) 41.96%); */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}
.spacer-flex {
  display: block;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 2px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: all 0.3s ease;
}
.popover {
  position: absolute;
  top: 80px;
  right: 0;
  width: 100%;
  max-width: 520px;
  background: #16213e;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  transform-origin: top left;
  z-index: 9999;
  transition: opacity 160ms ease, transform 160ms ease;
  opacity: 0;
  pointer-events: none;
}
.popover.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.popover-page-links {
  display: flex;
  flex-direction: column;
  .nav-link {
    border-radius: 12px;
    padding: 1rem 2rem;
    transition: 0.2s;
  }
  .nav-link:active {
    background: #1a1a2e;
  }
}
.nav-divider {
  width: 90%;
  margin: 0 auto;
  border-top: 1px solid #76768029;
}
.page-links {
  display: flex;
  gap: 1.5rem;
}
.user-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.profile-icon {
  img {
    width: 34px;
  }
}
.nav-link {
  text-decoration: none;
  color: white;
}
.nav-link.active {
  color: #39b54a;
  font-weight: 700;
}
 

  /* ****************article PAGE STYLES**************** */
.article-page {
  font-family: Arial, sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.article-body {
  max-width: 1080px;
  width: 90%;
  display: flex;
  justify-content: center;
}
.article-content {
  width: 100%;
}
.article-element {
  padding-inline: 1rem;
}
.article-title {
  text-align: center;
}
.article-subtitle {
  text-align: center;
  color: #b4b4b4;
}
.article-heading {
  padding: 0.5rem 0rem;
}
.article-paragraph {
  padding: 1rem 1rem;
  font-size: 14px;
  ul {
    padding: 0 1rem 0 3rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  h2 {
    padding: 2rem 0;
  }
  h3 {
    padding: 1rem 1rem;
  }
  p {
    margin-bottom: 1rem;
  }
}
.article-section-col {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  width: 98%;
  max-width: 1440px;
  padding: 60px 80px;
  gap: 2rem;
}
.section-description {
  max-width: 900px;
}
.text-left {
  text-align: left;
}
.article-button-wrapper {
  display: flex;
  gap: 1rem;
}

/**************** HELP PAGE STYLES ****************/
.help-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
.help-page-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 1440px;
  justify-content: center;
}

.help-category-link {
  text-decoration: none;
  color: white;
}
 
  .header-content-wrapper {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1340px;
  padding-left: 6rem;
}
.header-sign-up {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
#successful-sign-up {
  display: none;
  justify-content: center;
  gap: 1rem;
  h2 {
    padding: 0 1rem;
  }
  p {
    padding: 0 1.5rem;
    font-size: 18px;
  }
}
#successful-sign-up-mobile {
  display: none;
  justify-content: center;
  gap: 1rem;
  h2 {
    padding: 0 1rem;
  }
  p {
    padding: 0 1.5rem;
    font-size: 18px;
  }
}
.sign-up-box {
  background-color: #39b54a;
  height: 275px;
  width: clamp(345px, 30vw, 418px);
  aspect-ratio: 306/200;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.left-half {
  max-width: 590px;
}

.golfer-with-img {
  position: relative;
  line-height: 0%;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.phone-img {
  width: clamp(360px, 40vw, 660px);
  height: auto;
}

.button-wrapper {
  padding-inline: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  button {
    width: 100%;
    font-size: 16px;
    padding: 12px;
    border-radius: 30px;
    border: none;
    font-weight: 700;
    transition: 0.2s;
  }
}
.phone-preference-button-wrapper {
  display: flex;
  gap: 0.75rem;
}
.phone-preference-button {
  background-color: transparent;
  color: white;
  border: 2px solid white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  span {
    opacity: 0;
    font-size: 28px;
    font-weight: 400;
    line-height: 16px;
  }
}
.checked {
  background-color: #0071bc;
  border: 2px solid transparent !important;
  span {
    opacity: 1;
  }
}
.no-show {
  opacity: 0 !important;
}
button:hover {
  cursor: pointer;
}

.email-input-container {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
#email-error-message {
  font-size: 14px;
  font-weight: 700;
  display: none;
  color: #dc3545;
}
#email-error-message-mobile {
  font-size: 12px;
  font-weight: 700;
  display: none;
  color: #dc3545;
}
#email-input {
  font-size: 16px;
  padding: 12px;
  border-radius: 30px;
  outline: none;
  border: none;
  color: #767680;
  text-align: center;
}
#email-input:focus {
  outline: none;
  border: none;
}
#email-input-mobile {
  font-size: 16px;
  padding: 12px;
  border-radius: 30px;
  outline: none;
  border: none;
  color: #767680;
  text-align: center;
}
#email-input-mobile:focus {
  outline: none;
  border: none;
}
#submit-button {
  transition: 0.2s;
  position: relative;
}
#submit-button:active {
  background-color: #1a1a2e;
}

#submit-button-mobile {
  transition: 0.1s !important;
  position: relative;
}
#submit-button-mobile:active {
  background-color: #1a1a2e;
}

.social-buttons {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.small-button {
  transition: 0.2s;
}
.small-button:active {
  opacity: 0.7;
}

.app-download-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  img {
    /* width: 210px; */
    width: clamp(150px, 135.44px + 3.88vw, 210px);
    border: 1px solid #b4b4b494;
    /* border-radius: 12px; */
  }
}


  #content-carousel {
  background-color: #1a1a2e;
}
#content-toolkit {
  background-color: #16213e;
  padding: 2rem 0;
}

.component-full-width {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 4rem 0;
}
.full-width-clamp {
  max-width: 1280px;
  width: 100%;
}
.static-hero-banner {
  background-image: linear-gradient(90deg, #1a1a2e4f 20%, #0000 75%),
    url(https://placehold.co/600x400) !important;
  background-position: 50%;
  background-size: cover;
  display: flex;
  height: 23vh;
  justify-content: center;
  overflow: hidden;
  padding-top: 180px;
  width: 100%;
}

.component-head-small-title {
  text-transform: uppercase;
}
.component-head-title {
  font-size: clamp(2rem, 1.6053rem + 1.5789vw, 3.5rem);
}
.component-head-large-text {
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2368rem + 1.0526vw, 2.5rem);
  width: 90%;
}
.component-head-text {
  font-size: 16px;
  width: 90%;
}
.center-titles {
  text-align: center;
}
.center-titles-subtitle {
  font-weight: 400;
  font-size: clamp(20px, 3vw, 48px);
}

.img-par-hz {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.par-img-hz {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.img-cluster-par {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-inline: 1rem;
}
.img-par-image-box {
  width: 40%;
  img {
    border-radius: 10px;
    width: 100%;
    max-width: fit-content;
    object-fit: cover;
  }
}
.download-apple-button {
  margin: 2rem 0;
  width: 120px;
  border: 1px solid gray;
  border-radius: 6px;
}

.img-par-text-box {
  width: 40%;
  h1 {
    margin: 1rem 0;
    color: white;
  }
  h3 {
    color: #b4b4b4;
    text-transform: uppercase;
  }
  ul {
    margin: 1.5rem 0;
    color: white;
  }
  li {
    margin: 1rem 0;
    p {
      font-size: 16px;
    }
  }
  p {
    margin: 1.5rem 0;
    font-size: 16px;
    color: white;
  }
}
.img-cluster-box--mobile {
  display: none;
}
.img-cluster-box--desktop {
  width: 40%;
  aspect-ratio: 1 / 1;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  border-radius: 10px;
  grid-auto-rows: 1fr;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    min-width: 0;
    min-height: 0;
  }
}

.img-cluster-box--desktop.img-count-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.img-cluster-box--desktop.img-count-1 > img {
  grid-column: 1;
  grid-row: 1;
}

.img-cluster-box--desktop.img-count-2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.img-cluster-box--desktop.img-count-2 > img:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.img-cluster-box--desktop.img-count-2 > img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.img-cluster-box--desktop.img-count-3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.img-cluster-box--desktop.img-count-3 > img:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.img-cluster-box--desktop.img-count-3 > img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.img-cluster-box--desktop.img-count-3 > img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.img-cluster-box--desktop.img-count-4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.img-cluster-box--desktop.img-count-4 > img:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.img-cluster-box--desktop.img-count-4 > img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.img-cluster-box--desktop.img-count-4 > img:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}
.img-cluster-box--desktop.img-count-4 > img:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.card-grid {
  /* 
  commented text might be better, current allows 
  small rows to be centered without stretching cards.
  this is an earlier change than the one below
  */
  /* width: 90%;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  grid-auto-rows: auto;
  margin:1.5rem 0; */

  /* 
    new change as of oct 21, 2025, 
    to make the home text card grid rows 5 long and wider than 1280 
    i changed width from 90% to 90vw and removed margin:1.5rem auto;
    as of today this doesnt negatively affect other card-grids, but one more 
    exception and we you should make a new card grid for each card width, with 
    this one becoming the grid for this sized card. the commented styles below  
    were how it used to be.
  */
  /* width: 90%; */
  width: 90vw;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 20rem));
  grid-auto-rows: auto;
  justify-content: center;
  /* margin: 1.5rem auto; */
}
.text-card {
  background-image: radial-gradient(farthest-corner at 40px 40px, #0f3460 0%, #16213e 100%);
  /* width: 250px; */
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 10px;
  justify-self: center;
  height: fit-content;
  align-self: center;
}

.img-text-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background-color: #0f3460;
  img {
    border-radius: 20px 20px 4px 4px;
    height: 220px;
    object-fit: cover;
  }
}
.component-divider {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #76768029;
}
.pricing-card {
  position: relative;
  background-color: #0f3460;
  border-radius: 20px;
  padding: 1.5rem;
  overflow: hidden;
  color: white;
  h3 {
    font-size: 17px;
    font-weight: 600;
  }
  p {
    font-size: 13px;
    opacity: 0.6;
  }
  .pricing-card-dollar-amount {
    padding: 0.5rem 0;
    span {
      font-size: 20px;
      font-weight: 400;
    }
  }
  a {
    width: 100%;
    text-align: center;
    margin: 1.5rem 0;
  }
  .component-text {
    font-size: 13px;
    opacity: 0.6;
    ul {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
    }
    ul li:before {
      content: "✓";
      font-weight: 900;
      margin-right: 5px;
    }
  }
}
.corner-ribbon {
  width: 200px;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  position: absolute;
  text-align: center;
  color: #f0f0f0;
  top: 25px;
  right: -65px;
  transform: rotate(45deg);
  background-color: #0071bc;
  box-shadow: 0 10px 10px rgba(2, 6, 23, 0.12);
}
.img-text-card__text {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  h4 {
    margin: 0.4rem 0 1rem 0;
  }
  p {
    line-height: 140%;
  }
}

@media (max-width: 1000px) {
  .img-cluster-par {
    flex-direction: column;
    gap: 1rem;
    .img-par-text-box {
      width: 90%;
      text-align: left;
    }
    padding-inline: 0;
  }
  .img-cluster-box--desktop {
    width: 90%;
  }
}
@media (max-width: 620px) {
  .component-full-width {
    padding: 2rem 0;
  }
  .img-par-hz,
  .par-img-hz {
    flex-direction: column;
    gap: 1rem;
  }
  .img-par-image-box,
  .img-par-text-box {
    width: 95%;
    text-align: left;
  }
  .img-par-image-box {
    display: flex;
    justify-content: center;
  }
  .img-cluster-box--desktop {
    display: none;
  }
  .img-cluster-box--mobile {
    display: block;
  }
  .img-cluster-par {
    .thumb-carousel {
      position: relative;
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      overflow: visible;

      .thumb-carousel-slides {
        transition: 0.5s ease;
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 2rem 0 0 0;

        .thumb-slide {
          padding: 20px;
          width: 85vw;
          flex-shrink: 0;
          box-sizing: border-box;
          display: flex;
          flex-direction: column;
          text-align: center;
          align-items: center;
          justify-content: space-evenly;
          gap: 1rem;
          img {
            width: 100%;
            object-fit: cover;
            max-width: 100%;
            height: auto;
          }
        }
      }
      .thumb-carousel-slides::-webkit-scrollbar {
        height: 14px;
      }

      .thumb-carousel-slides::-webkit-scrollbar-thumb {
        border: 4px solid rgba(0, 0, 0, 0);
        background-clip: padding-box;
        -webkit-border-radius: 7px;
        background-color: #dddddd;
        -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05),
          inset 1px 1px 0px rgba(0, 0, 0, 0.05);
      }

      .thumb-carousel-slides::-webkit-scrollbar-button {
        width: 0;
        height: 0;
        display: none;
      }

      .thumb-carousel-slides::-webkit-scrollbar-corner {
        background-color: transparent;
      }
    }
  }
  .text-card {
    width: auto;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 70%;
  max-width: 1280px;
  margin: 0 auto;
}
.narrow-screen {
  display: none;
}
.carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px;
}
/* .testimony-slides {
  gap: 1rem;
} */
.testimony-slide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  /* background-color: #0F3460; */
  color: white;
  width: 26%;
  padding: 1.5rem 1rem;
  background-image: radial-gradient(farthest-corner at 40px 40px, #0f3460 0%, #16213e 100%);
  border-radius: 10px;
  img {
    width: 90px;
    height: 90px !important;
    object-fit: cover;
    border-radius: 50%;
  }
  h3 {
    color: #b4b4b4;
  }
}

.slide img {
  /* max-width: 100%; */
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  height: auto;
  /* filter: drop-shadow(7px 8px 23px rgba(0, 0, 0, 0.29))
    drop-shadow(29px 31px 43px rgba(0, 0, 0, 0.25)) drop-shadow(65px 70px 58px rgba(0, 0, 0, 0.15))
    drop-shadow(116px 125px 68px rgba(0, 0, 0, 0.04))
    drop-shadow(181px 195px 75px rgba(0, 0, 0, 0.01)); */
  box-shadow: 5px 0px 20px rgb(0, 0, 0);
}

.slide .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  font-size: 2em;
  cursor: pointer;
  padding: 10px;
}

.carousel-button.left {
  left: 10px;
}

.carousel-button.right {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff66;
  margin: 0 5px;
  cursor: pointer;
  border: none;
  padding: 0;
}

.dot.active {
  background-color: #ffffff;
  width: 30px;
  border-radius: 10px;
}

/* MOBILE CAROUSEL */
.mobile-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.mobile-carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.mobile-slide {
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
  padding: 20px;
  p {
    inline-size: 318px;
  }
}

.mobile-slide img {
  /* max-width: 100%; */
  width: 100%;
  max-width: 260px;
  border-radius: 10px;
  height: auto;
  box-shadow: 5px 0px 20px rgb(0, 0, 0);
}

.mobile-slide .text {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  h1 {
    inline-size: 468px;
  }
  p {
    inline-size: 318px;
  }
}

.mobile-carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  font-size: 2em;
  cursor: pointer;
  padding: 10px;
}

.mobile-carousel-button.left {
  left: 10px;
}

.mobile-carousel-button.right {
  right: 10px;
}

.mobile-carousel-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
.mobile-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff66;
  margin: 0 5px;
  cursor: pointer;
  border: none;
  padding: 0;
}

.mobile-dot.active {
  background-color: #ffffff;
  width: 30px;
  border-radius: 10px;
}

.toolkit-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 1280px;
}
.toolkit-grid {
  width: 90%;
  display: grid;

  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));

  grid-auto-rows: auto;
}
.toolkit-card {
  background-image: radial-gradient(farthest-corner at 40px 40px, #0f3460 0%, #16213e 100%);
  width: 250px;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 10px;
  justify-self: center;
  p {
    inline-size: 90%;
  }
}
 

  .flex-center-full-width {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 2rem;
}
.early-access-form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  text-align: center;
  gap: 0.5rem;
  margin-left: 8rem;
  h1 {
    color: white;
  }
  h3 {
    color: #16213e;
  }
  p {
    color: white;
  }
}
.early-access-form {
  margin: 3rem 0;
}

.putter-why-it-works-container {
  /* position: relative; */
  width: 100%;
  display: flex;
  justify-content: center;
}
.putter-why-it-works {
  position: relative;
  max-width: 1200px;
  width: 90%;
  display: flex;
  justify-content: center;
}

.why-it-works {
  background-color: #0f3460;
  width: 100%;
  /* max-width: 1200px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
  padding: 4rem 0;
  border-radius: 20px;
  p {
    margin: 0;
  }
}
.investor-monochrome-cards {
  gap: 4rem;
  width: 96%;
  @media (max-width: 850px) {
    gap: 2rem;
  }
  @media (max-width: 750px) {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.monochrome-card {
  background-color: transparent;
  border-radius: 20px;
  border: 1px solid #767680;
  padding: 1rem;
}
.investor-monochrome-card {
  max-width: 600px;
  width: 95%;
}
.why-it-works-card-container {
  display: flex;
  max-width: 770px;
  width: 70%;
  justify-content: space-between;
}
.why-it-works-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  max-width: 220px;
  h4 {
    font-size: 16px;
  }
  p {
    color: #b4b4b4;
    font-size: 14px;
  }
  img {
    width: 60px;
  }
}
.why-it-works-text-box {
  max-width: 770px;
  width: 70%;
}
.putter-man-floating {
  position: absolute;
  top: -50px;
  right: -200px;
  img {
    max-width: 500px;
  }
}

.screen-view-cluster-component {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* align-items: center; */
  position: relative;
  /* width: 100%; */
  height: 100vh;
  max-height: 953px;
  overflow: hidden;
  margin: 4rem 0;
  /* padding: 4rem 0 0 0; */
}

.cluster-background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.screen-view-cluster-title {
  margin: 0 0 0 12rem;
  h1 {
    font-size: clamp(1.5rem, 1.1359rem + 1.5534vw, 3rem);
  }
}

.intro-video-box {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}
.intro-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;

  width: 100px;
  height: 100px;
  background: transparent;
  border: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  border: none;
}

.play-svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);

  .play-svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
  }
}

.play-svg path {
  fill: white;
  stroke: white;
}

/* .play-icon {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid white;
  margin-left: 5px; 
} */

.intro-video-box.is-playing .play-overlay {
  display: none;
}

.special-vid-par {
  gap: 4rem;
  .img-par-text-box {
    width: 60%;
    max-width: 760px;
  }
  @media (max-width: 750px) {
    gap: 0;
    .img-par-text-box {
      width: 95%;
    }
  }
}

/* @media (max-width: 1600px) {
} */

/* @media (max-width: 1500px) {
} */

/* @media (max-width: 1400px) {
} */

/* @media (max-width: 1300px) {
} */

@media (max-width: 1200px) {
  .screen-view-cluster-title {
    margin: 0 0 0 5rem;
  }
}

/* @media (max-width: 1100px) {
} */

/* @media (max-width: 1000px) {
} */

@media (max-width: 900px) {
  .screen-view-cluster-component {
    align-items: center;
    margin: 3rem 0 0 0;
    height: 60vh;
  }
  .cluster-background-img {
    margin-top: 4rem;
    width: 100%;
    height: 75%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    bottom: 0;
    z-index: -1;
  }
  .screen-view-cluster-title {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    /* top: -150px; */
    margin-inline: auto;
    margin-top: 0;
    width: fit-content;
  }
  .app-download-buttons {
    justify-content: center;
    gap: 1rem;
  }
}
.app-store-link {
  /* Removes default blue underlines/colors */
  text-decoration: none;
  color: inherit;

  /* Ensures the link doesn't add extra height/width around the div */
  display: inline-block;
  line-height: 0;
}

.app-store-link img {
  /* Prevents old browsers from adding a blue border around linked images */
  border: none;
  outline: none;
}

/* Optional: Adds a standard pointer cursor to signal it is clickable */
.app-store-link:hover {
  cursor: pointer;
}
.app-download-button-container {
  width: clamp(150px, 135.44px + 3.88vw, 210px);
  transition: transform 0.2s, background 0.2s;
  img {
    width: 100%;
    height: auto;
  }
}
.sash-container {
  position: relative;
  display: inline-block;
  overflow: hidden; /* Ensures the sash is clipped */
  /* width: 300px; */
  width: clamp(150px, 135.44px + 3.88vw, 210px);
  transition: transform 0.2s, background 0.2s;
}
.app-download-button-container:hover,
.sash-container:hover {
  cursor: pointer;
  transform: scale(1.01);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
  /* .img {
  } */
}
.sash-container img {
  width: 100%;
  height: auto;
}

.sash {
  position: absolute;
  /* top: 19px; 
  left: 30px;
  width: 160px;  */
  top: 31%;
  left: 5%;

  /* Use a percentage width relative to the container */
  width: 100%;
  background-color: #0071bc;
  color: white;
  text-align: center;
  padding: 6px 0;
  transform: rotate(-35deg); /* Diagonal angle */
  font-family: sans-serif;
  /* font-size: 12px; */
  font-size: clamp(0.5rem, 2vw, 0.7rem);
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
/* @media (max-width: 800px) {
} */

/* @media (max-width: 700px) {
} */

/* @media (max-width: 600px) {
} */

/* @media (max-width: 500px) {
} */

/* @media (max-width: 400px) {
} */

/* @media (max-width: 300px) {
} */
 
  /* .golfer{
position: relative;
width: 100%;
height: 100%;
} */
div.golfer img {
  position: absolute;
  bottom: 0;
  right: 200px;
  width: 100%;
  max-width: 600px;
  height: auto;
}
div.golfer img.words {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
div.golfer img.words1 {
  animation: words1 var(--word-animation-length) ease forwards infinite;
}
div.golfer img.words2 {
  animation: words2 var(--word-animation-length) ease forwards infinite;
}
div.golfer img.words3 {
  animation: words3 var(--word-animation-length) ease forwards infinite;
}
div.golfer img.words4 {
  animation: words4 var(--word-animation-length) ease forwards infinite;
}
div.golfer img.words5 {
  animation: words5 var(--word-animation-length) ease forwards infinite;
}
div.golfer img.words6 {
  animation: words6 var(--word-animation-length) ease forwards infinite;
}
@keyframes words1 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  3% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  6% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  16% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  19% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes words2 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  19% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  21% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  32% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  34% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes words3 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  34% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  37% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  48% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  50% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes words4 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  50% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  52% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  63% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  66% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes words5 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  66% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  68% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  79% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  81% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes words6 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  81% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  84% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  95% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  97% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}

/* @media (max-width: 1600px) {
} */

/* @media (max-width: 1500px) {
} */

/* @media (max-width: 1400px) {
} */

/* @media (max-width: 1300px) {
} */

/* @media (max-width: 1200px) {
} */

/* @media (max-width: 1100px) {
} */

/* @media (max-width: 1000px) {
} */

/* @media (max-width: 900px) {
} */

/* @media (max-width: 800px) {
} */

/* @media (max-width: 700px) {
} */

/* @media (max-width: 600px) {
} */

@media (max-width: 500px) {
  .golfer {
    display: flex;
    align-items: flex-start;
  }
}

/* @media (max-width: 400px) {
} */

/* @media (max-width: 300px) {
} */

  .our-tools-component {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 4rem 0;
  background: radial-gradient(
    66.19% 47.48% at 14.03% 39.64%,
    rgba(15, 52, 96, 0.8) 0%,
    rgba(22, 33, 62, 0.8) 100%
  );
  color: white;
}
.our-tools-title {
  max-width: 1280px;
  width: 100%;
  p {
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
  }
  h2 {
    font-size: clamp(1.25rem, 1.0769rem + 0.7692vw, 2rem);
  }
  @media (max-width: 700px) {
    width: 90%;
  }
}

.our-tools-section {
  max-width: 1000px;
  width: 78%;
  /* background-color: red; */
  /* height: 50px; */
  overflow-x: hidden;
}
.our-tools-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  h1,
  p {
    max-width: 50%;
  }
  ul {
    font-weight: bold;
    padding-left: 1.5rem;
    max-width: 40%;
  }
  margin-bottom: -6rem;
}
.our-tools-text--right {
  align-items: flex-end;
  text-align: right;
}
.our-tools-photos-overlap-box {
  position: relative;
  width: 100%;
  .right {
    left: 40%;
  }
  img:first-child {
    bottom: -60px;
  }
}
.our-tools-overlap-img {
  max-width: 600px;
  width: 60%;
  border-radius: 20px;
  position: relative;
  box-shadow: 0px 4px 7.3px 0px #00000040;
}

@media (max-width: 1000px) {
  .our-tools-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .our-tools-section {
    width: 100%;
  }
  .our-tools-text {
    margin-bottom: 0;
  }
  .our-tools-text {
    align-items: flex-start;
    text-align: left;
    padding-inline: 1rem;
  }
  .our-tools-photos-overlap-box {
    /* position: relative;
    width: 100%; */
    .right {
      left: 40%;
    }
    /* img:first-child {
      bottom: -60px;
    } */
  }
  .our-tools-overlap-img {
    width: 70%;
  }
}
@media (max-width: 900px) {
  .our-tools-photos-overlap-box {
    /* position: relative;
    width: 100%; */
    .right {
      left: 30%;
    }
    /* img:first-child {
      bottom: -60px;
    } */
  }
  .our-tools-overlap-img {
    width: 70%;
  }
}
@media (max-width: 700px) {
  .our-tools-photos-overlap-box {
    /* position: relative;
    width: 100%; */
    .right {
      left: 20%;
    }
    img:first-child {
      bottom: -20px;
    }
  }
  .our-tools-overlap-img {
    width: 80%;
  }
  .our-tools-text {
    p,
    ul {
      max-width: 100%;
    }
  }
}

  .dan-results-animation {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 4rem 0;
}

.background-golfer-animation-wrapper {
  position: relative;
  width: 100%;
  min-height: 75vh;
  overflow: hidden;
  --word-animation-length: 35s;

  background: linear-gradient(180deg, rgba(0, 0, 0, 0.53) 0%, rgba(0, 0, 0, 0) 32%),
    linear-gradient(270deg, rgba(15, 52, 96, 0) 38%, rgba(25, 26, 46, 0.82) 100%),
    linear-gradient(180deg, rgba(58, 181, 73, 0) 0%, rgba(46, 139, 63, 0) 100%);
  background-blend-mode: multiply;
  border: 1px solid transparent;
  /* background-clip: padding-box; */

  border-radius: 20px;
  .golfer-with-animated-words {
    img {
      max-width: 500px;
    }
  }
  @media (max-width: 1280px) {
    min-height: 90vh;
    .golfer-with-animated-words {
      img {
        max-width: 613px;
      }
    }
  }
  @media (max-width: 1280px) {
    /* bottom: 0px; */
    border-radius: 0;
  }
}

.dan-animation-title-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  position: relative;
}

.dan-animation-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* text-align: left; */
  /* padding-left: 5rem;
  padding-right: 2rem; */
  width: 100%;
  max-width: 440px;
  /* gap: 1rem; */
  color: white;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.425);

  h1 {
    /* font-size: clamp(1.5rem, 1.1359rem + 1.5534vw, 3rem); */
    font-size: clamp(1.5rem, 1.2573rem + 1.0356vw, 2.5rem);
  }
  h3 {
    color: #3ab549;
    font-size: clamp(1.25rem, 1.2197rem + 0.1294vw, 1.375rem);
  }
}
.dan-animation-caption-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  /* height: 100%; */
  position: absolute;
  z-index: 2;
  bottom: 0;
}
.dan-animation-caption {
  color: white;
  font-style: italic;
  padding: 2rem;
}
div.golfer-with-animated-words img {
  position: absolute;
  bottom: 0;
  right: 200px;
  width: 100%;
  max-width: 613px;
  height: auto;
}
div.golfer-with-animated-words img.words {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
div.golfer-with-animated-words img.words1 {
  animation: words1 var(--word-animation-length) ease forwards infinite;
}
div.golfer-with-animated-words img.words2 {
  animation: words2 var(--word-animation-length) ease forwards infinite;
}
div.golfer-with-animated-words img.words3 {
  animation: words3 var(--word-animation-length) ease forwards infinite;
}
div.golfer-with-animated-words img.words4 {
  animation: words4 var(--word-animation-length) ease forwards infinite;
}
div.golfer-with-animated-words img.words5 {
  animation: words5 var(--word-animation-length) ease forwards infinite;
}
div.golfer-with-animated-words img.words6 {
  animation: words6 var(--word-animation-length) ease forwards infinite;
}
@keyframes words1 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  3% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  6% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  16% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  19% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes words2 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  19% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  21% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  32% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  34% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes words3 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  34% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  37% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  48% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  50% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes words4 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  50% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  52% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  63% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  66% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes words5 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  66% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  68% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  79% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  81% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}
@keyframes words6 {
  0% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  81% {
    /* FADE IN STARTED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  84% {
    /* FADE IN FINISHED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  95% {
    /* FADE OUT STARTED */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  97% {
    /* FADE OUT FINISHED */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    /* HIDDEN */
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
}

/* @media (max-width: 1600px) {
} */

/* @media (max-width: 1500px) {
} */

/* @media (max-width: 1400px) {
} */

/* @media (max-width: 1300px) {
} */
@media (max-width: 1200px) {
  .dan-animation-title-wrapper {
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
  }
  .dan-animation-title {
    align-items: center;
    text-align: center;
    /* gap: 1rem; */
  }
  .dan-animation-caption-wrapper {
    justify-content: center;
  }
  .dan-animation-caption {
    text-align: center;
  }
  /* .header-large-background{
    min-height: ;
  } */
}

/* @media (max-width: 1200px) {
} */

/* @media (max-width: 1100px) {
} */

@media (max-width: 1000px) {
  div.golfer-with-animated-words img {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: 100%;
    /* max-width: 800px; */
    height: auto;
  }
  /* .header-large-background{
    min-height: ;
  } */
}

/* @media (max-width: 900px) {
} */

/* @media (max-width: 800px) {
} */

/* @media (max-width: 700px) {
} */

@media (max-width: 600px) {
  .dan-animation-title-wrapper {
    padding: 3rem 2rem;
  }
  .dan-animation-title {
    gap: 1rem;
  }
}

@media (max-width: 500px) {
  .golfer-with-animated-words {
    display: flex;
    align-items: flex-start;
  }
}

/* @media (max-width: 400px) {
} */

/* @media (max-width: 300px) {
} */
 
  .faq {
  width: 95%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #16213e;
  color: white;
  border-radius: 20px;
  padding: 2rem 0;
}

.faq h1 {
  text-align: center;
  margin-bottom: 12px;
}

.faq-item {
  background: #16213e;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.212);
}

.faq-item.open {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.question {
  padding: 8px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: color 0.2s;
}

.question:hover {
  color: rgba(255, 255, 255, 0.736);
}

.question::after {
  content: "›";
  font-size: 2rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.faq-item.open .question::after {
  content: "›";
  transform: rotate(90deg);
  color: #fff;
}

.answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-item.open .answer-wrap {
  grid-template-rows: 1fr;
}

.answer-inner {
  overflow: hidden;
  min-height: 0;
}

.answer {
  padding: 0 3rem 1rem;
  line-height: 2;
  font-size: 14px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}

.faq-item.open .answer {
  opacity: 1;
  transform: translateY(0);
}
 
  .rotated-background-div {
  position: absolute;
  /* Position it as needed; e.g., centered or at a specific offset. Here's an example to center it initially before rotation: */
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-14deg); /* Combines centering with rotation */
  width: 1900px;
  height: 700px;
  /* Additional styles for visibility, like background or borders, can be added */
  transform-origin: center; /* Default, but explicit for clarity */
  background-size: 100% 100%;
  background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px, 0px 0px,
    0px 0px;
  background-image: radial-gradient(40% 50% at 97% 97%, #b6ecbd 0%, #b6ecbd00 100%),
    radial-gradient(40% 50% at 91% 55%, #b6ecbd80 0%, #b6ecbd00 100%),
    radial-gradient(150% 100% at 100% 0%, #04f620ff 0%, #0fe92700 100%),
    radial-gradient(150% 100% at 86% -9%, #0fe82763 0%, #0fe92700 100%),
    radial-gradient(400% 200% at 28% 48%, #0775ec 0%, #0775ec00 100%),
    radial-gradient(1000% 200% at 0% 100%, #0775ec 0%, #0775ec00 100%),
    radial-gradient(120% 80% at -1% -1%, #2f833fff 0%, #2f833f00 100%),
    radial-gradient(120% 80% at -3% 0%, #2f833fff 0%, #2f833f00 100%),
    radial-gradient(80% 80% at 50% 0%, #3ba848ff 0%, #2f833f00 100%);
  z-index: -1;
  filter: blur(200px);
  @media (max-width: 1280px) {
    /* bottom: 0px; */
    top: 50%;
    filter: blur(200px);
  }
}
.groksbesttry {
  background-color: #1a1a2e;
  background-image: radial-gradient(
      ellipse farthest-side at bottom left,
      rgba(7, 117, 236, 1) 0%,
      rgba(7, 117, 236, 0) 100%
    ),
    radial-gradient(
      ellipse farthest-side at top right,
      rgba(58, 181, 73, 1) 0%,
      rgba(58, 181, 73, 0) 100%
    );
  background-blend-mode: screen; /* Enhances the starburst glow where colors overlap; alternatives: lighten or overlay for different intensities */
}

.testgradientback {
  /* width: 100%; */
  /* height: 100%; */
  /* object-fit: cover; */
  display: block;
  position: absolute;
  top: -100px;
  z-index: 0;
}
/* ==========================================================================
   CAROUSEL BASE — shared by all carousel types
   ========================================================================== */

.carousel-base {
  position: relative;
  width: 100%;
  overflow: visible;
}

.carousel-base__track {
  display: flex;
  overflow-x: auto;
  /* padding: 2rem 0 0 0; */
  scrollbar-width: none;
}

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

.carousel-base__slide {
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.carousel-base__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* ==========================================================================
     DRAG SCROLL — behavioral utility, applied via class + JS
     ========================================================================== */

.drag-scroll {
  cursor: grab;
}

.drag-scroll.dragging {
  scroll-behavior: auto;
  /* this one for snapping */
  /* scroll-snap-type: none; */
  cursor: grabbing;
  user-select: none;
}

/* ==========================================================================
     CAROUSEL MODIFIER: spillover — starts aligned to max-width layout,
     overflows right (and left once scrolled)
     ========================================================================== */

.carousel-base--spillover .carousel-base__track {
  padding-left: calc((100% - 1280px) / 2);
  gap: 1rem;
  /* these two for snapping */
  /* scroll-snap-type: x mandatory;
  scroll-behavior: smooth; */
  @media (max-width: 1280px) {
    padding-left: 20px;
  }
}

.carousel-base--spillover .carousel-base__slide {
  width: clamp(300px, 85vw, 600px);
  aspect-ratio: 1 / 1.1;
  gap: 12px;
  /* these two for snapping */
  /* scroll-snap-align: start; */
  padding-left: 1rem;
}
.carousel-base--spillover .carousel-base__slide .carousel-base__media {
  height: clamp(270px, 85vw, 600px);
}
.carousel-base--spillover .carousel-base__slide:last-child {
  padding-right: 1rem;
}

/* ==========================================================================
     CAROUSEL MODIFIER: contained — one slide visible at a time,
     stays within max-width layout
     ========================================================================== */

.carousel-base--contained {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}
.carousel-base--contained .carousel-base__track {
  gap: 1rem;
}

.carousel-base--contained .carousel-base__slide {
  width: 100%;
  position: relative;
  /* padding: 20px; */
  /* Responsive framing: height stays relatively stable while width 
       shrinks, so the effective ratio shifts from landscape → portrait.
       
       At 1280px wide: 45vw ≈ 576px → ratio ~2.2:1 (wide landscape, heavy crop)
       At  768px wide: clamps to 400px → ratio ~1.9:1 (mild landscape)
       At  375px wide: clamps to 400px → ratio ~0.94:1 (nearly portrait, minimal crop)
       
       object-fit: cover on .carousel-base__media handles the rest. */
  height: clamp(550px, 45vw, 750px);
}
.carousel-base--contained .carousel-base__slide .carousel-base__media {
  /* height: clamp(550px, 45vw, 750px); */
}

.carousel-base__floating-slide-caption {
  display: flex;
  flex-direction: column;
  position: absolute;
  color: white;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  h3,
  p {
    width: 70%;
    max-width: 360px;
  }

  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.905);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

/* Gradient backdrop — anchored to the bottom of the slide,
   only appears when a caption is present */
/* .carousel-base__floating-slide-caption::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -80px;
  height: clamp(550px, 45vw, 750px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 40%);
  border-radius: 20px;
  z-index: -1;
  pointer-events: none;
} */
/* ==========================================================================
   CAROUSEL BUTTONS — shared by all carousel types
   ========================================================================== */

.carousel-base-button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.637);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  border: none;
  font-size: 30px;
  line-height: 30px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
  touch-action: manipulation;
}

/* Desktop hover — only fires on devices with a real pointer,
     avoids sticky hover states on touch devices */
@media (hover: hover) {
  .carousel-base-button:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-50%) scale(1.1);
  }
}

/* Press/tap feedback — JS-driven class instead of :active,
     because :active on mobile lingers and doesn't reliably clear */
.carousel-base-button.pressed {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(0.92);
  transition: background 0.05s ease, transform 0.05s ease;
}

.carousel-base-button.left {
  left: 10px;
  padding: 0 4px 4px 0;
}

.carousel-base-button.right {
  right: 10px;
  padding: 0 0 4px 4px;
}

/* Dim button when there's nothing left to scroll in that direction */
.carousel-base-button.dimmed {
  opacity: 0.25;
  pointer-events: none;
  cursor: default;
}

.carousel-base--contained .carousel-base-button.left {
  left: 30px;
  padding: 0 4px 4px 0;
  @media (max-width: 1280px) {
    left: 20px;
  }
}

.carousel-base--contained .carousel-base-button.right {
  right: 30px;
  padding: 0 0 4px 4px;
  @media (max-width: 1280px) {
    right: 20px;
  }
}

/* ==========================================================================
   CAROUSEL CONTROLS WRAPPER — constrains buttons/dots to layout width
   ========================================================================== */

.carousel-base__controls {
  position: absolute;
  inset: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  pointer-events: none; /* let clicks pass through to track */
}

/* Re-enable clicks on interactive elements inside */
.carousel-base__controls .carousel-base-dots {
  pointer-events: auto;
}

/* ==========================================================================
     CAROUSEL DOT INDICATORS
     ========================================================================== */

.carousel-base-dots {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  background-color: #14141480;
  padding: 10px;
  border-radius: 100px;
  z-index: 2;
}
.carousel-base--spillover .carousel-base-dots {
  /* left: 66px; */
  bottom: -40px;
  @media (max-width: 1280px) {
    left: 50%;
  }
  @media (min-width: 1280px) {
    /* bottom: 0px; */
    /* left: 50%; */
    display: none;
  }
}
.carousel-base--contained .carousel-base-dots {
  /* left: 66px; */
  bottom: 20px;
}
.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff66;
  margin: 0 5px;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: width 0.2s ease, background-color 0.2s ease, border-radius 0.2s ease;
}

.indicator-dot.active {
  background-color: #ffffff;
  width: 30px;
  border-radius: 10px;
}

/* ==========================================================================
     WRAPPER — outer section spacing, shared by all carousels
     ========================================================================== */

.carousel-base-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
}

/* CAROUSEL TOGGLE */
.carousel-toggle-group {
  width: 100%;
}

.carousel-toggle-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 13px;
}
.carousel-toggle {
  /* display: flex;
  justify-content: center;
  gap: 0; */
  background-color: #7676804d;
  border-radius: 40px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 90%;
  max-width: 648px;
  height: 42px;
  color: white;
  position: relative;
}
.carousel-toggle-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  z-index: 2;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #7676804d;
}
.carousel-toggle__option {
  /* padding: 8px 24px;
  border: 1px solid #ffffff44;
  background: transparent;
  color: #ffffff88;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease; */
  color: white;
  /* background-color: #7676804d; */
  background: transparent;
  /* width: 50%; */
  width: 49%;
  height: 86%;
  border-radius: 40px;
  border: none;
  /* text-align: center; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* transition: 0.3s; */
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.carousel-toggle__option:hover {
  background-color: #4c4c5367;
}

/* .carousel-toggle__option:first-child {
  border-radius: 8px 0 0 8px;
}

.carousel-toggle__option:last-child {
  border-radius: 0 8px 8px 0;
} */

.carousel-toggle__option.active {
  /* background: #ffffff;
  color: #000000;
  border-color: #ffffff; */
  cursor: default;
  background-color: #3ab549;
  font-weight: bold;
}

.carousel-toggle__panel {
  display: none;
}

.carousel-toggle__panel.active {
  display: block;
}
 
  .investor-hero-overwrite {
  @media (max-width: 500px) {
    @media (min-height: 800px) {
      min-height: 80vh;
      img {
        height: 90% !important;
        top: -20px !important;
      }
    }
  }
}
#investor-hero-img {
  @media (max-width: 600px) {
    height: 80%;
  }
}
.investor-overwrite-hero-text {
  max-width: 720px;
  gap: 1rem;
  .h1-true {
    font-size: clamp(1.75rem, calc(1.689rem + 0.259vw), 2rem);
    font-weight: 500;
  }
  .h1-display {
    font-size: clamp(2.25rem, calc(2.068rem + 0.777vw), 3rem);
  }
  p {
    font-size: clamp(0.94rem, calc(0.915rem + 0.114vw), 1rem);
  }
  strong {
    font-size: clamp(0.94rem, calc(0.915rem + 0.114vw), 1rem);
  }
  @media (max-width: 750px) {
    width: 100%;
    max-width: 550px !important;
    align-items: center;
    /* h1 {
      padding: 0 1rem;
    } */

    h2 {
      padding-inline: 0.5rem;
    }
  }
}

.investor-cta-box {
  height: 100%;
  max-width: 1600px;
}
.investor-image-cluster-box {
  /* height: 70vh; */
  aspect-ratio: 60/37;
  @media (max-width: 900px) {
    height: 40vh;
    margin-top: 1rem;
  }
}

.investor-image-cluster-overwrite {
  @media (max-width: 900px) {
    height: 85%;
    margin-top: 0;
  }
}
.investor-par-image-hz-to-col {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  @media (max-width: 950px) {
    flex-direction: column;
  }
  @media (max-width: 750px) {
    padding-inline: 0;
  }
}
.investor-text-box-overwrite {
  max-width: 410px;
  p {
    color: #b4b4b4;
  }
  @media (max-width: 950px) {
    text-align: center;
    width: 96%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.investor-image-box-overwrite {
  width: 50%;
  @media (max-width: 950px) {
    width: 100%;
    max-width: 700px;
  }
  @media (max-width: 750px) {
    img {
      border-radius: 0;
    }
  }
}
.investor-video-box {
  object-fit: cover;
  object-position: center;
  max-width: 800px;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 5/3;
  position: relative;
  @media (max-width: 500px) {
    aspect-ratio: 9/16;
  }
}
.investor-video-box video {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  @media (max-width: 500px) {
    border-radius: 0;
  }
}
.investor-video-box.is-playing .play-overlay {
  display: none;
}

.generic-section-text {
  gap: 1rem;
  p {
    font-size: clamp(0.94rem, calc(0.869rem + 0.341vw), 1.13rem);
  }
  @media (max-width: 750px) {
    max-width: 96%;
    gap: 0.5rem;
  }
  h3 {
    font-size: clamp(0.69rem, calc(0.642rem + 0.227vw), 0.81rem);
  }
}
.style-h3 {
  font-size: clamp(1.13rem, calc(1.08rem + 0.227vw), 1.25rem) !important;
}
 

  .contact-form {
  position: relative;
  max-width: 670px;
  width: 30%;
  /* height: 700px; */
  background-color: #1a1a2e;
  top: -200px;
  z-index: 2;
  box-shadow: 0 4px 4px rgb(2, 6, 23);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 6px;
  /* justify-content: space-evenly; */
}
.contact-form-submit {
  display: flex;
  justify-content: center;
  button {
    max-width: 334px;
    width: 100%;
  }
}
.name-phone {
  display: flex;
  width: 100%;
  /* justify-content: ; */
  gap: 2.5rem;
  .input-label-box {
    width: 50%;
  }
}

.right-indent {
  padding-right: 8rem;
}

.input-label-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  label {
    color: #b4b4b4;
    font-size: 14px;
  }
  input {
    height: 50px;
    border-radius: 6px;
    background-color: #2b2b38;
    outline: none;
    border: none;
    padding: 0 0 0 1.5rem;
    color: white;
  }
  textarea {
    border-radius: 6px;
    background-color: #2b2b38;
    outline: none;
    border: none;
    padding: 1.5rem;
    color: white;
    resize: none;
  }
}

.newsletter-form {
  max-width: 1200px;
  width: 80%;
  background-color: hsla(0, 0%, 0%, 0.55);
  display: flex;
  flex-direction: column;
  padding: 4rem 0;
  text-align: center;
  align-items: center;
  border-radius: 6px;
}
.newsletter-form-input-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 600px;
  width: 100%;
}
.input-and-button {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  input {
    width: 100%;

    height: 50px;
    border-radius: 6px;
    background-color: #2b2b38;
    outline: none;
    border: none;
    padding: 0 0 0 1.5rem;
    color: white;
  }
  button {
    width: 30%;
    /* padding-inline: 2rem; */
  }
}
.newsletter-disclaimer-text {
  font-size: 14px;
  color: #697077;
}

.early-access-input {
  font-size: 16px;
  padding: 12px 2rem;
  border-radius: 10px;
  outline: none;
  border: none;
  color: #767680;
  text-align: left;
}

.input-error-message {
  font-size: 14px;
  font-weight: 700;
  display: none;
  color: #dc3545;
}
 
  .mobile{
    display: none;
} 

  @media (max-width: 1500px) {
  .footer-links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .contact-form {
    width: 100%;
    max-width: 520px;
    padding: 1rem;
  }
  .name-phone {
    flex-direction: column;
    gap: 2rem;
    .input-label-box {
      width: 100%;
    }
  }
  .right-indent {
    padding-right: 0;
  }
}
@media (max-width: 1250px) {
  /* .hero-cta-box{
    justify-content: center;
  }
  .hero-free-trial{
    text-align: center;
    align-items: center;
  }
  .golfer{
    display: flex;
    justify-content: center;
  } */
  div.golfer img {
    position: absolute;
    bottom: 0;
    right: 2px;
    width: 100%;
    max-width: 600px;
    height: auto;
  }
}
@media (max-width: 1200px) {
  .inline-padding {
    padding-inline: 2rem;
  }
  nav {
    padding: 1.5rem 0;
  }
  .wide-nav {
    display: none;
  }
  .narrow-nav {
    display: flex;
    justify-content: space-between;
    width: 90%;
  }
  .hamburger {
    display: block;
  }

  .hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .static-hero-banner {
    height: 7vh;
  }
  .contact-form {
    position: static;
    padding: 0;
    box-shadow: none;
    margin: 2rem 0;
  }
  .contact-form-container {
    padding: 0 1rem;
  }
  .name-phone {
    .input-label-box {
      width: auto;
      padding: 0 1rem;
    }
  }
  .putter-man-floating {
    display: none;
  }
  .why-it-works-card-container {
    max-width: 850px;
    width: 95%;
  }
}
@media (max-width: 1050px) {
  .flex-center-full-width {
    flex-direction: column-reverse;
    align-items: center;
    img {
      padding-inline: 1rem;
    }
  }
  .early-access-form-container {
    width: 100%;
    max-width: 600px;
    margin: 3rem 0 1rem 0;
    h1 {
      padding-inline: 2rem;
    }
  }
  .early-access-form {
    margin: 1rem 0;
  }
  .golfer {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 950px) {
  .widescreen {
    display: none;
  }
  .narrow-screen {
    display: block;
  }
  .carousel-padding {
    padding: 1rem 0;
  }
  .not-mobile {
    display: none;
  }
  .mobile {
    display: flex;
  }
  .header-content-wrapper {
    flex-direction: column;
    padding: 2rem 0.5rem;
    width: 100%;
    align-items: center;
  }
  .golfer-with-img {
    margin-left: 2rem;
  }
  .sign-up-box {
    text-align: center;
  }
  .toolkit-grid {
    display: grid;

    grid-gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr));

    grid-auto-rows: auto;
  }
  .toolkit-card {
    width: 116px;
    padding: 1rem;
    gap: 0.5rem;
  }

  div.golfer img {
    position: absolute;
    bottom: 0;
    /* right: 2px; */
    width: 100%;
    max-width: 500px;
    height: auto;
  }
}

@media (max-width: 800px) {
  div.golfer img {
    position: absolute;
    bottom: 0;
    /* right: 2px; */
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}

@media (max-width: 780px) {
  .newsletter-form {
    width: 80%;
    padding-inline: 1rem;
  }
  .input-and-button {
    flex-direction: column;
    input {
      width: 90%;
    }
    button {
      width: 90%;
    }
  }
  .why-it-works-card-container {
    flex-direction: column;
    width: auto;
    gap: 2rem;
  }
  .card-grid-wrapper {
    padding-inline: 1rem;
  }
}

@media (max-width: 750px) {
  .hero-cta-box {
    justify-content: center;
    height: 40%;
  }
  .hero-free-trial {
    text-align: center;
    align-items: center;
    max-width: 320px;
    padding: 0;
    gap: 0.5rem;
  }

  div.golfer img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    width: 100%;
    max-width: 400px;
    height: auto;
  }
  .early-access-form-container {
    margin: 0rem 0 1rem 0;
  }
}
@media (max-width: 650px) and (max-height: 800px) {
  div.golfer img {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: fit-content;
    width: 100%;
    max-width: 350px;
    height: auto;
  }
}

@media (max-width: 520px) {
  /* .spacer-flex {
    display: block;
  } */
  header {
    background: #16213e;
  }
  .header-hero-video {
    position: static;
    padding-bottom: 2rem;
  }
  .hero-video {
    display: none;
  }
  .header-content-wrapper {
    overflow-x: hidden;
  }
  .popover {
    top: 60px;
  }
  .phone-img {
    width: 100%;
  }
  .sign-up-box {
    width: 90%;
  }

  .button-wrapper {
    button {
      padding: 10px 2px;
      font-size: 14px;
    }
  }
  /* .app-download-buttons {
    gap: 0.5rem;
    img {
      width: 151px;
    }
  } */
  .social-buttons {
    gap: 2rem;
  }
  .logo-img {
    width: 125px;
  }
  .profile-icon {
    img {
      width: 26px;
    }
  }
  .article-element {
    padding: 0;
  }
  .article-paragraph {
    padding: 0;
  }
  .hero-cta-box {
    height: 30%;
  }
}

@media (max-width: 350px) {
  .toolkit-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .toolkit-card {
    width: 90%;
  }
  .footer-links {
    width: 100%;
  }
  .app-download-buttons {
    /* gap: 0.5rem;
    width: 100%; */
    display: flex;
    justify-content: space-between;
    gap: 0;
    /* img {
      width: 48%;
    } */
  }
  .social-buttons {
    gap: 1rem;
    img {
      width: 40px;
    }
  }
}
 
