* {
  box-sizing: border-box;
}
body {
  background-color: #14120b;
  color: #fdfdfd;
  padding: 10px;
}
nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  padding-bottom: 10px;
  position: sticky;
  top: 0;
  overflow: hidden;
}

nav .logo-img {
  height: 28px;
  width: 96px;
}
.options > a {
  padding: 8px;
  text-decoration: none;
  color: white;
}
.options > a:hover {
  color: #edececd4;
}
button {
  margin: 2px;
  color: #14120b;
  background-color: #edecec;
  border-radius: 25px;
  border: none;
  padding: 5px 10px 6px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
}
button:hover {
  background-color: #edececd4;
}

.signIn {
  background-color: #14120b;
  color: #edecec;
  border-radius: 12px;
  border: 1px solid #5e5353d3;
  padding: 5px 10px 6px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
}
a > button {
  padding: 10px;
}

/* --------------------------------- */

.hero-h1 {
  width: 50vw;
  padding: 112px 20px 0px 0px;
}
.hero-btn {
  width: 235px;
  font-size: 15px;
  padding: 10px 28px;
}
.hero-img {
  padding: 60px 20px 67px;
  margin: 0px;
  width: 100%;
}
.hero-img img {
  max-width: 100%;
  display: block;
  margin-top: 5px;
}

/* ------------------------------------------------------------- */
.trusted-header {
  font-size: 16px;
  text-align: center;
}
.trusted-main {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.trusted-img > img {
  height: 100px;
  width: 93px;
  padding: 20px;
}
.trusted-img {
  background: #1b1913;
  padding: 0px 17px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------------------------------ */
.features {
  padding: 67.2px 0px;
}
.f-box {
  background-color: #1b1913;
  padding: 17.5px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  margin-bottom: 5%;
}

.f-text {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4%;
}
.f-img {
  grid-column: 2;
}

.f-img img {
  max-width: 100%;
  display: block;
}

.f-text > a {
  text-decoration: none;
  color: white;
}
.f-text > a:hover {
  color: #ff0000;
}
.reverse .f-box {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.reverse .f-img {
  grid-column: 1;
}
.reverse .f-text {
  grid-column: 2;
}

/* ------------------------------------------------------------------------- */
.testimonials {
  max-width: 1200px;
  margin: auto;
}

.testimonials h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

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

.card {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.card>img{
    height:200px;
    width:300px;
}
.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e5e5;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.author strong {
  font-size: 0.9rem;
}

.author span {
  font-size: 0.8rem;
  color: #a1a1a1;
}

/* Responsive */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .testimonials h1 {
    font-size: 2rem;
  }
}

/* ------------------------------------------------------------------- */
.frontier {
  margin-top: 20%;
  padding: 5%;
  max-width: 1200px;
  margin: auto;
}

.frontier h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, #181818, #0f0f0f);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.card p {
  font-size: 0.9rem;
  color: #cfcfcf;
  line-height: 1.5;
}

.card a {
  color: #ff6a00;
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 10px;
}

.mock {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 14px;
  font-size: 0.8rem;
  color: #ddd;
}

/* UI mock */
.ui-box .input {
  background: #1f1f1f;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.ui-box .dropdown span {
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid #333;
}

/* Search mock */
.search-box .query {
  background: #1f1f1f;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.search-box ul {
  list-style: none;
  color: #aaa;
}

.search-box li {
  margin: 6px 0;
}

/* Image mock */
.image-box img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------------------------ */

.changelog {
  margin-top: 20%;
  padding: 5%;
  max-width: 1200px;
  margin: auto;
}

.changelog h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

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

.change-card {
  background: linear-gradient(180deg, #181818, #0f0f0f);
  border-radius: 12px;
  padding: 20px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #b5b5b5;
}

.version {
  padding: 2px 8px;
  border-radius: 999px;
  background: #222;
  border: 1px solid #333;
  font-size: 0.75rem;
}

.change-card p {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.more {
  color: #ff6a00;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .changelog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .changelog-grid {
    grid-template-columns: 1fr;
  }
}
/* ---------------------------------------------------------------- */
.careers {
  max-width: 1200px;
  margin: auto;
}

.careers-inner {
  background-color: #1b1913;
  margin-top: 20%;
  padding: 5%;
  background: linear-gradient(180deg, #181818, #0f0f0f);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  overflow: hidden;
  min-height: 380px;
}

/* Left side */
.careers-text {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.careers-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 420px;
}

.careers-text a {
  color: #ff6a00;
  font-size: 0.95rem;
  text-decoration: none;
}

/* Right side image */
.careers-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .careers-inner {
    grid-template-columns: 1fr;
  }

  .careers-text {
    padding: 40px 30px;
  }

  .careers-text p {
    font-size: 1.05rem;
  }
}
/* --------------------------------------------------- */
.highlights {
  max-width: 1200px;
  margin: auto;
}

.highlights-inner {
  background-color: #1b1913;
  margin-top: 20%;
  padding: 5%;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
}

/* Left label */
.highlights-label p {
  font-size: 0.95rem;
  color: #d0d0d0;
}

/* Right content */
.highlights-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card {
  background-color: #302f2b;
  border-radius: 12px;
  padding: 22px;
}
.highlight-card:hover {
  background-color: #302f2bb1;
  border-radius: 12px;
  padding: 22px;
}

.highlight-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cfcfcf;
  margin-bottom: 12px;
}

.highlight-card span {
  font-size: 0.75rem;
  color: #9a9a9a;
}

.more {
  margin-top: 10px;
  color: #ff6a00;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 800px) {
  .highlights-inner {
    grid-template-columns: 1fr;
  }

  .highlights-label {
    margin-bottom: 10px;
  }
}

/* ------------------------------------------------------------------------ */
/* CTA */
.cta {
  padding: 100px 20px 80px;
  text-align: center;
}

.cta h1 {
  font-size: 3rem;
  margin-bottom: 25px;
}

.download-btn {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #000;
  font-size: 0.95rem;
  cursor: pointer;
}

/* Footer */
.footer {
  border-top: 1px solid #222;
  padding: 60px 40px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.footer h4 {
  font-size: 0.9rem;
  margin-bottom: 14px;
  color: #bfbfbf;
}

.footer a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #9a9a9a;
}

.lang {
  cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .cta h1 {
    font-size: 2.2rem;
  }
}
