*,
*::before,
*::after{box-sizing:border-box}

html{scroll-behavior:smooth}

body,h1,h2,h3,p{margin:0}

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

a{color:inherit;text-decoration:none}

button{font:inherit}

:root{
  --lime:#A9C72D;
  --lime-deep:#91AD19;
  --lime-pale:#EEF4D5;
  --charcoal:#24282B;
  --charcoal-2:#303438;
  --blue:#2F82BD;
  --blue-deep:#216B9F;
  --silver:#D8DBD5;
  --paper:#F7F8F3;
  --white:#FFFFFF;
  --text:#2A2E31;
  --muted:#697074;
  --soft:#8A908D;
  --line:#DDE0DA;
  --shadow:0 28px 80px rgba(31,35,37,.10);
  --page:1240px;
  --ease:cubic-bezier(.2,.75,.25,1);
}

body{
  min-width:320px;
  overflow-x:hidden;
  background:var(--paper);
  color:var(--text);
  font-family:"Segoe UI Variable","Segoe UI",Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

body.menu-open{overflow:hidden}

:focus-visible{
  outline:3px solid rgba(47,130,189,.45);
  outline-offset:4px;
  border-radius:8px;
}

.page-shell,
.nav-shell{
  width:min(var(--page),calc(100% - 48px));
  margin-inline:auto;
}

.skip-link{
  position:fixed;
  left:12px;
  top:12px;
  z-index:999;
  transform:translateY(-150%);
  padding:10px 14px;
  border-radius:10px;
  background:var(--charcoal);
  color:#fff;
  font-size:13px;
  font-weight:700;
  transition:transform .2s ease;
}
.skip-link:focus{transform:translateY(0)}

.section-label,
.eyebrow{
  color:var(--soft);
  font-size:11px;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.section-label-light{color:#AEB4B0}

.section-title,
.display-title{
  color:var(--charcoal);
  font-weight:850;
  letter-spacing:-.06em;
  line-height:.96;
}

.section-title{
  margin-top:12px;
  max-width:850px;
  font-size:clamp(40px,5vw,70px);
}

.section-title span,
.display-title span{color:var(--lime-deep)}

.section-intro{
  max-width:640px;
  color:var(--muted);
  font-size:16px;
  line-height:1.72;
}

.section-head{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:end;
  margin-bottom:54px;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  border-bottom:1px solid rgba(36,40,43,.07);
  background:rgba(247,248,243,.92);
  backdrop-filter:blur(18px);
}

.nav-shell{
  min-height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.brand-header{
  display:flex;
  align-items:center;
  min-width:0;
}

.brand-header img{
  width:315px;
  max-width:34vw;
  height:auto;
  object-fit:contain;
  object-position:left center;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
  color:#555B5E;
  font-size:13px;
  font-weight:650;
}

.main-nav>a:not(.nav-cta){
  position:relative;
  padding:9px 0;
}

.main-nav>a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:1px;
  height:2px;
  background:var(--lime);
  transition:right .25s var(--ease);
}

.main-nav>a:not(.nav-cta):hover::after{right:0}

.nav-cta{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  padding:0 18px;
  border-radius:999px;
  background:var(--charcoal);
  color:#fff;
  transition:transform .25s var(--ease),background .25s ease;
}

.nav-cta:hover{
  transform:translateY(-2px);
  background:#121415;
}

.menu-toggle{
  position:relative;
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  border-radius:50%;
  background:transparent;
  cursor:pointer;
}

.menu-toggle span{
  position:absolute;
  left:13px;
  width:18px;
  height:1.5px;
  background:var(--charcoal);
  transition:transform .25s ease;
}

.menu-toggle span:first-child{top:18px}
.menu-toggle span:last-child{top:25px}

.menu-toggle[aria-expanded="true"] span:first-child{
  top:22px;
  transform:rotate(45deg)
}
.menu-toggle[aria-expanded="true"] span:last-child{
  top:22px;
  transform:rotate(-45deg)
}

/* BUTTONS */
.button{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 20px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:13px;
  font-weight:750;
  transition:transform .25s var(--ease),box-shadow .25s ease,background .25s ease,border-color .25s ease;
}

.button span{transition:transform .25s var(--ease)}
.button:hover{transform:translateY(-3px)}
.button:hover span{transform:translate(3px,-3px)}

.button-primary,
.button-dark{
  background:var(--charcoal);
  color:#fff;
  box-shadow:0 12px 30px rgba(36,40,43,.13);
}

.button-primary:hover,
.button-dark:hover{
  background:#131516;
  box-shadow:0 18px 38px rgba(36,40,43,.18);
}

.button-secondary{
  border-color:#C8CCC6;
  background:rgba(255,255,255,.52);
  color:var(--charcoal);
}

.button-secondary:hover{
  border-color:#B8BDB6;
  background:#fff;
}

.button-light{
  background:#fff;
  color:var(--charcoal);
}

/* HERO */
.hero{
  min-height:calc(100vh - 94px);
  display:flex;
  align-items:center;
  padding:88px 0 92px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at 92% 8%,rgba(169,199,45,.10),transparent 23%),
    radial-gradient(circle at 82% 74%,rgba(47,130,189,.08),transparent 25%),
    var(--paper);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:70px;
  align-items:center;
}

.hero-copy h1{
  margin-top:20px;
  max-width:870px;
  color:var(--charcoal);
  font-family:"Arial Black","Segoe UI Variable","Segoe UI",Arial,sans-serif;
  font-size:clamp(58px,7vw,106px);
  font-weight:900;
  letter-spacing:-.073em;
  line-height:.89;
}

.hero-copy h1 span{color:var(--lime-deep)}

.hero-lead{
  max-width:700px;
  margin-top:30px;
  color:#5F6669;
  font-size:18px;
  line-height:1.68;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:34px;
}

.hero-microcopy{
  display:flex;
  flex-wrap:wrap;
  gap:8px 18px;
  margin-top:32px;
  color:var(--soft);
  font-size:11px;
  font-weight:700;
}

.hero-microcopy span{
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.hero-microcopy span::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--lime);
}

/* Brand system - hero */
.brand-system{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.brand-tile{
  position:relative;
  overflow:hidden;
  min-height:238px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:25px;
  border-radius:30px;
  transition:transform .3s var(--ease),box-shadow .3s ease;
}

.brand-tile:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.tile-maintenance{
  background:linear-gradient(145deg,#B5D431,var(--lime));
  color:#202421;
}

.tile-analytics{
  background:linear-gradient(145deg,#303438,#1F2224);
  color:#fff;
}

.tile-cloud{
  background:linear-gradient(145deg,#3894CF,var(--blue));
  color:#fff;
}

.tile-code{
  background:linear-gradient(145deg,#F1F2EF,#D6D9D3);
  color:#272B2E;
}

.tile-icon{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:20px;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(8px);
}

.tile-code .tile-icon{background:rgba(45,48,51,.07)}

.tile-icon svg{
  width:34px;
  height:34px;
  fill:currentColor;
}

.tile-kicker{
  display:block;
  margin-bottom:10px;
  font-size:10px;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.65;
}

.brand-tile strong{
  display:block;
  max-width:280px;
  font-family:"Arial Black","Segoe UI Variable","Segoe UI",Arial,sans-serif;
  font-size:clamp(22px,2.2vw,34px);
  line-height:1.02;
  letter-spacing:-.045em;
}

.brand-tile p{
  max-width:290px;
  margin-top:10px;
  font-size:12px;
  line-height:1.55;
  opacity:.76;
}

/* INTRO */
.intro{
  padding:105px 0;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.intro-grid{
  display:grid;
  grid-template-columns:80px 1.1fr .9fr;
  gap:46px;
  align-items:start;
}

.section-number{
  color:var(--lime-deep);
  font-size:13px;
  font-weight:850;
  letter-spacing:.05em;
}

.display-title{
  margin-top:12px;
  max-width:900px;
  font-family:"Arial Black","Segoe UI Variable","Segoe UI",Arial,sans-serif;
  font-size:clamp(44px,5.8vw,84px);
}

.intro-copy{
  display:grid;
  gap:20px;
  padding-top:27px;
  border-top:1px solid var(--line);
}

.intro-copy p{
  color:var(--muted);
  font-size:15px;
  line-height:1.76;
}

/* ECOSYSTEM */
.ecosystem{
  padding:108px 0;
  background:var(--paper);
}

.ecosystem-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.ecosystem-card{
  min-height:430px;
  display:flex;
  flex-direction:column;
  padding:25px;
  border-radius:28px;
  transition:transform .3s var(--ease),box-shadow .3s ease;
}

.ecosystem-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.eco-lime{background:var(--lime);color:#222621}
.eco-dark{background:var(--charcoal);color:#fff}
.eco-blue{background:var(--blue);color:#fff}
.eco-silver{background:#E0E2DD;color:#272B2E}

.eco-index{
  font-size:10px;
  font-weight:850;
  letter-spacing:.15em;
  opacity:.65;
}

.eco-icon{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  margin-top:55px;
  border-radius:22px;
  background:rgba(255,255,255,.15);
}

.eco-silver .eco-icon{background:rgba(36,40,43,.07)}

.eco-icon svg{
  width:39px;
  height:39px;
  fill:currentColor;
}

.ecosystem-card h3{
  margin-top:auto;
  font-family:"Arial Black","Segoe UI Variable","Segoe UI",Arial,sans-serif;
  font-size:27px;
  line-height:1.03;
  letter-spacing:-.045em;
}

.ecosystem-card p{
  margin-top:13px;
  font-size:13px;
  line-height:1.64;
  opacity:.76;
}

/* SOLUTIONS */
.solutions{
  padding:110px 0;
  background:var(--charcoal);
  color:#fff;
}

.solutions-head{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:80px;
  align-items:end;
  margin-bottom:58px;
}

.solutions-title{
  margin-top:12px;
  max-width:880px;
  font-family:"Arial Black","Segoe UI Variable","Segoe UI",Arial,sans-serif;
  font-size:clamp(42px,5.1vw,70px);
  line-height:.96;
  letter-spacing:-.06em;
}

.solutions-title span{color:var(--lime)}

.solutions-intro{
  max-width:570px;
  color:#BDC3BF;
  font-size:15px;
  line-height:1.72;
}

.solutions-stack{
  border-top:1px solid rgba(255,255,255,.16);
}

.solution-line{
  display:grid;
  grid-template-columns:82px .95fr 1.05fr;
  gap:34px;
  align-items:center;
  min-height:160px;
  padding:28px 0;
  border-bottom:1px solid rgba(255,255,255,.16);
  transition:padding .25s var(--ease),background .25s ease;
}

.solution-line:hover{
  padding-inline:16px;
  background:rgba(255,255,255,.035);
}

.solution-code{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:18px;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
}

.solution-code.lime{background:var(--lime);color:#222}
.solution-code.dark{border:1px solid rgba(255,255,255,.26);color:#fff}
.solution-code.blue{background:var(--blue);color:#fff}
.solution-code.silver{background:#D8DBD5;color:#24282B}

.solution-name span{
  color:#AEB5B0;
  font-size:10px;
  font-weight:850;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.solution-name h3{
  max-width:650px;
  margin-top:8px;
  font-size:clamp(23px,2.6vw,37px);
  line-height:1.04;
  letter-spacing:-.04em;
}

.solution-line>p{
  max-width:580px;
  color:#BFC5C1;
  font-size:13px;
  line-height:1.68;
}

/* ZOHO */
.zoho{
  padding:110px 0;
  background:#EDF0E9;
}

.zoho-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:82px;
  align-items:start;
}

.zoho-main .section-intro{margin-top:26px}

.zoho-main .section-title span{color:var(--blue)}

.zoho-list{
  border-top:1px solid #C9CEC6;
}

.zoho-row{
  display:grid;
  grid-template-columns:54px 1fr;
  gap:22px;
  padding:25px 0;
  border-bottom:1px solid #C9CEC6;
  transition:padding .25s var(--ease),background .25s ease;
}

.zoho-row:hover{
  padding-inline:13px;
  background:rgba(255,255,255,.48);
}

.zoho-number{
  color:var(--lime-deep);
  font-size:11px;
  font-weight:850;
  letter-spacing:.1em;
}

.zoho-row h3{
  font-size:17px;
  letter-spacing:-.02em;
}

.zoho-row p{
  margin-top:7px;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}

/* DNDA */
.dnda{
  padding:100px 0;
  background:#fff;
}

.dnda-panel{
  position:relative;
  overflow:hidden;
  min-height:390px;
  display:grid;
  grid-template-columns:.55fr 1.45fr;
  gap:60px;
  align-items:center;
  padding:50px;
  border-radius:32px;
  background:var(--charcoal);
  color:#fff;
  box-shadow:var(--shadow);
}

.dnda-panel::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-180px;
  top:-220px;
  border:1px solid rgba(169,199,45,.25);
  border-radius:50%;
  box-shadow:
    0 0 0 46px rgba(169,199,45,.035),
    0 0 0 92px rgba(47,130,189,.028);
}

.dnda-badge{
  position:relative;
  z-index:2;
  width:210px;
  height:230px;
  display:grid;
  place-items:center;
  clip-path:polygon(50% 0,93% 17%,86% 70%,50% 100%,14% 70%,7% 17%);
  background:var(--lime);
  color:var(--charcoal);
}

.dnda-badge span{
  font-family:"Arial Black","Segoe UI Variable","Segoe UI",Arial,sans-serif;
  font-size:36px;
  letter-spacing:-.05em;
}

.dnda-badge small{
  position:absolute;
  bottom:54px;
  font-size:9px;
  font-weight:900;
  letter-spacing:.18em;
}

.dnda-copy{
  position:relative;
  z-index:2;
}

.dnda-copy h2{
  max-width:760px;
  margin-top:10px;
  font-family:"Arial Black","Segoe UI Variable","Segoe UI",Arial,sans-serif;
  font-size:clamp(36px,4.5vw,62px);
  line-height:.98;
  letter-spacing:-.055em;
}

.dnda-copy p{
  max-width:690px;
  margin:22px 0 26px;
  color:#C0C6C2;
  font-size:14px;
  line-height:1.72;
}

/* PROCESS */
.process{
  padding:105px 0;
  background:var(--paper);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
}

.process-card{
  padding-top:2px;
}

.process-accent{
  display:block;
  width:100%;
  height:4px;
  margin-bottom:18px;
}

.accent-lime{background:var(--lime)}
.accent-dark{background:var(--charcoal)}
.accent-blue{background:var(--blue)}

.process-step{
  color:var(--soft);
  font-size:10px;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.process-card h3{
  margin:34px 0 10px;
  font-family:"Arial Black","Segoe UI Variable","Segoe UI",Arial,sans-serif;
  font-size:26px;
  letter-spacing:-.04em;
}

.process-card p{
  color:var(--muted);
  font-size:13px;
  line-height:1.68;
}

/* CONTACT */
.contact{
  padding:0 0 90px;
  background:var(--paper);
}

.contact-panel{
  min-height:360px;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:55px;
  align-items:end;
  padding:52px;
  border-radius:32px;
  background:var(--lime);
  color:var(--charcoal);
}

.contact-panel h2{
  max-width:880px;
  margin-top:12px;
  font-family:"Arial Black","Segoe UI Variable","Segoe UI",Arial,sans-serif;
  font-size:clamp(40px,5vw,70px);
  line-height:.96;
  letter-spacing:-.06em;
}

.contact-panel p:last-child{
  max-width:600px;
  margin-top:20px;
  color:#495127;
  font-size:14px;
  line-height:1.65;
}

.contact-panel>.button{
  justify-self:end;
}

/* FOOTER */
.site-footer{
  padding:38px 0 32px;
  border-top:1px solid var(--line);
  background:var(--paper);
}

.footer-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px 55px;
  align-items:end;
}

.footer-brand img{
  width:310px;
  max-width:76vw;
  height:auto;
}

.footer-links{
  justify-self:end;
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  color:var(--muted);
  font-size:12px;
}

.footer-links a:hover{color:var(--charcoal)}

.footer-bottom{
  grid-column:1/-1;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:22px;
  border-top:1px solid var(--line);
  color:var(--soft);
  font-size:10px;
}

/* REVEAL */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s var(--ease),transform .7s var(--ease);
}
.reveal.is-visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.08s}
.reveal-delay-2{transition-delay:.16s}
.reveal-delay-3{transition-delay:.24s}
.reveal-delay-4{transition-delay:.32s}

/* RESPONSIVE */
@media (max-width:1100px){
  .brand-header img{width:265px;max-width:42vw}

  .hero-grid,
  .section-head,
  .solutions-head,
  .zoho-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .hero{min-height:auto}

  .intro-grid{
    grid-template-columns:56px 1fr;
  }

  .intro-copy{
    grid-column:2;
  }

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

  .solution-line{
    grid-template-columns:72px 1fr;
  }

  .solution-line>p{
    grid-column:2;
  }

  .main-nav{
    position:fixed;
    inset:94px 20px auto;
    display:grid;
    gap:0;
    padding:14px;
    border:1px solid var(--line);
    border-radius:24px;
    background:rgba(250,251,247,.98);
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:opacity .2s ease,transform .2s ease,visibility .2s;
  }

  .main-nav.is-open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

  .main-nav a{padding:13px 12px!important}
  .main-nav>a:not(.nav-cta)::after{display:none}
  .nav-cta{justify-content:center;margin-top:6px}

  .menu-toggle{display:block}
}

@media (max-width:760px){
  .page-shell,
  .nav-shell{
    width:min(var(--page),calc(100% - 28px));
  }

  .nav-shell{min-height:82px}

  .brand-header img{
    width:225px;
    max-width:70vw;
  }

  .main-nav{inset:82px 14px auto}

  .hero{
    padding:70px 0 75px;
  }

  .hero-copy h1{
    font-size:clamp(54px,17vw,82px);
  }

  .hero-lead{font-size:16px}

  .brand-system{
    grid-template-columns:1fr;
  }

  .brand-tile{
    min-height:178px;
  }

  .intro,
  .ecosystem,
  .solutions,
  .zoho,
  .dnda,
  .process{
    padding:76px 0;
  }

  .intro-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .intro-copy{grid-column:auto}

  .display-title{
    font-size:clamp(40px,13vw,64px);
  }

  .section-head{
    margin-bottom:38px;
  }

  .section-title{
    font-size:clamp(38px,12vw,58px);
  }

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

  .ecosystem-card{
    min-height:330px;
  }

  .solution-line{
    grid-template-columns:64px 1fr;
    gap:18px;
  }

  .solution-code{
    width:54px;
    height:54px;
  }

  .zoho-row{
    grid-template-columns:44px 1fr;
  }

  .dnda-panel{
    grid-template-columns:1fr;
    padding:34px 24px;
  }

  .dnda-badge{
    width:160px;
    height:180px;
    margin-inline:auto;
  }

  .process-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .contact-panel{
    min-height:0;
    grid-template-columns:1fr;
    padding:36px 24px;
  }

  .contact-panel>.button{
    justify-self:start;
  }

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

  .footer-links{
    justify-self:start;
  }

  .footer-bottom{
    flex-direction:column;
    gap:6px;
  }
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,
  *::before,
  *::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
    scroll-behavior:auto!important;
  }
  .reveal{opacity:1;transform:none}
}
