* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(circle at top, #1d3f8f 0%, #07132b 55%, #02090f 100%);
  color: #f7f7fb;
  display: grid;
  place-items: center;
  padding: 24px;
}

.page-wrapper {
  width: min(100%, 980px);
}

.card {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(12, 22, 54, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.card:hover .image-wrapper img {
  transform: scale(1.06);
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-content {
  padding: 28px 30px 34px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #7fb6ff;
  font-size: 0.95rem;
  font-weight: 700;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

p {
  margin: 0 0 28px;
  max-width: 680px;
  color: rgba(247, 247, 251, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #071a03;
  background: linear-gradient(135deg, #20c74c 0%, #1a9d3e 100%);
  transition: transform 0.24s ease, filter 0.24s ease;
}

.cta-btn:hover,
.cta-btn:focus {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

@media (max-width: 720px) {
  .card-content {
    padding: 24px 20px 28px;
  }

  .cta-btn {
    width: 100%;
  }
}
