/* ═══════════════════════════════════════════════════════════
   HOLIPLANTS™ — Premium Showcase Website
   Style: Light Botanical / Organic / Nature Premium
   ═══════════════════════════════════════════════════════════ */

/* ── Lenis Smooth Scroll ── */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

/* ── CSS Variables ── */
:root {
  /* Colors — Light Botanical */
  --c-bg-deep: #fafaf8;
  --c-bg-abyss: #f5f5f0;
  --c-blue-deep: #0a3d62;
  --c-blue: #1289A7;
  --c-blue-light: #38ada9;
  --c-green-deep: #1a3a2a;
  --c-green: #2d5a3f;
  --c-green-light: #3d7a55;
  --c-green-neon: #1a3a2a;
  --c-accent: #2d5a3f;
  --c-white: #111111;
  --c-white-soft: rgba(0, 0, 0, 0.85);
  --c-text: #1a1a1a;
  --c-text-muted: #555555;
  --c-glass-border: rgba(0, 0, 0, 0.06);
  --c-glass-bg: rgba(255, 255, 255, 0.6);
  --c-glass-bg-hover: rgba(255, 255, 255, 0.8);

  /* Spacing */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 2rem;
  --s-lg: 4rem;
  --s-xl: 6rem;
  --s-section: 8rem;

  /* Typography */
  --f-heading: 'Syne', 'Helvetica Neue', sans-serif;
  --f-body: 'Syne', 'Helvetica Neue', sans-serif;
  --f-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Glass */
  --glass-blur: 20px;
  --glass-border-radius: 16px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--f-body);
  background: var(--c-bg-deep);
  color: var(--c-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover {
  color: var(--c-green-neon);
}

img {
  max-width: 100%;
  display: block;
}

/* ── Scrollbar ── */
::selection { background: #e8f0ec; color: var(--c-green-deep); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg-deep); }
::-webkit-scrollbar-thumb { background: var(--c-green); border-radius: 3px; }

/* ── Ocean Waves Background ── */
.ocean-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wave {
  position: absolute;
  border-radius: 45%;
  opacity: 0;
  filter: blur(50px);
  animation: waveFadeIn 2.5s 1.5s ease forwards;
}

/* Large blob bottom-left — teal */
.wave--1 {
  width: 120vw;
  height: 120vw;
  bottom: -60vw;
  left: -20vw;
  background: radial-gradient(circle, rgba(18, 137, 167, 0.35) 0%, rgba(56, 173, 169, 0.14) 50%, transparent 70%);
  animation: waveDrift1 20s ease-in-out infinite, waveFadeIn 2.5s 1.5s ease forwards;
}

/* Medium blob top-right — cyan */
.wave--2 {
  width: 90vw;
  height: 90vw;
  top: -35vw;
  right: -25vw;
  background: radial-gradient(circle, rgba(56, 173, 169, 0.30) 0%, rgba(18, 137, 167, 0.12) 50%, transparent 70%);
  animation: waveDrift2 25s ease-in-out infinite, waveFadeIn 2.5s 2s ease forwards;
}

/* Small blob center — deep blue */
.wave--3 {
  width: 70vw;
  height: 70vw;
  top: 20vh;
  left: 15vw;
  background: radial-gradient(circle, rgba(10, 61, 98, 0.20) 0%, rgba(18, 137, 167, 0.08) 50%, transparent 70%);
  animation: waveDrift3 30s ease-in-out infinite, waveFadeIn 2.5s 2.5s ease forwards;
}

/* Accent blob bottom-right — turquoise */
.wave--4 {
  width: 80vw;
  height: 80vw;
  bottom: -30vw;
  right: -15vw;
  background: radial-gradient(circle, rgba(56, 173, 169, 0.25) 0%, rgba(18, 137, 167, 0.10) 50%, transparent 70%);
  animation: waveDrift4 35s ease-in-out infinite, waveFadeIn 2.5s 3s ease forwards;
}

@keyframes waveFadeIn {
  to { opacity: 1; }
}

@keyframes waveDrift1 {
  0%   { transform: translate(0, 0)       scale(1)    rotate(0deg); }
  33%  { transform: translate(5vw, -3vh)   scale(1.05) rotate(2deg); }
  66%  { transform: translate(-3vw, 4vh)   scale(0.95) rotate(-1deg); }
  100% { transform: translate(0, 0)        scale(1)    rotate(0deg); }
}

@keyframes waveDrift2 {
  0%   { transform: translate(0, 0)        scale(1)    rotate(0deg); }
  25%  { transform: translate(-6vw, 2vh)   scale(1.06) rotate(-2deg); }
  50%  { transform: translate(4vw, -4vh)   scale(0.94) rotate(1deg); }
  75%  { transform: translate(-3vw, 3vh)   scale(1.03) rotate(-1deg); }
  100% { transform: translate(0, 0)        scale(1)    rotate(0deg); }
}

@keyframes waveDrift3 {
  0%   { transform: translate(0, 0)        scale(1)    rotate(0deg); }
  50%  { transform: translate(8vw, 5vh)    scale(1.08) rotate(3deg); }
  100% { transform: translate(0, 0)        scale(1)    rotate(0deg); }
}

@keyframes waveDrift4 {
  0%   { transform: translate(0, 0)        scale(1)    rotate(0deg); }
  20%  { transform: translate(-4vw, -2vh)  scale(1.04) rotate(-1deg); }
  40%  { transform: translate(6vw, 3vh)    scale(0.96) rotate(2deg); }
  60%  { transform: translate(-2vw, -5vh)  scale(1.07) rotate(-2deg); }
  80%  { transform: translate(3vw, 2vh)    scale(0.97) rotate(1deg); }
  100% { transform: translate(0, 0)        scale(1)    rotate(0deg); }
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-md);
  position: relative;
  z-index: 1;
}

section {
  position: relative;
  z-index: 1;
  padding: var(--s-section) 0;
}

/* ── Glass Card Mixin ── */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--glass-border-radius);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: all var(--t-normal);
}

.glass:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* ═════════════════════
   HEADER / NAVIGATION
   ═════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--s-sm) 0;
  transition: all var(--t-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 32px;
  opacity: 0.95;
  transition: opacity var(--t-fast);
}

.header-logo:hover img {
  opacity: 1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--s-md);
  align-items: center;
}

.nav-links a {
  color: var(--c-text);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-green-neon);
  transition: width var(--t-normal);
}

.nav-links a:hover {
  color: var(--c-green-deep);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.5rem !important;
  background: linear-gradient(135deg, var(--c-green-deep), var(--c-green));
  border: none;
  border-radius: 30px;
  color: #ffffff !important;
  font-weight: 600 !important;
  transition: all var(--t-normal) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  box-shadow: 0 0 25px rgba(26, 58, 42, 0.2);
  transform: translateY(-1px);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  transition: all var(--t-fast);
  border-radius: 2px;
}

/* ═════════════════════
   HERO SECTION
   ═════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: min(500px, 70vw);
  margin: 0 auto var(--s-md);
  animation: heroFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  filter: drop-shadow(0 0 40px rgba(26, 58, 42, 0.15));
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--c-text);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--s-lg);
  animation: heroFadeIn 1.2s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-tagline .highlight {
  color: var(--c-green-neon);
  font-weight: 600;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto var(--s-lg);
  line-height: 1.8;
  animation: heroFadeIn 1.2s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-cta-group {
  display: flex;
  gap: var(--s-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: fixed;
  bottom: 40px;
  left: 50vw;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroFadeIn 1.2s 1s both;
  transition: opacity 0.6s ease;
}

.scroll-indicator.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═════════════════════
   BUTTONS
   ═════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--t-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--c-green-deep);
  color: #ffffff;
  box-shadow: 0 4px 25px rgba(26, 58, 42, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(26, 58, 42, 0.25);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn-outline:hover {
  background: var(--c-green-deep);
  border-color: var(--c-green-deep);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Glitch hover on buttons */
.btn-glitch:hover {
  animation: btnGlitch 0.3s ease;
}

@keyframes btnGlitch {
  0% { transform: translateY(-2px); }
  20% { transform: translate(-1px, -2px) skewX(-1deg); }
  40% { transform: translate(1px, -2px) skewX(1deg); }
  60% { transform: translate(-0.5px, -2px); }
  80% { transform: translate(0.5px, -2px) skewX(-0.5deg); }
  100% { transform: translateY(-2px); }
}

/* ═════════════════════
   SECTION HEADERS
   ═════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: var(--s-xl);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-green-neon);
  margin-bottom: var(--s-sm);
  font-family: var(--f-mono);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.2;
  margin-bottom: var(--s-sm);
}

.section-title .gradient-text {
  background: linear-gradient(135deg, var(--c-green-light), var(--c-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  max-width: 650px;
  margin: 0 auto;
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ═════════════════════
   PHILOSOPHIE SECTION
   ═════════════════════ */
.philo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-sm);
  margin-top: var(--s-lg);
}

.philo-cell {
  padding: var(--s-md);
}

.philo-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-green-neon);
  margin-bottom: var(--s-sm);
  font-weight: 500;
  font-family: var(--f-mono);
}

.philo-cell h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--c-white);
}

.philo-cell p {
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.75;
  font-weight: 300;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-sm);
  margin-top: var(--s-lg);
}

.stat-block {
  padding: var(--s-md) var(--s-sm);
  text-align: center;
}

.stat-value {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--c-green-neon), var(--c-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--f-mono);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ═════════════════════
   PRODUCTS SECTION
   ═════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-sm);
}

.product-card {
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Product Banner (brand book style) ── */
.product-banner {
  padding: 1rem var(--s-md);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-radius: var(--glass-border-radius) var(--glass-border-radius) 0 0;
}

.product-banner-type {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.product-banner-name {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Card content below banner */
.product-card .product-npk-list,
.product-card .product-desc,
.product-card .product-formats {
  padding-left: var(--s-md);
  padding-right: var(--s-md);
}

.product-card .product-npk-list {
  padding-top: var(--s-sm);
}

.product-card .product-formats {
  padding-bottom: var(--s-md);
}

.product-npk-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.82rem;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: var(--c-text);
  margin-bottom: var(--s-sm);
  min-height: 8rem;
  font-family: var(--f-mono);
}

.product-npk-list span {
  display: flex;
  gap: 0.4rem;
}

.product-npk-list strong {
  font-weight: 600;
  color: var(--c-green-neon);
  min-width: 2.5rem;
  text-align: right;
}

.product-npk-list em {
  font-style: normal;
  min-width: 3rem;
  text-align: right;
  color: var(--c-text-muted);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  font-weight: 300;
  flex: 1;
  padding-top: 0;
}

.product-formats {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-top: var(--s-sm);
  letter-spacing: 0.04em;
}

.formats-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--c-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

/* Silicium teaser */
.silicium-teaser {
  margin-top: var(--s-md);
  padding: var(--s-md);
  text-align: center;
  border-style: dashed !important;
}

.silicium-teaser h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-white);
  margin: 0.5rem 0;
}

.silicium-teaser p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  font-weight: 300;
}

/* Formula */
.formula-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-sm);
  margin-top: var(--s-md);
}

.formula-col {
  padding: var(--s-md);
  text-align: center;
}

.formula-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--s-sm);
  font-family: var(--f-mono);
}

.formula-text {
  font-size: 1.1rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
}

.formula-text .formula-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.formula-text .pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--f-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.pill-socle  { background: #00B5C8; }
.pill-veg    { background: #00C853; }
.pill-flower { background: #E53935; }
.pill-micro  { background: #AA00FF; }

.formula-text .mini-plus {
  color: #aaa;
  font-size: 0.9rem;
}

.formula-text strong {
  font-weight: 700;
}

.c-socle { color: #00B5C8; }
.c-veg { color: #00C853; }
.c-flower { color: #E53935; }
.c-micro { color: #AA00FF; }

.formula-note {
  text-align: center;
  margin-top: var(--s-sm);
  font-size: 0.85rem;
  color: var(--c-text-muted);
  font-weight: 300;
}

/* ═════════════════════
   DOSAGE TABLES
   ═════════════════════ */
.dose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
}

.dose-block h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--s-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-white);
}

.dose-block h4 .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.table-wrap {
  padding: var(--s-sm);
  overflow-x: auto;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.table-wrap:hover {
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12);
}

.dose-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  font-family: var(--f-mono);
}

.dose-table th {
  padding: 10px 12px;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--c-text-muted);
}

.dose-table th small {
  font-weight: 400;
  font-size: 0.6rem;
  color: var(--c-text-muted);
  opacity: 0.6;
  letter-spacing: 0;
  text-transform: none;
}

.dose-table td {
  padding: 8px 12px;
  text-align: center;
  color: var(--c-text);
  font-weight: 300;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.dose-table td:first-child {
  font-weight: 600;
  color: var(--c-white);
}

.dose-table td:last-child {
  font-weight: 600;
  color: var(--c-accent);
}

.dose-table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.015);
}

.dose-table tbody tr:hover td {
  background: rgba(26, 58, 42, 0.04);
}

.dose-note {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-top: var(--s-md);
  font-weight: 300;
  text-align: center;
  font-family: var(--f-mono);
}

/* ═════════════════════
   PROGRAMME / SCHEDULE
   ═════════════════════ */
.sched-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.sched-table th {
  padding: 14px 16px;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--c-text-muted);
  font-family: var(--f-mono);
}

.sched-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-weight: 300;
  color: var(--c-text);
}

.sched-table td:first-child {
  font-weight: 500;
  color: var(--c-white);
}

.sched-table th:nth-child(3),
.sched-table td:nth-child(3) {
  text-align: center;
  font-weight: 500;
}

.sched-table tbody tr:hover td {
  background: rgba(26, 58, 42, 0.04);
}

.sched-note {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-top: var(--s-sm);
  font-weight: 300;
  font-style: italic;
}

/* ── Mini pills for schedule table ── */
.sched-table .mini-pill {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-family: var(--f-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  vertical-align: middle;
  text-transform: uppercase;
}
.mini-pill-socle  { background: #00B5C8; }
.mini-pill-veg    { background: #00C853; }
.mini-pill-flower { background: #E53935; }
.mini-pill-flush  { background: #90A4AE; }

.formula-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
}
.mini-plus {
  color: #aaa;
  font-size: 0.75rem;
  font-weight: 400;
}

/* Row left-border by phase */
.sched-table .veg-row td:first-child   { border-left: 3px solid #00C853; }
.sched-table .bloom-row td:first-child  { border-left: 3px solid #E53935; }
.sched-table .flush-row td:first-child  { border-left: 3px solid #90A4AE; }

/* ═════════════════════
   GUIDE STEPS
   ═════════════════════ */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--s-md);
  padding: var(--s-sm) var(--s-md);
  align-items: start;
}

.step-num {
  font-family: var(--f-mono);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--c-green-neon), var(--c-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--c-white);
}

.step-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--c-text);
  line-height: 1.8;
}

.guide-warn {
  margin-top: var(--s-md);
  padding: var(--s-sm) var(--s-md);
  background: #fef2f2;
  border-left: 4px solid #E53935;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #1a1a1a;
}

.guide-warn strong {
  color: #c62828;
  display: block;
  margin-bottom: 0.25rem;
}

.guide-info {
  margin-top: var(--s-sm);
  padding: var(--s-sm) var(--s-md);
  background: #f0fdf4;
  border-left: 4px solid var(--c-green);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #1a1a1a;
}

.guide-info strong {
  color: var(--c-green-deep);
}

/* ═════════════════════
   TECHNOLOGY SECTION
   ═════════════════════ */
.tech-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-sm);
}

.tech-card {
  padding: var(--s-md);
  position: relative;
}

.feature-num {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-green-neon);
  font-weight: 500;
  font-family: var(--f-mono);
  display: block;
  margin-bottom: var(--s-sm);
}

.tech-card h3 {
  font-size: 1.1rem;
  color: var(--c-white);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tech-card p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ═════════════════════
   CONTACT SECTION
   ═════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
}

.form-field {
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--c-text);
  padding: 0.6rem 0;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.form-field label {
  position: absolute;
  top: 0.6rem;
  left: 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--c-text-muted);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: -1.1rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green-neon);
}

.form-field::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-green-neon);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-field:focus-within::after {
  width: 100%;
}

.contact-info dl {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-detail dt {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 500;
  font-family: var(--f-mono);
}

.contact-detail dd {
  color: var(--c-text);
  font-weight: 300;
}

.contact-detail dd a {
  color: var(--c-text);
  transition: color var(--t-fast);
}

.contact-detail dd a:hover {
  color: var(--c-white);
}

.contact-tagline {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-weight: 200;
  color: rgba(0, 0, 0, 0.08);
  font-style: italic;
}

/* ═════════════════════
   LANG DROPDOWN
   ═════════════════════ */
.lang-drop {
  position: relative;
  display: inline-block;
  margin-left: var(--s-sm);
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  transition: color var(--t-fast);
  border: 1px solid var(--c-glass-border);
  background: rgba(0, 0, 0, 0.02);
}

.lang-current:hover {
  color: var(--c-white);
  border-color: rgba(0, 0, 0, 0.08);
}

.lang-current::after {
  content: '▾';
  font-size: 0.65rem;
  margin-left: 0.15rem;
}

.lang-list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 4px;
  z-index: 1001;
}

.lang-list-inner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-glass-border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  min-width: 150px;
  padding: 0.4rem 0;
}

.lang-drop:hover .lang-list,
.lang-drop.open .lang-list {
  display: block;
}

.lang-list a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--c-text);
  text-decoration: none;
  transition: background var(--t-fast);
}

.lang-list a:hover {
  background: rgba(26, 58, 42, 0.06);
  color: var(--c-green-deep);
}

.lang-list a.active {
  font-weight: 700;
  color: var(--c-green-neon);
}

/* ═════════════════════
   STORE BADGES
   ═════════════════════ */
.store-badges {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: var(--s-md);
  animation: heroFadeIn 1.2s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(10px);
  color: var(--c-text);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  border: 1px solid var(--c-glass-border);
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 42, 0.1);
  background: rgba(0, 0, 0, 0.04);
  color: var(--c-white);
}

.store-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge-small {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.7;
}

.store-badge-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Hero h1 */
.hero-h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: var(--s-md);
  animation: heroFadeIn 1.2s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-green-light), var(--c-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═════════════════════
   FOOTER
   ═════════════════════ */
.site-footer {
  position: relative;
  z-index: 1;
  padding: var(--s-lg) 0 var(--s-md);
  background: var(--c-green-deep);
  color: #ffffff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-md);
}

.footer-logo img {
  height: 24px;
  opacity: 0.7;
  transition: opacity var(--t-fast);
}

.footer-logo:hover img {
  opacity: 1;
}

.footer-links {
  display: flex;
  list-style: none;
  gap: var(--s-md);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  width: 100%;
  text-align: center;
  margin-top: var(--s-md);
  padding-top: var(--s-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--f-mono);
}

/* ═════════════════════
   GLITCH TEXT EFFECT
   ═════════════════════ */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch:hover::before {
  animation: glitch1 0.4s ease;
  color: var(--c-accent);
  opacity: 0.7;
  z-index: -1;
}

.glitch:hover::after {
  animation: glitch2 0.4s ease;
  color: var(--c-green-neon);
  opacity: 0.7;
  z-index: -1;
}

@keyframes glitch1 {
  0% { clip-path: inset(0 0 90% 0); transform: translate(0); }
  20% { clip-path: inset(20% 0 60% 0); transform: translate(-3px, 1px); }
  40% { clip-path: inset(50% 0 30% 0); transform: translate(3px, -1px); }
  60% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 2px); }
  80% { clip-path: inset(70% 0 10% 0); transform: translate(2px, -2px); }
  100% { clip-path: inset(0 0 90% 0); transform: translate(0); }
}

@keyframes glitch2 {
  0% { clip-path: inset(90% 0 0 0); transform: translate(0); }
  20% { clip-path: inset(60% 0 20% 0); transform: translate(3px, -1px); }
  40% { clip-path: inset(30% 0 50% 0); transform: translate(-3px, 1px); }
  60% { clip-path: inset(70% 0 10% 0); transform: translate(2px, -2px); }
  80% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 2px); }
  100% { clip-path: inset(90% 0 0 0); transform: translate(0); }
}

/* ── Title Glitch (triggered on scroll) ── */
@keyframes titleGlitch {
  0% { transform: translate(0); text-shadow: none; }
  10% { transform: translate(-2px, 1px); text-shadow: 2px 0 var(--c-accent), -2px 0 var(--c-green-neon); }
  20% { transform: translate(2px, -1px); text-shadow: -2px 0 var(--c-accent), 2px 0 var(--c-green-neon); }
  30% { transform: translate(-1px, 0); text-shadow: 1px 0 var(--c-accent); }
  40% { transform: translate(1px, 1px); text-shadow: -1px 0 var(--c-green-neon); }
  50% { transform: translate(0); text-shadow: none; }
  100% { transform: translate(0); text-shadow: none; }
}


/* ═════════════════════
   RESPONSIVE
   ═════════════════════ */
@media (max-width: 968px) {
  .philo-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formula-section {
    grid-template-columns: 1fr;
  }

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

  .tech-features {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--s-md);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    z-index: 1003;
  }

  .lang-drop {
    display: none;
    margin-left: 0;
  }

  .lang-drop.mobile-visible {
    display: inline-block;
    position: relative;
  }

  .lang-drop.mobile-visible .lang-current {
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .lang-drop.mobile-visible .lang-list {
    position: relative;
    bottom: auto;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    padding-bottom: 0;
    padding-top: 0.5rem;
    min-width: auto;
    width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: none;
  }

  .lang-drop.mobile-visible.open .lang-list {
    display: block;
  }

  .lang-drop.mobile-visible .lang-list a {
    padding: 0.6rem 1rem;
    text-align: center;
    border-radius: 8px;
  }

  .lang-drop.mobile-visible .lang-list a:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  .mobile-lang-item {
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --s-section: 5rem;
  }

  .tech-features {
    grid-template-columns: 1fr;
  }

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

  .product-npk-list {
    min-height: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: var(--s-sm);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--s-sm);
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .sched-table {
    font-size: 0.82rem;
  }

  .sched-table th,
  .sched-table td {
    padding: 10px 8px;
  }

  .dose-table {
    font-size: 0.78rem;
  }

  .dose-table th,
  .dose-table td {
    padding: 8px 6px;
  }
}

/* ═════════════════════
   LOADING SCREEN
   ═════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fafaf8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  display: block;
  max-width: 420px;
  width: 75%;
  height: auto;
  margin: 0 auto 1.5rem;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--c-green-deep);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* ═════════════════════
   SCROLL PROGRESS BAR
   ═════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--c-green-deep);
  z-index: 10000;
  width: 0%;
  transition: none;
}

/* ═════════════════════
   SPLIT TEXT
   ═════════════════════ */
.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(5deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.split-char.visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* ═════════════════════
   PRODUCT TILT
   ═════════════════════ */
.product-card[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}

.product-card[data-tilt]:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ═════════════════════
   ENHANCED REVEALS
   ═════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

