*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  background: #191724;
  color: #e0def4;
  min-height: 100vh;
  line-height: 1.6;
  scrollbar-width: thin;
  scrollbar-color: #eb6f92 transparent;
}

body::-webkit-scrollbar {
  width: 12px;
  height: 12px;
  background: transparent;
}
body::-webkit-scrollbar-track { background: transparent; }
body::-webkit-scrollbar-thumb {
  background: #eb6f92;
  border-radius: 12px;
}
body::-webkit-scrollbar-thumb:hover { background: #f08ca8; }
body::-webkit-scrollbar-corner { background: transparent; }

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bg::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(235,111,146,0.12) 0%, transparent 60%);
  top: -300px; right: -300px;
}
.bg::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(49,116,143,0.10) 0%, transparent 60%);
  bottom: -250px; left: -250px;
}

nav {
  position: relative;
  z-index: 10;
  backdrop-filter: blur(12px);
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #eb6f92 0%, #d4637e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(235,111,146,0.25);
}
.nav-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e0def4;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #908caa;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a.nav-link-secondary:hover { color: #eb6f92; }

.nav-link-btn {
  background: linear-gradient(135deg, #eb6f92 0%, #d4637e 100%);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  box-shadow: 0 4px 14px rgba(235, 111, 146, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(235, 111, 146, 0.4);
  color: #fff !important;
}

.hero {

  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px 64px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-icon {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, #eb6f92 0%, #d4637e 100%);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 12px 40px rgba(235,111,146,0.30);
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #e0def4;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero h1 span { color: #eb6f92; }
.hero p {
  font-size: 1.15rem;
  color: #908caa;
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #eb6f92 0%, #d4637e 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(235,111,146,0.30);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(235,111,146,0.40); }
.btn-secondary {
  background: #1f1d2e;
  color: #e0def4;
}
.btn-secondary:hover { background: rgba(224,222,244,0.12); }

.features {
  position: relative;
  z-index: 1;
  padding: 48px 24px 96px;
  max-width: 1100px;
  margin: 0 auto;
}
.features h2 {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: #e0def4;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #1f1d2e;
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(235, 111, 146, 0.3);
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}
.feature-icon.pink { background: linear-gradient(135deg, #eb6f92, #d4637e); }
.feature-icon.teal { background: linear-gradient(135deg, #31748f, #25667d); }
.feature-icon.gold { background: linear-gradient(135deg, #f6c177, #d9a856); }
.feature-icon.green { background: linear-gradient(135deg, #4caf50, #3d8b40); }
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #e0def4;
}
.feature-card p {
  font-size: 0.95rem;
  color: #908caa;
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid rgba(224,222,244,0.08);
  color: #6e6a86;
  font-size: 0.85rem;
}
footer .legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
footer a {
  color: #908caa;
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover { color: #eb6f92; }

@media (max-width: 640px) {
  .hero { padding: 48px 20px 36px; }
  .hero h1 { font-size: 2.15rem; }
  .hero p { font-size: 0.98rem; }
  nav { height: 60px; padding: 0 16px; justify-content: space-between; }
  .nav-logo-icon { width: 36px; height: 36px; font-size: 16px; border-radius: 10px; }
  .nav-brand-name { font-size: 1.15rem; }
  .nav-brand { gap: 10px; }
  .nav-links { gap: 10px; }
  .nav-link-secondary { display: none !important; }
  .nav-link-btn { padding: 7px 14px; font-size: 0.82rem !important; border-radius: 8px; }
  .features { padding-bottom: 64px; }
}

