.landing-page {
  margin: 0;
  min-height: 100vh;
  color: #f7fbff;
  background: #07131f;
  font-family: "Manrope", Arial, sans-serif;
}

.landing-page a {
  color: inherit;
}

.landing-header,
.landing-section,
.landing-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-header {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.landing-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.landing-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.landing-languages a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(7, 19, 31, 0.46);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
}

.landing-languages a[aria-current="page"] {
  background: #ffffff;
  color: #07131f;
}

.landing-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.landing-hero::before,
.landing-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.landing-hero::before {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(7, 19, 31, 0.3), rgba(7, 19, 31, 0.95)),
    url("./assets/hero/myone-hero-poster.png") center / cover;
}

.landing-hero::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 19, 31, 0.88), rgba(7, 19, 31, 0.38) 62%, rgba(7, 19, 31, 0.66));
}

.landing-hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 74px;
}

.landing-kicker {
  margin: 0 0 14px;
  color: #9fd4ff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.landing-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(247, 251, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.landing-page .landing-button-primary {
  border-color: #ffffff;
  background: #ffffff;
  color: #07131f;
}

.landing-section {
  padding: 72px 0;
}

.landing-section h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.landing-copy {
  max-width: 760px;
  color: rgba(247, 251, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.landing-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.landing-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1rem;
}

.landing-card span {
  color: rgba(247, 251, 255, 0.72);
  line-height: 1.6;
}

.landing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.landing-panel {
  padding: 28px;
  border-radius: 8px;
  background: #102337;
}

.landing-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(247, 251, 255, 0.78);
  line-height: 1.75;
}

.landing-price {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.landing-price-item {
  padding: 20px;
  border-radius: 8px;
  background: #ffffff;
  color: #07131f;
}

.landing-price-item span {
  display: block;
  margin-bottom: 6px;
  color: #38536c;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-price-item strong {
  font-size: 1.35rem;
}

.landing-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(247, 251, 255, 0.66);
  font-size: 0.92rem;
}

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

  .landing-hero {
    min-height: 760px;
  }

  .landing-grid,
  .landing-split,
  .landing-price {
    grid-template-columns: 1fr;
  }
}
