:root {
  --bg: #fff3f6;
  --bg-2: #ffe7ee;
  --primary: #ff4f77;
  --primary-dark: #f03d67;
  --text: #1e1b1f;
  --muted: #7a6a75;
  --card: #ffffff;
  --shadow: 0 22px 60px rgba(255, 94, 130, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #ffe9ef 0%, #fff6f9 45%, #fff 100%);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 40px 6vw 32px;
  gap: 48px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-icon {
  background: linear-gradient(135deg, #ff6a88, #ff406f);
  color: #fff;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.brand-name {
  font-size: 18px;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(255, 94, 130, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero.redirect {
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0 0 12px;
}

.hero-copy h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  margin: 0 0 16px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta {
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff6a88, #ff3d6d);
  box-shadow: 0 18px 40px rgba(255, 77, 110, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cta-heart {
  font-size: 18px;
}

.cta-note {
  color: var(--muted);
  font-weight: 600;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(320px, 90vw);
  background: linear-gradient(180deg, #fff7fa, #fff 70%);
  border-radius: 40px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.phone-header {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.status-dot {
  width: 36px;
  height: 8px;
  background: #e7d6dd;
  border-radius: 999px;
}

.app-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff6a88, #ff3d6d);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 16px 30px rgba(255, 92, 124, 0.35);
  margin: 0 auto 16px;
}

.phone-body h2 {
  text-align: center;
  margin: 0 0 8px;
  font-size: 22px;
}

.phone-body p {
  text-align: center;
  color: var(--muted);
  margin: 0 0 18px;
}

.primary-pill {
  background: linear-gradient(135deg, #ff6a88, #ff3d6d);
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-card {
  background: var(--card);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(22, 16, 20, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
}

.mini-card strong {
  font-size: 13px;
}

.mini-card span {
  color: var(--muted);
}

.mini-badge {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff0f5;
}

.phone-footer {
  display: flex;
  justify-content: space-around;
  margin-top: 18px;
  background: #fff1f6;
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 700;
}

.tab {
  color: var(--muted);
}

.tab.active {
  color: var(--primary-dark);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature {
  background: rgba(255, 255, 255, 0.8);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(255, 123, 150, 0.12);
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.card-plain {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(255, 123, 150, 0.12);
  max-width: 360px;
}

.card-plain h2 {
  margin: 0 0 12px;
}

.card-plain p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.pill-muted {
  background: #fff0f5;
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  word-break: break-all;
}

.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .page {
    padding: 28px 6vw 24px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
