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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #F4F4F4 0%, #DEEDE6 46%, #F4F4F4 100%);
  min-height: 100vh;
}

/* Mobile First - Base styles */
.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: transparent;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  top: -27px;
  left: -13px;
  width: calc(100% + 26px);
  height: calc(100vh + 27px);
  background-image: url('images/background-pattern.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}

.header {
  position: absolute;
  top: 60px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.logo {
  width: 39px;
  height: 37px;
}

.app-name {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
  letter-spacing: -0.48px;
  line-height: 1.2;
}

.card {
  position: absolute;
  top: 140px;
  left: 16px;
  right: 16px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.illustration {
  max-width: 100%;
  width: 200px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.illustration:hover {
  transform: scale(1.02);
}

.cta-text {
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #1A1A1A;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cta-text:hover {
  color: #167047;
}

/* Link wrappers - remove default link styling */
.illustration-link,
.cta-text-link {
  text-decoration: none;
  display: block;
}

.primary-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #167047;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.primary-button:hover {
  background: #128a58;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 112, 71, 0.3);
}

.primary-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.primary-button span {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.384px;
  line-height: 1.21;
}

/* Tablet - 768px+ */
@media (min-width: 768px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #F4F4F4 0%, #DEEDE6 46%, #F4F4F4 100%);
  }

  .container {
    width: 375px;
    height: 812px;
    min-height: auto;
    background: transparent;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }

  .background-pattern {
    width: 1281px;
    height: 854px;
  }

  .header {
    top: 108px;
    left: 99px;
  }

  .card {
    top: 194px;
    left: 16px;
    right: auto;
    width: 343px;
    padding: 30px 10px;
  }

  .illustration {
    width: 233px;
  }

  .cta-text {
    font-size: 24px;
  }

  .primary-button {
    padding: 15px 80px;
  }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
  .primary-button {
    padding: 15px 131px;
  }
}