@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #14120b;
  color: #edecec;
  height: 2000px;
}
a {
  text-decoration: none;
  color: #edecec;
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
}
a:hover {
  opacity: 0.5;
}
.first {
  width: 90%;
  justify-self: center;
  overflow: hidden;
  z-index: -1;
}

header {
  height: 52px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #14120b;
  z-index: 1000;
}
.logo {
  width: 100px;
  height: 24px;
}
.btn {
  display: flex;
  gap: 10px;
}
.button {
  font-size: 14px;
  padding: 5.6px 10.5px 5.88px;
  background: transparent;
  border: 1px solid #edecec;
  text-decoration: none;
  border-radius: 30px;
}
.navigation ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
.navigation ul li {
  gap: 5px;
}
.last-btn {
  background-color: #edecec;
  color: #14120b;
}
.last-btn a {
  color: #14120b;
}
.section1 {
  margin-top: 8rem;
  padding: 2rem;
}
.head{
  margin-left: 2rem;
}
.section1 h1 {
  margin: 0 0 1rem 0;
  font-size: 1.75rem;
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
}
.download {
  padding: 0.6rem 1rem;
  border-radius: 30px;
  background-color: #edecec;
  border: 0;
}
.download a {
  color: #14120b;
  font-size: 16px;
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
}
.section1 .img {
  justify-self: center;
  margin: 4rem 0 1.5rem 0;
}
.section2 {
  padding: 0.5rem 1rem;
}
.section2 p {
  text-align: center;
  padding: 0.5rem;
  font-size: 17px;
}
.section2 .comp-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0 1rem 0;
  /* flex-wrap: wrap; */
}
.section2 .child {
  width: 175px;
  height: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1b1913;
  border-radius: 6px;
  margin: 0 0.5rem;
}
.section2 div img {
  width: 65px;
  height: 45px;
}
.section3 .img {
  justify-self: center;
  margin: 4rem 0 1.5rem 0;
}


.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  font-family: "Fredoka";
  font-weight: 400;
  margin-bottom: 60px;
}

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

.card {
  background: #1B1913;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 28px;
  min-height: 220px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card p {
  font-size: 15px;
  line-height: 1.5;
  color: #e6e6e6;
  font-family: "Fredoka";
  font-weight: 300;
}

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

.author img {
  width: 36px;
  height: 36px;
  border-radius: 10%;
}

.author h4 {
  font-size: 14px;
  font-family: "Fredoka";
  font-weight: 500;
}

.author span {
  font-size: 14px;
  color: #a1a1a1;
  font-family: "Fredoka";
  font-weight: 400;
}


.frontier {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.frontier h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  font-family: "Fredoka";
  font-weight: 400;
}

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

.frontier-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.frontier-content h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.frontier-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfcfcf;
  margin-bottom: 16px;
}

.frontier-content a {
  font-size: 14px;
  color: #ff5c00;
  text-decoration: none;
}

.frontier-media {
  margin-top: 24px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  height: 300px;
  position: relative;
  overflow: hidden;
}

.frontier-media.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a9a9a;
  font-size: 13px;
}

.frontier-media .chip {
  background: rgba(0,0,0,0.6);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.frontier-media small {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: #8a8a8a;
}

.frontier-media.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.changelog-section {
  padding: 72px 96px;
  background: #14120B;
}

.title {
  font-size: 28px;
  font-family: "Fredoka";
  font-weight: 400;
  margin-bottom: 32px;
}

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

.cardd {
  background-color: #1B1913;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 15px 22px;
  min-height: 110px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.date {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.desc {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}

.link {
  display: inline-block;
  margin-top: 28px;
  font-size: 14px;
  color: #ff6a00;
  text-decoration: none;
}

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

.career-wrap {
  padding: 20px 20px;
  width: fit-content;
  justify-self: center;
  background: #1B1913;
}

.career-card {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-radius: 4px;
  overflow: hidden;
}

.career-left {
  padding: 56px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.career-text {
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
  font-family: "Fredoka";
  font-weight: 300;
}

.career-link {
  font-size: 15px;
  color: #ff6a00;
  text-decoration: none;
  width: fit-content;
}

.career-link:hover {
  text-decoration: underline;
}

.career-right {
  position: relative;
}

.career-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.recent-section {
  width:fit-content;
  padding: 60px 0;
  justify-self: center;
  margin-top: 4rem;
  border-radius: 6px;
  background: #1B1913;
}

.recent-inner {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 72px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}

.recent-left {
  font-size: 15px;
  color: #fff;
  padding-top: 6px;
}

.recent-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recent-card {
  width: 67%;
  padding: 22px 20px;
  border-radius: 2px;
  background-color: #26241E;
}

.recent-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.95);
}

.recent-card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}

.recent-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.recent-link {
  margin-top: 6px;
  font-size: 14px;
  color: #ff6a00;
  text-decoration: none;
  width: fit-content;
}

.recent-link:hover {
  text-decoration: underline;
}


.section11{
    padding: 5rem 0;
    margin: 1rem 0 3rem 0;

}
.section11 h1{
    text-align: center;
    font-size: 4.5rem;
    font-weight: bold;
    font-family: "Fredoka", sans-serif;
  font-weight: 400;
}
.section11 button{
    display: flex;
    justify-self: center;
    margin: 1rem 0 0 0;
}


footer{
    background-color: #1b1913;
    color: #edecec;
    padding: 2rem 1rem 2rem 1rem;
    width: 100%;
}
.foot{
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 1rem;
    margin: 1rem 0rem 5rem 0rem;
}
.foot-content{
    line-height: 1.8;

}
.p{
    opacity: 0.5;
    font-size: 18px;
    margin-bottom: 1rem;
}
