:root {
  --bg: #0b1a0f;
  --panel: rgba(13, 32, 18, 0.82);
  --leaf: #1fa34a;
  --leaf-dark: #0f5d2a;
  --corn: #f4d34f;
  --corn-dark: #c18a00;
  --text: #e8f5e1;
  --muted: #b9cbb4;
  --accent: #9ef01a;
  --hero-image: url("../images/a3.png");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 30% 20%, rgba(158, 240, 26, 0.08), transparent 25%),
    radial-gradient(circle at 78% 12%, rgba(244, 211, 79, 0.12), transparent 22%),
    linear-gradient(160deg, #06130b 0%, #0c2113 50%, #0a1d12 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    145deg,
    rgba(22, 101, 52, 0.22),
    rgba(22, 101, 52, 0.22) 8px,
    rgba(12, 24, 15, 0.38) 8px,
    rgba(12, 24, 15, 0.38) 18px
  );
  opacity: 0.3;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(10px);
  background: rgba(8, 20, 12, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff7cc, var(--corn));
  box-shadow: 0 0 18px rgba(244, 211, 79, 0.4);
}

.menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu a {
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu a:hover {
  background: rgba(31, 163, 74, 0.14);
  color: #d9f99d;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--corn), #f6c32f);
  color: #4c3700;
  box-shadow: 0 12px 32px rgba(244, 211, 79, 0.35);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn:active {
  transform: translateY(1px);
}

main {
  padding: 32px 0 72px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31, 163, 74, 0.16);
  border: 1px solid rgba(31, 163, 74, 0.4);
  color: #c9f7d5;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.4px;
}

.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 18px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat {
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 700;
}

.stat strong {
  display: block;
  color: #e2f8c9;
  font-size: 1.05rem;
}

.panel {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.panel::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 240, 26, 0.16), transparent 60%);
  bottom: -50px;
  right: -20px;
  filter: blur(2px);
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 12px;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.05)), var(--hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 20px 30px rgba(0, 0, 0, 0.35);
  animation: float 8s ease-in-out infinite alternate;
}

.image-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.dew {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 35% 35%, #fff, #9ef01a);
  border-radius: 50%;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite alternate;
}

.dew.d1 {
  top: 60px;
  right: 16px;
  animation-delay: 0.4s;
}

.dew.d2 {
  bottom: 120px;
  left: 18px;
  animation-delay: 0.8s;
}

.dew.d3 {
  bottom: 40px;
  right: 40px;
}


.features {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(158, 240, 26, 0.14), transparent 60%);
  bottom: -40px;
  right: -20px;
}

.card h3 {
  margin: 8px 0 6px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-weight: 700;
}

.steps {
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(158, 240, 26, 0.06), transparent 60%);
  pointer-events: none;
}

.steps h2 {
  margin: 0 0 10px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  position: relative;
  padding-top: 8px;
}

.step-list::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(158, 240, 26, 0.15), rgba(244, 211, 79, 0.6), rgba(158, 240, 26, 0.15));
  background-size: 180% 4px;
  animation: lineFlow 2.8s ease-in-out infinite;
}

.step {
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 12px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.94);
  animation: popStep 0.78s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

.step::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(158, 240, 26, 0.6), rgba(244, 211, 79, 0.5), rgba(158, 240, 26, 0.6));
  animation: flowLine 1.6s ease-in-out infinite;
}

.step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(244, 211, 79, 0.2);
  margin-bottom: 8px;
}

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

.step-list .step:nth-child(1) { animation-delay: 0s; }
.step-list .step:nth-child(2) { animation-delay: 0.3s; }
.step-list .step:nth-child(3) { animation-delay: 0.6s; }

@media (max-width: 700px) {
  .step-list::before {
    display: none;
  }
}

.footer {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

@keyframes sway {
  0% {
    --ty: 0px;
    --twist: 3deg;
  }
  100% {
    --ty: -6px;
    --twist: -6deg;
  }
}

@keyframes lineFlow {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 180% 0;
  }
}

@keyframes flowLine {
  0% {
    transform: translateX(-8px);
    opacity: 0.4;
  }
  50% {
    transform: translateX(4px);
    opacity: 1;
  }
  100% {
    transform: translateX(10px);
    opacity: 0.6;
  }
}

@keyframes popStep {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .menu {
    width: 100%;
    justify-content: space-between;
  }
}
