:root{
  --bg: #06140c;
  --bg2: #0a1a10;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, .68);

  --brand: #3a7d2f;
  --brand2: #a8d65a;

  --glass: rgba(255,255,255,.68);
  --glassBorder: rgba(255,255,255,.22);

  --card: rgba(255,255,255,.74);
  --cardBorder: rgba(15, 23, 42, .08);

  --shadow: 0 18px 55px rgba(0, 0, 0, .18);
  --shadowSoft: 0 10px 28px rgba(0, 0, 0, .12);

  --radius: 22px;
  --radiusSm: 16px;

  --focus: 0 0 0 .25rem rgba(58,125,47,.25);
}

*{ box-sizing: border-box; }

body{
  background: radial-gradient(1200px 700px at 20% 5%, rgba(168,214,90,.18), transparent 60%),
              radial-gradient(900px 700px at 85% 15%, rgba(58,125,47,.18), transparent 55%),
              linear-gradient(180deg, #f8fafc, #f3f7f4);
  color: #0f172a;
  overflow-x: hidden;
}

section{ scroll-margin-top: 92px; }
a{ color: inherit; }

/* NAV glass */
.nav-glass{
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.navbar .nav-link{
  font-weight: 600;
  opacity: .90;
  border-radius: 999px;
  padding: .55rem .9rem;
}
.navbar .nav-link:hover{
  background: rgba(58,125,47,.10);
  opacity: 1;
}

.brand-dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  box-shadow: 0 0 20px rgba(168,214,90,.45);
}

/* Language pill */
.lang-pill{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadowSoft);
  user-select: none;
}
.lang-label{
  color: rgba(15,23,42,.65);
  font-weight: 800;
  font-size: .85rem;
  margin-right: .2rem;
}
.lang-divider{
  color: rgba(15,23,42,.35);
  font-weight: 900;
}
.lang-chip{
  font-weight: 900;
  font-size: .9rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  color: rgba(15,23,42,.55);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}
.lang-chip.is-active{
  color: #0f172a;
  background: linear-gradient(90deg, rgba(168,214,90,.55), rgba(58,125,47,.18));
  border-color: rgba(58,125,47,.18);
}
.lang-chip:focus{
  outline: none;
  box-shadow: var(--focus);
}

/* HERO */
.hero-title-stack .hero-line{
  display: block;
}
.hero{
  position: relative;
  padding: 6.2rem 0 3.4rem;
  overflow: hidden;
}
.hero-inner{ position: relative; z-index: 2; }

.hero-title{
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.hero-sub{
  color: rgba(15,23,42,.72);
  max-width: 62ch;
}

/* Gradient word */
.hero-grad{
  background: linear-gradient(90deg, var(--brand2), #ffffff 35%, var(--brand2) 70%, var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 22px rgba(168,214,90,.22);
}

/* Badge row */
.hero-badges{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1rem;
}
.badge-pill{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadowSoft);
  color: rgba(15,23,42,.72);
  font-weight: 800;
  font-size: .9rem;
}

/* CTA */
.hero-cta-row{
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-hero{
  border: none;
  font-weight: 900;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(168,214,90,.95), rgba(58,125,47,.85));
  color: #07130b;
  box-shadow: 0 18px 40px rgba(58,125,47,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn-hero:hover{
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(58,125,47,.28);
  filter: saturate(1.05);
}

.hero-mini-proof{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadowSoft);
}
.proof-dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  box-shadow: 0 0 18px rgba(168,214,90,.55);
}

/* Metrics */
.hero-metrics{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  max-width: 580px;
}
.metric-card{
  padding: .95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadowSoft);
}
.metric-k{ font-weight: 950; font-size: 1.15rem; }
.metric-t{ color: rgba(15,23,42,.70); font-size: .85rem; font-weight: 800; }

/* Right side */
.hero-right{
  position: relative;
  display: grid;
  gap: 14px;
}

/* Browser Mockup */
.browser-mock{
  position: relative;
  border-radius: 26px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-10deg) rotateX(5deg);
  transform-origin: center;
}
.browser-top{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.browser-dots span{
  width: 10px; height: 10px; border-radius: 999px; display: inline-block; margin-right: 6px;
}
.browser-dots .d1{ background: rgba(239,68,68,.65); }
.browser-dots .d2{ background: rgba(245,158,11,.65); }
.browser-dots .d3{ background: rgba(34,197,94,.65); }

.browser-url{
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(15,23,42,.04);
  color: rgba(15,23,42,.70);
  font-weight: 800;
  font-size: .9rem;
}
.browser-body img{
  width: 100%;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: top;
}

.browser-glow{
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 20% 20%, rgba(168,214,90,.40), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(58,125,47,.25), transparent 60%);
  filter: blur(24px);
  opacity: .55;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: glowShift 6s ease-in-out infinite;
}
@keyframes glowShift{
  0%,100%{ transform: translate3d(0,0,0); }
  50%{ transform: translate3d(18px,-10px,0); }
}

.browser-reflection{
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.35), transparent 40%, rgba(255,255,255,.15));
  opacity: .35;
  pointer-events: none;
}



/* Scroll hint */
.scroll-hint{
  margin-top: 3.0rem;
  display:flex;
  justify-content:center;
  opacity: .85;
}
.scroll-hint span{
  width: 24px; height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(58,125,47,.35);
  position: relative;
}
.scroll-hint span::after{
  content:"";
  position:absolute;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  left: 50%; transform: translateX(-50%);
  top: 10px;
  animation: scrollDot 1.4s ease-in-out infinite;
}
@keyframes scrollDot{
  0%,100%{ transform: translate(-50%,0); opacity:1; }
  50%{ transform: translate(-50%,12px); opacity:.55; }
}

/* Background */
.liquid-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: radial-gradient(1200px 800px at 15% 10%, rgba(168,214,90,.25), transparent 60%),
              radial-gradient(900px 700px at 85% 20%, rgba(58,125,47,.22), transparent 58%),
              linear-gradient(180deg, rgba(255,255,255,.92), rgba(244,247,244,.90));
}

.liquid-layer{
  position:absolute;
  inset:-25%;
  filter: blur(26px);
  opacity: .75;
  transform: translate3d(0,0,0);
  mix-blend-mode: multiply;
}

.liquid-a{
  background:
    radial-gradient(circle at 20% 30%, rgba(168,214,90,.65), transparent 55%),
    radial-gradient(circle at 70% 20%, rgba(58,125,47,.45), transparent 55%),
    radial-gradient(circle at 60% 80%, rgba(168,214,90,.35), transparent 60%);
  animation: liquidMoveA 8.5s ease-in-out infinite;
}
.liquid-b{
  background:
    radial-gradient(circle at 35% 60%, rgba(58,125,47,.40), transparent 58%),
    radial-gradient(circle at 85% 55%, rgba(168,214,90,.55), transparent 58%),
    radial-gradient(circle at 10% 80%, rgba(58,125,47,.22), transparent 62%);
  animation: liquidMoveB 11s ease-in-out infinite;
  opacity: .65;
}
.liquid-c{
  background:
    conic-gradient(from 180deg at 50% 50%, rgba(168,214,90,.28), rgba(58,125,47,.22), rgba(255,255,255,0), rgba(168,214,90,.22));
  animation: liquidSpin 14s linear infinite;
  opacity: .35;
  filter: blur(34px);
}

@keyframes liquidMoveA{
  0%,100%{ transform: translate3d(-2%, -3%, 0) scale(1.05); }
  50%{ transform: translate3d(3%, 2%, 0) scale(1.12); }
}
@keyframes liquidMoveB{
  0%,100%{ transform: translate3d(3%, 2%, 0) scale(1.10); }
  50%{ transform: translate3d(-3%, -2%, 0) scale(1.18); }
}
@keyframes liquidSpin{
  0%{ transform: rotate(0deg) scale(1.18); }
  100%{ transform: rotate(360deg) scale(1.18); }
}

/* Caustics shimmer */
.caustics{
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 20% 40%, rgba(255,255,255,.55), transparent 45%),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.45), transparent 45%),
    radial-gradient(circle at 55% 75%, rgba(255,255,255,.35), transparent 50%);
  filter: blur(10px);
  opacity: .20;
  mix-blend-mode: overlay;
  animation: causticsDrift 6.8s ease-in-out infinite;
}
@keyframes causticsDrift{
  0%,100%{ transform: translate3d(-2%, 0%, 0) scale(1.02); }
  50%{ transform: translate3d(2%, -1.5%, 0) scale(1.05); }
}

/* Dot grid */
.dotgrid{
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(15,23,42,.10) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .18;
  mask-image: radial-gradient(circle at 30% 25%, #000 20%, transparent 55%);
  -webkit-mask-image: radial-gradient(circle at 30% 25%, #000 20%, transparent 55%);
}

/* Noise grain */
.noise{
  position:absolute;
  inset:0;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  opacity: .07;
  mix-blend-mode: overlay;
  pointer-events:none;
}

/* Vignette */
.vignette{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 20%, transparent 40%, rgba(0,0,0,.10));
  opacity: .22;
  pointer-events:none;
}

/* Sections */
.section{ padding: 5.1rem 0; }
.section-alt{ background: linear-gradient(180deg, rgba(58,125,47,.06), transparent 60%); }
.section-head{ max-width: 860px; }
.soft-hr{ border-top: 1px solid rgba(15,23,42,.10); opacity: 1; }

/* General cards */
.glass-card{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadowSoft);
  padding: 1.25rem 1.25rem;
}

.text-brand{ color: var(--brand2); text-shadow: 0 0 18px rgba(168,214,90,.25); }

.note{
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: 16px;
  background: rgba(58,125,47,.08);
  border: 1px solid rgba(58,125,47,.14);
  color: rgba(15,23,42,.75);
  font-weight: 800;
}

.mini-feature{
  display: flex;
  gap: .85rem;
  padding: .9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.62);
}
.mini-feature i{
  font-size: 1.35rem;
  color: var(--brand2);
  text-shadow: 0 0 18px rgba(168,214,90,.18);
}

.callout{
  padding: .85rem 1rem;
  border-radius: 16px;
  background: rgba(168,214,90,.20);
  border: 1px solid rgba(58,125,47,.18);
  color: rgba(15,23,42,.78);
  font-weight: 850;
}

/* Carousel wrap */
.carousel-wrap{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow);
  padding: 1rem;
}
.carousel-wrap img{
  max-height: 560px;
  object-fit: cover;
  object-position: top;
}
.carousel-indicators [data-bs-target]{
  width: 8px; height: 8px; border-radius: 999px;
  background-color: rgba(15,23,42,.25);
  border: none;
  opacity: 1;
}
.carousel-indicators .active{
  background: linear-gradient(90deg, var(--brand2), var(--brand)) !important;
}

/* Static image cards */
.img-card-static{
  width: 100%;
  border-radius: var(--radiusSm);
  overflow: hidden;
  box-shadow: var(--shadowSoft);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.70);
  transition: transform .18s ease, box-shadow .18s ease;
}
.img-card-static:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.img-card-static img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top;
  display:block;
}

/* Feature cards */
.feature-card{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadowSoft);
  padding: 1.2rem 1.2rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-ico{
  width: 48px; height: 48px;
  border-radius: 16px;
  display:grid; place-items:center;
  margin-bottom: .75rem;
  background: rgba(58,125,47,.10);
  border: 1px solid rgba(58,125,47,.15);
}
.feature-ico i{ font-size: 1.35rem; color: var(--brand2); }

/* Team cards */
.person-card{
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadowSoft);
  padding: 1.2rem 1.2rem;
}
.person-top{
  display:flex; align-items:center; gap: .8rem;
}
.avatar{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:grid; place-items:center;
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  color: #07130b;
  font-weight: 950;
}

/* Tools movement */
.tools-orbit{
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 16px;
  align-items: end;
}
.tool-float{
  text-align: center;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadowSoft);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: bob 3.6s ease-in-out infinite;
}
.tool-float:hover{
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: var(--shadow);
}
.tool-logo{
  width: 74px; height: 74px;
  object-fit: contain;
  filter: grayscale(18%);
  transition: transform .22s ease, filter .22s ease;
}
.tool-float:hover .tool-logo{
  transform: scale(1.08) rotate(2deg);
  filter: grayscale(0%);
}
@keyframes bob{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}
.tool-delay-0{ animation-delay: 0s; }
.tool-delay-1{ animation-delay: .25s; }
.tool-delay-2{ animation-delay: .5s; }
.tool-delay-3{ animation-delay: .75s; }
.tool-delay-4{ animation-delay: 1s; }

/* Footer */
.footer{
  padding: 1.6rem 0;
  border-top: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.40);
}
.footer-link{
  color: rgba(15,23,42,.72);
  text-decoration: none;
  font-weight: 850;
}
.footer-link:hover{ text-decoration: underline; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .liquid-a,.liquid-b,.liquid-c,.caustics,.browser-glow{ animation: none; }
}

/* Responsive */
@media (max-width: 992px){
  .hero-wow{ padding-top: 5.4rem; }
  .hero-metrics{ grid-template-columns: 1fr; }
  .browser-mock{ transform: none; }
  .img-card-static img{ height: 260px; }
  .tools-orbit{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* Click-to-zoom cursor hint */
.carousel-wrap img,
.img-card-static img,
.browser-body img{
  cursor: zoom-in;
}

/* Modal look */
.img-modal{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  overflow: hidden;
}

.img-modal-figure{
  position: relative;
}

#imgModalTarget{
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  background: rgba(0,0,0,.85);
}

.img-modal-caption{
  padding: .75rem 1rem;
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.75);
  font-weight: 700;
  font-size: .95rem;
}

.img-modal-close{
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 10;
  filter: invert(1);
  opacity: .9;
}
.img-modal-close:hover{ opacity: 1; }


.tool-logo {
    width: 80px;        
    height: 80px;       
    object-fit: contain; 
}


.person-photo{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;

  border: 1px solid rgba(15,23,42,.12);
  background: linear-gradient(
    135deg,
    rgba(168,214,90,.35),
    rgba(58,125,47,.35)
  );

  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.person-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
