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

/* === Base === */
body {
  font-family: 'DM Sans', sans-serif;
  background: #FFF8F6;
  color: #2D2D2D;
}

/* === Header === */
header {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #FF3366, #7B2FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

/* === Hero === */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 40px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text {
  max-width: 480px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text h1 span {
  background: linear-gradient(135deg, #FF3366, #7B2FFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* === Buttons === */
.buttons {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #FF3366, #7B2FFF);
  color: #fff;
  border: none;
}

.btn-secondary {
  background: transparent;
  color: #2D2D2D;
  border: 2px solid #FFD6CC;
}

/* === Phone Mockup === */
.phone {
  width: 260px;
  height: 500px;
  background: linear-gradient(160deg, #FFD6CC, #FF3366 40%, #7B2FFF);
  border-radius: 40px;
  transform: rotate(3deg);
  box-shadow: 0 30px 60px rgba(255, 51, 102, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-inner {
  width: 236px;
  height: 476px;
  background: #fff;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.phone-inner .card {
  width: 100%;
  height: 260px;
  background: linear-gradient(160deg, #FFD6CC, #FF3366);
  border-radius: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.phone-inner .card-name {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.phone-inner .card-age {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-left: 8px;
}

.swipe-btns {
  display: flex;
  gap: 24px;
}

.swipe-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #FFD6CC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: #fff;
}

.swipe-btn.like {
  border-color: #FF3366;
  color: #FF3366;
}

/* === Legal Pages === */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 40px 60px;
}

.legal h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.legal .last-updated {
  color: #999;
  font-size: 14px;
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.legal ul {
  margin: 0 0 16px 24px;
  color: #444;
  line-height: 1.7;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 24px;
  color: #999;
  font-size: 14px;
  border-top: 1px solid #FFD6CC;
  margin-top: 20px;
}

footer a {
  color: #FF3366;
  text-decoration: none;
  margin: 0 12px;
}

/* === Responsive === */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 40px;
    padding: 32px 24px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text h1 span {
    display: block;
  }

  .buttons {
    justify-content: center;
  }

  .phone {
    transform: rotate(0deg);
    width: 240px;
    height: 460px;
  }

  .phone-inner {
    width: 218px;
    height: 438px;
  }

  .phone-inner .card {
    height: 230px;
  }

  header {
    padding: 16px 24px;
  }

  .legal {
    padding: 24px 24px 40px;
  }

  .legal h1 {
    font-size: 28px;
  }
}
