:root{
  --bg:#FFFFFF;
  --panel:#F5F5F7;
  --ink:#0D0D0D;
  --muted:#65656F;
  --line:#E7E7EA;
  --red:#F24E1E;
  --purple:#A259FF;
  --blue:#1ABCFE;
  --green:#0ACF83;
  --red-tint:#FDEDE7;
  --purple-tint:#F2EBFF;
  --blue-tint:#E7F8FE;
  --green-tint:#E7FAF1;
  --maxw:1180px;
  --radius:22px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg); color:var(--ink);
  font-family:'Inter',sans-serif;
  font-size:16px; line-height:1.55;
}
h1,h2,h3,h4{font-family:'Inter',sans-serif; font-weight:800; letter-spacing:-0.02em; line-height:1.05;}
.mono{font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.04em; text-transform:uppercase;}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
section{position:relative;}
ul{list-style:none;}

/* ---------- NAV ---------- */
header{position:sticky; top:0; z-index:50; background:rgba(255,255,255,0.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);}
nav{max-width:var(--maxw); margin:0 auto; padding:18px 28px; display:flex; align-items:center; justify-content:space-between;}
.brand{display:flex; align-items:center; gap:10px;}
.brand img{height:32px; width:32px; border-radius:8px; object-fit:cover;}
.brand span{font-weight:800; font-size:17px;}
.navlinks{display:flex; gap:32px; align-items:center;}
.navlinks a{font-size:14px; font-weight:500; color:var(--ink); opacity:.7; transition:opacity .2s; padding-bottom:4px; border-bottom:2px solid transparent;}
.navlinks a:hover{opacity:1;}
.navlinks a.active{opacity:1; border-bottom-color:var(--ink); font-weight:700;}
.nav-cta{display:flex; align-items:center; gap:18px;}
@media(max-width:860px){.navlinks{display:none;}}

.navtoggle{display:none; background:none; border:1.5px solid var(--ink); border-radius:10px; cursor:pointer; padding:8px 9px; align-items:center; justify-content:center;}
.navtoggle svg{width:20px; height:20px; stroke:var(--ink); fill:none; stroke-width:2;}
@media(max-width:860px){.navtoggle{display:flex;}}

.menu-overlay{position:fixed; inset:0; background:rgba(13,13,13,0.35); z-index:90; opacity:0; pointer-events:none; transition:opacity .25s ease;}
.menu-overlay.open{opacity:1; pointer-events:auto;}
.mobile-menu{
  position:fixed; top:0; right:-100%; width:78%; max-width:320px; height:100vh;
  background:#fff; z-index:100; transition:right .3s ease;
  box-shadow:-12px 0 32px rgba(0,0,0,0.12);
  padding:28px; display:flex; flex-direction:column; gap:6px;
}
.mobile-menu.open{right:0;}
.mobile-menu-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:30px;}
.mobile-close{background:none; border:none; cursor:pointer; padding:6px;}
.mobile-close svg{width:22px; height:22px; stroke:var(--ink); stroke-width:2; fill:none;}
.mobile-menu a{font-size:19px; font-weight:700; padding:14px 4px; border-bottom:1px solid var(--line);}
.mobile-menu .btn{margin-top:22px; justify-content:center;}

.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 22px; border-radius:999px;
  font-size:14px; font-weight:700;
  border:1.5px solid var(--ink);
  cursor:pointer; transition: all .2s ease;
}
.btn-primary{background:var(--ink); color:#fff;}
.btn-primary:hover{background:var(--red); border-color:var(--red); transform:translateY(-1px);}
.btn-ghost{background:transparent; color:var(--ink);}
.btn-ghost:hover{background:var(--ink); color:#fff;}

/* ---------- BADGE ---------- */
.badge{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--panel); border:1px solid var(--line);
  padding:7px 14px 7px 8px; border-radius:999px; margin-bottom:26px;
}
.badge .chip{background:var(--ink); color:#fff; font-size:11px; font-weight:700; padding:3px 9px; border-radius:999px;}
.badge span.txt{font-size:13px; font-weight:600;}

/* ---------- HERO (home) ---------- */
.hero{padding:70px 0 50px;}
.hero-top{display:grid; grid-template-columns:1.05fr 0.95fr; gap:50px; align-items:center; margin-bottom:60px;}
@media(max-width:900px){.hero-top{grid-template-columns:1fr;}}
.hero h1{font-size:clamp(36px,5.6vw,66px); max-width:560px;}
.hero h1 .hl{position:relative; display:inline-block;}
.hero h1 .hl::after{
  content:""; position:absolute; left:-2px; right:-2px; bottom:6px; height:0.32em;
  background:var(--green); z-index:-1; transform:skewX(-3deg);
}
.hero p.lead{color:var(--muted); font-size:18px; max-width:480px; margin:26px 0 36px;}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap;}
.hero-photo{position:relative; border-radius:28px; overflow:hidden; aspect-ratio:4/4.4; border:1px solid var(--line);}
.hero-photo img{width:100%; height:100%; object-fit:cover;}
.hero-chip{
  position:absolute; left:18px; bottom:18px;
  background:#fff; border-radius:16px; padding:14px 18px;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
  display:flex; align-items:center; gap:12px;
}
.hero-chip .swatch{width:38px; height:38px; border-radius:50%; background:var(--green); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:14px;}
.hero-chip .t1{font-size:13px; font-weight:700;}
.hero-chip .t2{font-size:11.5px; color:var(--muted);}
.hero-chip-top{
  position:absolute; right:18px; top:18px;
  background:#fff; border-radius:999px; padding:8px 16px;
  box-shadow:0 8px 24px rgba(0,0,0,0.12);
  font-family:'IBM Plex Mono'; font-size:11px; font-weight:600;
  display:flex; align-items:center; gap:6px;
}
.hero-chip-top .dot{width:7px; height:7px; border-radius:50%; background:var(--red);}

/* ---------- PAGE HERO (sub pages) ---------- */
.page-hero{padding:54px 0 50px; border-bottom:1px solid var(--line);}
.page-hero .crumb{color:var(--muted); display:block; margin-bottom:16px;}
.page-hero h1{font-size:clamp(32px,4.6vw,52px); max-width:760px;}
.page-hero p{color:var(--muted); font-size:17px; max-width:580px; margin-top:18px;}

/* ---------- STRIP ---------- */
.strip{display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
@media(max-width:760px){.strip{grid-template-columns:repeat(2,1fr);}}
.strip-item{padding:26px 22px; border-right:1px solid var(--line); border-bottom:1px solid var(--line);}
.strip-item:nth-child(4n){border-right:none;}
@media(max-width:760px){.strip-item:nth-child(2n){border-right:none;} .strip-item:nth-child(4n){border-right:1px solid var(--line);}}
.strip-item .dot{width:9px; height:9px; border-radius:50%; margin-bottom:14px;}
.strip-item h4{font-size:14.5px; font-weight:700; margin-bottom:6px;}
.strip-item p{font-size:13px; color:var(--muted);}

/* ---------- SECTION HEAD ---------- */
.sec-head{max-width:600px; margin-bottom:46px;}
.sec-head .mono{color:var(--muted); margin-bottom:14px; display:block;}
.sec-head h2{font-size:clamp(28px,4vw,44px);}
.sec-head p{color:var(--muted); margin-top:14px; font-size:16px;}
.section-pad{padding:96px 0; border-top:1px solid var(--line);}
.section-pad.notop{border-top:none;}

/* ---------- WHY ---------- */
.why-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
@media(max-width:900px){.why-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.why-grid{grid-template-columns:1fr;}}
.why-card{border-radius:var(--radius); padding:30px 24px; min-height:200px; display:flex; flex-direction:column; justify-content:space-between; transition: transform .25s ease;}
.why-card:hover{transform:translateY(-4px);}
.why-card .num{font-family:'IBM Plex Mono'; font-size:12px; font-weight:600; opacity:.55;}
.why-card h3{font-size:18px; margin-top:auto; margin-bottom:8px;}
.why-card p{font-size:13.5px; color:var(--muted);}
.c-red{background:var(--red-tint);} .c-purple{background:var(--purple-tint);}
.c-blue{background:var(--blue-tint);} .c-green{background:var(--green-tint);}

/* ---------- SERVICES ---------- */
.svc-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:18px;}
@media(max-width:760px){.svc-grid{grid-template-columns:1fr;}}
.svc-card{border:1.5px solid var(--ink); border-radius:var(--radius); overflow:hidden; transition: transform .25s ease, box-shadow .25s ease;}
.svc-card:hover{transform:translateY(-4px); box-shadow:8px 8px 0 var(--ink);}
.svc-photo{height:170px; overflow:hidden;}
.svc-photo img{width:100%; height:100%; object-fit:cover;}
.svc-body{padding:30px 32px 32px;}
.svc-icon{width:44px; height:44px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:22px; margin-top:-44px; position:relative; box-shadow:0 6px 16px rgba(0,0,0,0.18);}
.svc-icon svg{width:21px; height:21px; stroke:#fff; fill:none; stroke-width:2;}
.svc-card h3{font-size:20px; margin-bottom:10px;}
.svc-card p{font-size:14.5px; color:var(--muted); margin-bottom:16px;}
.svc-tag{font-family:'IBM Plex Mono'; font-size:11px; font-weight:600; padding:5px 11px; border-radius:999px; display:inline-block;}

/* ---------- PROCESS ---------- */
.proc-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:18px;}
@media(max-width:900px){.proc-grid{grid-template-columns:1fr;}}
.proc-card{border-radius:var(--radius); padding:30px 24px; border:1px solid var(--line);}
.proc-num{font-size:42px; font-weight:800; margin-bottom:18px; opacity:.12;}
.proc-card h4{font-size:17px; margin-bottom:8px;}
.proc-card p{font-size:13.5px; color:var(--muted);}

.proc-detail{border:1px solid var(--line); border-radius:var(--radius); padding:38px; display:grid; grid-template-columns:90px 1fr; gap:28px; margin-bottom:18px; align-items:start;}
@media(max-width:700px){.proc-detail{grid-template-columns:1fr; gap:14px;}}
.proc-detail .big-num{font-size:46px; font-weight:800; opacity:.15;}
.proc-detail h3{font-size:21px; margin-bottom:10px;}
.proc-detail p{font-size:14.5px; color:var(--muted); margin-bottom:14px;}
.proc-detail ul{display:flex; flex-direction:column; gap:8px;}
.proc-detail li{font-size:13.5px; color:var(--muted); padding-left:18px; position:relative;}
.proc-detail li::before{content:"—"; position:absolute; left:0; color:var(--ink);}

/* ---------- TEAM ---------- */
.team-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
@media(max-width:760px){.team-grid{grid-template-columns:1fr;}}
.team-card{border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;}
.team-photo{height:150px; display:flex; align-items:center; justify-content:center; font-size:40px; font-weight:800; color:#fff;}
.team-info{padding:22px;}
.team-info h3{font-size:17px; margin-bottom:4px;}
.team-info .role{font-family:'IBM Plex Mono'; font-size:11.5px; color:var(--muted); display:block; margin-bottom:12px;}
.team-info p.bio{font-size:13.5px; color:var(--muted);}

.values-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px;}
@media(max-width:760px){.values-grid{grid-template-columns:1fr;}}
.value-card{padding:28px; border:1px solid var(--line); border-radius:var(--radius);}
.value-card .vnum{font-family:'IBM Plex Mono'; font-size:11px; color:var(--muted); margin-bottom:16px; display:block;}
.value-card h4{font-size:16.5px; margin-bottom:8px;}
.value-card p{font-size:13.5px; color:var(--muted);}

/* ---------- TESTIMONIAL ---------- */
.testi-card{background:var(--ink); color:#fff; border-radius:var(--radius); padding:56px; max-width:780px; margin:0 auto; text-align:center;}
.testi-card .quote{font-size:clamp(20px,2.6vw,28px); font-weight:700; line-height:1.35; margin-bottom:22px;}
.testi-card .who{color:#A7A7B0; font-size:14px;}
.testi-card .who b{color:#fff;}

/* ---------- CTA ---------- */
.cta{padding:110px 0; text-align:center; border-top:1px solid var(--line);}
.cta h2{font-size:clamp(30px,4.6vw,50px); max-width:720px; margin:0 auto 18px;}
.cta p{color:var(--muted); margin-bottom:34px; font-size:17px;}
.cta .btn{padding:15px 30px; font-size:15px;}

/* ---------- CONTACT ---------- */
.contact-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:50px;}
@media(max-width:860px){.contact-grid{grid-template-columns:1fr;}}
.form-group{margin-bottom:20px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media(max-width:520px){.form-row{grid-template-columns:1fr;}}
label{font-size:13px; font-weight:700; margin-bottom:8px; display:block;}
input, textarea, select{
  width:100%; padding:13px 16px; border:1.5px solid var(--line); border-radius:10px;
  font-family:'Inter'; font-size:14.5px; background:#fff; color:var(--ink);
}
input:focus, textarea:focus, select:focus{outline:none; border-color:var(--ink);}
textarea{min-height:130px; resize:vertical;}
.form-note{font-size:12.5px; color:var(--muted); margin-top:14px;}
.contact-info-card{background:var(--panel); border-radius:var(--radius); padding:32px; margin-bottom:18px;}
.info-row{display:flex; gap:14px; margin-bottom:22px; align-items:flex-start;}
.info-row:last-child{margin-bottom:0;}
.info-row .ic{width:40px; height:40px; border-radius:10px; background:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.info-row .ic svg{width:18px; height:18px; stroke:var(--ink); fill:none; stroke-width:1.8;}
.info-row h4{font-size:14.5px; margin-bottom:4px;}
.info-row p, .info-row a{font-size:13.5px; color:var(--muted);}
.map-box{border-radius:var(--radius); border:1px solid var(--line); overflow:hidden; height:220px;}
.map-box iframe{width:100%; height:100%; border:0; filter:grayscale(0.15);}

/* ---------- FOOTER ---------- */
footer{border-top:1px solid var(--line); padding:48px 0 32px;}
.foot-top{display:flex; justify-content:space-between; flex-wrap:wrap; gap:30px; margin-bottom:40px;}
.foot-brand p{color:var(--muted); font-size:13.5px; margin-top:14px; max-width:260px;}
.foot-cols{display:flex; gap:60px; flex-wrap:wrap;}
.foot-col .mono{color:var(--muted); margin-bottom:14px; display:block;}
.foot-col a{display:block; font-size:14px; margin-bottom:10px; opacity:.8;}
.foot-col a:hover{opacity:1; color:var(--red);}
.foot-bottom{display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--line); padding-top:24px; flex-wrap:wrap; gap:12px;}
.foot-bottom span{font-size:13px; color:var(--muted);}
.social{display:flex; gap:16px;}
.social a{font-size:13px; color:var(--muted);}
.social a:hover{color:var(--ink);}

.reveal{opacity:0; transform:translateY(16px); transition:opacity .55s ease, transform .55s ease;}
.reveal.in{opacity:1; transform:none;}
@media (prefers-reduced-motion: reduce){.reveal{opacity:1; transform:none; transition:none;}}
:focus-visible{outline:2px solid var(--blue); outline-offset:3px;}
