:root {
  --announcement-height: 2.5rem;
  --nav-height: 70px;
}

html {
  background-color: #121113;
  /* background-image: repeating-linear-gradient(180deg, rgba(11, 50, 117, 0.2), rgba(29, 136, 111, 0.2), rgba(11, 50, 117, 0.2) 400vh); */
  color: white;
}

body {
  height: 100%;
  /* font-family: "Rubik", sans-serif; */
  font-family: "Figtree", sans-serif;
  color: white;
}

ul {
  list-style-type: none;
}

a {
  color: white;
}

.landing-outer {
  min-height: 100vh;
}

/* div.announcement {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 .75rem;
  height: var(--announcement-height);
  background: linear-gradient(180deg, #1D886F 0%, #174238 100%);
}

.announcement strong {
  font-size: 14px;
  font-size: clamp(14px, 1.5vw, 16px);
  color: white;
}

.announcement a {
  padding: 0 .5rem;
  font-size: 14px;
  font-size: clamp(14px, 1.5vw, 16px);
  color: rgb(234, 255, 239);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
} */

.nav-outer {
  z-index: 1;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #222023;
  background-color: var(--color-bg-new);
}

.nav-outer nav {
  display:flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: var(--nav-height);
  max-width: 1400px;
  margin: 0 auto;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

nav a {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  height: var(--nav-height);
  text-decoration: none;
  font-size: 13px;
  font-size: clamp(13px, 1.5vw, 14px);
  color: rgb(240, 240, 240);
}

nav .dropdown-contents {
  display: flex;
  justify-content: space-between;
  width: 66%;
}

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

.nav-account a {
  background-color: var(--color-bg-blue);
  margin: 0 .5rem;
  padding: 0 .75rem;
  border-radius: 2px;
  height: calc( var(--nav-height) - 2.5rem);
  color: var(--color-quiver-green);
}

.mobile-hamburger {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0 .75rem;
  font-size: 25px;
}

.page-title-outer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* this one is unique, takes the full height - announcement - nav */
  min-height: calc(100vh - var(--announcement-height) - var(--nav-height));
  margin: 0 auto;
  padding: 4rem 2.5rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  font-size: clamp(20px, 2vw, 22px);
}

.scroll-hint {
  position: fixed;
  bottom: 1rem;
  left: 49.5%;
  right: 50%;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

.page-title-outer h1,
.page-title-outer h2 {
  font-size: 24px;
  font-size: clamp(24px, 5.5vw, 38px);
  line-height: 1.5;
}

.page-title-header {
  display:flex;
  padding-bottom: .5rem;
}

.page-title-outer h1 {
  max-width: 30ch;
  color: var(--color-quiver-green);
}

.page-title-outer h2 {
  font-weight: 300;
}

.page-title-outer h3,
.landing-inner strong {
  font-size: 15px;
  font-size: clamp(15px, 2vw, 21px);
  line-height: 1.85;
  font-family: "Figtree", sans-serif;
}

.page-title-outer h3 {
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-size: clamp(14px, 2vw, 18px);
  max-width: 700px;
}

.page-title-outer a,
.section-final a,
section a {
  align-self: center;
  border-radius: 1px;
  margin: 1rem .5rem 3rem;
  padding: .75rem 2rem;
  text-decoration: none;
  font-size: 17px;
  font-size: clamp(17px, 2vw, 22px);
  background-color: var(--color-green-6);
}

.page-title-outer a:hover,
.section-final a:hover,
section a:hover {
  background-color: rgb(26, 124, 101);
}

.page-title-inner {
  display:flex;
  justify-content: space-between;
  margin-top:1rem;
  gap:1.5rem;
}

.page-title-cta {
  display:flex;
  align-items: center;
  flex-direction: column;
  margin: 0 1rem;
  gap: 2rem;
  width: 50%;
}

.page-title-cta img.gif {
  border:1px solid rgb(70, 70, 70);
  width:100%;
  height:fit-content;
  border-radius:2px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.page-title-cta a.header-cta-link {
  display:inline-block;
  margin: 0 auto;
  font-size: clamp(16px, 2vw, 20px);
}

.page-title-outer p,
.section-explore.product-preview p:nth-child(2) {
  font-family: "Figtree", sans-serif;
  line-height: 1.8;
  color: rgb(235, 235, 235);
  margin: 1.25rem 0;
  max-width: 700px;
  font-size: 14px;
  font-size: clamp(14px, 2vw, 18px);
}

.page-title {
  flex-basis: 50%;
}

.img-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  width:100%;
  background-color: #1e1e1e;
  border-radius: 6px;
  align-self: center;
  color: gray;
}

.product-preview:nth-child(even) > div {
  flex-direction: row-reverse;
}

section.section-explore > div {
  flex-direction: row !important;
}

section.section-explore {
  position:relative;
  background-color: var(--color-bg-blue);
}

section.section-track {
  position:relative;
}
section.section-analyze {
  position:relative;
  background-color: var(--color-bg-blue);
}

section.section-implement {
  position:relative;
  min-height: auto;
  padding-top: 4rem;
}

section.section-income {
  position:relative;
}

.section-track .modules {
  padding-left: 1rem;
  max-width: 55ch;
}

.section-track .modules p {
  font-size: 14px;
  font-size: clamp(14px, 2vw, 18px);
  padding-top: .5rem;
  line-height: 1.5;
  color: rgb(225, 225, 225);
} 

.section-track .modules span {
  font-size: 13px;
  font-size: clamp(13px, 1.5vw, 16px);
  color: rgb(200, 200, 200);
  font-weight: 300;

}

.section-analyze .gif {
  margin: auto 2rem;
  border-radius:8px;
  min-width:45%;
  width:45%;
  height:fit-content;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.product-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 2rem;
  margin-top: 2rem;
  min-height: min(calc(100vh - var(--nav-height)), 1000px);
}

.product-preview > div {
  display: flex;
  margin: 1rem auto;
  justify-content: space-between;
  max-width: 1400px;
}

.product-preview > div > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(50% - 1rem);
  margin: 1.5rem;
}

.product-preview > div > div.preview-img img,
div.preview-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.product-preview p {
  font-size: 15px;
  font-size: clamp(15px, 2vw, 19px);
  padding-bottom: 1rem;
  line-height: 1.9;
  color: rgb(240, 240, 240);
  max-width: 700px;
}

.section-explore.product-preview p:first-child,
.section-track.product-preview p.section-medium {
  padding-bottom: 0;
  font-size: 22px;
  font-size: clamp(22px, 3.5vw, 38px);
  line-height: 1.5;
}

.section-implement.product-preview p.section-large {
  margin: 0 auto;
  padding-bottom: 0;
  text-align: center;
  font-size: 24px;
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.5;
} 

.section-explore.product-preview p:nth-child(2) {
  font-size: 15px;
  font-size: clamp(15px, 2vw, 22px);
  line-height: 2;
  color: rgb(240, 240, 240);
  margin-bottom: 0;
}

.section-implement .centered-paragraphs {
  margin-top: 1rem;
  margin-bottom: 0;
  width: 60%;
  min-width: 300px;
}

.section-implement .centered-paragraphs p {
  font-size: 14px;
  font-size: clamp(14px, 2vw, 19px);
  max-width: 50ch;
  margin: 0 auto 1rem;
  line-height: 2.25;
}

p.section-medium,
p.section-large,
p.section-xl {
  color: var(--color-quiver-green);
  max-width: 700px;
}

p.section-xl {
  font-size: 50px;
  font-size: clamp(50px, 5vw, 60px);
  line-height: 1.3;
}

p.section-large {
  font-size: 40px;
  font-size: clamp(40px, 4vw, 50px);
}

p.section-medium {
  font-size: 24px;
  font-size: clamp(24px, 3vw, 28px);
  line-height: 1.6;
}

.extra-p {
  margin-left: 2rem !important;
  color:rgb(240, 240, 240);
  font-size: 16px;
  font-size: clamp(16px, 2vw, 20px);
}

.track-text-more {
  display:flex;
  flex-direction:column;
  max-width: 700px;
  margin: 1rem auto !important;
}

.track-text-more strong {
  color: var(--color-quiver-green);
}

.track-text-more p {
  font-size: 18px;
  font-size: clamp(18px, 2vw, 20px);
  padding-bottom: 1rem;
  line-height: 1.5;
}

.hidden-text {
  display:none !important;
}

.more-toggle {
  display:block;
  text-align:center;
  color: var(--color-quiver-green);
  font-size: 22px;
  margin: 2rem 0;
  cursor: pointer;
  transition: .2s;
}

.more-toggle:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .nav-outer nav {
    position: relative;
    padding: 0 0 0 .75rem;
  }
  nav .dropdown-contents.dropdown-active {
    display: flex;
  }
  nav .dropdown-contents {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column-reverse;
    width: 100%;
    background-color: #161518;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul li,
  nav a {
    width: 100%;
  }
  nav ul li,
  .nav-account a  {
    border-bottom: 1px solid #222023;
  }
  .nav-account {
    flex-direction: column;
  }
  .nav-account a {
    margin: 0;
    padding: 0 1.5rem;
    border-radius: 2px;
    height: var(--nav-height);
  }
  .mobile-hamburger {
    display: flex;
  }
  .page-title-outer {
    padding: 3rem 1.5rem 2rem;
  }
  .page-title-header {
    justify-content: center;
  }
  .page-title-outer h1 {
    text-align: center;
    color: white;
    padding: 0 1rem;
  }
  .page-title-inner {
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
  }
  .page-title-cta {
    flex-direction: column-reverse;
    width: 100%;
    padding: 0 .5rem;
  }
  .page-title-cta img.gif {
    width: clamp(300px, 85vw, 600px);
  }
  .page-title-cta a.header-cta-link {
    padding: 1rem;
    background-color: transparent;
    color: var(--color-quiver-green);
  }
  .product-preview {
    padding: 2rem 1.25rem;
  }
  p.section-medium,
  p.section-large,
  p.section-xl {
    text-align: center;
  }
  .product-preview div,
  section.section-explore > div {
    flex-direction: column !important;
  }
  .product-preview > div {
    justify-content: center;
  }
  .product-preview div > span {
    display: none;
  }
  .product-preview div > div {
    align-items: center;
    width: 100%;
    margin: 1.5rem 0;
  }
  section.section-implement {
    padding-top: 2rem;
  }
  .section-analyze .gif {
    margin: 0 auto;
    min-width:auto;
    width:100%;
    max-width: 500px;
  }
  .section-implement .centered-paragraphs {
    width: 100%;
  }
  .page-title-outer p, .section-explore.product-preview p:nth-child(2) {
    margin: 1rem auto;
  }
  .product-preview > div > div.preview-img img, div.preview-img img {
    max-width: 500px;
  }
}

@media screen and (max-width: 600px) {
  .page-title-outer {
    padding: 2rem 1rem 2rem;
  }
  .page-title-cta {
    gap: 1rem;
  }
  .page-title-cta a.header-cta-link {
    padding: .5rem;
  }
}