:root {
  --bg-start: #08214f;
  --bg-end: #0d58c7;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.86);
  --panel: rgba(255, 255, 255, 0.11);
  --panel-border: rgba(255, 255, 255, 0.22);
  --button-text: #07235b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(140deg, var(--bg-start), var(--bg-end));
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  padding: 1.1rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: var(--text-soft);
  text-decoration: none;
}

.login-btn {
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.14));
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lang-select {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0.7rem;
  padding: 0.46rem 2rem 0.46rem 0.7rem;
  background: rgba(8, 34, 83, 0.6);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
}

.lang-select option {
  color: #0b275f;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-soft);
}

h1,
h2 {
  font-family: "Sora", "Manrope", sans-serif;
}

h1 {
  margin: 0.8rem 0 1.2rem;
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  line-height: 1.1;
  max-width: 900px;
}

.lead {
  max-width: 890px;
  margin: 0 0 0.7rem;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  text-decoration: none;
  font-weight: 700;
  border-radius: 0.7rem;
  padding: 0.72rem 1.1rem;
  transition: none;
}

.button:hover {
  opacity: 1;
}

.button-primary {
  color: var(--button-text);
  background: #ffffff;
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.section {
  padding: 1.4rem 0 2.4rem;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.section-image-small {
  max-width: 100%;
  margin-bottom: 1rem;
}

.section-image-tall {
  align-self: stretch;
  object-fit: cover;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: none;
}

.card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.card p,
.card li {
  color: var(--text-soft);
  margin: 0;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.app-block {
  padding-top: 0.5rem;
}

.platform-title {
  margin: 1rem 0 0.55rem;
  font-weight: 700;
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}

.app-points {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
}

.app-points p {
  margin: 0;
  color: var(--text-soft);
}

.app-gallery-wrap {
  margin-top: 1rem;
}

.app-gallery-title {
  margin: 0 0 0.65rem;
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.app-gallery-scroll {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.45rem;
  scroll-snap-type: x mandatory;
}

.app-gallery-scroll::-webkit-scrollbar {
  height: 10px;
}

.app-gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.app-shot {
  width: 240px;
  min-width: 240px;
  height: auto;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  scroll-snap-align: start;
}

.cta {
  padding-top: 0.6rem;
}

.cta-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1rem;
  padding: 1.2rem;
}

.cta-box h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.cta-box p {
  margin: 0.22rem 0;
  color: var(--text-soft);
}

.cta-box a {
  color: #ffffff;
}

.footer {
  padding: 1.2rem 0 1.8rem;
}

.footer-inner {
  display: flex;
  justify-content: flex-start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.footer-copy {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

.footer-ai {
  margin: 0;
  color: var(--text-soft);
}

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

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .toolbar {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-shot {
    width: 210px;
    min-width: 210px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  h1 {
    font-size: clamp(1.8rem, 10vw, 2.4rem);
  }
}
