#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 28px 64px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(99,207,73,.07) 0%, transparent 65%);
  position: relative;
  overflow: hidden;
}

/* ── Hero Animated Background ── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Drifting grid */
.hero-bg-grid {
  position: absolute;
  inset: -60px;
  background-image:
    linear-gradient(rgba(99,207,73,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,207,73,.045) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: heroBgGrid 28s linear infinite;
}
@keyframes heroBgGrid {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

/* Floating glow orbs */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.hero-bg-orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99,207,73,.18) 0%, transparent 68%);
  top: -180px;
  left: -120px;
  animation: heroOrb1 22s ease-in-out infinite;
}
.hero-bg-orb--2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(124,255,53,.12) 0%, transparent 68%);
  bottom: -80px;
  right: 5%;
  animation: heroOrb2 28s ease-in-out infinite;
}
.hero-bg-orb--3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(67,214,26,.1) 0%, transparent 68%);
  top: 35%;
  left: 55%;
  animation: heroOrb3 18s ease-in-out infinite;
}
@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0)      scale(1);    }
  33%       { transform: translate(60px, -50px) scale(1.08); }
  66%       { transform: translate(-30px, 40px) scale(0.94); }
}
@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0)        scale(1);    }
  40%       { transform: translate(-70px, -40px) scale(1.06); }
  70%       { transform: translate(40px, 30px)   scale(0.96); }
}
@keyframes heroOrb3 {
  0%, 100% { transform: translate(0, 0)      scale(1);    }
  50%       { transform: translate(-50px, -60px) scale(1.1); }
}

/* Self-hosted background video */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;   /* 16:9 — fills width-first */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 — fills height-first */
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.08;
  pointer-events: none;
  z-index: 2;
}

/* Dark gradient overlay on top of video */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg,
      rgba(6,13,6,.55) 0%,
      rgba(6,13,6,.3)  45%,
      rgba(6,13,6,.72) 100%);
}

/* Subtle diagonal scan lines */
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 3px,
    rgba(99,207,73,.012) 3px,
    rgba(99,207,73,.012) 4px
  );
  animation: heroLinesDrift 60s linear infinite;
}
@keyframes heroLinesDrift {
  from { background-position: 0 0; }
  to   { background-position: 200px 200px; }
}

/* lift all hero content above the background + overlay layers */
#home > *:not(.hero-video-bg) {
  position: relative;
  z-index: 4;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,207,73,.1);
  border: 1px solid rgba(99,207,73,.2);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  animation: fadeUp .6s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.hero-h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  max-width: 900px;
  margin-bottom: 24px;
  animation: fadeUp .7s .1s ease both;
}

.hero-h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--text-sec);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeUp .7s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .7s .3s ease both;
  margin-bottom: 56px;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--grad);
  color: #0a1f0a;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  text-decoration: none;
  box-shadow: var(--shadow-btn);
  transition: opacity .2s, transform .2s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: var(--r-sm);
  text-decoration: none;
  border: 1px solid var(--border-str);
  transition: border-color .2s, background .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(99,207,73,.05);
}

.btn--block {
  display: block;
  text-align: center;
  justify-content: center;
}

/* ── Trust Strip ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border-sub);
  border-bottom: 1px solid var(--border-sub);
  animation: fadeIn 1s .5s ease both;
  max-width: 800px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-sec);
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Gallery Strip ── */
.gallery-strip {
  width: 100%;
  overflow: hidden;
  margin-top: 56px;
  animation: fadeIn 1s .6s ease both;
}

.gallery-track {
  display: flex;
  gap: 12px;
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

.gallery-track:hover { animation-play-state: paused; }

.gallery-img {
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--border-sub);
  flex-shrink: 0;
}

/* ── Benefit Cards ── */
.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 56px auto 0;
  padding: 0 28px;
}

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
  padding: 24px;
}

.benefit-card:hover {
  border-color: var(--accent-hover);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(99,207,73,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.benefit-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.benefit-card p { font-size: .82rem; color: var(--text-sec); }
