:root {
  --primary: #2C5F2D;
  --primary-light: #97BC62;
  --accent: #E85D75;
  --bg: #FDFBF7;
  --card-bg: rgba(255, 255, 255, 0.7);
  --text: #1A1A1A;
  --muted: #5C6B5D;
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 60px -10px rgba(0, 0, 0, 0.15);
  --gradient-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  background-image:
    radial-gradient(at 10% 20%, rgba(151, 188, 98, 0.15) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(232, 93, 117, 0.1) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(255, 255, 255, 0.8) 0px, transparent 50%);
  background-attachment: fixed;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 24px;
}

.center {
  text-align: center;
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  pointer-events: none;
  z-index: 0;
}

.glass-panel>* {
  position: relative;
  /* Ensure content is above the overlay */
  z-index: 1;
}

.badge {
  background: rgba(151, 188, 98, 0.25);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(151, 188, 98, 0.1);
}

.hero {
  padding: 100px 20px 140px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.65, 0.3, 0.9) forwards;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.subtitle {
  color: var(--muted);
  max-width: 600px;
  margin: auto;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.65, 0.3, 0.9) 0.2s forwards;
}

.hero-img-container {
  margin-top: 80px;
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.65, 0.3, 0.9) 0.4s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card img {
  width: 100%;
  max-width: 700px;
  border-radius: 40px;
  box-shadow: 0 40px 80px -20px rgba(44, 95, 45, 0.3);
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.65, 0.3, 0.9);
}

.hero-card img:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.02);
  box-shadow: 0 50px 90px -20px rgba(44, 95, 45, 0.4);
}

.section {
  padding: 120px 0;
}

.section h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-desc {
  max-width: 600px;
  color: var(--muted);
  font-size: 1.2rem;
  margin-bottom: 70px;
  line-height: 1.7;
}

/* Grid & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.5);
  padding: 40px 30px;
  border-radius: 28px;
  text-align: center;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.2, 0.65, 0.3, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 0.8);
}

.card.active {
  border: 2px solid var(--primary-light);
  background: white;
  color: var(--primary);
  box-shadow: 0 20px 40px rgba(151, 188, 98, 0.25);
}

.card.locked {
  color: #aaa;
  background: rgba(230, 230, 230, 0.3);
  cursor: default;
}

.card.locked:hover {
  transform: none;
  box-shadow: none;
}

/* Steps Section */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.step {
  background: white;
  padding: 40px;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step span {
  font-size: 3.5rem;
  margin-bottom: 0;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 700;
}

.step p {
  color: var(--muted);
}

/* Quote Box */
.quote-box {
  background: var(--primary);
  color: white;
  padding: 80px 40px;
  border-radius: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(44, 95, 45, 0.3);
}

.quote-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.quote-box h2 {
  color: white;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  padding: 5px 10px;
  border-radius: 8px;
}

.footer a:hover {
  color: var(--primary-light);
  background: rgba(151, 188, 98, 0.1);
}

/* Coming Soon & Store Buttons */
.coming-soon-container {
  margin-top: 80px;
  opacity: 0;
  animation: fadeUp 1s cubic-bezier(0.2, 0.65, 0.3, 0.9) 0.6s forwards;
}

.coming-soon-text {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.store-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #111;
  color: white;
  padding: 16px 32px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 220px;
  box-shadow:
    0 20px 40px -10px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

/* Shine effect on hover */
.store-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-20deg) translateX(-150%);
  transition: transform 0.6s;
}

.store-btn:hover::after {
  transform: skewX(-20deg) translateX(150%);
}

.store-btn:hover {
  background: #000;
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 30px 60px -12px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.store-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.store-btn:first-child svg {
  fill: #fff;
}

.store-btn .btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.store-btn .btn-label {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 4px;
}

.store-btn .btn-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding-top: 60px;
  }

  .hero-card img {
    border-radius: 24px;
    transform: none;
    /* Simplify on mobile */
  }

  .hero-card img:hover {
    transform: none;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 320px;
  }
}