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

body {
  font-family: 'Montserrat', sans-serif;
  background: #010101;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background glows */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .15;
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 {
  width: 500px; height: 500px;
  background: #abdb9f;
  top: -100px; left: -100px;
}
.bg-glow-2 {
  width: 400px; height: 400px;
  background: #E4A0CE;
  bottom: -50px; right: -50px;
}

/* Header */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(1,1,1,.7);
  border-bottom: 1px solid #1C1C1C;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #abdb9f;
  color: #030303;
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(171,219,159,.3);
}
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 16px; }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
}
.hero-content {
  text-align: center;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: #181818;
  border: 1px solid #282828;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #b8b8b8;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.accent { color: #abdb9f; }
.subtitle {
  font-size: 16px;
  color: #b8b8b8;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 300;
}

/* Features */
.features {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.features h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 48px;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #1C1C1C;
}
.feature-row:last-child {
  border-bottom: none;
}
.feature-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(171,219,159,.08);
  border-radius: 12px;
}
.feature-text h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 14px;
  color: #8f8f8f;
  line-height: 1.5;
}

/* CTA */
.cta {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.cta-content {
  text-align: center;
  background: linear-gradient(135deg, rgba(171,219,159,.08), rgba(228,160,206,.08));
  border: 1px solid #282828;
  border-radius: 24px;
  padding: 64px 32px;
}
.cta h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.cta p {
  color: #b8b8b8;
  margin-bottom: 32px;
  font-size: 15px;
}

/* Footer */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #1C1C1C;
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #8f8f8f;
}
.footer-inner a {
  color: #abdb9f;
  text-decoration: none;
}

@media (max-width: 600px) {
  .cta-content { padding: 40px 20px; }
}
