* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-text-muted: #9a9996;
}

@font-face {
  font-family: "CursorGothic";
  src: url("./public/fonts/CursorGothic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* @font-face {
  font-family: "CursorGothic";
  src: url("./public/fonts/CursorGothic-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */

/* @font-face {
  font-family: "CursorGothic";
  src: url("./public/fonts/CursorGothic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
} */

/* @font-face {
  font-family: "CursorGothic";
  src: url("./public/fonts/CursorGothic-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
} */

body {
  background-color: #14120b;
  max-width: 1300px;
  margin: auto;
  font-family: "CursorGothic", sans-serif;
}

/* Top Nav Bar */

.nav-bar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #14120b;
  color: #edecec;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.nav-container {
  width: 100%;
  max-width: 1300px;
  height: 60px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-bar ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-logo {
  width: 100px;
  cursor: pointer;
}

.sign-in {
  padding: 4px 10px;
  border-radius: 60px;
  background-color: transparent;
  color: #edecec;
  border: 1px solid rgba(237, 236, 236, 0.2);
  margin-right: 4px;
  font-size: 14px;
  cursor: pointer;
}

.download {
  padding: 4px 10px;
  border-radius: 60px;
  background-color: #edecec;
  color: #14120b;
  border: 1px solid #edecec;
  font-size: 14px;
  cursor: pointer;
}

/* Hero Section */

.hero-section {
  margin-top: 160px;
}

.hero-title {
  color: #edecec;
  font-size: 26px;
  font-weight: 200;
}

.hero-cta {
  padding: 12px 20px;
  border-radius: 90px;
  margin-top: 20px;
  font-size: 16px;
  border: transparent;
  display: flex;
  gap: 6px;
  align-items: center;
  cursor: pointer;
}

.bg-img-section {
  margin-top: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.code-img {
  position: absolute;
  width: 85%;
  border-radius: 8px;
}

/* Testimonials */

.testimonial {
  margin-top: 80px;
}

.testimonial-title {
  color: #edecec;
  text-align: center;
  font-size: 14px;
}

.logos {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.logo-tile {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1b1913;
  width: 160px;
  height: 100px;
  padding: 20px;
  border-radius: 4px;
}

/* Features */

.feature {
  background-color: #1b1913;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  flex-wrap: wrap;
}

.content,
.content-2,
.content-3 {
  color: #edecec;
  max-width: 420px;
}

.content-2 {
  margin-right: 20px;
}

.content-text {
  font-size: 22px;
  line-height: 28.6px;
}

.feature-off-text {
  color: #9b9b9b;
}

.img-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-section-2 {
  background-color: #333d3f;
  border-radius: 4px;
  width: 840px;
  height: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-bg-img,
.feature-bg-img-3 {
  width: 840px;
  height: 560px;
  border-radius: 4px;
  filter: brightness(75%);
}

.feature-img {
  position: absolute;
  width: 660px;
  height: 480px;
  border-radius: 8px;
}

.feature-cta-wrap {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f54e00;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.feature-cta-wrap svg {
  width: 14px;
  height: 14px;
}

/* Reviews */

.reviews {
  margin-top: 120px;
}

.review-title {
  color: #edecec;
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  letter-spacing: -0.7px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 40px;
}

.review-card {
  background-color: #1b1913;
  color: #edecec;
  padding: 20px;
  height: 280px;
  border-radius: 6px;
}

.review-msg {
  height: 198px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-name {
  font-size: 14px;
}

.client-designation {
  font-size: 14px;
  color: rgba(237, 236, 236, 0.6);
}

.user-img img {
  border-radius: 10%;
  width: 40px;
  height: 40px;
}

/* Explore Section */

.explore-section {
  margin-top: 160px;
}

.explore-title p {
  color: #edecec;
  font-size: 26px;
  margin-bottom: 24px;
}

.main-text-explore {
  line-height: 24px;
}

.fade-text-explore {
  color: #9a9996;
  line-height: 24px;
}

.explore-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.explore-card {
  color: #edecec;
  padding: 16px;
  background-color: #1b1913;
  border-radius: 4px;
}

.explore-model-cta {
  font-size: 16px;
  line-height: 24px;
  margin-top: 12px;
  color: #f54e00;
}

.img-bg1 {
  margin-top: 24px;
  height: 380px;
  background-color: #423d35;
  border-radius: 4px;
}

.img-explore-1 {
  margin-top: 20%;
  margin-left: 7%;
}

.img-explore-2 {
  margin-top: 20%;
  margin-left: 4%;
}

.img-bg2 {
  margin-top: 24px;
  height: 380px;
  background-color: #3c3935;
  border-radius: 4px;
}

.img-bg3 {
  margin-top: 24px;
  height: 380px;
}

.img-bg {
  border-radius: 4px;
}

/* Changelog Section */

.changelog {
  margin-top: 160px;
  color: #edecec;
}

.changelog-title {
  margin-bottom: 24px;
}

.changelog-date {
  color: var(--color-text-muted);
  padding-bottom: 12px;
  line-height: 24px;
}

.version {
  border: solid 0.5px var(--color-text-muted);
  border-radius: 50px;
  padding: 4px 10px;
  margin-right: 10px;
  font-size: 14px;
}

.changelog-subtext {
  line-height: 24px;
}

.changelog-title-text {
  font-size: 26px;
}

.changelog-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.changelog-card {
  background-color: #1b1913;
  border-radius: 4px;
  border: solid 0.5px #201e19;
  padding: 24px 0 24px 12px;
}

.changelog-cta {
  margin-top: 24px;
  color: #f54e00;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Join-us Section */

.join-us {
  margin-top: 140px;
}

.join-us-title {
  font-size: 36px;
  line-height: 43.2px;
  letter-spacing: -0.7px;
}

.join-us-cta {
  font-size: 16px;
  line-height: 16px;
  padding: 14px 24px;
  border-radius: 190px;
  border: transparent;
  margin-top: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.join-us-right-arrow {
  width: 16px;
  height: 16px;
  fill: #14120b;
}

.join-us-content {
  color: #edecec;
  margin-top: 48px;
  margin-bottom: 56px;
}

.join-us-content p {
  margin-bottom: 20px;
}

.join-us-img {
  border-radius: 6px;
}

/* Recent Highlights Section */

.recent-highlights {
  margin-top: 120px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #1b1913;
  display: flex;
  justify-content: center;
  color: #edecec;
}

.highlights-title-text {
  font-size: 16px;
  line-height: 24px;
  position: sticky;
  top: 64px;
}

.main-highlight-container {
  width: 1300px;
  margin-top: 72px;
  margin-bottom: 72px;
}

.main-highlight-container2 {
  display: flex;
  gap: 180px;
}

.highlight-card {
  background-color: #201e18;
  padding: 16px 90px 12px 16px;
  margin: 10px;
  border-radius: 4px;
  border: solid 0.5px #25231d;
}

.highlight-text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.1px;
}

.highlight-subtext {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.1px;
}

.highlight-date {
  line-height: 24px;
  color: var(--color-text-muted);
}

.highlight-cta {
  display: flex;
  align-items: center;
  padding-left: 10px;
  margin-top: 24px;
  gap: 8px;
  font-size: 16px;
  cursor: pointer;
  color: #f54e00;
}

.right-arrow {
  width: 16px;
  height: 16px;
  fill: #f54e00;
}

/* CTA Banner Section */
.cta-banner {
  text-align: center;
  color: #edecec;
  margin: 80px 0px;
  padding: 80px 0px;
}

.cta-banner-title {
  font-size: 72px;
  line-height: 79.2px;
  letter-spacing: -2.2px;
}

.cta-banner button {
  padding: 12px 24px;
  font-size: 16px;
  margin-top: 24px;
  border-radius: 90px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin: 24px auto 0 auto;
  gap: 8px;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Footer Section */
.footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #1b1913;
  color: #edecec;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-main-container {
  width: 100%;
  max-width: 1200px;
  padding-top: 64px;
}

.links-section {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.column-title {
  display: block;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.link-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-box li {
  font-size: 14px;
  line-height: 2;
  color: #edecec;
  cursor: pointer;
}

.link-box li:hover {
  text-decoration: underline;
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 48px;
  width: 100%;
}

.copyright-text p {
  color: var(--color-text-muted);
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cert-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.right-side-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.theme-box,
.lang-btn {
  background-color: #27272a;
  border: 1px solid #3f3f46;
  border-radius: 50px;
  padding: 4px;
  display: flex;
  align-items: center;
}

.theme-btn {
  background: none;
  border: none;
  color: #a1a1aa;
  padding: 6px 10px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.2s;
}

.theme-btn:hover {
  color: #fff;
}

.theme-btn.active {
  background-color: #3f3f46;
  color: #fff;
}

.lang-btn {
  padding: 8px 16px;
  gap: 8px;
  cursor: pointer;
  color: #edecec;
  font-size: 13px;
  font-family: inherit;
}

.lang-btn:hover {
  background-color: #3f3f46;
}

.lang-btn span {
  padding-bottom: 1px;
}

.globe,
.arrow {
  color: #a1a1aa;
}
