* {
  margin: 0px;
}
/* ------------------------ */
/* -- Custom properties --  */
/* ------------------------ */
:root {
  /* Theme colors */
  /* background and accents */
  --bg-primary: #14120b;
  --accent-primary: #151616;
  --accent-secondary: #201e18;
  /* text */
  --text-primary: #ffffff;
  --text-secondary: #b8baba;
  --text-tertiary: #18e295;
  /* buttons and interactive elements */
  --text-button-primary: #17181a;
  --link-button-primary: #757778;
  --link-button-secondary: #18e299;
  /* borders and misc. */
  --border-primary: #191a1b;
  --border-secondary: #2d2e2f;
  --border-footer: #212222;
  --footer-ul-primary: #898b8b;
}
/* ------------------------ */
body {
  display: grid;
  grid-template-rows: 65px repeat(2, auto);
  row-gap: 80px;
  background: var(--bg-primary) url(static/bg-dark.svg) center -155px /100%
    no-repeat;
  color: var(--text-primary);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  overflow-x: hidden;
}
/* ------------------------------ */
/* -- Textual elements styling -- */
/* ------------------------------ */
h1 {
  font-size: 60px;
  font-weight: 700;
}
h2 {
  font-size: 38px;
}
h3 {
  font-size: 20px;
  font-weight: 600;
}
h4 {
  font-size: 13px;
  color: #838585;
  font-weight: 700;
}

/* -------------------------------- */
/* -- Header Navigation styling --  */
/* -------------------------------- */
.page-header {
  width: 100%;
  height: 65px;
  position: fixed;
  z-index: 1;
  top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row: 1/2;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(20px);
}

.nav-bar {
  width: 55%;
  height: 65px;
  font-size: 14px;
  grid-column: 2/3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-self: center;
  align-items: center;
  gap: 4px;
}

.nav-left-content {
  display: flex;
  align-items: center;
  /* gap: 4px; */
}
.nav-center-content {
  /* width: 30%; */
  list-style-type: none;
  margin-left: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.nav-center-content li > a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
}

.nav-right-content {
  list-style-type: none;
  /* margin-right: 31px; */
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav-right-links {
  font-weight: 600;
  text-decoration: none;
}
#nav-btn-start {
  width: 105px;
  padding: 8px;
}
/* -------------------------------- */
/* -- Buttons and Labels styling -- */
/* -------------------------------- */
.btn-primary-filled {
  background-color: #ffffff;
  color: var(--text-button-primary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 8px;
}
.btn-primary-nofill {
  background-color: var(--bg-primary);
  color: #ffffff;
  border: 1px solid var(--border-secondary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  padding: 8px;
}
.status-label-gray {
  background-color: var(--border-footer);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  padding: 8px;
}
.link-btn-gray {
  color: var(--link-button-primary);
  text-decoration: none;
  font-weight: 600;
}
.link-btn-green {
  color: var(--link-button-secondary);
  text-decoration: none;
  font-weight: 600;
}

.main-content {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  grid-row: 2/3;
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: 400px 1fr 400px;
  row-gap: 150px;
}
/* -------------------------- */
/* -- Hero content styling -- */
/* -------------------------- */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  grid-row: 1/2;
  grid-column: 2/3;
  /* border: 1px solid red; */
  gap: 30px;
}
.hero-section p {
  font-size: 18px;
}
.start-cta-container {
  width: 340px;
  height: 20px;
  background-color: #ffffff20;
  border-radius: 40px;
  border: 1px solid #ffffff40;
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  padding-left: 14px;
  padding-right: 4px;
}
.start-cta-container p {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff80;
}
#start-cta-submit {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  width: 80px;
  height: auto;
  padding: 6px;
}
.hero-img {
  border-radius: 20px;
  border: 2px solid #ffffff20;
  margin-top: 60px;
}

/* --------------------- */
/* -- Feature Section -- */
/* --------------------- */
.feature-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  grid-row: 2/3;
  grid-column: 2/3;
  /* border: 1px solid red; */
  gap: 80px;
}
/* .feature-section p {
  color: var(--text-secondary);
} */
.feature-section > header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-indent: 18px;
  gap: 10px;
}
.title-descriptor {
  color: var(--text-secondary);
  width: 100%;
}
.heading-decorator {
  color: var(--text-tertiary);
  font-size: 12px;
  font-family: "Geist Mono";
  font-weight: 500;
}
.feature-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, auto);
  /* row-gap: 10px; */
}
.feature-grid article:first-child {
  grid-column: 1/7;
}
.feature-grid article:nth-child(2) {
  grid-column: 7/13;
}
.feature-grid article:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/12;
  align-items: center;
  margin-top: 30px;
}
.feature-card {
  width: auto;
  /* border: 1px solid greenyellow; */
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.feature-card header {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 10px;
}
#fcard-3 header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.feature-card video {
  display: block;
  margin: 30px;
}
/* --------------------------------- */
/* -- Enterprice sections styling -- */
/* --------------------------------- */
.enterprise-section {
  grid-column: 1/4;
  background-color: var(--accent-primary);
  display: flex;
  justify-content: center;
  /* border: 1px solid red; */
}
.enterprise-grid {
  width: 55%;
  display: grid;
  margin-top: 100px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, auto);
  column-gap: 20px;
  row-gap: 30px;
}
.enterprise-grid > article:nth-child(2) {
  grid-area: 2 / 1 / 3 / 7;
}
.enterprise-grid > article:nth-child(3) {
  grid-area: 2 / 7 / 3 / 13;
}
.enterprise-grid > div:nth-child(4) {
  grid-area: 3 / 1 / 4 / 13;
  height: 450px;
  border-radius: 40px;
  background: transparent url("static/anthropic.svg") top / 110% no-repeat;
  padding: 60px;
  justify-content: space-between;
}
.enterprise-grid > div:nth-child(5) {
  grid-area: 4 / 1 / 5 / 13;
  margin-bottom: 100px;
}
.enterprise-section header {
  grid-column: 1/13;
  display: flex;
  justify-content: space-between;
}
.enterprise-section header > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.enterprise-section header > a {
  height: 25px;
  align-self: end;
  padding: 6px;
  padding-left: 20px;
  padding-right: 20px;
}
.enterprise-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  margin-top: 40px;
}
.enterprise-card > img {
  width: 30px;
  padding: 10px;
}
.enterprise-card-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 5px;
}
.customer-story-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.customer-story-heading > a {
  margin-top: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-primary);
}
.customer-story-heading p:first-child {
  color: var(--text-primary);
  font-family: "Geist Mono";
  font-weight: 600;
}
.customer-story-metrics {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 50px;
}
.customer-story-metrics p:nth-child(1) {
  font-family: "Plus Jakarta Sans";
  color: var(--text-primary);
  font-size: 40px;
}
.customer-story-metrics p:nth-child(2) {
  color: #c2c2c3;
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
}
/* ------------------------ */
/* Customer Section styling */
/* ------------------------ */
.customer-section {
  grid-column: 1/4;
  grid-row: 4/5;
  position: relative;
  display: flex;
  flex-direction: column;
  /* align-items: center;
  justify-content: center; */
  /* border: 1px solid red; */
  gap: 80px;
}
.customer-section > header {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
.customer-carousel {
  width: 100%;
  /* position: fixed;
  top: 180px;
  left: 20px; */
  display: grid;
  grid-template-columns: repeat(4, 400px);
  grid-template-rows: 200px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  anchor-name: --customer-carousel;
}
/* "::scroll-button" is not supported on all browsers. Use with caution */
.customer-carousel::scroll-button(right) {
  content: ">";
  font-size: 16px;
  font-weight: 900;
  border: none;
  border-radius: 60px;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  height: 25px;
  width: 25px;
  padding: 6px;
  position: fixed;
  top: 60px;
  position-anchor: --customer-carousel;
  position-area: center bottom;
}
.customer-carousel::scroll-button(left) {
  content: "<";
  font-size: 16px;
  font-weight: 900;
  border: none;
  border-radius: 60px;
  background-color: var(--text-primary);
  color: var(--bg-primary);
  height: 25px;
  width: 25px;
  padding: 6px;
  position: fixed;
  top: 60px;
  right: 70px;
  position-anchor: --customer-carousel;
  position-area: center bottom;
}
.customer-carousel::scroll-button(right):hover {
  background-color: #cecece;
}
.customer-carousel::scroll-button(left):hover {
  background-color: #cecece;
}
.customer-carousel::-webkit-scrollbar {
  display: none;
}
.customer-carousel-card {
  /* border: 1px solid #18e295; */
  width: 400px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1/4;
  gap: 10px;
}
.customer-carousel-card p:nth-child(2) {
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-secondary);
}
.customer-carousel > a {
  text-decoration: none;
}
/* need to make this more efficient */
/* -------------------------------- */
.customer-carousel > a:nth-child(1) {
  grid-column: 1/2;
}
.customer-carousel a:nth-child(2) {
  grid-column: 2/3;
}
.customer-carousel > a:nth-child(3) {
  grid-column: 3/4;
}
.customer-carousel > a:nth-child(4) {
  grid-column: 4/5;
}
.customer-carousel > a:nth-child(5) {
  grid-column: 5/6;
}
.customer-carousel > a:nth-child(6) {
  grid-column: 6/7;
}
.customer-carousel > a:nth-child(7) {
  grid-column: 7/8;
}
.customer-carousel-card-img {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-img-logo {
  width: 200px;
  height: 50px;
}
.carousel-img-1 {
  background: transparent url(static/perplexity.webp) top / 400px 230px
    no-repeat;
}
.carousel-img-2 {
  background: transparent url(static/x.webp) top / 400px 230px no-repeat;
}
.carousel-img-3 {
  background: transparent url(static/kalshi.webp) top / 400px 230px no-repeat;
}
.carousel-img-4 {
  background: transparent url(static/cognition.webp) top / 400px 230px no-repeat;
}
.carousel-img-5 {
  background: transparent url(static/togetherai.webp) top / 400px 230px
    no-repeat;
}
.carousel-img-6 {
  background: transparent url(static/laravel.webp) top / 400px 230px no-repeat;
}
.carousel-img-7 {
  background: transparent url(static/replit.webp) top / 400px 230px no-repeat;
}
/* ------------------------------ */
/* -- End CTA section styling -- */
/* ------------------------------ */
.end-cta-section {
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 50px;
  margin-top: 80px;
  /* text-align: center; */
}
.end-cta-section > header {
  display: flex;
  flex-direction: column;
  align-self: center;
  text-align: center;
  gap: 10px;
}
.end-cta-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.end-cta-btns > a {
  padding-left: 20px;
  padding-right: 20px;
}
.getstarted-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
  gap: 180px;
}
.getstarted-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.getstarted-card > a {
  margin-top: 20px;
}
.getstarted-card > img {
  border-radius: 20px;
  border: 1px solid var(--border-secondary);
  width: 48px;
  height: 48px;
}
/* ---------------------- */
/* Footer section styling */
/* ---------------------- */
.page-footer {
  width: 100%;
  background-color: var(--accent-primary);
  grid-row: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.footer-grid {
  width: 55%;
  grid-template-rows: repeat(3, auto);
}
.footer-grid > div:nth-child(1) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-footer);
  /* margin-top: 40px; */
  padding: 30px;
  padding-top: 60px;
}
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.social-icons > a {
  text-decoration: none;
}
.footer-nav {
  border: 1px solid var(--border-footer);
  display: flex;
  justify-content: space-between;
  align-items: start;
  /* gap: 10px; */
  padding: 30px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer-nav-ul {
  text-decoration: none;
  color: var(--footer-ul-primary);
  /* font-family: "JetBrains Mono NL"; */
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.footer-nav-ul a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 700;
}
.footer-end {
  border: 1px solid var(--border-footer);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  padding-bottom: 100px;
}
.footer-end > small {
  color: #929292;
  font-weight: 600;
}
/* --------------------------- */
/* ---- End of StyleSheet ---- */
