@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --bg-color: #fdfbff;
  --surface-color: #f5f3ff;
  --primary-text-color: #2c2a3e;
  --secondary-text-color: #7a798c;
  --accent-gradient: linear-gradient(135deg, #a78bfa, #c4b5fd);
  --accent-color-primary: #8b5cf6;
  --border-color: #e0ddee;
  --shadow-color: rgba(139, 92, 246, 0.05);
  --shadow-color-hover: rgba(139, 92, 246, 0.12);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-md: 10px;
  --radius-lg: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--primary-text-color);
  line-height: 1.6;
}

.body-no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  width: 100%;
  padding: 1rem 0;
  background: rgba(253, 251, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  text-decoration: none;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-text-color);
}

.logo-subtitle {
  margin-top: -4px;
  font-size: 0.8rem;
  color: var(--secondary-text-color);
}

.nav {
  display: none;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--secondary-text-color);
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--primary-text-color);
}

.hamburger-menu {
  display: block;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
}

.hamburger-menu span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px 0;
  background-color: var(--primary-text-color);
  transition: var(--transition-smooth);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1100;
}

.mobile-nav-overlay.active {
  transform: translateY(0);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 20px;
  font-size: 3rem;
  background: none;
  border: none;
  color: var(--primary-text-color);
  cursor: pointer;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-nav-menu a {
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary-text-color);
  transition: color 0.3s ease;
}

.mobile-nav-menu a:hover {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

main {
  padding-top: 65px;
}

section {
  padding: 60px 0;
}

.hero {
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center;
}

.hero-title {
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  font-size: 1.2rem;
  color: var(--secondary-text-color);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
  color: white;
  background: var(--accent-gradient);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.25);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(139, 92, 246, 0.3);
}

.stats-section {
  padding-top: 0;
  margin-bottom: -75px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-text-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-text-color);
}

.section-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  text-align: center;
}

.section-subtitle {
  margin-bottom: 3rem;
  text-align: center;
  color: var(--secondary-text-color);
}

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

.feature-card {
  padding: 2rem;
  text-align: center;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow-color-hover);
}

.feature-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  color: white;
  background: var(--accent-gradient);
  border-radius: 50%;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.getting-started {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.step-card {
  flex-basis: 30%;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background: var(--accent-gradient);
  border-radius: 50%;
}

.step-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--secondary-text-color);
}

.step-line {
  flex-grow: 1;
  height: 2px;
  margin-top: 20px;
  background-color: var(--border-color);
}

.faq-container {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: -50px;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.faq-arrow {
  margin-left: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-out;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--secondary-text-color);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.creator-card {
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.creator-avatar {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.creator-name {
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.creator-handle {
  margin-bottom: 1rem;
  color: var(--secondary-text-color);
}

.footer {
  padding: 2.5rem 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--secondary-text-color);
  border-top: 1px solid var(--border-color);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) {
  .nav {
    display: block;
  }
  .hamburger-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .step-line {
    display: none;
  }
  .step-card {
    max-width: 350px;
  }
}
