* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --hlh-green: #00ff88;
  --hlh-green-dark: #00cc66;
  --hlh-green-darker: #009944;
  --hlh-purple: #a855f7;
  --hlh-gold: #FFD700;
  --hlh-bg: #0a0a0a;
  --hlh-surface: #111111;
  --hlh-surface2: #1a1a1a;
  --hlh-border: rgba(255,255,255,0.06);
  --hlh-text: #e0e0e0;
  --hlh-text-muted: #999;
}
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--hlh-bg);
  color: var(--hlh-text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--hlh-green); text-decoration: none; transition: color 0.3s; }
a:hover { color: #88ffcc; }
img { max-width: 100%; height: auto; }

@keyframes hlhBlob {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-50px) scale(1.1); }
  66%     { transform: translate(-30px,30px) scale(0.9); }
}
@keyframes hlhFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}
@keyframes hlhFadeUp {
  from { opacity:0; transform: translateY(32px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes hlhGrad {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
@keyframes hlhShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes hlhSmokeRise {
  0%   { transform: translateY(0) scale(1); opacity: 0.06; }
  50%  { opacity: 0.12; }
  100% { transform: translateY(-120vh) scale(2.5); opacity: 0; }
}
@keyframes hlhGlow {
  0%,100% { box-shadow: 0 0 20px rgba(0,255,136,0.3), 0 0 60px rgba(0,255,136,0.08); }
  50%     { box-shadow: 0 0 40px rgba(0,255,136,0.5), 0 0 100px rgba(0,255,136,0.15); }
}
@keyframes hlhNeonPulse {
  0%,100% { text-shadow: 0 0 10px rgba(0,255,136,0.4), 0 0 40px rgba(0,255,136,0.1); }
  50%     { text-shadow: 0 0 20px rgba(0,255,136,0.6), 0 0 60px rgba(0,255,136,0.2); }
}
@keyframes hlhLeafDrift {
  0%   { transform: translateY(-10vh) translateX(0) rotate(0deg) scale(0.7); opacity: 0; }
  8%   { opacity: 0.35; }
  50%  { transform: translateY(50vh) translateX(60px) rotate(180deg) scale(1); }
  90%  { opacity: 0.2; }
  100% { transform: translateY(110vh) translateX(-20px) rotate(400deg) scale(0.5); opacity: 0; }
}

.hlh-blob { animation: hlhBlob 10s infinite ease-in-out; }
.hlh-float { animation: hlhFloat 5s infinite ease-in-out; }
.hlh-fadeUp { animation: hlhFadeUp .8s ease both; }
.hlh-glow { animation: hlhGlow 3s ease-in-out infinite; }
.hlh-neon { animation: hlhNeonPulse 3s ease-in-out infinite; }

.hlh-shimmer {
  background: linear-gradient(90deg, #00ff88 0%, #88ffcc 30%, #00ff88 50%, #00cc66 70%, #00ff88 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hlhShimmer 3s linear infinite;
}
.hlh-shimmer-gold {
  background: linear-gradient(90deg, #FFD700 0%, #FFF1A8 35%, #FFD700 50%, #FFA500 70%, #FFD700 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hlhShimmer 4s linear infinite;
}
.hlh-grad-btn {
  background: linear-gradient(135deg, #00ff88, #00cc66, #009944);
  background-size: 200% 200%;
  animation: hlhGrad 5s ease infinite;
  color: #000; font-weight: 700; border: none; border-radius: 12px;
  padding: 14px 32px; cursor: pointer; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hlh-grad-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,255,136,0.3);
}
.hlh-gold-btn {
  background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 200%;
  animation: hlhGrad 5s ease infinite;
  color: #000; font-weight: 700; border: none; border-radius: 12px;
  padding: 14px 32px; cursor: pointer; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hlh-gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.3);
}
.hlh-smoke {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(0,255,136,0.08), transparent 70%);
  animation: hlhSmokeRise 18s linear infinite;
}

/* NAV */
.hlh-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hlh-border);
  padding: 0 2rem; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.hlh-nav-logo { display: flex; align-items: center; gap: 12px; }
.hlh-nav-logo img { width: 40px; height: 40px; border-radius: 50%; }
.hlh-nav-logo span { font-weight: 800; font-size: 1.1rem; color: #fff; }
.hlh-nav-links { display: flex; gap: 1.5rem; align-items: center; }
.hlh-nav-links a { color: #ccc; font-size: 0.9rem; font-weight: 500; }
.hlh-nav-links a:hover { color: var(--hlh-green); }
.hlh-nav-links a.active { color: var(--hlh-green); }
.hlh-nav-cta {
  background: var(--hlh-green); color: #000; font-weight: 700;
  padding: 8px 20px; border-radius: 8px; font-size: 0.85rem;
  border: none; cursor: pointer;
}
.hlh-mobile-menu { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* AGE GATE */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
}
.age-gate-inner {
  text-align: center; padding: 3rem;
  background: var(--hlh-surface); border-radius: 24px;
  border: 1px solid rgba(0,255,136,0.2); max-width: 420px;
}
.age-gate-inner img { width: 100px; margin-bottom: 1.5rem; border-radius: 50%; }
.age-gate-inner h2 { font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.age-gate-inner p { color: var(--hlh-text-muted); margin-bottom: 2rem; font-size: 0.9rem; }
.age-gate-buttons { display: flex; gap: 1rem; justify-content: center; }
.age-gate-yes {
  padding: 12px 32px; border-radius: 12px; font-weight: 700;
  background: var(--hlh-green); color: #000; border: none; cursor: pointer; font-size: 1rem;
}
.age-gate-no {
  padding: 12px 32px; border-radius: 12px; font-weight: 700;
  background: transparent; color: #999; border: 1px solid #333; cursor: pointer; font-size: 1rem;
}

/* HERO */
.hlh-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 120px 2rem 80px;
  overflow: hidden;
}
.hlh-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(0,255,136,0.08), transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(168,85,247,0.06), transparent 50%);
}
.hlh-hero-content { position: relative; z-index: 2; max-width: 800px; }
.hlh-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.3);
  border-radius: 50px; padding: 8px 20px; font-size: 0.85rem;
  color: var(--hlh-green); font-weight: 600; margin-bottom: 2rem;
}
.hlh-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.hlh-hero p { font-size: 1.2rem; color: var(--hlh-text-muted); max-width: 600px; margin: 0 auto 2.5rem; }
.hlh-hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* SECTIONS */
.hlh-section {
  padding: 100px 2rem; position: relative;
}
.hlh-section-inner {
  max-width: 1200px; margin: 0 auto;
}
.hlh-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 1rem;
}
.hlh-section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff;
  margin-bottom: 1rem; line-height: 1.2;
}
.hlh-section-subtitle {
  font-size: 1.1rem; color: var(--hlh-text-muted); max-width: 600px; margin-bottom: 3rem;
}

/* CARDS */
.hlh-card {
  background: var(--hlh-surface); border: 1px solid var(--hlh-border);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.hlh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(0,255,136,0.3);
}
.hlh-card-image {
  width: 100%; height: 200px; object-fit: cover;
}
.hlh-card-body { padding: 1.5rem; }
.hlh-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.hlh-card h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.hlh-card p { color: var(--hlh-text-muted); font-size: 0.95rem; }

/* GRID */
.hlh-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.hlh-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.hlh-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* FAQ */
.hlh-faq-item {
  background: var(--hlh-surface); border: 1px solid var(--hlh-border);
  border-radius: 16px; margin-bottom: 1rem; overflow: hidden;
  transition: border-color 0.3s;
}
.hlh-faq-item.active { border-color: rgba(0,255,136,0.3); }
.hlh-faq-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
  color: #fff; font-size: 1rem; font-weight: 600; text-align: left;
}
.hlh-faq-toggle svg { transition: transform 0.3s; flex-shrink: 0; color: var(--hlh-green); }
.hlh-faq-item.active .hlh-faq-toggle svg { transform: rotate(180deg); }
.hlh-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem; color: var(--hlh-text-muted); font-size: 0.95rem; line-height: 1.7;
}
.hlh-faq-item.active .hlh-faq-answer {
  max-height: 500px; padding: 0 1.5rem 1.25rem;
}

/* TRUST BAR */
.hlh-trust-bar {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
  padding: 2rem 0;
}
.hlh-trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--hlh-text-muted); font-size: 0.9rem; font-weight: 500;
}
.hlh-trust-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

/* CTA */
.hlh-cta {
  text-align: center; padding: 80px 2rem;
  background: linear-gradient(135deg, rgba(0,255,136,0.04), rgba(168,85,247,0.04));
  border-top: 1px solid var(--hlh-border);
  border-bottom: 1px solid var(--hlh-border);
}
.hlh-cta h2 { font-size: 2.5rem; font-weight: 900; color: #fff; margin-bottom: 1rem; }
.hlh-cta p { color: var(--hlh-text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto 2rem; }

/* FOOTER */
.hlh-footer {
  padding: 60px 2rem 30px; border-top: 1px solid var(--hlh-border);
  background: var(--hlh-surface);
}
.hlh-footer-inner { max-width: 1200px; margin: 0 auto; }
.hlh-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.hlh-footer h4 { color: #fff; font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hlh-footer a { display: block; color: var(--hlh-text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.hlh-footer a:hover { color: var(--hlh-green); }
.hlh-footer-brand p { color: var(--hlh-text-muted); font-size: 0.85rem; line-height: 1.7; }
.hlh-footer-bottom {
  border-top: 1px solid var(--hlh-border); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.hlh-footer-bottom p { color: #555; font-size: 0.8rem; }
.hlh-footer-disclaimer {
  margin-top: 2rem; padding: 1.5rem; border-radius: 12px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04);
}
.hlh-footer-disclaimer p { color: #555; font-size: 0.75rem; line-height: 1.8; }

/* ABOUT PAGE */
.hlh-about-hero { text-align: center; padding: 140px 2rem 80px; position: relative; }
.hlh-about-content { max-width: 800px; margin: 0 auto; }
.hlh-about-text { font-size: 1.1rem; line-height: 1.9; color: var(--hlh-text); margin-bottom: 1.5rem; }
.hlh-about-image-wrap {
  border-radius: 24px; overflow: hidden; margin: 3rem 0;
  border: 1px solid var(--hlh-border); position: relative;
}
.hlh-about-image-wrap img { width: 100%; height: 400px; object-fit: cover; }
.hlh-about-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex; align-items: flex-end; justify-content: center; padding: 2rem;
}
.hlh-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 3rem 0; }
.hlh-stat { text-align: center; padding: 2rem; background: var(--hlh-surface); border-radius: 16px; border: 1px solid var(--hlh-border); }
.hlh-stat-number { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.25rem; }
.hlh-stat-label { color: var(--hlh-text-muted); font-size: 0.9rem; }

/* CONTACT */
.hlh-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.hlh-form-group { margin-bottom: 1.5rem; }
.hlh-form-group label { display: block; color: #ccc; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; }
.hlh-form-group input, .hlh-form-group textarea, .hlh-form-group select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: var(--hlh-surface2); border: 1px solid var(--hlh-border);
  color: #fff; font-size: 1rem; font-family: inherit;
  transition: border-color 0.3s;
}
.hlh-form-group input:focus, .hlh-form-group textarea:focus {
  outline: none; border-color: var(--hlh-green);
}
.hlh-form-group textarea { min-height: 150px; resize: vertical; }
.hlh-contact-info-card {
  background: var(--hlh-surface); border: 1px solid var(--hlh-border);
  border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hlh-contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  flex-shrink: 0;
}

/* LEARN PAGE */
.hlh-learn-content { max-width: 800px; margin: 0 auto; }
.hlh-learn-block {
  background: var(--hlh-surface); border: 1px solid var(--hlh-border);
  border-radius: 20px; padding: 2.5rem; margin-bottom: 2rem;
}
.hlh-learn-block h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.hlh-learn-block h3 { font-size: 1.3rem; font-weight: 700; color: var(--hlh-green); margin: 1.5rem 0 0.75rem; }
.hlh-learn-block p { color: var(--hlh-text); line-height: 1.8; margin-bottom: 1rem; }
.hlh-learn-block ul { list-style: none; padding: 0; }
.hlh-learn-block li {
  padding: 0.75rem 0 0.75rem 1.5rem; position: relative;
  color: var(--hlh-text); line-height: 1.7;
}
.hlh-learn-block li::before {
  content: '🌿'; position: absolute; left: 0;
}

/* SHOP */
.hlh-product-card {
  background: var(--hlh-surface); border: 1px solid var(--hlh-border);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hlh-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hlh-product-image {
  width: 100%; height: 280px; object-fit: cover;
  background: var(--hlh-surface2);
}
.hlh-product-body { padding: 1.5rem; }
.hlh-product-body h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.hlh-product-body p { color: var(--hlh-text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.hlh-product-price { font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }
.hlh-product-btn {
  width: 100%; padding: 12px; border-radius: 10px;
  background: var(--hlh-green); color: #000; font-weight: 700;
  border: none; cursor: pointer; font-size: 0.95rem;
  transition: background 0.3s;
}
.hlh-product-btn:hover { background: #88ffcc; }
.hlh-badge {
  display: inline-block; padding: 4px 12px; border-radius: 8px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hlh-nav-links { display: none; }
  .hlh-mobile-menu { display: block; }
  .hlh-grid-2, .hlh-grid-3, .hlh-grid-4 { grid-template-columns: 1fr; }
  .hlh-footer-grid { grid-template-columns: 1fr; }
  .hlh-contact-grid { grid-template-columns: 1fr; }
  .hlh-stat-grid { grid-template-columns: 1fr; }
  .hlh-hero h1 { font-size: 2.2rem; }
  .hlh-section { padding: 60px 1.5rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hlh-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hlh-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
