:root{
  --site-bg:#ffffff;
  --site-surface:#f4f7f2;
  --site-surface-strong:#edf6e8;
  --site-text:#101713;
  --site-text-soft:#5a655f;
  --site-line:#dbe4d8;
  --site-accent:#8fe214;
  --site-accent-strong:#6eb80a;
  --site-accent-glow:rgba(143,226,20,.24);
  --site-hero-bg:#07090b;
  --site-hero-text:#ffffff;
  --site-hero-muted:rgba(255,255,255,.74);
  --site-hero-line:rgba(255,255,255,.12);
  --site-contrast:#111111;
  --site-white:#ffffff;
  --shadow-soft:0 24px 60px rgba(17,17,17,.08);
  --shadow-hero:0 24px 50px rgba(0,0,0,.24);
  --radius-lg:28px;
  --radius-md:20px;
  --radius-sm:14px;
  --max:1280px;
  --nav-height:88px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Manrope,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--site-bg);
  color:var(--site-text);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
main{overflow:hidden}
.container{max-width:var(--max);margin:0 auto;padding:0 24px}
.site-hero-shell{background:var(--site-hero-bg);color:var(--site-hero-text)}
.nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:60;
  min-height:var(--nav-height);
  background:rgba(7,9,11,.97);
  border-bottom:1px solid var(--site-hero-line);
  backdrop-filter:blur(16px);
}
.nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-top:16px;
  padding-bottom:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand img{
  width:52px;
  height:52px;
  object-fit:contain;
}
.brand-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand-name{
  font-family:Manrope,system-ui,sans-serif;
  font-size:17px;
  font-weight:800;
  letter-spacing:.05em;
  color:var(--site-hero-text);
}
.brand-tag{
  font-size:11px;
  color:rgba(255,255,255,.58);
  letter-spacing:.16em;
  text-transform:uppercase;
}
.navlinks{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:15px;
  font-weight:700;
  color:rgba(255,255,255,.84);
}
.navlinks a{transition:color .18s ease}
.navlinks a:hover,
.navlinks a.active{color:var(--site-accent)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:12px;
  border:1px solid transparent;
  padding:14px 24px;
  font-size:14px;
  font-weight:800;
  transition:transform .18s ease,background .18s ease,color .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--site-accent);
  color:#081004;
  box-shadow:0 12px 24px var(--site-accent-glow);
}
.btn-primary:hover{background:var(--site-accent-strong)}
.btn-outline{
  background:transparent;
  color:var(--site-hero-text);
  border-color:rgba(255,255,255,.18);
}
.btn-outline:hover{
  border-color:var(--site-accent);
  color:var(--site-accent);
}
.mobile-toggle{
  display:none;
  border:1px solid var(--site-hero-line);
  background:transparent;
  color:var(--site-hero-text);
  width:48px;
  height:48px;
  border-radius:12px;
  font-size:20px;
}
.hero{
  padding:calc(var(--nav-height) + 18px) 0 20px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  grid-template-areas:
    "copy"
    "media"
    "points";
  gap:16px;
}
.hero-copy{grid-area:copy}
.hero-media{grid-area:media}
.hero-points{grid-area:points}
.hero-stats{grid-area:stats}
h1,h2,h3,h4{
  margin:0;
  font-family:Manrope,system-ui,sans-serif;
  line-height:1.03;
}
h1{
  font-size:clamp(34px,7vw,54px);
  letter-spacing:-.05em;
  font-weight:800;
  max-width:none;
}
.hero-line{display:block}
.hero-kicker{
  margin-bottom:14px;
  color:var(--site-accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
h2{
  font-size:clamp(30px,4vw,50px);
  letter-spacing:-.04em;
}
h3{
  font-size:24px;
  letter-spacing:-.03em;
}
.accent-line{color:var(--site-accent)}
p{margin:0}
.lead{
  margin-top:16px;
  max-width:32ch;
  color:var(--site-hero-muted);
  font-size:16px;
  line-height:1.6;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}
.hero-visual{
  width:100%;
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
  min-height:100%;
}
.hero-visual img{
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:right top;
}
.hero-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  border:0;
  border-radius:0;
  overflow:visible;
  background:rgba(7,9,11,.72);
  box-shadow:var(--shadow-hero);
}
.hero-point{
  padding:16px 18px;
  text-align:center;
}
.hero-point strong{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-bottom:10px;
  color:var(--site-hero-text);
  font-size:16px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.hero-point strong img{
  width:30px;
  height:30px;
  object-fit:contain;
}
.hero-point span{
  color:rgba(255,255,255,.58);
  font-size:14px;
  line-height:1.65;
  max-width:24ch;
  margin:0 auto;
}
.hero-point:nth-child(2),
.hero-point:nth-child(4){
  border-left:1px solid var(--site-hero-line);
}
.hero-point:nth-child(3),
.hero-point:nth-child(4){
  border-top:1px solid var(--site-hero-line);
}
.hero-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid var(--site-hero-line);
  background:rgba(7,9,11,.56);
  box-shadow:var(--shadow-hero);
}
.hero-stat{
  padding:16px 18px;
}
.hero-stat strong{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--site-accent);
  font-size:16px;
  font-weight:800;
}
.hero-stat strong img{
  width:18px;
  height:18px;
  object-fit:contain;
}
.hero-stat span{
  display:block;
  margin-top:4px;
  color:rgba(255,255,255,.66);
  font-size:12px;
  line-height:1.4;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.hero-stat:nth-child(2),
.hero-stat:nth-child(4){
  border-left:1px solid var(--site-hero-line);
}
.hero-stat:nth-child(3),
.hero-stat:nth-child(4){
  border-top:1px solid var(--site-hero-line);
}
.section{padding:52px 0}
.stats-band{
  padding:24px 0 0;
  background:var(--site-bg);
}
.stats-band .hero-stats{
  border-radius:28px;
  overflow:hidden;
}
.section-head{
  max-width:760px;
  margin-bottom:28px;
}
.section-head.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.section-head p{
  margin-top:14px;
  color:var(--site-text-soft);
  font-size:17px;
  line-height:1.7;
}
.metrics{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.metric{
  padding:22px 24px;
  border-radius:22px;
  background:var(--site-white);
  border:1px solid var(--site-line);
}
.metric strong{
  display:block;
  margin-bottom:8px;
  font-family:Manrope,system-ui,sans-serif;
  font-size:28px;
}
.metric span{
  color:var(--site-text-soft);
  line-height:1.55;
}
.cards{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.project-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:22px;
}
.project-card{
  display:block;
  overflow:hidden;
  border-radius:24px;
  background:var(--site-white);
  border:1px solid var(--site-line);
  box-shadow:0 14px 32px rgba(17,17,17,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.project-card:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 40px rgba(17,17,17,.1);
  border-color:rgba(143,226,20,.28);
}
.project-card-media{
  aspect-ratio:16/10;
  background:#0a0d0f;
}
.project-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.project-card-copy{
  padding:22px 22px 24px;
}
.project-card-copy strong{
  display:block;
  font-size:22px;
  line-height:1.08;
  letter-spacing:-.03em;
}
.project-card-copy span{
  display:block;
  margin-top:10px;
  color:var(--site-text-soft);
  line-height:1.65;
}
.card{
  padding:28px;
  border-radius:24px;
  background:var(--site-white);
  border:1px solid var(--site-line);
  box-shadow:0 14px 32px rgba(17,17,17,.04);
}
.card.featured{background:#f7fbf6}
.icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:var(--site-surface-strong);
  margin-bottom:18px;
}
.icon img{
  width:30px;
  height:30px;
  object-fit:contain;
}
.card p{
  margin-top:12px;
  color:var(--site-text-soft);
  line-height:1.7;
}
.split{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:start;
}
.panel{
  padding:30px;
  border-radius:var(--radius-lg);
  background:var(--site-white);
  border:1px solid var(--site-line);
  box-shadow:var(--shadow-soft);
}
.panel.soft{
  background:var(--site-surface);
  box-shadow:none;
}
.checklist{
  list-style:none;
  margin:24px 0 0;
  padding:0;
  display:grid;
  gap:14px;
}
.checklist li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  color:var(--site-text-soft);
  line-height:1.65;
}
.checklist li::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--site-accent);
  margin-top:8px;
  flex:0 0 auto;
}
.service-list{
  display:grid;
  gap:14px;
  margin-top:24px;
}
.service-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px 20px;
  border-radius:18px;
  background:var(--site-surface);
  border:1px solid var(--site-line);
}
.service-row b{color:var(--site-contrast)}
.service-row span{
  color:var(--site-text-soft);
  font-size:14px;
  text-align:right;
}
.showcase{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  border-radius:32px;
  overflow:hidden;
  background:var(--site-contrast);
  border:1px solid rgba(17,17,17,.08);
  box-shadow:var(--shadow-soft);
}
.showcase-card{
  border-radius:0;
  overflow:hidden;
  border:0;
  background:transparent;
}
.showcase-card img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
}
.showcase-copy{
  padding:34px 32px;
  background:var(--site-contrast);
  color:var(--site-white);
}
.showcase-copy p{
  margin-top:16px;
  color:rgba(255,255,255,.72);
  line-height:1.75;
}
.contact-list{
  display:grid;
  gap:12px;
  margin-top:24px;
}
.contact-item{
  padding:16px 18px;
  border:1px solid var(--site-line);
  border-radius:16px;
  background:var(--site-white);
}
.contact-item strong{
  display:block;
  margin-bottom:6px;
}
.form{display:grid;gap:14px}
.input,textarea,select{
  width:100%;
  padding:15px 16px;
  border-radius:14px;
  border:1px solid var(--site-line);
  background:#fff;
  color:var(--site-contrast);
  font:inherit;
}
textarea{min-height:140px;resize:vertical}
.cta{
  padding:38px;
  border-radius:30px;
  background:var(--site-contrast);
  border:1px solid rgba(143,226,20,.2);
  color:var(--site-white);
}
.cta p{
  margin-top:14px;
  max-width:54ch;
  color:rgba(255,255,255,.75);
  line-height:1.7;
}
.cta .btn{margin-top:24px}
.footer{
  margin-top:52px;
  padding:36px 0 46px;
  border-top:1px solid var(--site-line);
  background:#fcfdfc;
}
.footer .brand-name{color:var(--site-text)}
.footer .brand-tag{color:var(--site-text-soft)}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
}
.footer h4{
  margin-bottom:12px;
  font-size:16px;
}
.footer p,.footer a{
  color:var(--site-text-soft);
  line-height:1.7;
}
.footer a{
  display:block;
  margin:7px 0;
}
.footer a:hover{color:var(--site-accent-strong)}
@media(min-width:768px){
  .hero-grid{padding:0 24px 24px}
  .metrics,
  .cards,
  .project-cards,
  .split,
  .showcase,
  .footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(min-width:1100px){
  .hero-grid{
    grid-template-columns:35% 65%;
    grid-template-areas:
      "copy media"
      "points points";
    column-gap:0;
    row-gap:18px;
    align-items:start;
  }
  .hero-copy{
    padding:34px 30px 0 0;
    position:relative;
    z-index:2;
  }
  .hero-kicker{margin-bottom:18px}
  h1{
    font-size:clamp(34px,2.95vw,46px);
    max-width:none;
  }
  .hero-line{
    white-space:nowrap;
  }
  .lead{
    max-width:30ch;
  }
  .hero-media{
    align-self:start;
  }
  .hero-visual{
    margin-top:-26px;
  }
  .hero-visual img{
    width:min(100%,1040px);
    max-width:1040px;
    max-height:640px;
  }
  .hero-points{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
  .hero-point{
    padding:20px 22px 18px;
  }
  .hero-point strong{
    font-size:17px;
  }
  .hero-point strong img{
    width:34px;
    height:34px;
  }
  .hero-point span{
    font-size:14px;
  }
  .hero-point:nth-child(2),
  .hero-point:nth-child(3),
  .hero-point:nth-child(4){
    border-left:1px solid var(--site-hero-line);
    border-top:0;
  }
  .hero-point:nth-child(1){border-top:0}
  .hero-stats{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
  .hero-stat:nth-child(2),
  .hero-stat:nth-child(3),
  .hero-stat:nth-child(4){
    border-top:0;
  }
  .metrics{grid-template-columns:repeat(3,minmax(0,1fr))}
  .cards{grid-template-columns:repeat(3,minmax(0,1fr))}
  .project-cards{grid-template-columns:repeat(3,minmax(0,1fr))}
  .split{grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr)}
  .showcase{grid-template-columns:1.1fr .9fr}
  .footer-grid{grid-template-columns:1.3fr 1fr 1fr 1fr}
}
@media(max-width:1099px){
  .mobile-toggle{display:inline-grid;place-items:center}
  .navlinks{
    display:none;
    position:absolute;
    top:calc(var(--nav-height) + 8px);
    left:16px;
    right:16px;
    padding:18px;
    border:1px solid var(--site-hero-line);
    border-radius:24px;
    background:rgba(7,9,11,.97);
    box-shadow:var(--shadow-hero);
    flex-direction:column;
    align-items:stretch;
  }
  .navlinks.open{display:flex}
  .navlinks .btn{
    width:100%;
  }
  .brand img{
    width:42px;
    height:42px;
  }
  .brand-name{
    font-size:15px;
  }
  .brand-tag{
    font-size:10px;
  }
  .hero-stats{border-radius:22px;overflow:hidden}
  .service-row{
    flex-direction:column;
  }
  .service-row span{text-align:left}
  h1{
    max-width:none;
    font-size:clamp(30px,9.2vw,46px);
  }
  .hero-copy{
    padding-top:8px;
  }
  .hero-visual{
    justify-content:center;
  }
  .hero-visual img{
    width:min(100%,720px);
  }
  .hero-points{
    grid-template-columns:1fr;
  }
  .hero-point{
    padding:16px 0;
    border-left:0 !important;
    border-top:1px solid var(--site-hero-line) !important;
  }
  .hero-point:first-child{
    border-top:0 !important;
  }
  .hero-stats{
    grid-template-columns:1fr;
  }
  .hero-stat{
    border-left:0 !important;
    border-top:1px solid var(--site-hero-line) !important;
  }
  .hero-stat:first-child{
    border-top:0 !important;
  }
  .section{padding:44px 0}
}
