/* ─── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--darker);
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  gap: 48px;
}

.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,226,64,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,226,64,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, rgba(200,226,64,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 50% at 10% 80%, rgba(200,226,64,0.05) 0%, transparent 60%);
}

.hero-content {
  position: relative; z-index: 1;
  flex: 1; max-width: 620px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.hero-badge {
  background: var(--green);
  color: var(--dark);
  padding: 3px 10px; border-radius: 2px;
  font-size: 11px;
}

.hero-divider { opacity: 0.3; }

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8vw, 88px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title em {
  font-style: normal;
  color: var(--green);
  -webkit-text-stroke: 0;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative; z-index: 1;
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 280px; height: 340px;
}

.h-card {
  position: absolute;
  width: 240px;
  border-radius: 12px;
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 8px;
}

.h-card-back {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,226,64,0.2);
  top: 0; right: 0;
  transform: rotate(6deg);
}

.h-card-front {
  background: linear-gradient(135deg, #2d2d2d 0%, #1e1e1e 100%);
  border: 1px solid rgba(200,226,64,0.4);
  bottom: 0; left: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,226,64,0.1);
  overflow: hidden;
}

.h-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--green);
}

.h-card-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green);
  background: rgba(200,226,64,0.1);
  display: inline-block;
  padding: 4px 10px; border-radius: 2px;
  width: fit-content;
  margin-bottom: 4px;
}

.h-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 36px;
  color: var(--white);
  line-height: 1;
}

.h-card-desc {
  font-size: 13px; color: rgba(255,255,255,0.5);
}

.h-card-coverage {
  font-size: 12px; color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

.h-card-colors {
  display: flex; gap: 8px; margin-top: 12px;
}

.h-card-colors span {
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
  color: white;
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 5%;
  display: flex; align-items: center; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.scroll-line {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}

.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--green);
  animation: scrollMove 1.8s ease-in-out infinite;
}

@keyframes scrollMove {
  to { left: 100%; }
}

/* ─── STATS BAND ─────────────────────────────── */
.stats-band {
  background: var(--green);
  padding: 48px 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(42px, 5vw, 64px);
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(51,51,51,0.65);
  margin-top: 6px;
}

/* ─── WHY SECTION ───────────────────────────── */
.why-section {
  padding: 100px 5%;
  background: var(--white);
}

.why-inner { max-width: 1200px; margin: 0 auto; }

.why-header {
  margin-bottom: 64px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  padding: 36px 28px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  background: rgba(200,226,64,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.why-icon svg {
  width: 26px; height: 26px;
  stroke: var(--dark);
}

.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px; color: var(--grey-mid);
  line-height: 1.7;
}

/* ─── PRODUCT HIGHLIGHTS ────────────────────── */
.highlights-section {
  padding: 100px 5%;
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

.highlights-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,226,64,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.highlights-inner { max-width: 1200px; margin: 0 auto; }

.highlights-header { margin-bottom: 64px; }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.highlight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,226,64,0.3);
  transform: translateY(-4px);
}

.highlight-card-featured {
  background: rgba(200,226,64,0.06) !important;
  border-color: rgba(200,226,64,0.35) !important;
}

.featured-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--green);
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
}

.highlight-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.highlight-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.65; margin-bottom: 16px;
}

.highlight-spec {
  font-size: 12px; color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px; margin-bottom: 16px;
}

.highlight-spec span { color: var(--green); font-weight: 600; margin-right: 6px; }

.highlight-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: var(--transition);
}

.highlight-link:hover { letter-spacing: 2px; }

.highlights-cta { text-align: center; }

/* ─── CTA SECTION ────────────────────────────── */
.cta-section {
  padding: 80px 5%;
  background: var(--green);
}

.cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}

.cta-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 16px; color: rgba(51,51,51,0.65);
}

.cta-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-section .btn-primary {
  background: var(--dark);
  color: var(--white);
}

.cta-section .btn-primary:hover {
  background: #222;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.cta-section .btn-outline {
  border-color: rgba(51,51,51,0.4);
  color: var(--dark);
}

.cta-section .btn-outline:hover {
  border-color: var(--dark);
  color: var(--dark);
}

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 100px 5% 60px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .hero-scroll-hint { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}