* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Courier, monospace;
  color: #efefef;
}
body {
  width: 70%;
  margin: 0 auto;
  background-color: #14120b;
}

.navbar {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 5px;
  top: 0;
  z-index: 0;
  background-color: #14120b;
}
.nav-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.logo {
  width: 92px;
}

.nav-centre {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-centre a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-centre a:hover {
  color: #888888;
}
.nav-btn-holder {
  width: auto;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.btn {
  text-decoration: none;
  border-radius: 50px;
  padding: 6px 12px;
  cursor: pointer;
  background-color: #efefef;
  color: #14120b;
  font-size: 14px;
  border: none;
  transition: background-color 0.2s;
}
.btn-sign-in {
  background-color: transparent;
  color: #efefef;
  padding: 5px 10px;
  border: 1px solid #4d4d4d;
}
.btn-sign-in:hover {
  background-color: #242424;
}

.btn-download:hover {
  background-color: #c3c3c3;
}

.hero-section {
  margin-top: 100px;
}
.hero-section h1 {
  font-size: 26px;
  font-weight: 400;
}

.btn-hero-section {
  margin-top: 30px;
  font-size: 18px;
  border-radius: 100px;
  padding: 12px 18px;
}

.btn-hero-section:hover {
  background-color: #c3c3c3;
}
.hero-image {
  margin-top: 50px;
  max-width: 100%;
  height: auto;
  display: block;
}

.trusted-by-section {
  margin-top: 70px;
  text-align: center;
}

.trusted-by-section h3 {
  color: #c0c0c0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
}

.tb-logos-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  max-width: 100%;

  margin: 0 auto;
}

.tb-logo-item {
  margin-top: 30px;
  background-color: #1b1913;
  border-radius: 4px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-company-logos {
  background-color: transparent;
  max-height: 40%;
  width: auto;
}

.feature-section {
  margin-top: 110px;
  background-color: #1b1913;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 30px 25px;
  max-width: 100%;
}

.feature-text {
  flex: 1;
  max-width: 450px;
  background-color: transparent;
}

.feature-text h2 {
  font-size: 22px;
  font-weight: 00;
  margin-bottom: 6px;
  color: #efefef;
  background-color: transparent;
}

.feature-text p {
  color: #a1a1a1;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
  background-color: transparent;
}

.learn-link {
  color: #bf4105;
  text-decoration: none;
  font-weight: 500;
  background-color: transparent;
}

.feature-image-container {
  flex: 1;
  background-color: transparent;
}

.feature-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #333;
  background-color: transparent;
}

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

.review-section {
  margin-top: 140px;
}

.review-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 400;
}

.review-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.review-grid div {
  background-color: #1b1913;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-grid div h3 {
  font-size: 16px;
  font-weight: 300;
}

.review-grid span {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 12px;
}

.review-grid span img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  grid-row: 1 / span 2;
}

.review-grid span h3 {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  align-self: end;
}

.review-grid span h4 {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin: 0;
  align-self: start;
}

.frontier-section {
  margin-top: 150px;
}

.frontier-section h2 {
  font-size: 26px;
  font-weight: 400;
}

.frontier-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ft-grid {
  background-color: #1b1913;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ft-grid span {
  display: block;
  padding: 15px;
}

.ft-grid h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.ft-grid h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #a1a1a1;
  margin-bottom: 20px;
}

.ft-grid a {
  color: #bf4105;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.ft-grid a:hover {
  color: #933205;
}

.ft-grid img {
  width: 100%;
  height: auto;
  padding: 0px 15px 15px 15px;
  display: block;
  object-fit: cover;
}

.changelog-section {
  margin-top: 150px;
}

.changelog-section h2 {
  font-size: 26px;
  font-weight: 400;
}

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

.cngl {
  background-color: #1b1913;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 120px;
  transition: background-color 0.2s;
}

.cngl:hover {
  background-color: #201e17;
}

.cngl span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cngl span h3 {
  font-size: 14px;
  font-weight: 300;
  color: #a1a1a1;
}

.wr-border {
  border: 1px solid #636363;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.8rem !important;
  color: #fff;
  font-weight: 500;
}

.cngl h4 {
  font-size: 16px;
  font-weight: 500;
  color: #d8d8d8;
}

.changelog-section > a {
  display: inline-block;
  color: #b23c03;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  margin-top: 20px;
}

.changelog-section > a:hover {
  color: #8a2e00;
}

.joinus-section {
  margin-top: 120px;
}

.joinus-d {
  display: flex;
  background-color: #1b1913;
  border-radius: 5px;
  overflow: hidden;
}

.joinus-d span {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.joinus-d h2 {
  color: #ededed;
  font-size: 22px;
  font-weight: 300;
  max-width: 350px;
}

.joinus-d a {
  margin-top: 20px;
  color: #bf4105;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}

.joinus-d a:hover {
  color: #9a3202;
}

.joinus-d img {
  flex: 1.3;
  object-fit: cover;
  height: auto;
  min-height: 100%;
  display: block;
  padding: 20px;
  border-radius: 25px;
}

.highlight-section {
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #1b1913;
}

.highlight-section h2 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 35px;
  margin-left: 50px;
  margin-top: 80px;
  width: 100%;
  text-align: left;
}

.highlight-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
}

.hlg {
  background-color: #26241e;

  border-radius: 5px;
  padding: 20px;
  transition: background-color 0.2s;
}

.hlg:hover {
  background-color: #322f28;
}

.hlg h3 {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
}

.hlg h4:nth-of-type(1) {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #a1a1a1;
  margin-bottom: 24px;
}

.hlg h4:nth-of-type(2) {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

.highlight-section a {
  margin-top: 40px;
  margin-bottom: 80px;
  color: #bf4105;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  max-width: 800px;
}

.highlight-section a:hover {
  color: #973000;
}

.trynow-section {
  margin-top: 160px;
  margin-bottom: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trynow-section h2 {
  font-size: 60px;
  font-weight: 400;
}

.cursor-footer {
  padding: 40px;
  position: relative;
}

.cursor-footer::before {
  content: "";
  background-color: #1b1913;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}

.footer-content {
  margin: 0 auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.footer-col h5 {
  font-size: 16px;
  font-weight: 300;
  color: #888;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  text-decoration: none;
  color: #d4d4d4;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: #666;
}

.soc-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
}

.soc-badge svg {
  color: #666;
}

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

.theme-toggle {
  display: flex;
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 2px;
  border: 1px solid #333;
}

.theme-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.theme-toggle button:hover {
  color: #fff;
}

.theme-toggle button.active {
  background-color: #333;
  color: #fff;
}

.lang-btn {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #d4d4d4;
  font-family: inherit;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s ease;
}

.lang-btn:hover {
  border-color: #555;
  color: #fff;
}
