* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #05070f;
  color: #ffffff;
}

.hero {
  min-height: 60vh;
  padding: 64px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 108px;
  height: 108px;
  border-radius: 28px;
  background: white;
}

h1 {
  font-size: clamp(42px, 7vw, 92px);
  margin: 0;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 560px;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.25;
  color: rgba(255,255,255,0.78);
}

.apps {
  padding: 90px 7vw;
}

.apps h2,
.updates h2 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.app-card {
  position: relative;
  min-height: 640px;
  border-radius: 36px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  background: #0b1020;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.app-card:hover {
  transform: translateY(-8px);
}

.app-card.blue:hover {
  box-shadow: 0 35px 120px rgba(48, 109, 255, 0.35);
}

.app-card.green:hover {
  box-shadow: 0 35px 120px rgba(0, 255, 150, 0.28);
}

.app-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.app-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.05)
  );
}

.card-content {
  position: absolute;
  z-index: 2;
  left: 36px;
  right: 36px;
  bottom: 36px;
}

.card-content h3 {
  font-size: clamp(34px, 4vw, 58px);
  margin: 0 0 12px;
  letter-spacing: -0.04em;
}

.card-content p {
  max-width: 520px;
  font-size: 20px;
  color: rgba(255,255,255,0.82);
  margin: 0 0 20px;
}

.card-content span {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

.updates {
  padding: 40px 7vw 100px;
}

.update-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.update-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.update-item img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.update-item p {
  margin: 0;
  font-size: 20px;
  color: rgba(255,255,255,0.82);
}

footer {
  padding: 36px 7vw;
  color: rgba(255,255,255,0.42);
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: 520px;
  }
}