/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: radial-gradient(circle at top left, #ffe4ef 0, #fff7fb 35%, #fdf2f8 70%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.9rem;
}

/* Header & nav */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #0f172a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: #64748b;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(244, 114, 182, 0.08);
  color: #be185d;
}

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: #ffffff;
  color: #db2777 !important;
  border: 1px solid rgba(244, 114, 182, 0.6);
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: none;
}

.nav-cta span.icon {
  font-size: 1.05rem;
}

.nav-cta:hover {
  background: #fdf2f8;
  border-color: #f472b6;
  color: #be185d !important;
}

/* Hero section */
.hero {
  padding: 4rem 0 3.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(244, 114, 182, 0.08);
  color: #be185d;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f472b6;
  box-shadow: 0 0 0 6px rgba(244, 114, 182, 0.28);
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin-bottom: 0.7rem;
}

.hero-gradient {
  background: linear-gradient(120deg, #db2777, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.98rem;
  color: #64748b;
  max-width: 34rem;
  margin-bottom: 1.3rem;
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.5rem;
  margin-bottom: 1.6rem;
  font-size: 0.88rem;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #475569;
}

.hero-list .check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(244, 114, 182, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #be185d;
  font-size: 0.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.08s ease;
}

.btn-primary {
  background: linear-gradient(120deg, #ec4899, #f97316);
  color: #fff7fb;
  box-shadow: 0 20px 35px rgba(190, 24, 93, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(190, 24, 93, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(244, 114, 182, 0.45);
  color: #be185d;
}

.btn-secondary:hover {
  background: white;
  border-color: #f472b6;
}

.btn span.icon {
  font-size: 1.05rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.7rem;
  font-size: 0.8rem;
  color: #64748b;
}

.meta-item strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  padding: 1.4rem 1.3rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 45px rgba(190, 24, 93, 0.12);
  border: 1px solid rgba(244, 114, 182, 0.4);
  overflow: hidden;
}

.hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(252, 231, 243, 0.85);
  color: #be185d;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.hero-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.hero-card-sub {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.9rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pill {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.6);
  font-size: 0.78rem;
  color: #b91c1c;
  background: rgba(255, 241, 242, 0.96);
}

.hero-highlight {
  position: absolute;
  inset: auto -2rem -2.5rem;
  height: 140px;
  background: radial-gradient(circle at top, rgba(244, 114, 182, 0.2), transparent 60%);
  opacity: 0.9;
}

.hero-floating {
  position: absolute;
  inset: auto 0 auto auto;
  transform: translateY(60%);
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-floating-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.38);
}

/* Sections */
main {
  flex: 1;
}

.section {
  padding: 2.9rem 0 2.7rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.section-title {
  font-size: 1.4rem;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  max-width: 26rem;
}

.tagline {
  font-size: 0.8rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.1rem;
  padding: 1.3rem 1.3rem 1.4rem;
  border: 1px solid rgba(248, 113, 113, 0.25);
  box-shadow: 0 16px 34px rgba(244, 114, 182, 0.18);
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a1a1aa;
  margin-bottom: 0.4rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.card-body {
  font-size: 0.9rem;
  color: #64748b;
}

.card-meta {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: #4b5563;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.55);
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  color: #9f1239;
  background: rgba(255, 241, 242, 0.96);
}

.section-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
}

.steps {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: flex-start;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(45, 212, 191, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f766e;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.step-text {
  font-size: 0.9rem;
  color: #6b7280;
}

.note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.8rem;
}

.quotes {
  display: grid;
  gap: 0.8rem;
}

.quote {
  font-size: 0.9rem;
  color: #4b5563;
  border-left: 3px solid rgba(148, 163, 184, 0.7);
  padding-left: 0.7rem;
}

.quote span {
  display: block;
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.2rem;
}

.store-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.4rem 1.4rem 1.3rem;
  border-radius: 1.15rem;
  border: 1px dashed rgba(244, 114, 182, 0.5);
  background: linear-gradient(120deg, rgba(255, 241, 242, 0.98), rgba(252, 231, 243, 0.97));
}

.store-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #db2777;
  margin-bottom: 0.2rem;
}

.store-text {
  font-size: 0.9rem;
  color: #475569;
}

.store-meta {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.4rem;
}

/* Privacy page */
.policy-wrapper {
  padding: 2.5rem 0 2.8rem;
}

.policy-header {
  max-width: 48rem;
  margin-bottom: 1.8rem;
}

.policy-title {
  font-size: 1.6rem;
  color: #0f172a;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.policy-intro {
  font-size: 0.9rem;
  color: #64748b;
}

.policy-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  padding: 1.6rem 1.5rem 1.7rem;
}

.policy-section {
  margin-bottom: 1.1rem;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.policy-section p,
.policy-section li {
  font-size: 0.9rem;
  color: #4b5563;
}

.policy-section ul {
  padding-left: 1.1rem;
  margin-top: 0.2rem;
}

.policy-section li + li {
  margin-top: 0.2rem;
}

.policy-muted {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.7rem;
}

/* Footer */
footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1rem 0 1.2rem;
  background: rgba(248, 250, 252, 0.96);
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
}

.footer-links a {
  color: #4b5563;
}

.footer-links a:hover {
  color: #0f766e;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    max-width: 360px;
    margin: 0 auto;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid-2,
  .store-panel {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding: 2.1rem 0 2rem;
  }

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

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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


