:root {
  --text-color: #edecec;
  --accent-color: #edecee;
  --accent-color-hover: #edecec7b;
}

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

body {
  background-color: #14120b;
  font-family: system-ui, sans-serif;
  word-spacing: -0.5px;
  letter-spacing: -0.5px;
}

nav {
  background-color: #14120b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 69%;
  margin: 8px auto;
  padding: 5px 10px;
}

.logo {
  width: 100px;
  height: 24px;
}

.signin {
  background-color: transparent;
  border: #edecec3b 0.5px solid;
  color: var(--text-color);
  margin-right: 5px;
}

nav div a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 28px;
  font-size: 14px;
}

nav div button {
  background-color: var(--accent-color);
  border: none;
  padding: 5px 10px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
}
.download-button {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background-color: var(--accent-color);
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
}
.download-button:hover {
  background-color: var(--accent-color-hover);
}

nav div button:hover {
  background-color: var(--accent-color-hover);
}

main {
  width: 100%;
  display: block;
}
section {
  width: 100%;
  display: block;
}

.hero {
  width: 69%;
  margin: 100px auto;

  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
}

.hero-title {
  font-family: system-ui, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 680px;
  color: var(--text-color);
}

.hero-content {
  max-width: 700px;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
}

.trusted {
  width: 69%;
  margin: 0 auto;
  text-align: center;
}

.trusted-text {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 40px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}

.logo-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card img {
  height: 38px;
  opacity: 0.9;
}

.features {
  width: 69%;
  margin: 160px auto;
  display: flex;
  flex-direction: column;
  gap: 160px;
}

.feature-row {
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.feature-row.reverse {
  direction: rtl;
  padding-left: 10px;
  padding-bottom: 10px;
}

.feature-row.reverse .feature-text {
  direction: ltr;
}

.feature-text {
  margin-left: 20px;
}

.feature-text h2 {
  color: var(--text-color);
  font-size: 22px;
  margin-bottom: 4px;
  font-weight: 500;
}

.feature-text p {
  color: var(--text-color);
  font-size: 22px;
  opacity: 0.5;
  margin-bottom: 12px;
}

.feature-text a {
  color: #f54e00;
  text-decoration: none;
}

.feature-image img {
  width: full;
  height: 700px;
  border-radius: 8px;
  padding-right: 10px;
  padding-top: 10px;
}

.testimonial {
  width: 69%;
  margin: 10px auto;
  text-align: center;
}

.testimonial-title {
  color: var(--text-color);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 80px;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 18px;

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

  text-align: left;
}

.testimonial-card p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.9;
  margin-bottom: 28px;
}

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

.person img {
  width: 36px;
  height: 36px;
}
.person strong {
  color: var(--text-color);
  font-size: 14px;
  display: block;
}

.person span {
  color: var(--text-color);
  opacity: 0.6;
  font-size: 13px;
}

.platform {
  width: 69%;
  margin: 160px auto;
}

.platform-title {
  color: var(--text-color);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}

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

.platform-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 18px;

  display: flex;
  flex-direction: column;
}

.platform-card h3 {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 4px;
}

.platform-card p {
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.5;
  margin-bottom: 20px;
}

.platform-card a {
  color: #f54e00;
  text-decoration: none;
  margin-bottom: 16px;
}

.platform-media {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
}

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

.changelog {
  width: 69%;
  margin: 160px auto;
}

.changelog-title {
  color: var(--text-color);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 30px;
}

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

.changelog-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 20px;
}

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

.version {
  border: 1px solid rgba(255, 255, 255, 0.44);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 13px;
  opacity: 0.6;
  color: var(--text-color);
}

.date {
  font-size: 16px;
  opacity: 0.6;
  color: var(--text-color);
}

.changelog-card p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.3;
}

.changelog-link {
  margin-top: 30px;
  color: #f54e00;
  text-decoration: none;
  display: inline-block;
}

.team-callout {
  width: 69%;
  margin: 160px auto;
}

.team-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  padding: 20px;

  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 30px;
  align-items: center;
}

.team-text p {
  color: var(--text-color);
  font-size: 22px;
  line-height: 1.4;
  max-width: 350px;
  margin-bottom: 20px;
}

.team-link {
  color: #f54e00;
  text-decoration: none;
  font-size: 16px;
}

.team-image img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
}

.highlights {
  background-color: #1b1913;
  padding: 1px;
}

.highlights-new {
  width: 69%;
  margin: 160px auto;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px 130px;
  align-items: start;
}

.highlights-label {
  color: var(--text-color);
  font-size: 16px;
  opacity: 0.9;
}

.highlight-card {
  grid-column: 2;
  max-width: 640px;
  background: #201e18;
  border-radius: 8px;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.highlight-card:hover {
  background: #524e4470;
}

.highlight-card h3 {
  color: var(--text-color);
  font-size: 16px;
  font-weight: 400;
}

.highlight-card p {
  color: var(--text-color);
  opacity: 0.55;
  font-size: 16px;
  line-height: 1.5;
}

.highlight-card span {
  color: var(--text-color);
  opacity: 0.4;
  font-size: 16px;
  margin-top: 20px;
}

.highlights-link {
  margin-left: 360px;
  margin-top: 22px;
  display: inline-block;
  color: #f54e00;
  text-decoration: none;
  font-size: 16px;
}

.final-cta {
  width: 100%;
  padding: 160px 0;
  text-align: center;
}

.final-cta h2 {
  color: var(--text-color);
  font-size: 68px;
  font-weight: 400;
  margin-bottom: 32px;
}

.footer {
  width: 100%;
  padding: 120px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #1b1913;
}

.footer-grid {
  width: 69%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
}

.footer-col p {
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 18px;
  opacity: 0.5;
}

.footer-col a {
  display: block;
  color: var(--text-color);
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.85;
  cursor: pointer;
  text-decoration: none;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  width: 69%;
  margin: 80px auto 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--text-color);
  opacity: 0.6;
  font-size: 13px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--text-color);
  font-size: 14px;
  opacity: 0.7;
}

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

.check-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--text-color);
  stroke-width: 2;
  opacity: 0.8;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  background-color: #201e18;
  padding: 8px;
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #edecec;
  stroke-width: 1.5;
  opacity: 0.7;
  cursor: pointer;
}

.icon:hover {
  opacity: 1;
}

.lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-color);
  opacity: 0.8;
  cursor: pointer;
}

.lang:hover {
  opacity: 1;
}
