:root{
  /* DARK GREEN + ORANGE + WHITE THEME */
  --bg:#06140D;            /* deep forest */
  --bg2:#071A11;           /* slightly lighter */
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.10);
  --text:#F7FBF8;          /* near-white */
  --muted:rgba(247,251,248,.72);
  --line:rgba(255,255,255,.12);

  --glow1:#19C37D;         /* emerald green */
  --glow2:#FF7A18;         /* orange */
  --accent:#FF7A18;        /* orange */
  --good:#19C37D;          /* green */

  --shadow: 0 12px 40px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:26px;
  --max:1180px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(25,195,125,.20), transparent 55%),
    radial-gradient(1000px 700px at 80% 30%, rgba(255,122,24,.14), transparent 55%),
    radial-gradient(900px 700px at 50% 100%, rgba(25,195,125,.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

/* Subtle grain */
.grain{
  pointer-events:none;
  position:fixed; inset:-40%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
  opacity:.10;
  animation: drift 14s linear infinite;
  transform: translate3d(0,0,0) rotate(0.001deg);
}
@keyframes drift{
  0%{transform:translate3d(-2%, -2%, 0)}
  50%{transform:translate3d(2%, 2%, 0)}
  100%{transform:translate3d(-2%, -2%, 0)}
}

canvas#pollen{
  position:fixed; inset:0;
  pointer-events:none;
  opacity:.55;
}

header{
  position:sticky; top:0;
  z-index:10;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(6,20,13,.88), rgba(6,20,13,.35));
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.wrap{max-width:var(--max); margin:0 auto; padding:18px 18px;}
.topbar{display:flex; align-items:center; justify-content:space-between; gap:14px;}

.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--text);
}
.logo{
  width:40px; height:40px; border-radius:14px;
  filter: drop-shadow(0 0 0 1px rgba(255,255,255,.12)) drop-shadow(0 12px 30px rgba(25,195,125,.15));
}
.brand b{letter-spacing:.5px}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
  box-shadow: var(--shadow);
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--good);
  box-shadow: 0 0 18px rgba(25,195,125,.55);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(1); opacity:.7}
  50%{transform:scale(1.6); opacity:1}
}

main{padding:28px 0 70px}

.hero{
  max-width:var(--max); margin:0 auto;
  padding:28px 18px 10px;
  display:grid; grid-template-columns: 1.2fr .8fr; gap:18px;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.11);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.card:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 240px at 20% 10%, rgba(25,195,125,.18), transparent 60%),
    radial-gradient(700px 240px at 80% 20%, rgba(255,122,24,.14), transparent 60%);
  pointer-events:none;
}

.hero-left{padding:22px 22px 18px}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-size:13px; color:var(--muted);
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius:999px;
  position:relative; z-index:1;
}
.kicker span{
  background: linear-gradient(90deg, var(--glow1), var(--glow2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  font-weight:800;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height:1.06;
  letter-spacing:-.5px;
  position:relative; z-index:1;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.5;
  position:relative; z-index:1;
  max-width:60ch;
}

.cta-row{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
  position:relative; z-index:1
}
.btn{
  appearance:none; border:none;
  cursor:pointer;
  padding:12px 14px;
  border-radius: 14px;
  font-weight:800;
  letter-spacing:.2px;
  display:inline-flex; align-items:center; gap:10px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  text-decoration:none;
  user-select:none;
}
.btn-primary{
  background: linear-gradient(90deg, rgba(25,195,125,.95), rgba(255,122,24,.95));
  color:#071A11;
  box-shadow: 0 16px 40px rgba(25,195,125,.15), 0 12px 30px rgba(255,122,24,.10);
}
.btn-primary:hover{transform: translateY(-1px); filter:saturate(1.05)}
.btn-ghost{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border:1px solid rgba(255,255,255,.12);
}
.btn-ghost:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(0,0,0,.28)}

.mini{
  font-size:12px;
  color:var(--muted);
  margin-top:10px;
  position:relative; z-index:1;
}

.hero-right{padding:18px}
.countbox{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  position:relative; z-index:1;
}
.countbox h3{margin:0 0 10px; font-size:14px; color:var(--muted); font-weight:800; letter-spacing:.2px}
.count{
  display:flex; gap:10px; align-items:center;
  font-variant-numeric: tabular-nums;
  flex-wrap:wrap;
}
.flip{
  min-width:72px;
  padding:12px 10px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
  text-align:center;
}
.flip b{
  display:block;
  font-size:26px;
  line-height:1;
  background: linear-gradient(90deg, var(--glow1), var(--glow2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  filter: drop-shadow(0 8px 14px rgba(25,195,125,.10));
}
.flip span{display:block; font-size:11px; color:rgba(247,251,248,.70); margin-top:6px}

.breath{
  margin-top:14px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
}
.breath i{
  display:block; height:100%;
  width:30%;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(25,195,125,.65), rgba(255,122,24,.55));
  animation: breathe 4.6s ease-in-out infinite;
}
@keyframes breathe{
  0%{transform:translateX(-10%) scaleX(.85); opacity:.65}
  50%{transform:translateX(235%) scaleX(1.1); opacity:1}
  100%{transform:translateX(-10%) scaleX(.85); opacity:.65}
}

.countline{
  display:flex; align-items:baseline; justify-content:space-between; gap:14px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:12px; margin-top:10px;
  color:var(--muted);
  font-size:12px;
  flex-wrap:wrap;
}

.section{
  max-width:var(--max); margin:0 auto; padding:16px 18px 0;
}
.section h2{
  margin:20px 0 10px;
  font-size:16px;
  letter-spacing:.3px;
  color:rgba(247,251,248,.88);
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  align-items:center;
}
.filters{display:flex; gap:8px; flex-wrap:wrap;}
.chip{
  cursor:pointer;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:rgba(247,251,248,.90);
  font-size:12px;
  user-select:none;
  transition: transform .12s ease, background .12s ease;
}
.chip:hover{transform: translateY(-1px)}
.chip.active{
  background: linear-gradient(90deg, rgba(25,195,125,.26), rgba(255,122,24,.18));
  border-color: rgba(255,255,255,.18);
}

.scroller-wrap{
  position:relative;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.scroller{
  display:flex;
  gap:14px;
  padding:16px;
  width:max-content;
  will-change: transform;
  animation: marquee 46s linear infinite;
}
.scroller.pause{animation-play-state: paused;}
@keyframes marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
.fadeL,.fadeR{
  position:absolute; top:0; bottom:0; width:120px;
  pointer-events:none; z-index:2;
}
.fadeL{left:0;background: linear-gradient(to right, rgba(6,20,13,1), rgba(6,20,13,0))}
.fadeR{right:0;background: linear-gradient(to left, rgba(6,20,13,1), rgba(6,20,13,0))}

.pcard{
  width: 220px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  overflow:hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
  position:relative;
  transform: translateZ(0);
}
.pimg{
  height:170px;
  display:flex; align-items:center; justify-content:center;
  background:
    radial-gradient(140px 100px at 30% 20%, rgba(25,195,125,.18), transparent 70%),
    radial-gradient(140px 100px at 70% 30%, rgba(255,122,24,.14), transparent 70%),
    rgba(0,0,0,.18);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.pimg img{
  max-width:76%;
  max-height:76%;
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.35));
  transition: transform .18s ease;
}
.pcard:hover .pimg img{transform: scale(1.03) translateY(-2px)}
.pbody{padding:12px 12px 14px}
.ptop{display:flex; align-items:baseline; justify-content:space-between; gap:10px}
.pname{font-weight:900; letter-spacing:.5px; font-size:14px;}
.pcat{
  font-size:11px;
  color:rgba(247,251,248,.72);
  padding:6px 8px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius:999px;
  white-space:nowrap;
}
.pbtn{
  margin-top:10px;
  width:100%;
  justify-content:center;
  background: rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding:10px 12px;
  font-weight:900;
  text-decoration:none;
  display:inline-flex; align-items:center; gap:10px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.pbtn:hover{
  transform: translateY(-1px);
  background: linear-gradient(90deg, rgba(25,195,125,.22), rgba(255,122,24,.16));
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
}
.wa{
  width:18px; height:18px; border-radius:6px;
  background: rgba(25,195,125,.18);
  border:1px solid rgba(25,195,125,.25);
  display:inline-flex; align-items:center; justify-content:center;
  color: rgba(247,251,248,.9);
}

.contact-strip{
  max-width:var(--max);
  margin:26px auto 0;
  padding:0 18px;
}
.contact-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  padding:16px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.contact-text{
  color: rgba(247,251,248,.85);
  font-size:13px;
  line-height:1.4;
}
.contact-actions{display:flex; gap:10px; flex-wrap:wrap;}
.btn-small{
  padding:10px 12px;
  border-radius: 14px;
  font-weight:900;
  font-size:13px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  display:inline-flex; align-items:center; gap:10px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn-small:hover{transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,.22)}
.btn-small.primary{
  background: linear-gradient(90deg, rgba(25,195,125,.92), rgba(255,122,24,.92));
  color:#071A11;
  border:none;
}

footer{
  max-width:var(--max);
  margin:0 auto;
  padding:26px 18px 40px;
  color:rgba(247,251,248,.62);
  font-size:12px;
}
.footrow{
  display:flex; gap:10px; justify-content:space-between; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:16px;
}
.smalllink{
  color:rgba(247,251,248,.80);
  text-decoration:none;
  border-bottom:1px dashed rgba(247,251,248,.22);
}
.smalllink:hover{border-bottom-color: rgba(247,251,248,.45)}