@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@800&display=swap');

:root{
  --ink:#12351f;
  --deep:#083016;
  --muted:#607569;
  --bg:#f3fff5;
  --panel:#ffffff;
  --leaf:#0f8a3d;
  --leaf2:#17b95e;
  --lime:#e7ffe8;
  --cream:#fffbea;
  --gold:#d69a00;
  --orange:#f3a400;
  --line:#d8ebdc;
  --shadow:0 24px 70px rgba(12,78,35,.14);
  --radius:34px;
  --container:min(1180px,calc(100% - 40px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 8% 8%,rgba(15,138,61,.20),transparent 28%),
    radial-gradient(circle at 88% 6%,rgba(214,154,0,.18),transparent 30%),
    radial-gradient(circle at 70% 94%,rgba(23,185,94,.16),transparent 34%),
    linear-gradient(135deg,#fbfff8,#effcf3 55%,#fffaf0);
  min-height:100vh;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(rgba(18,53,31,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(18,53,31,.035) 1px,transparent 1px);
  background-size:44px 44px;
  pointer-events:none;
  z-index:-2;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:var(--container);margin:0 auto}

.blob{
  position:fixed;
  border-radius:999px;
  filter:blur(54px);
  opacity:.32;
  z-index:-1;
  pointer-events:none;
  animation:blob 12s ease-in-out infinite;
}
.blob.one{width:340px;height:340px;background:#67d98e;left:-120px;top:16%}
.blob.two{width:360px;height:360px;background:#ffd86a;right:-130px;bottom:7%;animation-direction:reverse}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  padding:14px 0;
  border-bottom:1px solid rgba(216,235,220,.74);
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(18px);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:250px;
}
.brand img{
  width:52px;
  height:52px;
  border-radius:18px;
  box-shadow:0 16px 35px rgba(15,138,61,.22);
}
.brand strong{display:block;font-size:15px;letter-spacing:-.02em}
.brand span{display:block;color:var(--muted);font-size:12px;margin-top:3px}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:8px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.76);
  box-shadow:0 10px 35px rgba(12,78,35,.06);
}
.nav a{
  padding:10px 14px;
  border-radius:999px;
  color:#4f6256;
  font-size:14px;
  font-weight:800;
  transition:.22s ease;
}
.nav a:hover,.nav a.active{
  color:#fff;
  background:var(--deep);
  transform:translateY(-2px);
}
.header-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:999px;
  background:var(--gold);
  color:#fff;
  font-weight:900;
  white-space:nowrap;
  box-shadow:0 16px 30px rgba(214,154,0,.24);
  transition:.22s ease;
}
.header-action:hover{transform:translateY(-2px)}

.hero{padding:46px 0 34px}
.page-hero{padding:58px 0 28px}
.hero-card{
  position:relative;
  overflow:hidden;
  border-radius:44px;
  border:1px solid rgba(255,255,255,.9);
  background:linear-gradient(135deg,rgba(255,255,255,.97),rgba(231,255,232,.84));
  box-shadow:var(--shadow);
  padding:clamp(28px,5vw,58px);
}
.hero-card::after{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  right:-90px;
  top:-90px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(214,154,0,.20),transparent 70%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.94fr 1.06fr;
  gap:34px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--gold);
  font-size:12px;
  font-weight:900;
  letter-spacing:.13em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:30px;
  height:2px;
  background:linear-gradient(90deg,var(--leaf),var(--gold));
}
h1{
  margin:0 0 18px;
  font-size:clamp(42px,6vw,78px);
  line-height:.95;
  letter-spacing:-.075em;
}
h2{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,54px);
  line-height:1;
  letter-spacing:-.06em;
}
h3{margin:0 0 10px;font-size:22px}
p{margin:0}
.lead,.muted,.card p,.footer span{
  color:var(--muted);
  line-height:1.75;
}
.lead{font-size:17px;max-width:760px}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border-radius:999px;
  font-weight:900;
  transition:.22s ease;
}
.btn:hover{transform:translateY(-3px)}
.primary{background:var(--deep);color:#fff;box-shadow:0 18px 35px rgba(8,48,22,.18)}
.secondary{background:#fff;border:1px solid var(--line);color:var(--deep)}

.hero-art{position:relative}
.banner-wrap{
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 28px 70px rgba(12,78,35,.16);
  transform:rotate(1.2deg);
  animation:float 6s ease-in-out infinite;
}
.banner-wrap img{width:100%}
.dashboard-chip{
  position:absolute;
  right:-8px;
  bottom:-18px;
  width:240px;
  border-radius:28px;
  padding:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  animation:floatAlt 5.2s ease-in-out infinite;
}
.dashboard-chip strong{display:block;margin-bottom:8px}
.bar{height:9px;border-radius:999px;background:#edf4e7;overflow:hidden;margin:9px 0 10px}
.bar i{display:block;height:100%;width:72%;background:linear-gradient(90deg,var(--leaf),var(--gold));border-radius:999px;animation:grow 2.5s ease-in-out infinite}

.leaf-dot{
  position:absolute;
  width:18px;
  height:18px;
  border-radius:70% 0 70% 0;
  background:var(--leaf2);
  opacity:.65;
  animation:leafDrift 7s linear infinite;
}
.leaf-dot.l1{left:8%;top:22%}
.leaf-dot.l2{left:21%;top:48%;animation-delay:1.3s}
.leaf-dot.l3{left:36%;top:28%;animation-delay:2.2s}

.section{padding:58px 0}
.section-head{max-width:760px;margin-bottom:24px}
.grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.card,.panel,.legal-card{
  border-radius:30px;
  padding:24px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.88);
  box-shadow:var(--shadow);
  transition:.24s ease;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 32px 80px rgba(12,78,35,.15);
}
.card strong{display:block;font-size:20px;margin:14px 0 8px}
.num{font-weight:900;color:var(--gold)}
.chip{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:var(--lime);
  color:var(--leaf);
  font-weight:900;
  font-size:12px;
  margin-bottom:14px;
}
.panel,.legal-card{padding:clamp(26px,4vw,44px)}
.product-hero{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:30px;
  align-items:center;
}
.icon-stage{
  position:relative;
  min-height:380px;
  display:grid;
  place-items:center;
}
.app-icon{
  width:min(70%,310px);
  border-radius:58px;
  box-shadow:0 34px 80px rgba(15,138,61,.26);
  animation:float 6s ease-in-out infinite;
  z-index:3;
}
.ring{
  position:absolute;
  border-radius:999px;
  border:1px solid rgba(15,138,61,.24);
  animation:pulse 4s ease-in-out infinite;
}
.r1{width:360px;height:360px}
.r2{width:245px;height:245px;animation-delay:1s}
.screens{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  align-items:center;
}
.phone{
  border-radius:34px;
  filter:drop-shadow(0 28px 50px rgba(12,78,35,.18));
  animation:phone 6s ease-in-out infinite;
}
.phone:nth-child(2){animation-delay:.6s;transform:translateY(-14px)}
.phone:nth-child(3){animation-delay:1.1s}
.phone:nth-child(4){animation-delay:1.6s;transform:translateY(-10px)}
.phone:nth-child(5){animation-delay:2s}
.contact-card strong{
  display:block;
  font-size:clamp(18px,2vw,24px);
  overflow-wrap:anywhere;
  margin:8px 0 18px;
}
.contact-card a{color:var(--leaf);font-weight:900}
.legal-card{max-width:900px}
.legal-card h2{margin-top:28px}
.footer{
  padding:34px 0 48px;
  border-top:1px solid var(--line);
  margin-top:30px;
}
.footer .container{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.reveal{opacity:0;transform:translateY(28px);transition:.75s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

@keyframes blob{50%{transform:translate(30px,-25px) scale(1.08)}}
@keyframes float{50%{transform:translateY(-14px) rotate(-1deg)}}
@keyframes floatAlt{50%{transform:translateY(-10px) rotate(1deg)}}
@keyframes grow{50%{width:94%}}
@keyframes leafDrift{
  0%{transform:translateY(40px) rotate(0deg) scale(.75);opacity:0}
  20%,80%{opacity:.65}
  100%{transform:translateY(-120px) rotate(160deg) scale(1.15);opacity:0}
}
@keyframes pulse{50%{transform:scale(1.08);opacity:.2}}
@keyframes phone{50%{translate:0 -16px}}

@media(max-width:1100px){
  .screens{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:1000px){
  .header-inner{flex-wrap:wrap}
  .brand{min-width:auto}
  .nav{
    order:3;
    width:100%;
    justify-content:flex-start;
    overflow:auto;
  }
  .hero-grid,.product-hero,.grid2{grid-template-columns:1fr}
  .grid4,.grid3{grid-template-columns:1fr}
  .screens{grid-template-columns:1fr}
  .phone{width:min(100%,340px);margin:auto;animation:none}
  .dashboard-chip{position:relative;right:auto;bottom:auto;margin:14px auto 0}
}
@media(max-width:640px){
  .header-action{display:none}
  .nav a{font-size:13px;padding:9px 12px}
  .hero,.page-hero,.section{padding:42px 0}
  h1{font-size:42px}
  .container{width:min(100% - 24px,1180px)}
}
